/* ============================================================
   SKTK Karoseri — Landing Page Styles
   Design tokens + components + animations + responsive
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Colors */
  --navy: #0A1F44;
  --blue: #1E40AF;
  --accent: #F59E0B;
  --amber: #FBBF24;
  --cyan: #06B6D4;
  --green: #10B981;
  --bg: #FAFAF7;
  --white: #FFFFFF;
  --dark: #0F172A;
  --text: #0F172A;
  --text-2: #475569;
  --border: #E2E8F0;

  /* Gradients */
  --grad-brand: linear-gradient(135deg, #1E40AF 0%, #06B6D4 100%);
  --grad-accent: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);

  /* Typography */
  --font-display: 'Space Grotesk', 'Segoe UI', sans-serif;
  --font-body: 'Plus Jakarta Sans', 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Spacing scale */
  --s1: 4px; --s2: 8px; --s3: 12px; --s4: 16px; --s5: 24px;
  --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px; --s10: 128px; --s11: 160px;

  /* Radius */
  --r-sm: 8px; --r-md: 16px; --r-lg: 24px; --r-pill: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10,31,68,0.05);
  --shadow-md: 0 4px 12px rgba(10,31,68,0.08);
  --shadow-lg: 0 16px 40px rgba(10,31,68,0.12);
  --shadow-glow: 0 0 40px rgba(245,158,11,0.25);

  /* Layout */
  --container: 1200px;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

h1, h2, h3, h4 { font-family: var(--font-display); line-height: 1.15; font-weight: 700; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--s5); }
.container-narrow { max-width: 820px; }

/* ---------- Focus visible ---------- */
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 2px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 16px;
  padding: 14px 26px; border-radius: var(--r-pill);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-sm { padding: 10px 18px; font-size: 14px; }
.btn-lg { padding: 16px 30px; font-size: 17px; }
.btn-xl { padding: 18px 38px; font-size: 18px; }

.btn-wa {
  background: #25D366; color: #fff;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
}
.btn-wa:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(37,211,102,0.45); }

.btn-ghost {
  background: transparent; color: var(--navy);
  border: 2px solid var(--border);
}
.btn-ghost:hover { border-color: var(--navy); transform: translateY(-3px); }

.btn-accent {
  background: var(--grad-accent); color: var(--navy);
  box-shadow: var(--shadow-glow);
}
.btn-accent:hover { transform: translateY(-3px); box-shadow: 0 0 55px rgba(245,158,11,0.4); }

/* Pulse animation for CTA */
.pulse { position: relative; }
.pulse::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--r-pill);
  box-shadow: 0 0 0 0 rgba(37,211,102,0.5);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.45); }
  70% { box-shadow: 0 0 0 18px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--header-h);
  background: rgba(250,250,247,0.7);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.site-header.scrolled {
  background: rgba(250,250,247,0.92);
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: var(--s4); }
.brand { display: flex; align-items: center; gap: 10px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.brand-text small {
  font-size: 0.72rem;
  color: var(--text-2);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav { display: flex; align-items: center; gap: var(--s5); }
.nav-link {
  font-weight: 500; font-size: 15px; color: var(--text-2);
  position: relative; padding: 6px 2px; transition: color .2s ease;
}
.nav-link::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--grad-brand); border-radius: 2px; transition: width .25s ease;
}
.nav-link:hover { color: var(--navy); }
.nav-link:hover::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: var(--s3); }
.nav-toggle { display: none; color: var(--navy); padding: 8px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: calc(var(--header-h) + var(--s9)) 0 var(--s8); overflow: hidden; }
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(40% 55% at 15% 20%, rgba(30,64,175,0.18), transparent 60%),
    radial-gradient(45% 60% at 85% 15%, rgba(6,182,212,0.16), transparent 60%),
    radial-gradient(50% 60% at 70% 90%, rgba(245,158,11,0.12), transparent 60%),
    linear-gradient(180deg, #F4F6FB 0%, var(--bg) 100%);
  animation: meshShift 12s ease-in-out infinite;
}
@keyframes meshShift {
  0%, 100% { background-position: 0% 0%, 100% 0%, 50% 100%, 0 0; }
  33% { background-position: 30% 10%, 70% 20%, 40% 80%, 0 0; }
  66% { background-position: 10% 30%, 90% 5%, 60% 95%, 0 0; }
}

