/* ==========================================================================
   CSS VARIABLES - Veterinária Xanadu V4
   ========================================================================== */

:root {
  /* Colors - Primary (Orange) */
  --primary: #F97316;
  --primary-dark: #EA580C;
  --primary-light: #FDBA74;
  --primary-xl: #FFF7ED;

  /* Colors - Neutrals (Grays) */
  --dark-900: #1a1a1a;
  --dark-700: #333333;
  --dark-500: #555555;
  --gray-500: #6B7280;
  --gray-400: #9CA3AF;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50: #F9FAFB;
  --white: #FFFFFF;

  /* Colors - Accents */
  --accent-green: #22C55E;
  --accent-amber: #F59E0B;
  --accent-coral: #EF4444;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #F97316 0%, #EA580C 100%);
  --gradient-overlay: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.1) 50%, transparent 100%);

  /* Typography */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;

  /* Spacing */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --space-4xl: 96px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.05), 0 10px 15px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.08), 0 20px 48px rgba(0, 0, 0, 0.06);
  --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.12);
  --shadow-btn: 0 4px 14px rgba(249, 115, 22, 0.35);

  /* Transitions */
  --transition-fast: all 0.15s ease;
  --transition-default: all 0.3s ease;
  --transition-slow: all 0.5s ease;
}

/* ==========================================================================
   RESET & GLOBAL
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--dark-700);
  line-height: 1.65;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-default);
}

ul,
ol {
  list-style: none;
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1,
.h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark-900);
  letter-spacing: -0.01em;
}

h2,
.h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--dark-900);
}

h3,
.h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--dark-900);
}

h4,
.h4 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--dark-900);
}

.body-lg {
  font-size: 1.0625rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--dark-500);
}

.body-sm {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--gray-500);
}

.caption {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  color: var(--gray-400);
}

/* Section title with highlight */
.section-header {
  margin-bottom: var(--space-2xl);
}

.section-header .section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--space-md);
}

.section-header .section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--primary);
  display: inline-block;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .container {
    padding-left: 32px;
    padding-right: 32px;
  }
}

.section-padding {
  padding-top: var(--space-4xl);
  padding-bottom: var(--space-4xl);
}

@media (max-width: 767px) {
  .section-padding {
    padding-top: var(--space-3xl);
    padding-bottom: var(--space-3xl);
  }
}

/* Backgrounds */
.bg-white {
  background: var(--white);
}

.bg-gray {
  background: var(--gray-50);
}

.bg-dark {
  background: var(--dark-900);
  color: var(--white);
}

.bg-dark h2,
.bg-dark h3,
.bg-dark h4 {
  color: var(--white);
}

.bg-dark .body-lg,
.bg-dark .body-sm {
  color: var(--gray-300);
}

/* Grid Utilities */
.grid {
  display: grid;
}

.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }
.gap-2xl { gap: var(--space-2xl); }

.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
  .lg\:grid-70-30 { grid-template-columns: 7fr 3fr; }
}

/* Flex Utilities */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }

/* ==========================================================================
   SERVICES SECTION (Orange background, 4 cards)
   ========================================================================== */

.section-services {
  background: var(--primary);
  padding: var(--space-4xl) 0;
  border-radius: var(--radius-2xl);
  margin: 0 var(--space-md) var(--space-md);
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-2xl);
}

.services-label {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border-radius: var(--radius-full);
  padding: 5px 14px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 1px solid rgba(255,255,255,0.3);
}

.services-title {
  color: var(--white) !important;
  margin-top: var(--space-md);
}

.services-title span {
  color: rgba(255,255,255,0.75);
  font-style: italic;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (min-width: 1024px) {
  .services-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}

.svc-card {
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition-default);
  border: 1px solid rgba(255,255,255,0.2);
}

.svc-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-4px);
}

.svc-card-inner {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.svc-card-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.svc-card:hover .svc-card-inner img {
  transform: scale(1.06);
}

.svc-num {
  position: absolute;
  bottom: -20px;
  right: 10px;
  font-size: 7rem;
  font-weight: 800;
  color: rgba(255,255,255,0.2);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  font-family: var(--font-heading);
}

.svc-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--space-lg);
  gap: var(--space-md);
}

.svc-name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.svc-desc {
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.svc-arrow {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-default);
  margin-top: 2px;
}

.svc-arrow:hover {
  background: var(--dark-900);
  color: var(--white);
}

/* ==========================================================================
   QUEM SOMOS SECTION
   ========================================================================== */

.quem-somos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (min-width: 1024px) {
  .quem-somos-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
  }
}

.quem-somos-divider {
  height: 1px;
  background: var(--gray-200);
  margin-bottom: var(--space-xl);
}

.quem-somos-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.quem-somos-list li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  font-size: 0.9375rem;
  color: var(--dark-700);
  line-height: 1.6;
}

.qs-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.quem-somos-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
  max-height: 520px;
}

