:root {
  color-scheme: light;
  --bg: #faf8f3;
  --card: #ffffff;
  --ink: #2c1810;
  --muted: #6b5847;
  --accent: #d4a24d;
  --accent-dark: #8b6914;
  --accent-light: #f4e0b8;
  --brown: #5d4e37;
  --brown-dark: #3e2f1f;
  --yellow: #f9c74f;
  --border: #d9cdb5;
  --shadow: 0 20px 40px rgba(139, 119, 101, 0.08), 0 8px 16px rgba(93, 78, 55, 0.05);
  --glow: 0 0 0 2px rgba(212, 162, 77, 0.25), 0 24px 70px rgba(212, 162, 77, 0.4), 0 8px 20px rgba(139, 105, 20, 0.2);
  --radius: 16px;
  --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #F4E4BC 100%);
  --gradient-warm: linear-gradient(135deg, #d4a24d 0%, #f9c74f 50%, #f4e0b8 100%);
}

html[data-theme="dark"] {
  color-scheme: dark;
  --bg: #1a1410;
  --card: #2a2218;
  --ink: #f4e8d8;
  --muted: #c4b8a8;
  --border: #4a3f32;
  --shadow: 0 20px 60px rgba(10, 5, 0, 0.6);
  --glow: 0 0 0 2px rgba(212, 162, 77, 0.4), 0 20px 60px rgba(212, 162, 77, 0.35);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root,
html[data-theme="dark"] {
  transition: background-color 0.3s ease, color 0.3s ease;
}

body {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  transition: background-color 0.3s ease, color 0.3s ease;
  background-image: 
    url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMDAiIGhlaWdodD0iMzAwIj48ZmlsdGVyIGlkPSJhIj48ZmVUdXJidWxlbmNlIGJhc2VGcmVxdWVuY3k9Ii43NSIgc3RpdGNoVGlsZXM9InN0aXRjaCIgdHlwZT0iZnJhY3RhbE5vaXNlIi8+PGZlQ29sb3JNYXRyaXggdHlwZT0ic2F0dXJhdGUiIHZhbHVlcz0iMCIvPjwvZmlsdGVyPjxwYXRoIGQ9Ik0wIDBoMzAwdjMwMEgweiIgZmlsdGVyPSJ1cmwoI2EpIiBvcGFjaXR5PSIuMDIiLz48L3N2Zz4='),
    radial-gradient(circle at top right, rgba(249, 199, 79, 0.18), transparent 60%),
    radial-gradient(circle at 20% 20%, rgba(244, 224, 184, 0.4), transparent 55%),
    radial-gradient(circle at 80% 80%, rgba(139, 105, 20, 0.12), transparent 70%),
    linear-gradient(180deg, rgba(250, 248, 243, 0.95), rgba(244, 236, 220, 0.98));
}

html[data-theme="dark"] body {
  background-image: 
    radial-gradient(circle at top right, rgba(212, 162, 77, 0.15), transparent 60%),
    radial-gradient(circle at 20% 20%, rgba(58, 46, 31, 0.8), transparent 55%),
    linear-gradient(180deg, rgba(26, 20, 16, 0.95), rgba(20, 16, 12, 0.98));
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 2px solid var(--accent-light);
  box-shadow: 0 2px 12px rgba(139, 105, 20, 0.08);
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.site-header.scrolled {
  background: rgba(250, 248, 243, 0.98);
  backdrop-filter: blur(24px) saturate(200%);
  box-shadow: 0 4px 20px rgba(139, 105, 20, 0.15);
  border-bottom: 1px solid rgba(212, 162, 77, 0.3);
}

.site-header.scrolled .header-grid {
  padding: 14px 0;
}

.site-header.scrolled .logo-mark {
  font-size: 20px;
}

html[data-theme="dark"] .site-header {
  background: rgba(10, 10, 10, 0.85);
}

.header-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}

.logo {
  display: grid;
  gap: 2px;
}

.logo-mark {
  font-family: "Playfair Display", serif;
  font-size: 24px;
  letter-spacing: 3px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--brown-dark), var(--accent-dark), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-text {
  font-weight: 600;
}

.logo-sub {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  font-size: 14px;
  color: var(--muted);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-gold);
  transform: translateX(-50%);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav a:hover {
  color: var(--accent-dark);
}

.nav a:hover::after {
  width: 100%;
}

.theme-toggle {
  border: 1px solid var(--border);
  background: var(--card);
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.cta {
  border: 2px solid var(--accent);
  background: linear-gradient(135deg, var(--accent), var(--yellow));
  color: var(--brown-dark);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(212, 162, 77, 0.3);
}

.cta:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #fff;
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 105, 20, 0.4);
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: var(--card);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.menu-toggle:hover {
  border-color: var(--accent);
  background: var(--accent-light);
}

.hero {
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    radial-gradient(circle at 30% 50%, rgba(212, 162, 77, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(249, 199, 79, 0.04) 0%, transparent 50%);
  will-change: transform;
  transition: transform 0.3s ease-out;
}

.hero::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 199, 79, 0.35), rgba(212, 162, 77, 0.2) 40%, rgba(139, 105, 20, 0.08) 65%, transparent 80%);
  top: -150px;
  right: -150px;
  pointer-events: none;
  filter: blur(50px);
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.8; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.05); }
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 12px;
}