.hero-blob { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; z-index: -1; }
.blob-1 { width: 320px; height: 320px; background: rgba(30,64,175,0.25); top: 10%; left: -80px; animation: float 8s ease-in-out infinite; }
.blob-2 { width: 260px; height: 260px; background: rgba(6,182,212,0.22); bottom: 5%; right: 5%; animation: float 7s ease-in-out infinite reverse; }
.blob-3 { width: 180px; height: 180px; background: rgba(245,158,11,0.2); top: 55%; left: 45%; animation: float 9s ease-in-out infinite; }
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-30px) translateX(15px); }
}

.hero-inner { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: var(--s8); align-items: center; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: var(--navy);
  background: rgba(30,64,175,0.08); border: 1px solid rgba(30,64,175,0.15);
  padding: 8px 16px; border-radius: var(--r-pill); margin-bottom: var(--s5);
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(16,185,129,0.2); }

.hero-title { font-size: clamp(2.4rem, 5vw, 4rem); letter-spacing: -0.02em; margin-bottom: var(--s5); }
.grad-text {
  background: var(--grad-brand); -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text-2); max-width: 560px; margin-bottom: var(--s6); }
.hero-cta { display: flex; flex-wrap: wrap; gap: var(--s4); }

.hero-visual { position: relative; }
.hero-truck { width: 100%; height: auto; animation: float 7s ease-in-out infinite; }

.float-badge {
  position: absolute; display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.75); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.6); border-radius: var(--r-md);
  padding: 12px 16px; box-shadow: var(--shadow-lg);
}
.float-badge strong { display: block; font-family: var(--font-display); font-size: 14px; color: var(--navy); }
.float-badge small { font-size: 12px; color: var(--text-2); }
.badge-icon {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  background: var(--grad-brand); color: #fff;
}
.badge-online { top: 12%; right: -4%; animation: float 6s ease-in-out infinite; }
.badge-valid { bottom: 16%; left: -4%; animation: float 8s ease-in-out infinite reverse; }
.badge-valid .badge-icon { background: var(--grad-accent); color: var(--navy); }

/* ---------- Trust strip ---------- */
.trust { padding: var(--s7) 0; background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s5); text-align: center; }
.stat-num {
  display: block; font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 4vw, 3rem); color: var(--navy); line-height: 1;
}
.stat-label { display: block; margin-top: 8px; color: var(--text-2); font-size: 14px; font-weight: 500; }

/* ---------- Sections ---------- */
.section { padding: var(--s9) 0; }
.section-alt { background: var(--white); }
.section-dark { background: var(--dark); color: #E2E8F0; }
.section-dark .section-title { color: #fff; }
.section-dark .section-sub { color: #94A3B8; }

.section-head { text-align: center; max-width: 720px; margin: 0 auto var(--s7); }
.section-tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--blue);
  background: rgba(30,64,175,0.08); padding: 6px 14px; border-radius: var(--r-pill); margin-bottom: var(--s4);
}
.section-dark .section-tag { color: var(--cyan); background: rgba(6,182,212,0.12); }
.coming-tag { color: var(--accent); background: rgba(245,158,11,0.14); }
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.8rem); letter-spacing: -0.02em; margin-bottom: var(--s4); }
.section-sub { color: var(--text-2); font-size: 1.05rem; }
.section-dark .section-sub { color: #94A3B8; }

.lead { max-width: 760px; margin: 0 auto var(--s7); text-align: center; font-size: 1.1rem; color: var(--text-2); }
.lead strong { color: var(--navy); }

/* ---------- Benefit cards ---------- */
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s5); }
.benefit-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: var(--s6); box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.benefit-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(30,64,175,0.25); }
.benefit-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--grad-brand); color: #fff; margin-bottom: var(--s4);
}
.benefit-card h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--navy); }
.benefit-card p { color: var(--text-2); font-size: 0.95rem; }

/* ---------- Law cards ---------- */
.law-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); }
.law-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg); padding: var(--s6);
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.law-card:hover { transform: translateY(-8px); background: rgba(255,255,255,0.07); border-color: rgba(6,182,212,0.4); }
.law-num {
  display: inline-block; font-family: var(--font-mono); font-size: 12px; font-weight: 500;
  color: var(--cyan); background: rgba(6,182,212,0.12);
  padding: 4px 10px; border-radius: var(--r-sm); margin-bottom: var(--s4);
}
.law-card h3 { font-size: 1.1rem; color: #fff; margin-bottom: 6px; }
.law-card p { color: #94A3B8; font-size: 0.92rem; }

/* ---------- Timeline ---------- */
.timeline { position: relative; max-width: 720px; margin: 0 auto; padding-left: var(--s6); }
.timeline::before {
  content: ''; position: absolute; left: 22px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, var(--blue), var(--cyan));
}
.timeline-item { position: relative; padding: 0 0 var(--s6) var(--s6); }
.timeline-item:last-child { padding-bottom: 0; }
.step-num {
  position: absolute; left: -34px; top: 0; width: 46px; height: 46px; border-radius: 50%;
  background: var(--grad-brand); color: #fff; font-family: var(--font-display); font-weight: 700;
  display: grid; place-items: center; font-size: 1.1rem; box-shadow: var(--shadow-md);
}
.step-body { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); padding: var(--s5); box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.timeline-item:hover .step-body { transform: translateX(6px); box-shadow: var(--shadow-md); }
.step-body h3 { font-size: 1.1rem; color: var(--navy); margin-bottom: 4px; }
.step-body p { color: var(--text-2); font-size: 0.95rem; }

/* ---------- Persyaratan toolbar ---------- */
.req-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s4); margin-bottom: var(--s7); }
.tabs { display: inline-flex; background: var(--bg); border: 1px solid var(--border); border-radius: var(--r-pill); padding: 4px; }
.tab {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 20px; border-radius: var(--r-pill); font-weight: 600; font-size: 15px;
  color: var(--text-2); transition: background .25s ease, color .25s ease;
}
.tab-count { font-family: var(--font-mono); font-size: 12px; background: rgba(71,85,105,0.12); padding: 2px 8px; border-radius: var(--r-pill); }
.tab.active { background: var(--navy); color: #fff; }
.tab.active .tab-count { background: rgba(255,255,255,0.2); }

.search-box {
  display: flex; align-items: center; gap: 10px; flex: 1; min-width: 240px; max-width: 360px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-pill);
  padding: 0 18px; color: var(--text-2);
}
.search-box:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(30,64,175,0.12); }
.search-box input { flex: 1; border: none; outline: none; background: transparent; padding: 12px 0; font-family: var(--font-body); font-size: 15px; color: var(--text); }

.req-panel { display: none; }
.req-panel.active { display: block; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.req-group { margin-bottom: var(--s7); }
.group-title { display: flex; align-items: center; gap: 10px; font-size: 1.15rem; color: var(--navy); margin-bottom: var(--s4); }
.group-title i { color: var(--blue); }
.req-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); }

.req-card {
  display: flex; gap: var(--s4); background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-md); padding: var(--s5); box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.req-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(30,64,175,0.25); }
.req-num {
  flex-shrink: 0; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 500; font-size: 15px; color: var(--blue);
  background: rgba(30,64,175,0.08);
}
.req-content h4 { font-size: 1rem; color: var(--navy); margin-bottom: 4px; }
.req-content p { font-size: 0.88rem; color: var(--text-2); margin-bottom: var(--s3); }
.req-download {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600;
  color: var(--blue); transition: color .2s ease;
}
.req-download:hover { color: var(--cyan); }
.req-download i { width: 15px; height: 15px; }

.req-empty { text-align: center; color: var(--text-2); padding: var(--s6); font-size: 1.05rem; }

/* ---------- Coming soon roles ---------- */
.role-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s5); margin-bottom: var(--s8); }
.role-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg); padding: var(--s6); display: flex; flex-direction: column; gap: var(--s4);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.role-card:hover { transform: translateY(-8px); border-color: rgba(6,182,212,0.45); background: rgba(255,255,255,0.06); }
.role-head { display: flex; align-items: center; gap: var(--s3); }
.role-icon { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--grad-brand); color: #fff; }
.role-card h3 { font-size: 1.25rem; color: #fff; }
.role-card > p { color: #94A3B8; font-size: 0.95rem; }

.role-mockup {
  background: rgba(15,23,42,0.6); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md); padding: var(--s4); display: flex; flex-direction: column; gap: 10px;
}
.mock-bar { display: flex; gap: 6px; margin-bottom: 4px; }
.mock-bar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.mock-bar span:first-child { background: var(--accent); }
.mock-row { display: flex; align-items: center; gap: 10px; }
.mock-check { width: 16px; height: 16px; border-radius: 5px; border: 2px solid rgba(255,255,255,0.25); flex-shrink: 0; }
.mock-check.ok { background: var(--green); border-color: var(--green); }
.mock-line { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.14); }
.w70 { width: 70%; } .w60 { width: 60%; } .w50 { width: 50%; } .w80 { width: 80%; } .w55 { width: 55%; } .w40 { width: 40%; } .w35 { width: 35%; } .w75 { width: 75%; }
.mock-tag { font-size: 10px; font-weight: 700; padding: 2px 8px; border-radius: var(--r-pill); background: rgba(16,185,129,0.2); color: var(--green); margin-left: auto; }
.mock-tag.warn { background: rgba(245,158,11,0.2); color: var(--accent); }
.mock-upload {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border: 1.5px dashed rgba(6,182,212,0.5); border-radius: var(--r-sm);
  padding: 12px; color: var(--cyan); font-size: 13px; font-weight: 600;
}
.mock-doc { display: flex; flex-direction: column; gap: 8px; padding: 6px 0; }
.mock-doc-title { font-family: var(--font-mono); font-size: 13px; color: var(--cyan); }
.mock-sign { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--accent); font-weight: 600; }

.role-badge {
  display: flex; align-items: center; gap: 8px; margin-top: auto;
  font-size: 12px; color: #94A3B8; background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-sm); padding: 10px 12px;
}
.role-badge i { width: 14px; height: 14px; color: var(--accent); flex-shrink: 0; }

