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

:root {
  --brand:       #21559F;
  --brand-dark:  #224878;
  --brand-mid:   #21559F;
  --brand-50:    #F2F5F9;
  --brand-100:   #D7E0EE;
  --brand-200:   #ABBEDB;
  --brand-rgb:   33,85,159;
  --accent:      #4282B4;
  --accent-dark: #2E5B7E;
  --accent-50:   #ECF2F8;
  --accent-100:  #B3CDE1;
  --accent-rgb:  66,130,180;
  --dark-bg:     #1B3A60;
  --dark-bg-rgb: 27,58,96;
  --dark-footer: #132842;
  --bg:          #fafaf9;
  --surface:     #ffffff;
  --text:        #0f172a;
  --text-2:      #334155;
  --muted:       #64748b;
  --muted-2:     #94a3b8;
  --border:      #e2e8f0;
  --border-2:    #f1f5f9;
  --ease-out:    cubic-bezier(0.23, 1, 0.32, 1);
  --ease-spring: cubic-bezier(0.32, 0.72, 0, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg); color: var(--text);
  line-height: 1.6; font-size: 16px;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}

/* ── SCROLL PROGRESS ── */
.scroll-bar {
  position: fixed; top: 0; left: 0; height: 2.5px;
  background: var(--brand); z-index: 300;
  transform-origin: left; transform: scaleX(0); pointer-events: none;
}

/* ── BACK TO TOP ── */
.back-to-top {
  position: fixed; left: 24px; bottom: 24px; z-index: 95;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--brand); color: white; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(var(--brand-rgb), 0.32);
  opacity: 0; transform: translate3d(0, 14px, 0) scale(0.9);
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.back-to-top.visible { opacity: 1; transform: translate3d(0, 0, 0) scale(1); pointer-events: all; }
.back-to-top:hover { background: var(--brand-dark); box-shadow: 0 10px 30px rgba(var(--brand-rgb), 0.42); }
.back-to-top.visible:hover { transform: translate3d(0, -3px, 0) scale(1.05); }
.back-to-top:active { transform: translate3d(0, 0, 0) scale(0.94); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 95;
  width: 48px; height: 48px; border-radius: 50%;
  background: #25D366; color: white; border: none; text-decoration: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: transform 0.35s var(--ease-out), background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.whatsapp-float:hover { background: #1EBE5A; box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5); transform: translate3d(0, -3px, 0) scale(1.05); }
.whatsapp-float:active { transform: translate3d(0, 0, 0) scale(0.94); }

/* ── NAV ── */
.nav-wrapper {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: center;
  padding: 14px 20px; pointer-events: none;
  transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease-out);
}
.nav-wrapper.nav-hidden { transform: translateY(-110%); opacity: 0; }
nav {
  pointer-events: all; display: flex; align-items: center;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(22px); -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.65); border-radius: 100px;
  padding: 7px 7px 7px 20px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04) inset, 0 4px 28px rgba(0,0,0,0.08);
  max-width: 820px; width: 100%; gap: 4px;
}
.nav-logo { display: flex; align-items: center; gap: 8px; font-weight: 800; font-size: 14px; color: var(--text); text-decoration: none; letter-spacing: -0.2px; flex-shrink: 0; margin-right: 8px; }
.nav-logo-badge { width: 28px; height: 28px; background: var(--brand); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: 11px; font-weight: 800; }
.nav-logo-sep { color: var(--muted-2); font-size: 12px; font-weight: 400; margin: 0 1px; }
.nav-vittal-logo { height: 26px; width: auto; object-fit: contain; }
.nav-links { display: flex; list-style: none; gap: 2px; flex: 1; }
.nav-links a { font-size: 13.5px; color: var(--muted); text-decoration: none; padding: 6px 13px; border-radius: 100px; transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out); font-weight: 500; white-space: nowrap; }
.nav-links a:hover { color: var(--text); background: rgba(0,0,0,0.045); }
.nav-cta { background: var(--brand); color: white; border: none; padding: 9px 18px; border-radius: 100px; font-size: 13.5px; font-weight: 600; cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; gap: 6px; font-family: inherit; flex-shrink: 0; transition: background 0.35s var(--ease-out), transform 0.3s var(--ease-out); }
.nav-cta:hover { background: var(--brand-dark); transform: scale(1.02); }
.nav-cta:active { transform: scale(0.97); }

/* Hamburger */
.nav-burger { display: none; background: none; border: none; cursor: pointer; padding: 8px; border-radius: 8px; flex-direction: column; gap: 5px; align-items: center; transition: background 0.2s; }
.nav-burger:hover { background: rgba(0,0,0,0.05); }
.nav-burger span { display: block; width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s var(--ease-out), opacity 0.3s var(--ease-out); transform-origin: center; }
.nav-burger.open span:nth-child(1) { transform: translate(0, 7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translate(0, -7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 90; background: rgba(255,255,255,0.97); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s var(--ease-out); }
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; padding: 20px; }
.mobile-link { font-size: clamp(28px, 8vw, 40px); font-weight: 800; color: var(--text); text-decoration: none; letter-spacing: -1px; padding: 6px 16px; border-radius: 12px; opacity: 0; transform: translate3d(0, 12px, 0); transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out), color 0.2s; }
.mobile-link:hover { color: var(--brand); }
.mobile-menu.open .mobile-link { opacity: 1; transform: translate3d(0,0,0); }
.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: 0.04s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: 0.09s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: 0.14s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: 0.19s; }
.mobile-cta { margin-top: 16px; background: var(--brand); color: white; font-size: 16px; font-weight: 700; padding: 15px 36px; border-radius: 100px; text-decoration: none; font-family: inherit; opacity: 0; transform: translate3d(0, 10px, 0); transition: opacity 0.3s 0.22s var(--ease-out), transform 0.3s 0.22s var(--ease-out), background 0.2s; }
.mobile-cta:hover { background: var(--brand-dark); }
.mobile-menu.open .mobile-cta { opacity: 1; transform: translate3d(0,0,0); }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translate3d(0, 26px, 0); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); will-change: opacity, transform; }
.reveal.visible { opacity: 1; transform: translate3d(0, 0, 0); will-change: auto; }
.reveal-d1 { transition-delay: 0.07s; }
.reveal-d2 { transition-delay: 0.14s; }
.reveal-d3 { transition-delay: 0.21s; }
.reveal-d4 { transition-delay: 0.28s; }
.reveal-d5 { transition-delay: 0.35s; }
.reveal-d6 { transition-delay: 0.42s; }
.reveal-d7 { transition-delay: 0.49s; }
.reveal-d8 { transition-delay: 0.56s; }

/* ── HERO ── */
.hero-section { background: var(--bg); position: relative; }
.hero-section::before { content: ''; position: absolute; top: 0; right: 0; width: 55%; height: 100%; background: radial-gradient(ellipse at 70% 30%, rgba(var(--brand-rgb),0.055) 0%, transparent 65%); pointer-events: none; }
.hero-section::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent); }
.hero { min-height: 100svh; padding: 120px 6% 80px; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center; max-width: 1400px; margin: 0 auto; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 7px; background: var(--brand-50); border: 1px solid var(--brand-100); color: var(--brand-mid); font-size: 11px; font-weight: 700; padding: 5px 13px; border-radius: 100px; letter-spacing: 0.8px; text-transform: uppercase; margin-bottom: 20px; }
.hero-eyebrow-dot { width: 6px; height: 6px; background: var(--brand); border-radius: 50%; }
.hero h1 { font-size: clamp(30px, 4vw, 52px); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; color: var(--text); margin-bottom: 18px; }
.hero h1 em { font-style: normal; }
.hero-sub { font-size: 16.5px; color: var(--muted); line-height: 1.75; max-width: 460px; margin-bottom: 32px; }
.btn-island { display: inline-flex; align-items: center; gap: 10px; background: var(--brand); color: white; text-decoration: none; padding: 13px 13px 13px 22px; border-radius: 100px; font-size: 15px; font-weight: 700; font-family: inherit; border: none; cursor: pointer; letter-spacing: -0.1px; transition: background 0.35s var(--ease-out), transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out); }
.btn-island:hover { background: var(--brand-dark); transform: scale(1.02); box-shadow: 0 8px 28px rgba(var(--brand-rgb),0.28); }
.btn-island:active { transform: scale(0.97); }
.btn-icon-wrap { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.18); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.35s var(--ease-out); }
.btn-island:hover .btn-icon-wrap { transform: translateX(1px) translateY(-1px) scale(1.1); }
.hero-cta-group { display: flex; align-items: center; gap: 12px; margin-bottom: 36px; flex-wrap: wrap; }
.hero-checks { display: grid; grid-template-columns: 1fr 1fr; gap: 7px 20px; }
.check-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: var(--text-2); }
.check-dot { width: 18px; height: 18px; background: var(--accent-50); border: 1.5px solid var(--accent-100); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: var(--accent-dark); font-size: 9.5px; font-weight: 900; }
.hero-visual { display: flex; justify-content: center; align-items: center; }

/* Hero card */
.dbl-bezel { background: rgba(var(--brand-rgb),0.04); border: 1px solid rgba(var(--brand-rgb),0.1); padding: 6px; border-radius: 28px; width: 100%; max-width: 340px; box-shadow: 0 24px 64px rgba(0,0,0,0.07); }
.dbl-bezel-inner { background: var(--surface); border-radius: 22px; border: 1px solid rgba(255,255,255,0.9); box-shadow: inset 0 1px 0 white; overflow: hidden; }
.card-header { padding: 20px 20px 14px; border-bottom: 1px solid var(--border-2); }
.card-user { display: flex; align-items: center; gap: 11px; margin-bottom: 12px; }
.card-avatar { width: 38px; height: 38px; background: var(--brand-50); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 17px; flex-shrink: 0; }
.card-user-info strong { display: block; font-size: 13.5px; font-weight: 700; color: var(--text); line-height: 1.3; }
.card-user-info span { font-size: 11.5px; color: var(--muted); }
.active-badge { margin-left: auto; background: #dcfce7; color: #166534; font-size: 10.5px; font-weight: 700; padding: 3px 9px; border-radius: 100px; flex-shrink: 0; }
.plan-tag { display: inline-block; background: var(--brand-50); border: 1px solid var(--brand-100); color: var(--brand-mid); font-size: 11.5px; font-weight: 600; padding: 4px 11px; border-radius: 7px; }
.service-list { padding: 12px 16px; display: flex; flex-direction: column; gap: 5px; }
.svc-row { display: flex; align-items: center; gap: 10px; padding: 9px 11px; border-radius: 10px; background: var(--bg); border: 1px solid var(--border-2); font-size: 13px; font-weight: 600; color: var(--text); transition: background 0.2s, border-color 0.2s; cursor: default; }
.svc-row:hover { background: var(--brand-50); border-color: var(--brand-100); }
.svc-icon { width: 28px; height: 28px; background: white; border-radius: 7px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; }
.svc-arrow { margin-left: auto; color: var(--muted-2); font-size: 13px; }
.card-foot { padding: 12px 20px 16px; border-top: 1px solid var(--border-2); display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.card-foot-text { font-size: 10.5px; color: var(--muted-2); }
.card-foot-text strong { display: block; font-size: 12.5px; font-weight: 700; color: var(--text); }
.card-emergency-btn { background: #fef2f2; border: 1px solid #fecaca; color: #b91c1c; font-size: 11.5px; font-weight: 700; padding: 7px 13px; border-radius: 100px; cursor: pointer; font-family: inherit; white-space: nowrap; flex-shrink: 0; transition: background 0.2s, transform 0.2s; }
.card-emergency-btn:hover { background: #fee2e2; transform: scale(1.02); }

/* ── TRUST BAND ── */
.trust-band { padding: 20px 6%; border-bottom: 1px solid var(--border); background: var(--surface); overflow: hidden; }
.trust-inner { display: flex; align-items: center; justify-content: center; max-width: 1140px; margin: 0 auto; }
.trust-logos { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; }
.trust-logo-item { display: flex; align-items: center; height: 32px; opacity: 0.45; transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out); text-decoration: none; }
.trust-logo-item:hover { opacity: 0.88; transform: scale(1.04); }
.trust-logo-item img { height: 100%; width: auto; max-width: 140px; object-fit: contain; }
.trust-logo-item.tall { height: 42px; }

/* ── GENERAL ── */
.section { padding: 96px 6%; }
.container { max-width: 1140px; margin: 0 auto; }
h2.section-title { font-size: clamp(26px, 3vw, 42px); font-weight: 800; line-height: 1.1; letter-spacing: -1px; color: var(--text); margin-bottom: 14px; }
.section-sub { font-size: 16px; color: var(--muted); line-height: 1.8; }

/* ── BENTO ── */
.why-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 44px; }
.why-desc { font-size: 15.5px; color: var(--muted); line-height: 1.8; }
.bento-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; }
.bento-card { background: var(--surface); border: 1px solid var(--border); border-radius: 18px; padding: 26px; overflow: hidden; transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), transform 0.25s var(--ease-out); }
.bento-card:hover { border-color: var(--brand-100); box-shadow: 0 8px 32px rgba(var(--brand-rgb),0.07); transform: translateY(-2px); }
.bento-card.dark { background: var(--dark-bg); border-color: rgba(255,255,255,0.06); }
.bento-card.dark .bento-icon { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.18); color: white; }
.bento-card.dark:hover { border-color: rgba(var(--accent-rgb),0.25); box-shadow: 0 8px 32px rgba(0,0,0,0.18); }
.b-main  { grid-column: span 7; grid-row: span 2; min-height: 280px; }
.b-top   { grid-column: span 5; }
.b-stat1 { grid-column: span 5; }
.b-a     { grid-column: span 4; }
.b-b     { grid-column: span 4; }
.b-c     { grid-column: span 4; }
.bento-icon { width: 42px; height: 42px; background: var(--accent-50); border: 1px solid var(--accent-100); border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 19px; margin-bottom: 14px; color: var(--accent-dark); }
.bento-icon svg { width: 20px; height: 20px; }
.bento-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.3px; line-height: 1.25; }
.bento-card p { font-size: 13.5px; color: var(--muted); line-height: 1.7; }
.bento-stat { display: flex; flex-direction: column; justify-content: flex-end; height: 100%; min-height: 120px; }
.bento-stat .num { font-size: 52px; font-weight: 800; color: var(--accent); letter-spacing: -2.5px; line-height: 1; margin-bottom: 6px; }
.bento-stat .lbl { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 500; }

/* ── BENEFITS ── */
.benefits-section { background: var(--bg); }
.benefits-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin-top: 44px; }
.benefit-item { flex: 0 0 calc(25% - 7.5px); min-width: 200px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 18px 16px; display: flex; gap: 13px; align-items: flex-start; transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s var(--ease-out); }
.benefit-item:hover { border-color: var(--brand-100); box-shadow: 0 4px 16px rgba(var(--brand-rgb),0.06); transform: translateY(-1px); }
.benefit-emoji-wrap { width: 36px; height: 36px; background: var(--brand-50); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 16px; flex-shrink: 0; }
.benefit-item h3 { font-size: 13.5px; font-weight: 700; margin-bottom: 3px; color: var(--text); }
.benefit-item p { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* ── TABLE ── */
.plans-section { background: var(--surface); }
.plans-head { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 40px; }
.table-outer { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: 18px; }
.table-wrap { border: 1px solid var(--border); border-radius: 18px; overflow: hidden; min-width: 560px; }
table { width: 100%; border-collapse: collapse; font-size: 14px; }
thead tr { background: var(--text); }
th { padding: 15px 18px; text-align: center; font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); }
th:first-child { text-align: left; color: rgba(255,255,255,0.38); font-size: 10.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.8px; width: 36%; }
th.featured-col { background: var(--brand); color: white; }
tbody tr { border-bottom: 1px solid var(--border-2); transition: background 0.15s; }
tbody tr:hover { background: var(--bg); }
tbody tr:last-child { border-bottom: none; }
td { padding: 12px 18px; text-align: center; color: var(--text-2); vertical-align: middle; }
td:first-child { text-align: left; font-weight: 600; font-size: 13.5px; color: var(--text); }
td.featured-col { background: rgba(var(--brand-rgb),0.04); }
.check-y { display: inline-flex; width: 22px; height: 22px; background: var(--accent-50); border-radius: 50%; align-items: center; justify-content: center; color: var(--accent-dark); font-size: 11px; font-weight: 900; }
.check-n { color: var(--border); font-size: 18px; }

/* ── PLAN CARDS ── */
.cards-section { background: var(--bg); padding: 96px 6%; }
.cards-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: end; margin-bottom: 40px; }
.plans-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.plan-outer { background: rgba(0,0,0,0.015); border: 1px solid var(--border); padding: 5px; border-radius: 22px; display: flex; flex-direction: column; transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease-out); }
.plan-outer:hover { border-color: var(--brand-200); box-shadow: 0 12px 40px rgba(var(--brand-rgb),0.08); transform: translateY(-3px); }
.plan-outer.featured { background: var(--brand-50); border-color: var(--brand-200); }
.plan-outer.featured:hover { border-color: var(--brand); box-shadow: 0 14px 48px rgba(var(--brand-rgb),0.18); }
.plan-inner { background: var(--surface); border-radius: 17px; border: 1px solid rgba(255,255,255,0.9); box-shadow: inset 0 1px 0 white; overflow: hidden; display: flex; flex-direction: column; flex: 1; }
.plan-head { padding: 22px 22px 16px; border-bottom: 1px solid var(--border-2); }
.plan-badge { display: inline-block; font-size: 10px; font-weight: 800; padding: 3px 10px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 10px; background: var(--brand-50); color: var(--brand-mid); border: 1px solid var(--brand-100); }
.plan-outer.featured .plan-badge { background: var(--brand); color: white; border-color: transparent; }
.plan-head h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.5px; margin-bottom: 5px; }
.plan-head p { font-size: 13px; color: var(--muted); line-height: 1.65; }
.plan-body { padding: 16px 22px 18px; flex: 1; }
.plan-section-label { font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; color: var(--muted-2); margin-bottom: 10px; }
.plan-features { list-style: none; margin-bottom: 14px; }
.plan-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: var(--text-2); padding: 5px 0; border-bottom: 1px solid var(--border-2); font-weight: 500; line-height: 1.45; }
.plan-features li:last-child { border-bottom: none; }
.feat-check { width: 16px; height: 16px; background: var(--accent-50); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 900; color: var(--accent-dark); flex-shrink: 0; margin-top: 1px; }
.plan-legal { font-size: 11px; color: var(--muted-2); line-height: 1.65; margin-bottom: 14px; }
.plan-foot { padding: 0 22px 20px; }
.plan-cta { display: flex; align-items: center; justify-content: space-between; padding: 11px 11px 11px 18px; border-radius: 100px; text-decoration: none; font-weight: 700; font-size: 13.5px; transition: all 0.35s var(--ease-out); font-family: inherit; border: none; cursor: pointer; }
.plan-cta-ghost { background: var(--bg); color: var(--text); border: 1px solid var(--border); }
.plan-cta-ghost:hover { background: var(--brand-50); border-color: var(--brand-100); transform: scale(1.01); }
.plan-cta-solid { background: var(--brand); color: white; border: 1px solid transparent; }
.plan-cta-solid:hover { background: var(--brand-dark); transform: scale(1.01); box-shadow: 0 6px 20px rgba(var(--brand-rgb),0.3); }
.plan-cta:active { transform: scale(0.97); }
.cta-arrow { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 15px; flex-shrink: 0; transition: transform 0.35s var(--ease-out); }
.plan-cta-ghost .cta-arrow { background: var(--border); color: var(--muted); }
.plan-cta:hover .cta-arrow { transform: translateX(2px) translateY(-1px); }

/* ── PROCESS ── */
.process-section { background: var(--dark-bg); padding: 96px 6%; position: relative; overflow: hidden; }
.process-section::before { content: ''; position: absolute; top: -40%; left: 50%; transform: translateX(-50%); width: 70%; height: 100%; background: radial-gradient(ellipse at top, rgba(var(--accent-rgb),0.09) 0%, transparent 60%); pointer-events: none; }
.process-section h2.section-title { color: white; }
.process-section .section-sub { color: rgba(255,255,255,0.5); max-width: 460px; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 52px; background: rgba(255,255,255,0.06); border-radius: 18px; overflow: hidden; }
.step { background: rgba(255,255,255,0.025); padding: 36px 30px; transition: background 0.25s; }
.step:hover { background: rgba(255,255,255,0.045); }
.step-num { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 18px; display: flex; align-items: center; gap: 8px; }
.step-num::after { content: ''; flex: 1; height: 1px; background: rgba(255,255,255,0.07); }
.step h3 { font-size: 19px; font-weight: 700; color: white; letter-spacing: -0.3px; margin-bottom: 10px; }
.step p { font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.75; }

/* ── STATS ── */
.stats-section { background: var(--surface); }
.stats-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.stats-text h2 { margin-bottom: 14px; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.stat-cell { background: var(--surface); padding: 28px 20px; text-align: center; transition: background 0.2s; }
.stat-cell:hover { background: var(--bg); }
.stat-number { font-size: 38px; font-weight: 800; color: var(--brand); letter-spacing: -2px; line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 12px; color: var(--muted); font-weight: 500; line-height: 1.5; }

/* ── PARTNERS ── */
.partners-section { background: var(--dark-bg); padding: 96px 6%; position: relative; overflow: hidden; }
.partners-section::after { content: ''; position: absolute; bottom: 0; right: -5%; width: 45%; height: 55%; background: radial-gradient(ellipse, rgba(var(--accent-rgb),0.07) 0%, transparent 65%); pointer-events: none; }
.partners-layout { display: flex; justify-content: center; }
.partners-text { max-width: 620px; text-align: center; }
.partners-text h2 { color: white; margin-bottom: 18px; }
.partners-text p { color: rgba(255,255,255,0.55); font-size: 15.5px; line-height: 1.8; margin-bottom: 10px; }

/* ── CTA ── */
.cta-section { background: var(--brand); padding: 100px 6%; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% -10%, rgba(255,255,255,0.14) 0%, transparent 55%); pointer-events: none; }
.cta-section h2 { font-size: clamp(26px, 3.8vw, 46px); font-weight: 800; color: white; letter-spacing: -1px; margin-bottom: 14px; line-height: 1.1; position: relative; }
.cta-section p { font-size: 16.5px; color: rgba(255,255,255,0.78); max-width: 420px; margin: 0 auto 36px; line-height: 1.7; position: relative; }
.cta-btns { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; }
.btn-white-island { display: inline-flex; align-items: center; gap: 10px; background: white; color: var(--brand-dark); text-decoration: none; padding: 13px 13px 13px 22px; border-radius: 100px; font-size: 15px; font-weight: 700; font-family: inherit; transition: all 0.35s var(--ease-out); }
.btn-white-island:hover { transform: scale(1.02); box-shadow: 0 8px 28px rgba(0,0,0,0.18); }
.btn-white-island:active { transform: scale(0.97); }
.btn-white-island .btn-icon-wrap { background: var(--brand-50); }
.btn-ghost-white { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.12); color: white; text-decoration: none; padding: 13px 22px; border-radius: 100px; font-size: 15px; font-weight: 600; border: 1px solid rgba(255,255,255,0.25); font-family: inherit; transition: all 0.35s var(--ease-out); }
.btn-ghost-white:hover { background: rgba(255,255,255,0.2); transform: scale(1.02); }
.cta-section .cta-address { margin-top: 52px; font-size: 13px; color: rgba(255,255,255,0.5); position: relative; }

/* ── FOOTER ── */
footer { background: var(--dark-footer); padding: 56px 6% 26px; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 44px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.06); margin-bottom: 26px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; text-decoration: none; }
.footer-logo-img { height: 26px; width: auto; filter: brightness(0) invert(1); opacity: 0.75; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.38); line-height: 1.75; max-width: 250px; }
.footer-col h4 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: rgba(255,255,255,0.4); margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.32); text-decoration: none; font-weight: 500; transition: color 0.2s; }
.footer-col ul li a:hover { color: rgba(255,255,255,0.72); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; font-size: 12px; color: rgba(255,255,255,0.26); flex-wrap: wrap; gap: 8px; padding-bottom: 56px; }
.footer-credit a { color: rgba(255,255,255,0.4); text-decoration: none; font-weight: 600; transition: color 0.2s; }
.footer-credit a:hover { color: rgba(255,255,255,0.78); }

/* ── HERO PHOTO ── */
.hero-photo-frame {
  width: 100%; max-width: 520px;
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.15), 0 0 0 1px rgba(var(--brand-rgb),0.09);
  aspect-ratio: 4/3; position: relative;
}
.hero-photo { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-photo-badge {
  position: absolute; bottom: 16px; left: 16px;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.8); border-radius: 100px;
  padding: 7px 14px; display: flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; color: var(--text);
  box-shadow: 0 4px 16px rgba(0,0,0,0.10);
}
.hero-photo-badge-dot { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; flex-shrink: 0; }

/* ── BENTO PHOTO BG ── */
.b-main { position: relative; }
.bento-bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 18px; }
.bento-overlay {
  position: relative; z-index: 1;
  background: linear-gradient(to top, rgba(10,4,20,0.90) 0%, rgba(10,4,20,0.5) 55%, rgba(0,0,0,0.12) 100%);
  border-radius: 18px; padding: 26px; height: 100%; min-height: 280px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.bento-overlay h3 { color: white; }
.bento-overlay p { color: rgba(255,255,255,0.62); }
.bento-overlay .bento-icon { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.18); color: white; }

/* ── HERO CINEMATIC DARK ── */
.hero-section { background-color: var(--dark-bg); }
.hero-section::before { background: none; }
.hero-section::after { height: 200px; background: linear-gradient(to top, var(--bg) 0%, transparent 100%); z-index: 3; }
@keyframes heroBgReveal { from { transform: scale(1.07); opacity: 0.6; } to { transform: scale(1); opacity: 1; } }
.hero-bg-photo {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 68% center;
  animation: heroBgReveal 2.4s var(--ease-out) both;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: linear-gradient(108deg, rgba(var(--dark-bg-rgb),0.97) 0%, rgba(var(--dark-bg-rgb),0.93) 32%, rgba(var(--dark-bg-rgb),0.70) 56%, rgba(var(--dark-bg-rgb),0.24) 100%);
}
.hero .hero-content { position: relative; z-index: 2; }
.hero-visual { position: relative; z-index: 2; }
.hero-eyebrow { background: rgba(var(--accent-rgb),0.13); border-color: rgba(var(--accent-rgb),0.24); color: var(--accent-100); }
.hero-eyebrow-dot { background: var(--accent); }
.hero h1 { color: white; }
.hero h1 em { position: relative; color: white; z-index: 1; padding: 0 2px; }
.hero h1 em::before {
  content: '';
  position: absolute;
  left: -6px; right: -7px; top: 10%; bottom: -3%;
  background: #4282b4cf;
  z-index: -1;
  border-radius: 3px 10px 4px 12px;
}
.hero-sub { color: rgba(255,255,255,0.58); }
.hero-checks .check-item { color: rgba(255,255,255,0.70); }
.hero-content > p[style] { color: rgba(255,255,255,0.42) !important; }
.hero-photo-frame { box-shadow: 0 32px 80px rgba(0,0,0,0.55), 0 0 0 1px rgba(255,255,255,0.08); }
.hero-photo-badge { background: rgba(10,5,20,0.88); border-color: rgba(255,255,255,0.10); color: white; }

/* ── BENEFITS BENTO ── */
.benefits-bento { display: grid; grid-template-columns: repeat(12, 1fr); gap: 12px; margin-top: 44px; }
.bb-1 { grid-column: 1 / span 5; grid-row: 1 / span 2; display: flex; flex-direction: column; min-height: 300px; }
.bb-2 { grid-column: 6 / span 4; }
.bb-3 { grid-column: 10 / span 3; }
.bb-4 { grid-column: 6 / span 4; }
.bb-5 { grid-column: 10 / span 3; }
.bb-6 { grid-column: 1 / span 6; }
.bb-7 { grid-column: 7 / span 6; }
.bb-1 .bb-stat { font-size: 58px; font-weight: 800; color: var(--accent); letter-spacing: -3px; line-height: 1; margin-bottom: 10px; }
.bb-1 .bb-title { color: white; font-size: 18px; font-weight: 700; letter-spacing: -0.3px; margin-bottom: 8px; }
.bb-1 .bb-text { font-size: 13px; color: rgba(255,255,255,0.48); line-height: 1.75; }
.bb-2, .bb-3, .bb-5, .bb-6, .bb-7 { min-height: 140px; }

/* ── SECTION PHOTO BACKGROUND ── */
.section-photo-bg { position: relative; overflow: hidden; contain: layout paint; }
.bg-photo-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  will-change: transform;
  transform: scale(1.12); /* initial scale so parallax never shows edges */
}
.bg-photo-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.section-photo-bg > *:not(.bg-photo-img):not(.bg-photo-overlay) { position: relative; z-index: 2; }

/* process section photo */
.process-section .bg-photo-img { opacity: 0.18; filter: grayscale(0.2); }
.process-section .bg-photo-overlay { background: rgba(var(--dark-bg-rgb),0.82); }

/* stats section photo */
.stats-section { background: var(--dark-bg) !important; }
.stats-section .bg-photo-img { opacity: 0.22; filter: saturate(0.4); }
.stats-section .bg-photo-overlay { background: linear-gradient(135deg, rgba(var(--brand-rgb),0.86) 0%, rgba(var(--dark-bg-rgb),0.93) 100%); }
.stats-section h2.section-title { color: white; }
.stats-section .section-sub { color: rgba(255,255,255,0.48); }
.stats-section .stats-grid { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.07); }
.stats-section .stat-cell { background: rgba(255,255,255,0.025); }
.stats-section .stat-cell:hover { background: rgba(255,255,255,0.055); }
.stats-section .stat-number { color: var(--accent); }
.stats-section .stat-label { color: rgba(255,255,255,0.44); }

/* ═══════ RESPONSIVE ═══════ */
@media (min-width: 1400px) {
  .hero { padding: 130px 7% 90px; }
  .section { padding: 112px 7%; }
  .cards-section, .process-section, .partners-section, .cta-section { padding: 112px 7%; }
  footer { padding: 70px 7% 32px; }
}

@media (max-width: 1200px) {
  .hero { gap: 40px; }
  .dbl-bezel { max-width: 300px; }
  .footer-top { grid-template-columns: 1.2fr 1fr 1fr; }
}

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  nav { padding: 7px 7px 7px 16px; }
  .nav-cta { margin-left: auto; }

  .hero { grid-template-columns: 1fr; padding: 100px 6% 64px; min-height: auto; gap: 0; }
  .hero-visual { display: none; }
  .photo-gallery { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(30px, 7vw, 44px); }
  .hero-checks { grid-template-columns: 1fr 1fr; }

  .b-main, .b-top, .b-stat1, .b-a, .b-b, .b-c { grid-column: span 12; }
  .bb-1, .bb-2, .bb-3, .bb-4, .bb-5, .bb-6, .bb-7 { grid-column: span 12; grid-row: auto; }
  .bb-1 { min-height: 220px; }
  .b-stat1, .b-b { min-height: 140px; }

  .why-head, .cards-intro, .plans-head, .stats-layout { grid-template-columns: 1fr; gap: 24px; }
  .steps { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-top .footer-brand { grid-column: span 2; }
}

@media (max-width: 640px) {
  .section { padding: 72px 5%; }
  .cards-section, .process-section, .partners-section, .cta-section { padding: 72px 5%; }
  footer { padding: 48px 5% 24px; }
  .hero { padding: 88px 5% 56px; }
  .hero-cta-group { flex-direction: column; align-items: flex-start; gap: 10px; }
  .hero-checks { grid-template-columns: 1fr; gap: 6px; }
  .plans-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .trust-logos { gap: 20px; }
  .trust-logo-item { height: 26px; }
  .trust-logo-item.tall { height: 36px; }
  .step { padding: 28px 22px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .back-to-top { left: 16px; bottom: 16px; width: 42px; height: 42px; }
  .whatsapp-float { right: 16px; bottom: 16px; width: 42px; height: 42px; }
  .section { padding: 60px 4%; }
  .cards-section, .process-section, .partners-section { padding: 60px 4%; }
  .cta-section { padding: 72px 5%; }
  footer { padding: 44px 4% 22px; }
  .hero { padding: 80px 4% 52px; }
  .hero h1 { font-size: 27px; letter-spacing: -1px; }
  .hero-sub { font-size: 15px; }
  h2.section-title { font-size: 26px; }
  .stat-number { font-size: 32px; }
  .bento-stat .num { font-size: 38px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-top .footer-brand { grid-column: span 1; }
  .plans-grid { gap: 10px; }
  .plan-head h3 { font-size: 18px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .btn-white-island, .btn-ghost-white { width: 100%; max-width: 320px; justify-content: center; }
  .bento-grid { gap: 8px; }
  .bento-card { padding: 20px; }
}