.hero h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 3vw + 1.6rem, 4rem);
  line-height: 1.1;
  margin-bottom: 16px;
}

.kinetic-text {
  display: inline-block;
  opacity: 0;
  animation: typewriterReveal 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes typewriterReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.gradient-text {
  background: linear-gradient(120deg, var(--accent-dark), var(--accent), #d4af77);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.gradient-text {
  background: linear-gradient(120deg, var(--accent-dark), var(--accent), #d4af77);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.primary {
  background: var(--gradient-gold);
  color: #fff;
  border: none;
  padding: 14px 26px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 6px 20px rgba(139, 105, 20, 0.35);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.primary:hover::before {
  width: 300px;
  height: 300px;
}

.primary:hover {
  background: linear-gradient(135deg, var(--brown-dark), var(--accent-dark), var(--accent));
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--glow);
}

.primary:active {
  transform: translateY(-1px) scale(0.98);
}

.ghost {
  border: 1px solid var(--border);
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink);
  transition: border 0.2s ease, transform 0.2s ease;
}

.ghost:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-metrics strong {
  font-size: 22px;
  display: block;
}

.hero-metrics span {
  font-size: 12px;
  color: var(--muted);
}

.hero-card {
  position: relative;
}

.glass {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 224, 184, 0.4) 100%);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--glow);
  border: 2px solid var(--accent-light);
  backdrop-filter: blur(16px) saturate(160%);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
}

.elite-glass {
  backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 
    0 0 0 1px rgba(212, 162, 77, 0.1),
    0 20px 40px rgba(139, 119, 101, 0.12),
    0 8px 16px rgba(93, 78, 55, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  border: 2px solid rgba(212, 162, 77, 0.3);
}

.elite-glass:hover {
  transform: translateY(-4px);
  box-shadow: 
    0 0 0 1px rgba(212, 162, 77, 0.2),
    0 24px 70px rgba(212, 162, 77, 0.4),
    0 8px 20px rgba(139, 105, 20, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 2px;
  background: linear-gradient(135deg, var(--yellow), var(--accent), var(--brown));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.3;
}

html[data-theme="dark"] .glass {
  background: linear-gradient(180deg, rgba(30, 30, 30, 0.9) 0%, rgba(20, 20, 20, 0.95) 100%);
  backdrop-filter: blur(20px);
}

.glass h2 {
  font-family: "Playfair Display", serif;
  margin-bottom: 12px;
}

.glass ul {
  margin: 16px 0 20px;
  padding-left: 18px;
  color: var(--muted);
}

.glass li {
  margin-bottom: 8px;
}

.seal {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-light), rgba(249, 199, 79, 0.3));
  color: var(--brown-dark);
  font-weight: 700;
  font-size: 13px;
  border: 2px solid var(--accent);
  box-shadow: 0 4px 12px rgba(212, 162, 77, 0.25);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-badges {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badges span {
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--muted);
  transition: all 0.3s ease;
  animation: badgePulse 3s ease-in-out infinite;
}

.hero-badges span:nth-child(1) {
  animation-delay: 0s;
}

.hero-badges span:nth-child(2) {
  animation-delay: 0.5s;
}

.hero-badges span:nth-child(3) {
  animation-delay: 1s;
}

.hero-badges span:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 162, 77, 0.2);
  border-color: var(--accent);
}

@keyframes badgePulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(212, 162, 77, 0);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(212, 162, 77, 0.1);
  }
}

html[data-theme="dark"] .hero-badges span {
  background: var(--card);
  color: var(--muted);
}