/* ---------- App preview ---------- */
.app-preview { max-width: 860px; margin: 0 auto var(--s8); }
.preview-window {
  position: relative; background: rgba(15,23,42,0.85); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg);
}
.preview-topbar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; background: rgba(255,255,255,0.04); border-bottom: 1px solid rgba(255,255,255,0.08); }
.pv-dot { width: 12px; height: 12px; border-radius: 50%; background: rgba(255,255,255,0.2); }
.pv-dot:first-child { background: #F87171; } .pv-dot:nth-child(2) { background: #FBBF24; } .pv-dot:nth-child(3) { background: #34D399; }
.pv-title { margin-left: 10px; font-size: 13px; color: #94A3B8; font-family: var(--font-mono); }
.preview-body { display: flex; min-height: 300px; }
.pv-sidebar { width: 64px; background: rgba(255,255,255,0.03); border-right: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; align-items: center; gap: 14px; padding: 16px 0; }
.pv-logo { width: 34px; height: 34px; border-radius: 10px; background: var(--grad-brand); color: #fff; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 14px; margin-bottom: 8px; }
.pv-nav { width: 26px; height: 8px; border-radius: 4px; background: rgba(255,255,255,0.12); }
.pv-nav.active { background: var(--cyan); }
.pv-main { flex: 1; padding: 20px; display: flex; flex-direction: column; gap: 18px; }
.pv-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pv-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--r-md); padding: 14px; }
.pv-num { display: block; font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: #fff; }
.pv-label { font-size: 12px; color: #94A3B8; }
.pv-table { display: flex; flex-direction: column; gap: 10px; }
.pv-row { display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.04); border-radius: var(--r-sm); padding: 12px 14px; }

.preview-lock {
  position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background: rgba(10,31,68,0.55); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  color: #fff; font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: 1px;
}
.preview-lock i { width: 40px; height: 40px; color: var(--accent); }

/* ---------- Notify ---------- */
.notify { text-align: center; }
.notify p { color: #E2E8F0; font-size: 1.1rem; margin-bottom: var(--s4); }
.notify-form { display: flex; gap: var(--s3); max-width: 460px; margin: 0 auto; }
.notify-form input {
  flex: 1; padding: 14px 18px; border-radius: var(--r-pill); border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.06); color: #fff; font-family: var(--font-body); font-size: 15px; outline: none;
}
.notify-form input::placeholder { color: #94A3B8; }
.notify-form input:focus { border-color: var(--cyan); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: var(--s3); }
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: var(--s4);
  padding: var(--s5); font-family: var(--font-display); font-weight: 600; font-size: 1.05rem; color: var(--navy);
  text-align: left; transition: color .2s ease;
}
.faq-q i { transition: transform .3s ease; color: var(--blue); flex-shrink: 0; }
.faq-item.open .faq-q { color: var(--blue); }
.faq-item.open .faq-q i { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 var(--s5) var(--s5); color: var(--text-2); font-size: 0.98rem; }

/* ---------- CTA ---------- */
.cta-section { padding: var(--s8) 0; }
.cta-card {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, #1E3A8A 55%, #0E7490 100%);
  border-radius: var(--r-lg); padding: var(--s9) var(--s6); color: #fff; box-shadow: var(--shadow-lg);
}
.cta-glow {
  position: absolute; width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,158,11,0.35), transparent 70%);
  top: -120px; right: -80px; animation: float 8s ease-in-out infinite;
}
.cta-content { position: relative; z-index: 1; }
.cta-icon {
  width: 84px; height: 84px; border-radius: 24px; display: inline-grid; place-items: center;
  background: #25D366; box-shadow: 0 12px 40px rgba(37,211,102,0.5); margin-bottom: var(--s5);
}
.cta-title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: var(--s3); }
.cta-sub { color: #CBD5E1; font-size: 1.1rem; margin-bottom: var(--s6); }
.cta-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: var(--s5); margin-top: var(--s6); color: #CBD5E1; font-size: 0.95rem; }
.cta-phone { font-family: var(--font-mono); font-weight: 500; color: #fff; }
.cta-hours { display: inline-flex; align-items: center; gap: 6px; }
.cta-hours i { width: 16px; height: 16px; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #94A3B8; padding-top: var(--s8); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1.2fr 1fr; gap: var(--s6); padding-bottom: var(--s7); }
.footer-brand p { margin-top: var(--s4); font-size: 0.92rem; max-width: 300px; }
.footer-social { display: flex; gap: 10px; margin-top: var(--s5); }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.06); color: #94A3B8;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all .2s ease;
}
.footer-social a:hover { background: var(--grad-brand); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: var(--s4); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a { transition: color .2s ease; }
.footer-col a:hover { color: var(--cyan); }
.footer-col li span { font-size: 0.92rem; }
.footer-sub { border-top: 1px solid rgba(255,255,255,0.08); padding: var(--s4) 0; text-align: center; font-size: 0.85rem; }
.footer-sub p { margin: 0; }
.footer-note { margin-top: 4px !important; opacity: 0.7; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s ease-out, transform .8s ease-out; }
.reveal.visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: var(--s7); text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .hero-cta { justify-content: center; }
  .hero-visual { max-width: 560px; margin: 0 auto; }
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .law-grid { grid-template-columns: repeat(2, 1fr); }
  .req-grid { grid-template-columns: repeat(2, 1fr); }
  .role-grid { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .brand-text small { display: none; }
  .main-nav {
    position: fixed; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md);
    padding: var(--s3) var(--s5); transform: translateY(-120%); transition: transform .3s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .nav-link { padding: 14px 4px; border-bottom: 1px solid var(--border); }
  .nav-link:last-child { border-bottom: none; }
  .nav-toggle { display: inline-flex; }
  .header-actions .btn-wa span { display: none; }
  .header-actions .btn-wa { padding: 10px 12px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s5); }
  .req-toolbar { flex-direction: column; align-items: stretch; }
  .search-box { max-width: none; }
  .tabs { justify-content: center; }
  .notify-form { flex-direction: column; }
}

@media (max-width: 640px) {
  .section { padding: var(--s7) 0; }
  .hero { padding-top: calc(var(--header-h) + var(--s6)); padding-bottom: var(--s7); }
  .container { padding: 0 var(--s4); }

  /* Brand header compact */
  .brand { gap: 8px; }
  .brand-text strong { font-size: 1rem; letter-spacing: 0.03em; }

  /* Hero: visual first, compact */
  .hero-inner { display: flex; flex-direction: column; gap: var(--s6); }
  .hero-copy { order: 2; }
  .hero-visual { order: 1; max-width: 300px; margin: 0 auto; }
  .hero-title { font-size: clamp(1.8rem, 6.5vw, 2.4rem); margin-bottom: var(--s4); }
  .hero-sub { font-size: 0.98rem; margin-bottom: var(--s5); }
  .hero-cta { flex-direction: column; width: 100%; max-width: 340px; margin: 0 auto; gap: var(--s3); }
  .hero-cta .btn { width: 100%; justify-content: center; }

  /* Eyebrow compact */
  .eyebrow {
    font-size: 10px; letter-spacing: 0.8px;
    padding: 6px 12px; gap: 6px; margin-bottom: var(--s4);
  }
  .eyebrow .dot { width: 6px; height: 6px; box-shadow: 0 0 0 3px rgba(16,185,129,0.2); }

  /* Floating badges stay inside visual */
  .float-badge { padding: 8px 10px; gap: 8px; }
  .float-badge strong { font-size: 12px; }
  .float-badge small { font-size: 10px; }
  .badge-icon { width: 32px; height: 32px; border-radius: 10px; }
  .badge-online { top: 6%; right: 2%; }
  .badge-valid { bottom: 8%; left: 2%; }

  .benefit-grid, .law-grid, .req-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  /* Section headers compact */
  .section-head { margin-bottom: var(--s6); }
  .section-tag { font-size: 10px; letter-spacing: 1.5px; padding: 5px 12px; }
  .section-title { font-size: 1.65rem; }

  /* Tabs */
  .tabs { width: 100%; }
  .tab { flex: 1; justify-content: center; padding: 10px 8px; font-size: 13px; }

  /* App preview: hide sidebar, compact body */
  .preview-body { min-height: 260px; }
  .pv-sidebar { display: none; }
  .pv-main { padding: 14px; }
  .pv-cards { grid-template-columns: 1fr; }
  .pv-card { padding: 10px; }
  .preview-lock { font-size: 1.05rem; }

  .cta-card { padding: var(--s7) var(--s4); }
  .cta-title { font-size: 1.6rem; }
  .cta-meta { flex-direction: column; gap: var(--s3); }
}

@media (max-width: 400px) {
  .header-actions .btn-wa { padding: 8px 10px; }
  .hero-title { font-size: clamp(1.6rem, 6vw, 1.9rem); }
  .stat-num { font-size: 1.7rem; }
  .stat-label { font-size: 12px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
}