/* ==========================================================================
   NAVIGATION (Inspired by Reference)
   ========================================================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 1000;
  background: var(--white);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--gray-200);
  transition: var(--transition-default);
}

.navbar.scrolled {
  box-shadow: var(--shadow-sm);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: var(--space-xl);
  align-items: center;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--dark-700);
  padding: 8px 0;
  position: relative;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-default);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark-900);
}

.nav-phone-icon {
  width: 40px;
  height: 40px;
  background: var(--primary-xl);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--dark-900);
  padding: 8px;
}

@media (max-width: 1023px) {
  .navbar {
    height: 68px;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    width: 100%;
    background: var(--white);
    padding: var(--space-lg) var(--space-md);
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--gray-200);
    gap: 4px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-link {
    padding: 12px var(--space-md);
    width: 100%;
    border-radius: var(--radius-sm);
  }

  .nav-link:hover {
    background: var(--gray-50);
  }

  .nav-link::after {
    display: none;
  }

  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .nav-logo img {
    height: 44px;
  }
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--radius-full);
  cursor: pointer;
  border: none;
  transition: var(--transition-default);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  padding: 14px 28px;
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--dark-900);
  border: 1.5px solid var(--gray-300);
  padding: 13px 26px;
}

.btn-outline:hover {
  border-color: var(--dark-900);
  background: var(--dark-900);
  color: var(--white);
}

/* Specialty sidebar nav buttons */
.btn-esp-nav {
  background: transparent;
  color: var(--dark-900);
  border: 1.5px solid var(--primary);
  padding: 13px 26px;
  text-align: left;
}

.btn-esp-nav:hover,
.btn-esp-nav.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 13px 26px;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--dark-900);
  padding: 14px 28px;
}

.btn-white:hover {
  transform: translateY(-1px);
}

.btn-sm {
  font-size: 0.8125rem;
  padding: 10px 20px;
}

/* ==========================================================================
   SPECIALTY CARDS (New Style - Reference inspired)
   ========================================================================== */

.spec-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-2xl);
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-lg);
}

@media (min-width: 1024px) {
  .spec-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.spec-card {
  background: var(--primary-xl);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: block;
  transition: var(--transition-default);
  border: 1.5px solid var(--gray-200);
}

.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-light);
}

.spec-card-img {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin: var(--space-md) var(--space-md) 0;
}

.spec-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.spec-card:hover .spec-card-img img {
  transform: scale(1.05);
}

.spec-badge {
  position: absolute;
  top: var(--space-sm);
  left: var(--space-sm);
  width: 40px;
  height: 40px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.spec-card-body {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
}

.spec-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: var(--space-lg);
  line-height: 1.3;
}

.spec-learn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius-full);
  padding: 10px var(--space-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark-700);
  border: 1px solid var(--gray-200);
  transition: var(--transition-default);
}

.spec-card:hover .spec-learn {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.spec-arrow {
  width: 24px;
  height: 24px;
  background: var(--gray-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-default);
}

.spec-card:hover .spec-arrow {
  background: rgba(255,255,255,0.25);
  color: var(--white);
}

/* ==========================================================================
   CARD COMPONENTS
   ========================================================================== */

/* Service Card */
.card-service {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-default);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--gray-200);
}

.card-service:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--primary-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  color: var(--primary);
}

/* Specialty Card */
.card-specialty {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  display: block;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-default);
}

.card-specialty:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card-specialty img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card-specialty:hover img {
  transform: scale(1.05);
}

.card-specialty-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-overlay);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-lg);
}

.card-specialty-title {
  color: var(--white);
  margin: 0;
}

.card-specialty-icon {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

/* Team Card */
.card-team {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 100%;
  transition: var(--transition-default);
  border: 1px solid var(--gray-200);
}

.card-team:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}

.card-team-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.card-team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.card-team:hover .card-team-img img {
  transform: scale(1.03);
}

.card-team-content {
  padding: var(--space-lg);
  text-align: center;
}

/* Badge */
.badge {
  display: inline-block;
  background: var(--primary-xl);
  color: var(--primary-dark);
  border-radius: var(--radius-full);
  padding: 6px 16px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   TEAM SECTION
   ========================================================================== */

.team-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: var(--space-2xl);
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

.team-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1.5px solid var(--gray-200);
  transition: var(--transition-default);
  background: var(--white);
}

.team-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary-light);
}

.team-card-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.team-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card-img img {
  transform: scale(1.04);
}

.team-card-body {
  padding: var(--space-lg);
  border-top: 1px solid var(--gray-100);
}

.team-name {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--dark-900);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

.team-crmv {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--gray-500);
  background: var(--gray-100);
  border-radius: var(--radius-full);
  padding: 3px 10px;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testi-google-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-full);
  padding: 10px var(--space-lg);
  font-size: 0.9375rem;
  margin-top: var(--space-lg);
}

.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  border: 1px solid var(--gray-200);
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  transition: var(--transition-default);
}

.testi-card:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-2px);
}

.testi-quote {
  font-size: 2rem;
  color: var(--primary);
  line-height: 1;
}

.testi-text {
  font-size: 0.9375rem;
  color: var(--dark-700);
  line-height: 1.7;
  flex: 1;
}

.testi-stars {
  display: flex;
  gap: 3px;
  color: var(--accent-amber);
}

.testi-author {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--gray-200);
  margin-top: auto;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-700);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--dark-900);
}

.testi-role {
  font-size: 0.8125rem;
  color: var(--gray-500);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background-color: var(--dark-900);
  color: var(--gray-300);
  padding: var(--space-4xl) 0 var(--space-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-logo {
  margin-bottom: var(--space-md);
  height: 56px;
}

.footer-heading {
  color: var(--white);
  margin-bottom: var(--space-md);
  font-size: 1rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-link {
  color: var(--gray-400);
  font-size: 0.9375rem;
}

.footer-link:hover {
  color: var(--primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }

.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }

.pt-md { padding-top: var(--space-md); }
.w-full { width: 100%; }

.hidden-mobile {
  display: none;
}

@media (min-width: 768px) {
  .hidden-mobile {
    display: block;
  }
}

@media (max-width: 767px) {
  .md\:hidden {
    display: none;
  }
}

/* Scroll Reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }