/* === Pragati Financial Services - logo-aligned palette === */
:root {
  --navy: #0E2A5C;
  --navy-2: #1A3D7A;
  --navy-deep: #061633;
  --green: #2DA84A;
  --green-2: #3FBD5C;
  --orange: #F2872D;
  --orange-2: #FFA14D;
  --paper: #FFFFFF;
  --paper-2: #F5F7FB;
  --paper-3: #EAEEF6;
  --ink: #0A1628;
  --ink-soft: #4A5677;
  --line: rgba(14,42,92,0.10);
  --whatsapp: #25D366;
  --whatsapp-2: #128C7E;
  --shadow-sm: 0 1px 2px rgba(14,42,92,0.06), 0 2px 6px rgba(14,42,92,0.04);
  --shadow-md: 0 4px 12px rgba(14,42,92,0.08), 0 12px 32px rgba(14,42,92,0.06);
  --shadow-lg: 0 24px 60px rgba(14,42,92,0.18);
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body[data-lang="gu"] { font-family: 'Noto Sans Gujarati', 'Inter', sans-serif; }
body[data-lang="gu"] .display { font-family: 'Noto Sans Gujarati', 'Sora', sans-serif; font-weight: 700; }

.display {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; }
img { max-width: 100%; display: block; }

/* === NAV === */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 10px 40px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all .35s ease;
  backdrop-filter: blur(0px);
}
.nav.scrolled {
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  padding: 6px 40px;
}
.logo { display: flex; align-items: center; gap: 14px; }
.logo-img { display: block; height: 88px; }
.logo-img img { height: 100%; width: auto; display: block; }
.nav.scrolled .logo-img { height: 64px; }
.footer .logo-img { height: 110px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .l1 {
  font-family: 'Sora', sans-serif; font-weight: 800;
  font-size: 28px; letter-spacing: .01em; color: var(--navy);
}
.logo-text .l2 {
  font-size: 12px; color: var(--ink-soft); margin-top: 6px;
  letter-spacing: .18em; text-transform: uppercase; font-weight: 700;
}
.nav.scrolled .logo-text .l1 { font-size: 22px; }
.nav.scrolled .logo-text .l2 { font-size: 10px; margin-top: 4px; }
.footer .logo-text .l1 { font-size: 32px; color: var(--paper); }
.footer .logo-text .l2 { color: rgba(255,255,255,0.6); font-size: 13px; }

.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 21px; font-weight: 700; color: var(--ink-soft);
  position: relative; padding: 4px 0;
  transition: color .2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 2px; background: var(--orange);
  transition: right .3s ease;
}
.nav-links a:hover::after { right: 0; }

.nav-right { display: flex; align-items: center; gap: 10px; }
.lang-switch {
  display: inline-flex; align-items: center;
  background: rgba(14,42,92,0.06);
  border-radius: 999px;
  padding: 4px;
  position: relative;
}
.lang-switch button {
  position: relative; z-index: 2;
  padding: 6px 14px; font-size: 13px; font-weight: 600;
  color: var(--ink-soft); border-radius: 999px;
  transition: color .25s;
}
.lang-switch button.active { color: var(--paper); }
.lang-switch .pill {
  position: absolute; top: 4px; bottom: 4px;
  width: calc(50% - 4px);
  background: var(--navy);
  border-radius: 999px;
  transition: transform .35s cubic-bezier(.6,.2,.2,1);
  z-index: 1;
}
body[data-lang="gu"] .lang-switch .pill { transform: translateX(100%); }

.cta-wa-nav {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--whatsapp); color: white;
  padding: 10px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.cta-wa-nav:hover { transform: translateY(-1px); box-shadow: 0 6px 16px rgba(37,211,102,0.4); background: var(--whatsapp-2); }
.cta-wa-nav svg { width: 16px; height: 16px; }

.cta-call {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: var(--paper);
  padding: 10px 16px; border-radius: 999px;
  font-size: 13px; font-weight: 600;
  transition: transform .2s, box-shadow .2s, background .2s;
}
.cta-call:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); background: var(--navy-2); }
.cta-call .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); animation: pulse 2s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(242,135,45,.7);} 70%{box-shadow:0 0 0 8px rgba(242,135,45,0);} 100%{box-shadow:0 0 0 0 rgba(242,135,45,0);} }

/* === FLOATING WHATSAPP === */
.wa-fab {
  position: fixed; bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: var(--whatsapp); color: white;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  z-index: 99;
  transition: transform .25s ease, box-shadow .25s;
  animation: waPulse 2.6s ease-in-out infinite;
}
.wa-fab svg { width: 30px; height: 30px; }
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37,211,102,0.5); }
@keyframes waPulse {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 0 rgba(37,211,102,0.5); }
  50% { box-shadow: 0 8px 24px rgba(37,211,102,0.4), 0 0 0 14px rgba(37,211,102,0); }
}
.wa-fab-tooltip {
  position: absolute; right: 72px; top: 50%; transform: translateY(-50%);
  background: var(--navy); color: white;
  padding: 8px 14px; border-radius: 8px;
  font-size: 13px; font-weight: 500; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .25s;
}
.wa-fab-tooltip::after {
  content: ""; position: absolute; right: -6px; top: 50%; transform: translateY(-50%);
  border: 6px solid transparent; border-left-color: var(--navy);
}
.wa-fab:hover .wa-fab-tooltip { opacity: 1; }

/* WhatsApp inline link (used in cards / questions) */
.wa-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600;
  color: var(--whatsapp-2);
  padding: 8px 14px;
  background: rgba(37,211,102,0.10);
  border: 1px solid rgba(37,211,102,0.25);
  border-radius: 999px;
  transition: all .2s ease;
}
.wa-link:hover { background: var(--whatsapp); color: white; border-color: var(--whatsapp); transform: translateY(-1px); }
.wa-link svg { width: 14px; height: 14px; }
.wa-link.solid { background: var(--whatsapp); color: white; border-color: var(--whatsapp); }
.wa-link.solid:hover { background: var(--whatsapp-2); border-color: var(--whatsapp-2); }

/* Question prompt chip - appears under headings the user might have a question on */
.q-prompt {
  display: inline-flex; align-items: center; gap: 10px;
  margin-top: 16px;
  padding: 10px 14px;
  background: white;
  border: 1px dashed rgba(37,211,102,0.4);
  border-radius: 999px;
  font-size: 13px; color: var(--ink-soft);
}
.q-prompt .q { font-style: italic; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 40px 80px;
  display: flex; align-items: center;
  background: var(--paper);
  overflow: hidden;
}
.hero-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 500px at 85% 20%, rgba(242,135,45,0.16), transparent 60%),
    radial-gradient(900px 600px at 10% 85%, rgba(14,42,92,0.10), transparent 60%),
    radial-gradient(500px 400px at 60% 60%, rgba(45,168,74,0.10), transparent 60%);
  z-index: 0;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(14,42,92,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,42,92,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  z-index: 0;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  width: 100%;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
  padding: 8px 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(12px);
}
.eyebrow .star { color: var(--orange); font-size: 14px; }
.hero h1 {
  font-size: clamp(48px, 6.4vw, 96px);
  margin-top: 24px;
  color: var(--navy);
}
.hero h1 .ink-soft { color: var(--ink-soft); }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--orange) 0%, var(--orange-2) 50%, var(--orange) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shine 6s linear infinite;
}
.hero h1 .accent-green {
  background: linear-gradient(120deg, var(--green) 0%, var(--green-2) 50%, var(--green) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: shine 6s linear infinite;
}
@keyframes shine { to { background-position: 200% center; } }

.hero-sub {
  margin-top: 28px; font-size: 19px; line-height: 1.55;
  color: var(--ink-soft); max-width: 760px;
}
.hero-actions { margin-top: 40px; display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px; border-radius: 999px;
  font-size: 15px; font-weight: 600;
  transition: all .25s ease;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--navy); color: var(--paper);
}
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, var(--orange), var(--orange-2));
  transform: translateX(-101%);
  transition: transform .4s ease;
}
.btn-primary span { position: relative; z-index: 1; transition: color .3s; }
.btn-primary:hover::before { transform: translateX(0); }
.btn-primary:hover span { color: white; }
.btn-wa {
  background: var(--whatsapp); color: white;
}
.btn-wa:hover { background: var(--whatsapp-2); transform: translateY(-1px); box-shadow: 0 8px 20px rgba(37,211,102,0.35); }
.btn-ghost {
  background: transparent; color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: var(--paper); }
.btn .arr { transition: transform .25s; }
.btn:hover .arr { transform: translateX(4px); }
.btn svg { width: 18px; height: 18px; }

.hero-stats {
  margin-top: 56px; display: flex; gap: 48px;
}
.hero-stat .num {
  font-family: 'Sora', sans-serif;
  font-size: 38px; font-weight: 700; color: var(--navy);
  line-height: 1;
}
.hero-stat .num .pct { color: var(--green); }
.hero-stat .lbl {
  font-size: 12px; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-soft); margin-top: 6px;
}

/* Hero visual */
.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
}
.card-float {
  position: absolute;
  background: white;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  padding: 24px;
}
.card-main {
  inset: 0;
  display: flex; flex-direction: column;
  background: linear-gradient(180deg, white, var(--paper-2));
}
.card-header { display: flex; align-items: center; justify-content: space-between; }
.card-tag {
  font-size: 11px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 600;
}
.card-arrow-up {
  display: inline-flex; gap: 4px; align-items: center;
  background: rgba(45,168,74,0.14); color: var(--green);
  padding: 4px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
}
.card-title {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 28px; color: var(--navy); margin-top: 14px;
  letter-spacing: -.02em;
}
.card-sub { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }

.bars {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 8px; align-items: end;
  margin-top: 28px; height: 160px;
}
.bar {
  background: linear-gradient(180deg, var(--green), var(--green-2));
  border-radius: 6px 6px 2px 2px;
  position: relative;
  transform-origin: bottom;
  animation: barRise 1s cubic-bezier(.2,.8,.2,1) both;
}
.bar.navy { background: linear-gradient(180deg, var(--navy), var(--navy-2)); }
.bar.orange { background: linear-gradient(180deg, var(--orange), var(--orange-2)); }
@keyframes barRise { from { transform: scaleY(0); } to { transform: scaleY(1); } }

.card-meta {
  margin-top: auto; padding-top: 20px;
  border-top: 1px dashed var(--line);
  display: flex; justify-content: space-between;
}
.card-meta .k { font-size: 11px; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .1em; }
.card-meta .v { font-family: 'Sora', sans-serif; font-weight: 700; color: var(--navy); margin-top: 4px; font-size: 18px; }
.card-meta .v.green { color: var(--green); }

.card-badge {
  top: -28px; right: -28px;
  width: 150px;
  padding: 16px;
  background: var(--navy);
  color: var(--paper);
  animation: floatY 5s ease-in-out infinite;
}
.card-badge .num { font-family: 'Sora', sans-serif; font-size: 32px; font-weight: 700; color: var(--orange); }
.card-badge .num .pct { font-size: 22px; }
.card-badge .lbl { font-size: 11px; letter-spacing: .1em; text-transform: uppercase; opacity: .8; margin-top: 4px; }

.card-pill {
  bottom: -20px; left: -32px;
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px;
  border-radius: 999px;
  animation: floatY 6s ease-in-out -2s infinite;
}
.card-pill .check {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--green); display: grid; place-items: center;
  color: white; font-weight: 700; font-size: 14px;
}
.card-pill .txt { font-size: 13px; font-weight: 600; color: var(--navy); }
.card-pill .sub { font-size: 11px; color: var(--ink-soft); }
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* === MARQUEE === */
.marquee {
  background: var(--navy);
  color: var(--paper);
  padding: 22px 0;
  overflow: hidden;
  position: relative;
  border-block: 1px solid rgba(255,255,255,0.1);
}
.marquee-track {
  display: flex; gap: 56px;
  animation: scroll 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-item {
  font-family: 'Sora', sans-serif; font-weight: 600;
  font-size: 28px; letter-spacing: -.01em;
  display: inline-flex; align-items: center; gap: 56px;
}
.marquee-item .star { color: var(--orange); font-size: 18px; }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* === SECTION === */
section { padding: 120px 40px; position: relative; }
.container { max-width: 1280px; margin: 0 auto; }
.section-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  margin-bottom: 64px; align-items: end;
}
.about .section-head { grid-template-columns: 1fr; }
.section-tag {
  font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--orange); font-weight: 700;
  display: inline-flex; align-items: center; gap: 10px;
}
.section-tag .dash { width: 28px; height: 1px; background: var(--orange); }
.section-head h2 {
  font-size: clamp(36px, 4.4vw, 64px);
  margin-top: 16px; color: var(--navy);
}
.section-head p { font-size: 17px; color: var(--ink-soft); line-height: 1.6; max-width: 480px; }

/* === ABOUT === */
.about { background: var(--paper); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: start;
}
.about-mission {
  font-family: 'Sora', sans-serif; font-weight: 600;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.3; color: var(--navy);
  letter-spacing: -.01em;
}
.about-mission .accent { color: var(--orange); }
.about-body { margin-top: 28px; font-size: 16px; color: var(--ink-soft); line-height: 1.7; }
.about-body + .about-body { margin-top: 18px; }
.about-serves { margin-top: 32px; }
.about-serves-title {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: .15em; text-transform: uppercase;
  color: var(--orange); margin-bottom: 14px;
}
.about-serves-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.serves-chip {
  display: inline-flex; align-items: center;
  padding: 8px 14px; border-radius: 999px;
  border: 1px solid var(--line); background: white;
  font-size: 13px; font-weight: 600; color: var(--navy);
}
.value-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px;
}
.value-card {
  background: white; border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px;
  transition: transform .3s, box-shadow .3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-num {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 16px; color: var(--orange);
  letter-spacing: .1em;
}
.value-title {
  font-family: 'Sora', sans-serif; font-weight: 600;
  font-size: 22px; color: var(--navy); margin-top: 18px;
  letter-spacing: -.01em;
}
.value-desc { font-size: 15px; color: var(--ink-soft); margin-top: 12px; line-height: 1.6; }

/* === SERVICES === */
.services { background: var(--paper-2); }
.services-grid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
.service-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--accent, var(--navy));
  transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.service-card:hover::before { transform: scaleX(1); }

.svc-cat-1 { grid-column: span 6; --accent: var(--navy); }
.svc-cat-2 { grid-column: span 6; --accent: var(--green); }
.svc-cat-3 { grid-column: span 6; --accent: var(--orange); }
.svc-cat-4 { grid-column: span 6; --accent: var(--navy); }
.svc-cat-5 { grid-column: span 6; --accent: var(--green); }
.svc-cat-8 { grid-column: span 6; --accent: var(--navy); }
.svc-cat-9 { grid-column: span 6; --accent: var(--green); }
.svc-cat-6 { grid-column: span 6; --accent: var(--orange); }
.svc-cat-7 { grid-column: span 12; --accent: var(--orange); }

.svc-head { display: flex; align-items: center; gap: 14px; margin-bottom: 14px; }
.svc-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--accent);
  display: grid; place-items: center;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 13px;
  letter-spacing: -.02em;
}
.svc-title {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 22px; color: var(--navy); letter-spacing: -.01em;
}
.svc-savings {
  display: inline-flex; align-items: baseline; gap: 6px;
  margin: 4px 0 18px;
  padding: 6px 12px;
  background: linear-gradient(135deg, rgba(45,168,74,0.10), rgba(45,168,74,0.04));
  border: 1px solid rgba(45,168,74,0.25);
  border-radius: 999px;
  align-self: flex-start;
}
.svc-savings .pct {
  font-family: 'Sora', sans-serif; font-weight: 800;
  color: var(--green); font-size: 18px; letter-spacing: -.02em;
}
.svc-savings .txt { font-size: 12px; color: var(--ink-soft); font-weight: 500; }

.svc-rows { display: flex; flex-direction: column; }
.svc-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line);
  gap: 16px;
}
.svc-row:last-child { border-bottom: 0; }
.svc-row .label { font-size: 14px; font-weight: 700; color: var(--ink); flex: 1; }
.svc-row .label .sub { display: block; font-size: 12px; font-weight: 400; color: var(--ink-soft); margin-top: 2px; }
.svc-row .check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(45,168,74,0.12); color: var(--green);
  display: grid; place-items: center; flex-shrink: 0;
  font-size: 11px; font-weight: 700;
}

.svc-subhead {
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase;
  color: var(--accent); font-weight: 700; margin: 14px 0 4px;
}
.svc-foot {
  margin-top: auto; padding-top: 18px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  flex-wrap: wrap;
}
.svc-foot .q-text { font-size: 13px; color: var(--ink-soft); font-style: italic; }

/* Bundled card - same palette as other cards */
.svc-bundled .bundled-inner {
  display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
}
.svc-bundled p { font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin-top: 14px; }
.svc-bundled .quote {
  font-family: 'Sora', sans-serif; font-style: italic;
  font-size: 22px; color: var(--orange);
  line-height: 1.3; letter-spacing: -.01em;
}
/* === WHY === */
.why { background: var(--navy); color: var(--paper); }
.why .section-tag { color: var(--orange); }
.why .section-tag .dash { background: var(--orange); }
.why .section-head h2 { color: var(--paper); }
.why .section-head p { color: rgba(255,255,255,0.75); }
.why-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.why-card {
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  position: relative;
  transition: background .3s, transform .3s;
  background: rgba(255,255,255,0.03);
}
.why-card:hover { background: rgba(255,255,255,0.07); transform: translateY(-4px); }
.why-num {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: 56px; color: var(--orange);
  letter-spacing: -.04em; line-height: 1;
}
.why-num .pct, .why-num .x { font-size: 28px; opacity: .85; margin-left: 2px; }
.why-num.green { color: var(--green-2); }
.why-card h4 {
  font-family: 'Sora', sans-serif; font-weight: 600;
  font-size: 18px; margin-top: 20px; letter-spacing: -.01em;
}
.why-card p { font-size: 14px; color: rgba(255,255,255,0.65); margin-top: 8px; line-height: 1.5; }

.why-cta {
  margin-top: 56px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  padding: 28px 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg);
}
.why-cta .q { font-family: 'Sora', sans-serif; font-size: 18px; font-weight: 600; color: white; }
.why-cta .q span { color: var(--orange); }

/* === CONTACT === */
.contact { background: var(--paper); }
.contact-grid {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 60px;
}
.contact-card {
  background: linear-gradient(135deg, var(--navy), var(--navy-deep));
  color: var(--paper);
  border-radius: var(--r-xl);
  padding: 56px 48px;
  position: relative; overflow: hidden;
}
.contact-card::after {
  content: ""; position: absolute; right: -100px; bottom: -100px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(242,135,45,0.3), transparent 70%);
  filter: blur(20px);
}
.contact-card .label-sm { font-size: 12px; letter-spacing: .15em; text-transform: uppercase; color: var(--orange); font-weight: 700; }
.contact-card h3 {
  font-family: 'Sora', sans-serif; font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  margin-top: 18px; letter-spacing: -.02em; line-height: 1.1;
}
.contact-rows { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; position: relative; z-index: 2; }
.contact-row { display: flex; align-items: center; gap: 18px; }
.contact-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: grid; place-items: center;
  color: var(--orange);
}
.contact-row .k { font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.contact-row .v { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 18px; margin-top: 2px; color: white; }
.contact-row .v.phone { font-size: 28px; color: var(--orange); letter-spacing: -.01em; }
.contact-row .v.wa { color: var(--green-2); }

.contact-actions { margin-top: 32px; display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 2; }

.form-card {
  background: white; border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-card h4 { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 22px; color: var(--navy); letter-spacing: -.01em; }
.form-card p { font-size: 14px; color: var(--ink-soft); margin-top: 8px; }
.field { margin-top: 20px; }
.field label { display: block; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-soft); font-weight: 600; }
.field input, .field select, .field textarea {
  width: 100%; margin-top: 8px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  font-family: inherit; font-size: 15px; color: var(--ink);
  background: var(--paper-2);
  transition: border .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy); background: white;
}
.field textarea { resize: vertical; min-height: 90px; }
.form-buttons { display: flex; gap: 10px; margin-top: 24px; }
.form-buttons .btn { flex: 1; justify-content: center; }
.form-success {
  margin-top: 16px; padding: 14px 16px; border-radius: var(--r-sm);
  background: rgba(45,168,74,0.10); color: var(--green); font-size: 14px; font-weight: 500;
  display: none;
}
.form-success.show { display: block; animation: fadeIn .4s ease; }

/* === FOOTER === */
.footer {
  background: var(--navy-deep); color: rgba(255,255,255,0.7);
  padding: 60px 40px 30px;
}
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer .logo-text .l1 { color: var(--paper); }
.footer .logo-text .l2 { color: rgba(255,255,255,0.5); }
.footer-tag { margin-top: 20px; font-size: 14px; line-height: 1.6; max-width: 320px; }
.footer-wa {
  margin-top: 18px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; background: var(--whatsapp); color: white;
  border-radius: 999px; font-size: 13px; font-weight: 600;
  transition: background .2s, transform .2s;
}
.footer-wa:hover { background: var(--whatsapp-2); transform: translateY(-1px); }
.footer-wa svg { width: 16px; height: 16px; }
.footer h5 { font-family: 'Sora', sans-serif; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--paper); font-weight: 700; }
.footer ul { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; transition: color .2s; }
.footer ul a:hover { color: var(--orange); }
.footer-bottom {
  max-width: 1280px; margin: 0 auto;
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,0.5);
}

/* === REVEAL ANIMATIONS === */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-stagger > * { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: .05s; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: .12s; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: .19s; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: .26s; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: .33s; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: .40s; }
.reveal-stagger.in > *:nth-child(7) { transition-delay: .47s; }

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Language fade */
.lang-fade { animation: langFade .5s ease; }
@keyframes langFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }

/* === RESPONSIVE === */
/* === Mobile nav toggle (hidden by default; revealed in media query) === */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 0; cursor: pointer;
  padding: 10px; margin-left: 4px;
  flex-direction: column; justify-content: space-between;
  position: relative; z-index: 110;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--navy); border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(10px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-10px) rotate(-45deg); }

.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0;
  background: white; z-index: 99;
  padding: 96px 24px 32px;
  display: flex; flex-direction: column; gap: 4px;
  transform: translateY(-100%);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  max-height: 100vh; overflow-y: auto;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu-backdrop {
  position: fixed; inset: 0;
  background: rgba(14, 42, 92, 0.32);
  z-index: 90;
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.mobile-menu-backdrop.open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: 'Sora', sans-serif;
  font-size: 20px; font-weight: 700; color: var(--navy);
  padding: 14px 8px; border-bottom: 1px solid var(--line);
}
.mobile-menu a:last-of-type { border-bottom: 0; }
.mobile-menu .m-cta {
  border-bottom: 0; margin-top: 8px; text-align: center;
  border-radius: 999px; padding: 14px 18px; font-size: 15px;
}
.mobile-menu .m-call { background: var(--navy); color: white; }
.mobile-menu .m-wa { background: var(--green); color: white; }
body.menu-open { overflow: hidden; }

@media (max-width: 980px) {
  .nav { padding: 8px 18px; }
  .nav.scrolled { padding: 6px 18px; }
  .nav-links { display: none; }
  .nav-right .cta-wa-nav span:not(.dot) { display: none; }
  .nav-right .cta-wa-nav { padding: 10px 12px; }
  .nav-right .cta-call { display: none; }
  .nav-toggle { display: flex; }
  .logo-img { height: 64px; }
  .nav.scrolled .logo-img { height: 52px; }
  .logo { gap: 10px; }
  .logo-text .l1 { font-size: 22px; }
  .logo-text .l2 { font-size: 11px; letter-spacing: .15em; }

  .hero { padding: 110px 20px 64px; }
  .hero h1 { font-size: clamp(40px, 8.4vw, 64px); margin-top: 18px; line-height: 1.1; }
  .hero-sub { font-size: 16px; margin-top: 20px; }
  .hero-actions { margin-top: 28px; gap: 10px; }
  .hero-actions .btn { padding: 14px 22px; font-size: 14px; }
  .hero-stats { margin-top: 44px; gap: 24px; flex-wrap: wrap; }
  .hero-stat .num { font-size: 32px; }

  section { padding: 64px 20px; }
  .section-head { grid-template-columns: 1fr !important; gap: 16px; margin-bottom: 40px; }
  .section-head h2 { font-size: clamp(28px, 6.6vw, 44px); margin-top: 10px; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-body { font-size: 15px; line-height: 1.65; }
  .about-mission { font-size: clamp(20px, 5vw, 26px); }
  .value-grid { gap: 14px; }
  .value-card { padding: 24px; }
  .value-title { font-size: 19px; margin-top: 14px; }
  .value-desc { font-size: 14px; }
  .about-serves { margin-top: 24px; }
  .serves-chip { font-size: 12px; padding: 7px 12px; }

  .services-grid > * { grid-column: span 12 !important; }
  .service-card { padding: 24px; }
  .svc-title { font-size: 22px; }
  .svc-bundled .bundled-inner { grid-template-columns: 1fr; gap: 20px; }
  .svc-bundled .quote { font-size: 18px; }

  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-card { padding: 24px; }

  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .contact-card { padding: 32px 24px; }
  .form-card { padding: 24px; }
  .form-card input, .form-card select, .form-card textarea {
    font-size: 16px; /* prevents iOS zoom on focus */
  }
  .form-buttons .btn { width: 100%; justify-content: center; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .wa-fab { width: 54px; height: 54px; bottom: 18px; right: 18px; }
  .wa-fab svg { width: 26px; height: 26px; }
}

@media (max-width: 540px) {
  .nav { padding: 6px 14px; }
  .logo-img { height: 54px; }
  .nav.scrolled .logo-img { height: 44px; }
  .logo { gap: 8px; }
  .logo-text .l1 { font-size: 18px; }
  .logo-text .l2 { font-size: 9px; letter-spacing: .14em; margin-top: 3px; }
  .nav-right .cta-wa-nav { display: none; }

  .hero { padding: 96px 18px 48px; }
  .hero h1 { font-size: clamp(36px, 9.4vw, 52px); }
  .hero-stats { gap: 18px 28px; }
  .hero-stat { min-width: 0; }
  .hero-stat .num { font-size: 28px; }
  .hero-stat .lbl { font-size: 12px; }

  section { padding: 56px 18px; }

  .value-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }

  .service-card { padding: 22px; }
  .svc-head { gap: 12px; }
  .svc-icon { width: 44px; height: 44px; font-size: 13px; }
  .svc-title { font-size: 20px; }
  .svc-row { padding: 12px 0; }
  .svc-row .label { font-size: 13.5px; }
  .svc-savings .pct { font-size: 28px; }

  .contact-row { gap: 12px; }
  .contact-icon { width: 36px; height: 36px; }

  .mobile-menu a { font-size: 18px; padding: 13px 6px; }
}