.scroll-indicator {
  text-align: center;
  margin-top: 40px;
  opacity: 0.6;
  animation: float 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

.arrow-down {
  font-size: 18px;
  margin-top: 4px;
  color: var(--accent);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

html[data-theme="dark"] .hero-badges span {
  background: var(--card);
  color: var(--muted);
}

.scroll-indicator {
  text-align: center;
  margin-top: 40px;
  opacity: 0.6;
  animation: float 2s ease-in-out infinite;
}

.scroll-indicator span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--muted);
}

.arrow-down {
  font-size: 18px;
  margin-top: 4px;
  color: var(--accent);
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.clients {
  padding: 30px 0 50px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust {
  padding: 70px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.trust-cards {
  display: grid;
  gap: 16px;
}

.badge-card {
  padding: 20px 22px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 12px 30px rgba(24, 24, 24, 0.08);
  position: relative;
}

.badge-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 12px;
  stroke-width: 1.5;
  animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

.badge-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--brown);
  display: block;
  margin-bottom: 10px;
  font-weight: 700;
}

.badge-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  font-weight: 600;
}

.stars {
  color: var(--accent-dark);
}

.client-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 12px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 13px;
}

.services,
.expertise,
.insights,
.contact,
.impact,
.process,
.testimonials,
.cta-band {
  padding: 80px 0;
}

.section-heading {
  max-width: 600px;
  margin-bottom: 40px;
}

.section-heading h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 2.2vw + 1rem, 2.8rem);
  margin-bottom: 12px;
}

.service-grid,
.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.service-grid article,
.insight-grid article {
  background: var(--card);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(24, 24, 24, 0.06);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.service-icon {
  width: 56px;
  height: 56px;
  color: var(--accent-dark);
  margin-bottom: 16px;
  stroke-width: 1.5;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-grid article:hover .service-icon,
.insight-grid article:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
  color: var(--accent);
}

.service-grid article::before,
.insight-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--brown-dark), var(--accent-dark), var(--accent), var(--yellow), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 3px 12px rgba(212, 162, 77, 0.4);
}

.service-grid article::after,
.insight-grid article::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(212, 162, 77, 0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.service-grid article:hover::after,
.insight-grid article:hover::after {
  opacity: 1;
}

.service-grid article:hover::before,
.insight-grid article:hover::before {
  transform: scaleX(1);
}

.service-grid article:hover,
.insight-grid article:hover {
  transform: translateY(-12px) translateZ(20px);
  box-shadow: 
    var(--glow),
    0 20px 50px rgba(139, 119, 101, 0.15);
  border-color: rgba(212, 162, 77, 0.5);
}

.service-banner {
  margin-top: 30px;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: #fff;
  box-shadow: var(--shadow);
}

html[data-theme="dark"] .service-banner {
  background: var(--card);
}

.tiers {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

html[data-theme="dark"] .tiers {
  background: #0d0d0d;
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.tier-grid article {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: 0 12px 30px rgba(24, 24, 24, 0.08);
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tier-icon {
  width: 48px;
  height: 48px;
  color: var(--accent-dark);
  margin-bottom: 16px;
  stroke-width: 1.5;
  transition: all 0.3s ease;
}

.featured-icon {
  color: var(--yellow);
  filter: drop-shadow(0 0 8px rgba(249, 199, 79, 0.5));
}

.tier-grid article:hover .tier-icon {
  transform: scale(1.1) rotate(-5deg);
}

.tier-grid article:hover {
  transform: translateY(-6px);
  box-shadow: var(--glow);
}

.tier-grid ul {
  margin-top: 14px;
  padding-left: 16px;
  color: var(--muted);
}

.tier-grid .featured {
  border-color: rgba(197, 163, 102, 0.4);
  box-shadow: var(--glow);
}

.ribbon {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(197, 163, 102, 0.2);
  color: var(--accent-dark);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
}

.service-grid h3,
.insight-grid h3 {
  margin-bottom: 10px;
  font-size: 16px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: start;
}

.checklist {
  margin-top: 20px;
  list-style: none;
  display: grid;
  gap: 14px;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: var(--ink);
  font-weight: 500;
}

.checklist svg {
  width: 24px;
  height: 24px;
  color: var(--accent-dark);
  flex-shrink: 0;
  stroke-width: 2.5;
}

.expertise-cards {
  display: grid;
  gap: 18px;
}

.panel {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 24, 24, 0.08);
}

html[data-theme="dark"] .panel {
  background: var(--card);
  border: 2px solid var(--accent);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

html[data-theme="dark"] .panel h3 {
  color: var(--accent-light);
}

html[data-theme="dark"] .panel p {
  color: var(--muted);
}

.insights {
  background: #fdfbf7;
}

html[data-theme="dark"] .insights {
  background: #0d0d0d;
}

.impact {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

html[data-theme="dark"] .impact {
  background: #0d0d0d;
}

.impact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}

.impact-cards {
  display: grid;
  gap: 16px;
}

.impact-card {
  padding: 20px 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fdfbf7;
  box-shadow: 0 12px 30px rgba(24, 24, 24, 0.06);
}

.impact-icon {
  width: 48px;
  height: 48px;
  color: var(--accent-dark);
  margin-bottom: 16px;
  stroke-width: 1.5;
}

.metric-bar {
  margin-top: 16px;
  height: 6px;
  background: rgba(212, 162, 77, 0.15);
  border-radius: 999px;
  overflow: hidden;
  position: relative;
}

.metric-fill {
  height: 100%;
  background: var(--gradient-gold);
  border-radius: 999px;
  animation: fillBar 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  transform-origin: left;
}

@keyframes fillBar {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

html[data-theme="dark"] .impact-card {
  background: rgba(30, 30, 30, 0.6);
}

.impact-card strong {
  font-size: 22px;
  display: block;
  margin-bottom: 4px;
}

.process {
  background: linear-gradient(180deg, #fdfbf7, #f6f5f2);
}

html[data-theme="dark"] .process {
  background: linear-gradient(180deg, #0d0d0d, #0a0a0a);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  position: relative;
  margin-top: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--accent-light));
  z-index: 0;
}

.step {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 12px 30px rgba(24, 24, 24, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 1;
}

html[data-theme="dark"] .step {
  background: var(--card);
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: var(--glow);
}

.step-number {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.step-number span {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 700;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.step-icon {
  width: 40px;
  height: 40px;
  color: var(--accent);
  stroke-width: 1.5;
}

.step:hover .step-icon {
  animation: iconPulse 0.6s ease-in-out;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15); }
}

.testimonials {
  background: #fff;
}

html[data-theme="dark"] .testimonials {
  background: #0d0d0d;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.testimonial-grid figure {
  padding: 26px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: #fdfbf7;
  box-shadow: 0 12px 30px rgba(24, 24, 24, 0.06);
}

html[data-theme="dark"] .testimonial-grid figure {
  background: rgba(30, 30, 30, 0.6);
}

.testimonial-grid blockquote {
  font-size: 15px;
  margin-bottom: 18px;
  color: var(--ink);
}

.testimonial-grid figcaption span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.testimonial-grid figcaption {
  display: grid;
  gap: 6px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(197, 163, 102, 0.25);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--accent-dark);
}

.cta-band {
  background: linear-gradient(120deg, #ffffff, #f6efe4);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

html[data-theme="dark"] .cta-band {
  background: linear-gradient(120deg, #1a1a1a, #141414);
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 20px;
  align-items: center;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

.contact-details {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-details span {
  color: var(--muted);
  font-size: 13px;
}

.contact-form {
  display: grid;
  gap: 16px;
  background: var(--card);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(24, 24, 24, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--card);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 
    0 0 0 3px rgba(212, 162, 77, 0.15),
    0 4px 12px rgba(139, 105, 20, 0.1);
  transform: translateY(-2px);
}

.contact-form input:hover,
.contact-form select:hover,
.contact-form textarea:hover {
  border-color: rgba(212, 162, 77, 0.4);
}

.form-steps {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}

.form-steps span.active {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--accent-dark);
  font-weight: 700;
}

.step-bar {
  height: 8px;
  border-radius: 999px;
  background: rgba(197, 163, 102, 0.25);
  overflow: hidden;
  position: relative;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.step-bar span {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 33%;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--yellow));
  border-radius: 999px;
  box-shadow: 0 2px 8px rgba(212, 162, 77, 0.4);
  animation: progressGlow 2s ease-in-out infinite;
}

@keyframes progressGlow {
  0%, 100% { 
    box-shadow: 0 2px 8px rgba(212, 162, 77, 0.4);
  }
  50% { 
    box-shadow: 0 2px 12px rgba(249, 199, 79, 0.6);
  }
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 50px 0 20px;
  background: #fdfcf9;
}

html[data-theme="dark"] .site-footer {
  background: #0a0a0a;
}

html[data-theme="dark"] .site-footer {
  background: #0a0a0a;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 30px;
}

.footer-grid h3,
.footer-grid h4 {
  margin-bottom: 12px;
}

.footer-grid a,
.footer-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.footer-base {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 24px;
}

@media (max-width: 980px) {
  .hero-grid,
  .expertise-grid,
  .contact-grid,
  .impact-grid,
  .cta-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    position: absolute;
    top: 70px;
    right: 4vw;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    box-shadow: var(--shadow);
    display: none;
  }

  html[data-theme="dark"] .nav {
    background: var(--card);
  }

  .nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .service-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 60px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-cta {
    bottom: 20px;
    right: 20px;
    padding: 14px 20px;
  }

  .cta-text {
    display: none;
  }

  .cta-icon {
    font-size: 20px;
  }

  .chatbot {
    bottom: 20px;
    left: 20px;
  }

  .chatbot-window {
    width: calc(100vw - 40px);
    max-width: 340px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .service-grid article,
  .insight-grid article,
  .panel,
  .impact-card,
  .step,
  .testimonial-grid figure,
  .tier-grid article,
  .badge-card {
    animation: rise 0.6s ease both;
  }
}

.reveal {
  animation: reveal 0.8s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: var(--gradient-gold);
  z-index: 1000;
  transition: width 0.25s ease-out;
  box-shadow: 0 0 10px rgba(212, 162, 77, 0.5);
}

.floating-cta {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: linear-gradient(135deg, var(--brown-dark), var(--accent-dark), var(--accent), var(--yellow));
  color: #fff;
  border: none;
  padding: 18px 32px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 40px rgba(139, 105, 20, 0.5), 0 0 0 2px rgba(212, 162, 77, 0.3), 0 6px 16px rgba(93, 78, 55, 0.3);
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: pulse 2.5s ease-in-out infinite;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .floating-cta {
    bottom: 110px;
    right: 50%;
    transform: translateX(50%);
    padding: 18px 28px;
    font-size: 16px;
  }
  
  .cta-text {
    display: inline;
  }
  
  .floating-cta:hover {
    transform: translateY(-4px) scale(1.05);
  }
}

.floating-cta:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(197, 163, 102, 0.6), 0 0 0 1px rgba(197, 163, 102, 0.3);
}

.cta-icon {
  font-size: 18px;
}

@keyframes pulse {
  0%, 100% { 
    box-shadow: 0 12px 40px rgba(139, 105, 20, 0.5), 0 0 0 2px rgba(212, 162, 77, 0.3), 0 6px 16px rgba(93, 78, 55, 0.3);
  }
  50% { 
    box-shadow: 0 16px 60px rgba(139, 105, 20, 0.7), 0 0 0 4px rgba(249, 199, 79, 0.5), 0 8px 24px rgba(93, 78, 55, 0.5);
    transform: translateY(-2px);
  }
}

.chatbot {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 998;
}

.chatbot-trigger {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brown-dark), var(--accent-dark), var(--accent), var(--yellow));
  color: #fff;
  border: 3px solid var(--accent-light);
  font-size: 26px;
  cursor: pointer;
  box-shadow: 0 10px 35px rgba(139, 105, 20, 0.5), 0 3px 10px rgba(93, 78, 55, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: grid;
  place-items: center;
}

.chatbot-trigger:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(197, 163, 102, 0.6);
}

.chatbot-window {
  position: absolute;
  bottom: 75px;
  left: 0;
  width: 340px;
  max-height: 480px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  overflow: hidden;
}

@media (max-width: 768px) {
  .chatbot {
    bottom: 20px !important;
    left: 20px !important;
    transform: none !important;
  }
  
  .chatbot-trigger {
    width: 64px !important;
    height: 64px !important;
    font-size: 26px !important;
  }
  
  .chatbot-window {
    position: absolute !important;
    bottom: 75px !important;
    left: 0 !important;
    transform: none !important;
    width: 90vw !important;
    max-width: 360px !important;
    max-height: 70vh !important;
  }
  
  .chatbot-window.open {
    transform: none !important;
  }
  
  .chat-body {
    padding: 18px !important;
    max-height: calc(70vh - 70px) !important;
  }
  
  .chat-message p {
    font-size: 16px;
  }
  
  .chat-option {
    padding: 16px 18px;
    font-size: 16px;
  }
}

.chatbot-window.open {
  display: flex;
  animation: slideUp 0.3s ease;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.chat-header {
  padding: 18px 22px;
  background: linear-gradient(135deg, var(--brown-dark), var(--accent-dark), var(--accent));
  color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  box-shadow: 0 3px 12px rgba(139, 105, 20, 0.4);
  border-bottom: 2px solid var(--yellow);
}

.chat-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  padding: 0;
  width: 28px;
  height: 28px;
}

.chat-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow-y: auto;
  max-height: 380px;
}

.chat-message {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.avatar-mini {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(197, 163, 102, 0.25);
  display: grid;
  place-items: center;
  font-weight: 700;
  color: var(--accent-dark);
  font-size: 12px;
  flex-shrink: 0;
}

.chat-message p {
  background: rgba(197, 163, 102, 0.1);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.chat-options {
  display: grid;
  gap: 8px;
  margin-top: 6px;
}

.chat-option {
  padding: 12px 16px;
  border: 1px solid var(--border);
  background: var(--card);
  border-radius: 12px;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: left;
  color: var(--ink);
}

.chat-option:hover {
  border-color: var(--accent);
  background: rgba(197, 163, 102, 0.08);
  transform: translateX(4px);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
   MOBILE RESPONSIVE STYLES
   ============================================ */

@media (max-width: 768px) {
  /* Base typography scaling */
  body {
    font-size: 17px;
    line-height: 1.7;
  }
  
  .container {
    width: 90vw;
  }
  
  /* ============================================
     HEADER & NAVIGATION - MOBILE MENU
     ============================================ */
  
  .header-grid {
    padding: 16px 0;
  }
  
  .logo-mark {
    font-size: 22px !important;
  }
  
  .logo-text {
    font-size: 16px;
  }
  
  .logo-sub {
    font-size: 11px;
  }
  
  .menu-toggle {
    display: block !important;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    background: var(--card);
    border: 2px solid var(--accent);
    color: var(--accent-dark);
    z-index: 1000;
  }
  
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--card);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
    z-index: 999;
    padding: 40px;
  }
  
  .nav.open {
    transform: translateX(0);
    opacity: 1;
  }
  
  .nav a {
    font-size: 24px !important;
    font-weight: 600;
    color: var(--ink) !important;
    padding: 16px 24px;
    width: 100%;
    text-align: center;
    border-bottom: 2px solid var(--border);
  }
  
  .nav a:hover {
    background: var(--accent-light);
    border-color: var(--accent);
  }
  
  .nav .cta {
    font-size: 18px !important;
    padding: 18px 36px !important;
    width: 90%;
    text-align: center;
  }
  
  .theme-toggle {
    font-size: 14px;
    padding: 12px 20px;
  }
  
  /* ============================================
     TYPOGRAPHY - CLEAR & VISIBLE
     ============================================ */
  
  /* Hero section */
  .hero {
    padding: 60px 0 40px;
  }
  
  .hero h1 {
    font-size: clamp(38px, 10vw, 56px) !important;
    text-align: center;
    line-height: 1.2;
    font-weight: 700;
  }
  
  .hero-copy {
    text-align: center;
  }
  
  .lead {
    font-size: 21px !important;
    text-align: center;
    line-height: 1.7;
    color: var(--ink);
    font-weight: 400;
  }
  
  .eyebrow {
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2.5px;
  }
  
  .hero-actions {
    justify-content: center;
    flex-direction: column;
    width: 100%;
    gap: 16px;
  }
  
  .hero-badges {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }
  
  .hero-badges span {
    font-size: 14px;
    padding: 10px 18px;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  /* ============================================
     BUTTONS - BIGGER & TOUCH-FRIENDLY
     ============================================ */
  
  .primary,
  button.primary,
  .hero-actions .primary,
  .hero-actions button.primary,
  .cta-band button.primary,
  .contact-form button.primary {
    padding: 22px 40px !important;
    font-size: 19px !important;
    font-weight: 700 !important;
    width: 100% !important;
    letter-spacing: 0.5px;
    min-height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .ghost,
  a.ghost,
  .hero-actions .ghost {
    padding: 20px 32px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    width: 100% !important;
    min-height: 60px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  
  .cta,
  .nav .cta,
  button.cta {
    padding: 16px 28px !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    min-height: 52px !important;
  }
  
  /* ============================================
     HEADINGS - LARGER & PROPERLY ALIGNED
     ============================================ */
  
  h2 {
    font-size: clamp(28px, 7vw, 38px) !important;
    text-align: left;
    line-height: 1.3;
    font-weight: 700;
    margin-bottom: 20px;
  }
  
  h3 {
    font-size: clamp(22px, 5vw, 28px) !important;
    text-align: left;
    line-height: 1.4;
    font-weight: 600;
  }
  
  h4 {
    font-size: 21px !important;
    font-weight: 600;
  }
  
  .section-heading {
    text-align: left;
    margin-bottom: 32px;
  }
  
  .section-heading h2,
  .section-heading .eyebrow {
    text-align: left;
  }
  
  .section-heading p {
    text-align: left;
    font-size: 18px;
    line-height: 1.7;
  }
  
  /* ============================================
     PARAGRAPHS - CLEAR & READABLE
     ============================================ */
  
  p {
    font-size: 17px;
    line-height: 1.75;
    color: var(--ink);
    text-align: left;
  }
  
  /* ============================================
     SERVICE CARDS
     ============================================ */
  
  .service-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }
  
  .service-grid article {
    padding: 32px 28px;
  }
  
  .service-grid h3 {
    font-size: 26px !important;
    margin-bottom: 14px;
  }
  
  .service-grid p {
    font-size: 17px !important;
    line-height: 1.7;
  }
  
  .service-grid ul li {
    font-size: 16px;
    padding: 10px 0;
  }
  
  /* ============================================
     PANELS & GRIDS
     ============================================ */
  
  .panel-grid,
  .trust-grid,
  .tier-grid,
  .testimonial-grid,
  .contact-grid,
  .footer-grid,
  .impact-grid {
    grid-template-columns: 1fr !important;
    gap: 28px;
  }
  
  .panel {
    padding: 28px 24px;
  }
  
  .panel h3 {
    font-size: 24px !important;
  }
  
  .panel p {
    font-size: 17px;
  }
  
  /* ============================================
     CHATBOT - RESPONSIVE & FUNCTIONAL
     ============================================ */
  
  .chatbot {
    bottom: 20px !important;
    left: 20px !important;
    transform: none;
  }
  
  .chatbot-trigger {
    width: 64px !important;
    height: 64px !important;
    font-size: 26px !important;
  }
  
  .chatbot-window {
    position: absolute !important;
    bottom: 75px !important;
    left: 0 !important;
    transform: none;
    width: 90vw !important;
    max-width: 360px !important;
    max-height: 70vh !important;
  }
  
  .chatbot-window.open {
    transform: none !important;
  }
  
  .chat-header {
    padding: 18px 20px;
    font-size: 16px;
    font-weight: 700;
  }
  
  .chat-body {
    padding: 18px !important;
    max-height: calc(70vh - 130px) !important;
  }
  
  .chat-message p {
    font-size: 16px !important;
    padding: 12px 14px;
    line-height: 1.6;
  }
  
  .chat-option {
    padding: 16px 18px !important;
    font-size: 16px !important;
    font-weight: 600;
  }
  
  .avatar-mini {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
  
  /* ============================================
     FLOATING CTA
     ============================================ */
  
  .floating-cta {
    bottom: 20px !important;
    right: 20px !important;
    transform: none;
    padding: 16px 28px !important;
    font-size: 15px !important;
    font-weight: 700;
  }
  
  .cta-icon {
    font-size: 18px;
  }
  
  /* ============================================
     CONTACT SECTION
     ============================================ */
  
  .contact-details {
    gap: 28px;
  }
  
  .contact-details strong {
    font-size: 19px !important;
    font-weight: 700;
  }
  
  .contact-details span {
    font-size: 15px;
  }
  
  .contact-form label {
    font-size: 17px;
    font-weight: 600;
  }
  
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    font-size: 17px !important;
    padding: 18px !important;
    border-width: 2px;
  }
  
  /* ============================================
     TESTIMONIALS
     ============================================ */
  
  .testimonial-grid blockquote {
    font-size: 18px !important;
    line-height: 1.7;
  }
  
  .testimonial-grid figcaption strong {
    font-size: 17px;
  }
  
  .testimonial-grid figcaption span {
    font-size: 15px;
  }
  
  /* ============================================
     CARDS & GLASS EFFECTS
     ============================================ */
  
  .glass,
  .elite-glass {
    padding: 32px 28px;
  }
  
  .glass h2 {
    font-size: 28px !important;
  }
  
  .glass p {
    font-size: 17px !important;
    line-height: 1.7;
  }
  
  .glass li {
    font-size: 17px;
    padding: 8px 0;
  }
  
  .seal {
    font-size: 14px;
    padding: 10px 18px;
  }
  
  /* ============================================
     STEP CARDS
     ============================================ */
  
  .step {
    padding: 28px 24px;
  }
  
  .step h4 {
    font-size: 23px !important;
    margin-bottom: 12px;
  }
  
  .step p {
    font-size: 17px !important;
    line-height: 1.7;
  }
  
  .step-number span {
    font-size: 48px !important;
  }
  
  /* ============================================
     IMPACT CARDS
     ============================================ */
  
  .impact-card {
    padding: 28px;
  }
  
  .impact-card strong {
    font-size: 40px !important;
    font-weight: 700;
  }
  
  .impact-card span {
    font-size: 17px;
  }
  
  /* ============================================
     FOOTER
     ============================================ */
  
  .footer-grid h3 {
    font-size: 22px !important;
  }
  
  .footer-grid h4 {
    font-size: 19px !important;
  }
  
  .footer-grid p,
  .footer-grid a,
  .footer-grid span {
    font-size: 16px;
    line-height: 1.7;
  }
  
  .footer-base {
    font-size: 15px;
    padding: 24px 0;
  }
  
  /* ============================================
     CENTER ALIGNMENT
     ============================================ */
  
  .trust > .container > div:first-child,
  .cta-band .cta-grid > div,
  .insights .section-heading,
  .expertise .section-heading {
    text-align: center;
  }
  
  .cta-band .cta-grid > div p {
    text-align: center;
    font-size: 18px;
  }
  
  .cta-band .cta-grid {
    text-align: center;
  }
  
  /* ============================================
     TOUCH TARGETS - MINIMUM 48x48
     ============================================ */
  
  button,
  a,
  .chat-option,
  .menu-toggle,
  .theme-toggle,
  .chatbot-trigger {
    min-height: 48px;
    min-width: 48px;
  }
  
  /* ============================================
     LIST ITEMS
     ============================================ */
  
  li {
    font-size: 17px;
    line-height: 1.7;
  }
  
  ul li::before {
    font-size: 18px;
  }
  
  /* ============================================
     BADGE CARDS
     ============================================ */
  
  .badge-card {
    padding: 24px;
  }
  
  .badge-title {
    font-size: 17px;
    font-weight: 600;
  }
  
  .badge-row span {
    font-size: 15px;
    padding: 8px 16px;
  }
  
  /* ============================================
     CLIENTS SECTION
     ============================================ */
  
  .clients p {
    font-size: 18px;
    text-align: center;
  }
  
  .client-logos span {
    font-size: 16px;
    padding: 12px 20px;
  }
  
  /* ============================================
     TIMELINE
     ============================================ */
  
  .timeline {
    grid-template-columns: 1fr !important;
  }
  
  .timeline::before {
    display: none;
  }
  
  /* ============================================
     CAL EMBED
     ============================================ */
  
  .cal-embed iframe {
    height: 600px !important;
  }
  
  /* ============================================
     SCROLL INDICATOR
     ============================================ */
  
  .scroll-indicator span {
    font-size: 15px;
  }
  
  .arrow-down {
    font-size: 24px;
  }
  
  /* ============================================
     HEADER & NAVIGATION - MOBILE
     ============================================ */
  
  .header-grid {
    padding: 16px 0;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    align-items: center;
  }
  
  .menu-toggle {
    display: block !important;
    padding: 12px 20px;
    font-size: 15px;
    min-height: 48px;
    font-weight: 600;
    border: 2px solid var(--border);
    order: 3;
  }
  
  .theme-toggle {
    padding: 12px 18px;
    font-size: 14px;
    min-height: 48px;
    font-weight: 600;
    border: 2px solid var(--border);
    order: 2;
  }
  
  .logo {
    order: 1;
  }
  
  .logo-mark {
    font-size: 26px !important;
  }
  
  .logo-text {
    font-size: 18px !important;
    font-weight: 700;
  }
  
  .logo-sub {
    font-size: 13px !important;
  }
  
  .nav {\n    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--card);
    flex-direction: column;
    padding: 24px 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-bottom: 2px solid var(--accent);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    gap: 0;
  }
  
  .nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav a {
    font-size: 18px;
    padding: 18px 5vw;
    width: 100%;
    border-bottom: 1px solid var(--border);
    text-align: center;
  }
  
  .nav a::after {
    display: none;
  }
  
  .nav .cta {
    margin: 16px 5vw 0;
    width: calc(100% - 10vw);
    padding: 18px 32px;
    font-size: 17px;
    border: none;
    text-align: center;
  }
  
  /* ============================================
     FORM PROGRESS BAR - VISIBLE
     ============================================ */
  
  .form-steps {
    margin-bottom: 24px;
  }
  
  .form-steps > span {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 12px;
    display: block;
  }
  
  .step-bar {
    width: 100%;
    height: 8px;
    background: var(--border);
    border-radius: 999px;
    overflow: hidden;
    position: relative;
  }
  
  .step-bar span {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 33%;
    background: linear-gradient(90deg, var(--accent-dark), var(--accent), var(--yellow));
    border-radius: 999px;
    transition: width 0.3s ease;
    animation: progressPulse 2s ease-in-out infinite;
  }
  
  @keyframes progressPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
  }
}

