/* ═══════════════════════════════════════════════════════
   קבוצת דורות — Design System v2
   RTL Hebrew Insurance Agency Website
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;600;700;800;900&display=swap');

/* ── Design Tokens ─────────────────────────────────── */
:root {
  --font: 'Heebo', sans-serif;

  --c-bg:            #F4F6FB;
  --c-surface:       #FFFFFF;
  --c-navy:          #0B1D3E;
  --c-navy-mid:      #132347;
  --c-primary:       #1A56DB;
  --c-primary-dark:  #1443B0;
  --c-primary-light: #EBF2FF;
  --c-accent:        #F59E0B;
  --c-accent-light:  #FEF3C7;
  --c-text:          #0D1117;
  --c-muted:         #5C6880;
  --c-border:        #E2E8F0;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --shadow-sm: 0 1px 4px rgba(15,32,67,.06), 0 1px 2px rgba(15,32,67,.04);
  --shadow-md: 0 4px 20px rgba(15,32,67,.10), 0 2px 6px rgba(15,32,67,.05);
  --shadow-lg: 0 16px 48px rgba(15,32,67,.14), 0 4px 14px rgba(15,32,67,.07);
  --shadow-blue: 0 8px 24px rgba(26,86,219,.28);

  --grad-primary: linear-gradient(135deg, #1A56DB 0%, #2563EB 60%, #1e40af 100%);
  --grad-accent:  linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
  --grad-navy:    linear-gradient(160deg, #0B1D3E 0%, #132347 50%, #0f2a5a 100%);

  /* Legacy aliases (used in form/functional CSS) */
  --bg-primary:   var(--c-surface);
  --bg-secondary: var(--c-bg);
  --text-primary:   var(--c-text);
  --text-secondary: var(--c-muted);
  --text-muted:     #9CA3AF;
  --brand-primary:       var(--c-primary);
  --brand-primary-light: var(--c-primary-light);
  --brand-primary-dark:  #1443B0;
  --gold:       #C4943A;
  --gold-light: #FEF8EC;
  --teal:       #059669;
  --teal-light: #D1FAE5;
  --coral:      #EF4444;
  --coral-light:#FEF2F2;
  --amber:      #F59E0B;
  --amber-light:#FFFBEB;
  --border-light:  var(--c-border);
  --border-medium: #D1D5DB;
  --shadow-card: var(--shadow-sm);
  --radius-sm: var(--r-sm);
  --radius-md: var(--r-md);
  --radius-lg: var(--r-lg);
  --radius-xl: var(--r-xl);
}

/* ── Reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { direction: rtl; scroll-behavior: smooth; }
body {
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: none; }
button { font-family: var(--font); cursor: pointer; border: none; }

/* ── Typography ────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font);
  color: var(--c-text);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 900; letter-spacing: -0.02em; line-height: 1.1; }
h2 { font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 700; letter-spacing: -0.01em; line-height: 1.2; }
h3 { font-size: 1.125rem; font-weight: 700; }
p  { line-height: 1.7; color: var(--c-muted); }

/* ── Container ─────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }

/* ── Buttons ───────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: 0.9375rem;
  padding: 13px 24px; border-radius: var(--r-md);
  transition: all .18s ease; white-space: nowrap; border: none; cursor: pointer;
  text-decoration: none; line-height: 1;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: var(--grad-primary); color: #fff;
  box-shadow: var(--shadow-blue);
  position: relative; overflow: hidden;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(255,255,255,0); transition: background .18s;
}
.btn-primary:hover { transform: translateY(-2px); color: #fff; box-shadow: 0 10px 28px rgba(26,86,219,.42); }
.btn-primary:hover::after { background: rgba(255,255,255,0.08); }
.btn-primary:active { transform: translateY(0); }
.btn-accent {
  background: var(--grad-accent); color: #1a1a1a;
  box-shadow: 0 4px 14px rgba(245,158,11,.35);
  font-weight: 700;
}
.btn-accent:hover { transform: translateY(-2px); color: #000; box-shadow: 0 8px 22px rgba(245,158,11,.45); }
.btn-ghost {
  background: transparent; color: var(--c-text); border: 1.5px solid var(--c-border);
}
.btn-ghost:hover { background: var(--c-primary-light); border-color: var(--c-primary); color: var(--c-primary); }
.btn-white { background: #fff; color: var(--c-primary); font-weight: 700; }
.btn-white:hover { background: #F0F9FF; transform: translateY(-1px); }
.btn-outline-white { background: transparent; border: 1.5px solid rgba(255,255,255,0.4); color: #fff; }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); }
.btn-secondary { background: transparent; color: var(--c-primary); border: 1.5px solid var(--c-primary); }
.btn-secondary:hover { background: var(--c-primary-light); }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-sm { padding: 9px 16px; font-size: 0.875rem; }
.btn-submit { width: 100%; justify-content: center; padding: 16px; font-size: 1.05rem; }

/* ── Navigation ────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92); backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(226,232,240,0.8);
  transition: box-shadow .2s, background .2s;
}
/* Remove container double-padding when nested inside navbar */
.navbar > .container { padding: 0; max-width: none; }
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.1); }
.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 20px; max-width: 1100px; margin: 0 auto; gap: 16px;
}
.navbar-logo-img-link { display: flex; align-items: center; flex-shrink: 0; }
.navbar-logo-img { height: 48px; width: auto; }
.navbar-links { display: flex; align-items: center; gap: 4px; list-style: none; flex: 1; justify-content: center; }
.navbar-links a {
  padding: 7px 12px; border-radius: var(--r-sm); font-size: 0.9rem; font-weight: 500;
  color: var(--c-muted); transition: all .15s; display: block;
}
.navbar-links a:hover { color: var(--c-text); background: var(--c-bg); }
.navbar-links a.active { color: var(--c-primary); }
.navbar-cta { display: flex; gap: 8px; align-items: center; }
.navbar-hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.navbar-hamburger span { display: block; width: 22px; height: 2px; background: var(--c-text); border-radius: 2px; }
.navbar-mobile {
  display: none; flex-direction: column; gap: 2px;
  background: var(--c-surface); border-top: 1px solid var(--c-border);
  padding: 12px 20px 20px;
}
.navbar-mobile.open { display: flex; }
.navbar-mobile a {
  padding: 13px 4px; font-size: 1rem; font-weight: 500;
  color: var(--c-text); border-bottom: 1px solid var(--c-border);
}
.navbar-mobile .btn { margin-top: 12px; width: 100%; justify-content: center; }

/* ── Section Eyebrow ───────────────────────────────── */
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--c-primary-light); color: var(--c-primary);
  border: 1px solid rgba(26,86,219,.18);
  font-size: 0.8125rem; font-weight: 700; letter-spacing: 0.06em;
  padding: 5px 14px; border-radius: 100px; margin-bottom: 14px; text-transform: uppercase;
}
.section-eyebrow.light {
  background: rgba(255,255,255,0.1); color: #93C5FD;
}

/* ── Badge (generic) ───────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--c-primary-light); color: var(--c-primary);
  border: 1px solid rgba(26,86,219,0.2);
  padding: 5px 14px; border-radius: 100px;
  font-size: 0.8125rem; font-weight: 700; margin-bottom: 20px;
  letter-spacing: 0.03em;
}
.badge svg { flex-shrink: 0; }

/* ── HERO ──────────────────────────────────────────── */
.hero {
  background: var(--grad-navy);
  color: #fff; overflow: hidden; position: relative;
  min-height: 88vh; display: flex; flex-direction: column;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 85% 40%, rgba(37,99,235,.36), transparent),
    radial-gradient(ellipse 45% 55% at 8%  20%, rgba(139,92,246,.18), transparent),
    radial-gradient(ellipse 50% 40% at 15% 80%, rgba(14,165,233,.12), transparent);
  pointer-events: none;
}
.hero::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.018'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none; opacity: 0.6;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 48px;
  padding: 80px 20px; max-width: 1100px; margin: 0 auto;
  position: relative; z-index: 1;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(26,86,219,0.2);
  border: 1px solid rgba(26,86,219,0.4);
  color: #93C5FD; font-size: 0.8125rem; font-weight: 600;
  padding: 5px 12px; border-radius: 100px; margin-bottom: 20px;
  letter-spacing: 0.03em;
}
.hero-title {
  font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 900;
  line-height: 1.1; letter-spacing: -0.02em; margin-bottom: 20px; color: #fff;
}
.hero-title em {
  font-style: normal;
  background: var(--grad-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.0625rem; line-height: 1.7; color: #94A3B8; margin-bottom: 32px; font-weight: 400;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }
.hero-trust { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stars { display: flex; align-items: center; gap: 6px; }
.hero-stars-icons { color: #FBBF24; font-size: 1rem; letter-spacing: 1px; }
.hero-trust-text { font-size: 0.8125rem; color: #94A3B8; }
.hero-pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; padding: 6px 14px 6px 8px; font-size: 0.8125rem; color: #94A3B8;
}
.hero-pill-dot {
  width: 8px; height: 8px; border-radius: 50%; background: #22C55E;
  flex-shrink: 0; box-shadow: 0 0 8px #22C55E;
}

/* Hero visual */
.hero-visual { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.hero-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg); padding: 20px 24px;
  backdrop-filter: blur(8px);
}
.hero-card-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.06em;
  color: #64748B; text-transform: uppercase; margin-bottom: 10px;
}
.hero-card-title { font-size: 0.9375rem; font-weight: 600; color: #fff; margin-bottom: 4px; }
.hero-card-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 14px; background: rgba(255,255,255,0.06);
  border-radius: 10px; border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 8px;
}
.hero-card-row:last-of-type { margin-bottom: 0; }
.hero-card-row-label { font-size: 0.875rem; color: #CBD5E1; }
.hero-tag { font-size: 0.75rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.hero-tag.danger { background: #FEE2E2; color: #DC2626; }
.hero-tag.warn   { background: #FEF3C7; color: #D97706; }
.hero-tag.ok     { background: #D1FAE5; color: #059669; }
.hero-saving {
  margin-top: 8px; padding: 12px 14px;
  background: rgba(245,158,11,0.12); border-radius: 10px;
  border: 1px solid rgba(245,158,11,0.25);
  display: flex; justify-content: space-between; align-items: center;
}
.hero-saving-label { font-size: 0.875rem; color: #FCD34D; font-weight: 600; }
.hero-saving-amount { font-size: 1.25rem; font-weight: 900; color: #F59E0B; }
.hero-card-2col { display: flex; gap: 12px; }
.hero-card-2col .hero-card { flex: 1; }
.hero-card-stat { font-size: 1.5rem; font-weight: 900; color: #fff; line-height: 1.1; }
.hero-card-stat span { color: var(--c-accent); }

/* Partners bar */
.hero-partners {
  padding: 20px; border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 1100px; margin: 0 auto; position: relative; z-index: 1;
}
.hero-partners-label {
  font-size: 0.75rem; color: #475569; font-weight: 500;
  margin-bottom: 12px; text-align: center;
}
.hero-partners-logos {
  display: flex; gap: 20px; justify-content: center; flex-wrap: wrap; align-items: center;
}
.hero-partners-logos span {
  font-size: 0.875rem; font-weight: 700; color: #475569; letter-spacing: 0.02em;
}
.partner-badge {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 9px 18px; min-width: 80px;
  border: 1.5px solid rgba(255,255,255,0.13); border-radius: 10px;
  background: rgba(255,255,255,0.06); backdrop-filter: blur(8px);
  font-size: 0.875rem; font-weight: 700; color: #94A3B8;
  letter-spacing: 0.03em; white-space: nowrap;
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.22s;
  cursor: default;
}
.partner-badge:hover {
  background: #fff;
  border-color: #fff;
  color: var(--brand-color, var(--c-primary));
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
}

/* ── Stats Bar ─────────────────────────────────────── */
.statsbar {
  background: var(--c-surface);
  border-bottom: 1px solid var(--c-border);
  box-shadow: 0 4px 12px rgba(15,32,67,.05);
}
.statsbar-inner {
  display: grid; grid-template-columns: repeat(4, 1fr);
  max-width: 1100px; margin: 0 auto;
}
.statsbar-item {
  padding: 30px 20px; text-align: center;
  border-right: 1px solid var(--c-border);
  transition: background .2s;
}
.statsbar-item:first-child { border-right: none; }
.statsbar-item:hover { background: var(--c-primary-light); }
.statsbar-num {
  font-size: clamp(1.6rem, 3vw, 2.1rem); font-weight: 900;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1; margin-bottom: 6px;
}
.statsbar-label { font-size: 0.8125rem; color: var(--c-muted); font-weight: 500; letter-spacing: 0.01em; }

/* ── About ─────────────────────────────────────────── */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
.about-image-block {
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4/3; position: relative;
  box-shadow: var(--shadow-lg);
}
.about-image-block img { width: 100%; height: 100%; object-fit: cover; }
.about-image-placeholder {
  width: 100%; height: 100%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 8px;
  background: var(--c-primary-light); color: var(--c-muted);
  font-size: 0.8125rem; text-align: center; padding: 20px;
  border: 2px dashed var(--c-border); border-radius: var(--r-xl);
}
.about-chips { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px; }
.about-chip {
  display: flex; align-items: center; gap: 6px;
  background: var(--c-primary-light); color: var(--c-primary);
  border-radius: var(--r-sm); padding: 7px 14px;
  font-size: 0.875rem; font-weight: 600;
}
.about-chip svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ── Services ──────────────────────────────────────── */
.services-bg { background: var(--c-surface); }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 40px;
}
.service-card {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 12px; padding: 32px 24px;
  border-radius: var(--r-lg);
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(16px);
  border: 1.5px solid rgba(255,255,255,0.9);
  box-shadow: 0 4px 24px rgba(26,86,219,.07), 0 1px 4px rgba(0,0,0,.04);
  transition: all .22s cubic-bezier(.4,0,.2,1);
  transform-style: preserve-3d; will-change: transform;
  text-decoration: none; color: inherit;
}
.service-card:hover {
  border-color: rgba(26,86,219,.5);
  box-shadow: 0 12px 36px rgba(26,86,219,.14), 0 0 0 3px rgba(26,86,219,.06);
  cursor: pointer;
  background: rgba(255,255,255,0.95);
}
.service-cta {
  font-size: 0.875rem; font-weight: 700; color: var(--c-primary);
  margin-top: auto; padding-top: 14px; border-top: 1px solid var(--c-border);
  width: 100%; display: flex; align-items: center; justify-content: center;
  gap: 4px; transition: gap .15s, color .15s;
}
.service-card:hover .service-cta { color: var(--c-primary-dark); gap: 8px; }
.service-title { text-align: center; }
.service-sub   { text-align: center; }
.service-icon {
  width: 52px; height: 52px; border-radius: var(--r-md);
  background: var(--grad-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26,86,219,.25);
}
.service-title { font-size: 1rem; font-weight: 700; color: var(--c-text); }
.service-sub { font-size: 0.9375rem; color: var(--c-muted); line-height: 1.6; margin: 0; }

/* ── Why Us ────────────────────────────────────────── */
.why-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 48px;
}
.why-card {
  background: var(--c-surface); border: 1.5px solid var(--c-border);
  border-radius: var(--r-lg); padding: 32px 28px;
  display: flex; flex-direction: column; gap: 12px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s, border-color .2s;
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  border-color: rgba(26,86,219,.25);
}
.why-num {
  font-size: 3rem; font-weight: 900; line-height: 1;
  background: var(--grad-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.22; margin-bottom: -8px;
}
.why-title { font-size: 1.0625rem; font-weight: 700; color: var(--c-text); }
.why-body { font-size: 0.9375rem; color: var(--c-muted); line-height: 1.7; margin: 0; }

/* ── How It Works (Steps) ──────────────────────────── */
.steps-bg { background: var(--grad-navy); color: #fff; }
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2px; margin-top: 48px;
  background: rgba(255,255,255,0.06);
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}
.step-card {
  background: rgba(255,255,255,0.03); padding: 32px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background .2s;
}
.step-card:hover { background: rgba(255,255,255,0.07); }
.step-num {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--grad-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(26,86,219,.4);
}
.step-title { font-size: 1rem; font-weight: 700; color: #fff; }
.step-body { font-size: 0.875rem; color: #94A3B8; line-height: 1.55; margin: 0; }

/* ── Tech / AI ─────────────────────────────────────── */
.tech-grid {
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 64px; align-items: center;
}
.tech-points { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.tech-point {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 18px 20px; border-radius: var(--r-md);
  border: 1px solid var(--c-border); background: var(--c-surface);
  transition: border-color .15s;
}
.tech-point:hover { border-color: var(--c-primary); }
.tech-point-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm); flex-shrink: 0;
  background: var(--grad-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 3px 10px rgba(26,86,219,.25);
}
.tech-point-text h4 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 2px; color: var(--c-text); }
.tech-point-text p  { font-size: 0.875rem; color: var(--c-muted); line-height: 1.5; margin: 0; }
.tech-visual-block {
  border-radius: var(--r-xl); overflow: hidden;
  background: #F8F9FC; border: 1px solid var(--c-border);
  box-shadow: var(--shadow-md);
}
.tech-visual-header {
  padding: 16px 20px; background: var(--c-navy); color: #fff;
  font-size: 0.875rem; font-weight: 600; display: flex; align-items: center; gap: 8px;
}
.tech-visual-header .status-dot { width: 10px; height: 10px; border-radius: 50%; background: #22C55E; box-shadow: 0 0 8px #22C55E; flex-shrink: 0; }
.tech-visual-body { padding: 20px; display: flex; flex-direction: column; gap: 10px; }
.tech-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px; background: var(--c-surface); border-radius: var(--r-md);
  border: 1px solid var(--c-border);
}
.tech-row-label { font-size: 0.875rem; font-weight: 500; color: var(--c-text); }
.tech-row-tag { font-size: 0.75rem; font-weight: 700; padding: 3px 10px; border-radius: 100px; }
.tag-danger { background: #FEE2E2; color: #DC2626; }
.tag-warn   { background: #FEF3C7; color: #D97706; }
.tag-ok     { background: #D1FAE5; color: #059669; }
.tech-saving {
  background: var(--c-accent-light); border-radius: var(--r-md);
  padding: 14px 16px; display: flex; align-items: center; justify-content: space-between;
  border: 1px solid rgba(245,158,11,0.3);
}
.tech-saving-label { font-size: 0.875rem; font-weight: 600; color: var(--c-text); }
.tech-saving-amount { font-size: 1.25rem; font-weight: 900; color: #D97706; }

/* ── Tools ─────────────────────────────────────────── */
.tools-bg { background: var(--c-surface); }
.tools-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.tool-card {
  border-radius: var(--r-xl); border: 1.5px solid var(--c-border);
  padding: 36px 32px; display: flex; flex-direction: column; gap: 16px;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  background: var(--c-surface);
  box-shadow: var(--shadow-sm);
}
.tool-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
  border-color: rgba(26,86,219,.3);
}
.tool-card-tag {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.05em;
  background: var(--c-primary-light); color: var(--c-primary);
  display: inline-block; padding: 4px 10px; border-radius: 100px; text-transform: uppercase;
  align-self: flex-start;
}
.tool-card-title { font-size: 1.25rem; font-weight: 800; color: var(--c-text); }
.tool-card-body  { font-size: 0.9375rem; color: var(--c-muted); line-height: 1.65; margin: 0; }
.tool-card-meta  { font-size: 0.8125rem; color: var(--c-muted); display: flex; gap: 14px; flex-wrap: wrap; }
.tool-card-meta span::before { content: '· '; color: var(--c-primary); }

/* ── Reviews ───────────────────────────────────────── */
.reviews-bg { background: var(--grad-navy); color: #fff; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 20px; margin-top: 40px;
}
.review-card {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--r-lg); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background .2s, border-color .2s, transform .2s;
  backdrop-filter: blur(4px);
}
.review-card:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.22);
  transform: translateY(-3px);
}
.review-stars { color: #FBBF24; font-size: 0.875rem; letter-spacing: 2px; }
.review-text { font-size: 0.9375rem; line-height: 1.7; color: #CBD5E1; font-style: italic; margin: 0; }
.review-author { font-size: 0.875rem; font-weight: 600; color: #fff; }
.review-source { font-size: 0.75rem; color: #475569; }

/* ── FAQ ───────────────────────────────────────────── */
.faq-list { max-width: 720px; margin: 40px auto 0; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  border: 1px solid var(--c-border); border-radius: var(--r-md);
  background: var(--c-surface); overflow: hidden;
}
.faq-question {
  width: 100%; padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 1rem; font-weight: 600; text-align: right; cursor: pointer;
  background: none; color: var(--c-text); gap: 12px; transition: background .15s;
}
.faq-question:hover { background: var(--c-primary-light); color: var(--c-primary); }
.faq-icon {
  width: 24px; height: 24px; border-radius: 50%;
  border: 1.5px solid var(--c-border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; flex-shrink: 0; transition: .2s; color: var(--c-muted);
  order: -1;
}
.faq-item.open .faq-icon {
  background: var(--c-primary); border-color: var(--c-primary);
  color: #fff; transform: rotate(45deg);
}
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease; }
.faq-item.open .faq-answer { padding: 0 24px 20px; max-height: 300px; }
.faq-answer p { font-size: 0.9375rem; color: var(--c-muted); line-height: 1.7; margin: 0; }

/* ── CTA Section ───────────────────────────────────── */
.cta-section {
  background: var(--grad-primary);
  color: #fff; text-align: center; padding: 88px 20px;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 50% 120%, rgba(255,255,255,0.1), transparent);
  pointer-events: none;
}
.cta-section h2 { color: #fff; margin-bottom: 14px; }
.cta-section .cta-sub { color: rgba(255,255,255,0.75); margin-bottom: 32px; max-width: 560px; margin-left: auto; margin-right: auto; font-size: 1.05rem; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Footer ────────────────────────────────────────── */
.footer { background: var(--grad-navy); color: #fff; padding: 56px 20px 28px; border-top: 1px solid rgba(255,255,255,0.07); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; max-width: 1100px; margin: 0 auto;
}
.footer-brand p { font-size: 0.875rem; color: #94A3B8; line-height: 1.65; margin-top: 12px; max-width: 260px; }
.footer-brand .license { font-size: 0.75rem; color: #64748B; margin-top: 8px; }
.footer-col h4 {
  font-size: 0.8125rem; font-weight: 700; color: #CBD5E1;
  letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 16px;
}
.footer-col a { display: block; font-size: 0.875rem; color: #94A3B8; padding: 4px 0; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-col .footer-contact-link {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.875rem; color: #94A3B8; padding: 6px 0; transition: color .15s;
}
.footer-col .footer-contact-link:hover { color: #fff; }
.footer-bottom {
  max-width: 1100px; margin: 40px auto 0;
  padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.8125rem; color: #64748B; }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.8125rem; color: #64748B; }
.footer-bottom-links a:hover { color: #94A3B8; }

/* ── WhatsApp Float ────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 24px; left: 24px; z-index: 99;
  display: flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); color: #fff;
  border-radius: 100px; padding: 12px 20px 12px 14px;
  font-weight: 700; font-size: 0.875rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 2px 8px rgba(0,0,0,.15);
  transition: all .22s cubic-bezier(.4,0,.2,1); text-decoration: none;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(37,211,102,.5); color: #fff; }

/* ══════════════════════════════════════════════════════
   FORM PAGES (check.html, vehicle.html, my.html)
   ══════════════════════════════════════════════════════ */

.form-page { padding: 60px 0 80px; background: var(--c-bg); min-height: 80vh; }
.form-container { max-width: 660px; margin: 0 auto; }
.login-container { max-width: 480px; margin: 0 auto; }

.form-header { text-align: center; margin-bottom: 32px; }
.form-header h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); color: var(--c-text); margin-bottom: 10px; }
.form-header p { color: var(--c-muted); font-size: 1rem; }

.form-card {
  background: var(--c-surface); border-radius: var(--r-xl);
  box-shadow: var(--shadow-lg); padding: 40px 36px;
  border: 1px solid var(--c-border);
}

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.875rem; font-weight: 600; color: var(--c-text); margin-bottom: 8px; }
.required { color: var(--c-primary); }
.form-input {
  width: 100%; padding: 13px 16px;
  border: 1.5px solid var(--c-border); border-radius: var(--r-md);
  font-size: 1rem; font-family: var(--font); color: var(--c-text);
  background: var(--c-surface); transition: border-color .2s, box-shadow .2s;
  appearance: none; -webkit-appearance: none;
}
.form-input:focus { outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 3px rgba(26,86,219,.12); }
.form-input.error { border-color: #EF4444; box-shadow: 0 0 0 3px rgba(239,68,68,.1); }
.form-input::placeholder { color: #9CA3AF; }
.form-input[type="select"], select.form-input { cursor: pointer; }

.form-error {
  display: none; color: #EF4444; font-size: 0.8rem; margin-top: 6px; font-weight: 500;
}
.form-error.visible { display: block; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label-wrap { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; }
.form-label-wrap .form-label { margin-bottom: 0; }

/* Tooltip button */
.tooltip-btn {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--c-primary-light); color: var(--c-primary);
  font-size: 0.75rem; font-weight: 700; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  position: relative; flex-shrink: 0;
}
.tooltip-btn:hover::after {
  content: attr(data-tip);
  position: absolute; bottom: 130%; right: -10px;
  background: #1E293B; color: #fff; width: 220px; padding: 10px 14px;
  border-radius: var(--r-md); font-size: 0.8rem; font-weight: 400; line-height: 1.5;
  box-shadow: var(--shadow-lg); z-index: 10; white-space: normal; text-align: right;
}

/* Checkbox */
.checkbox-group { margin-bottom: 12px; }
.checkbox-label {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 0.9rem; color: var(--c-text); cursor: pointer; line-height: 1.5;
}
.checkbox-label input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--c-primary); width: 16px; height: 16px; }
.checkbox-label a { color: var(--c-primary); text-decoration: underline; }

/* Consent Documents (check.html step 3) */
.consent-docs { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.consent-card {
  border: 1.5px solid var(--c-border); border-radius: var(--r-lg); overflow: hidden;
  transition: border-color .2s, box-shadow .2s;
}
.consent-card:focus-within { box-shadow: 0 0 0 3px rgba(37,99,235,.12); }
.consent-card:has(#consent-check-1:checked),
.consent-card:has(#consent-check-2:checked),
.consent-card:has(#consent-check-3:checked) { border-color: #16a34a; }
.consent-card-header {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 14px 16px; background: var(--c-bg); cursor: pointer;
  width: 100%; border: none; text-align: right; font-family: var(--font-body);
  transition: background .15s;
}
.consent-card-header:hover { background: #eef2ff; }
.consent-card-info { display: flex; align-items: center; gap: 12px; flex: 1; min-width: 0; }
.consent-card-name { font-size: 0.88rem; font-weight: 700; color: var(--c-text); }
.consent-card-sub { font-size: 0.77rem; color: var(--c-muted); margin-top: 2px; }
.consent-toggle-icon { color: var(--c-muted); flex-shrink: 0; transition: transform .2s; }
.consent-card.open .consent-toggle-icon { transform: rotate(180deg); }
.consent-body { border-top: 1px solid var(--c-border); background: #fafbff; display: block; }
.consent-body[hidden] { display: none !important; }
.consent-text {
  padding: 16px 18px; font-size: 0.82rem; line-height: 1.75; color: var(--c-text);
  max-height: 230px; overflow-y: auto;
}
.consent-text::-webkit-scrollbar { width: 4px; }
.consent-text::-webkit-scrollbar-thumb { background: var(--c-border); border-radius: 4px; }
.consent-text p { margin-bottom: 10px; }
.consent-text p:last-child { margin-bottom: 0; }
.consent-text strong { color: var(--c-primary); }
.consent-text a { color: var(--c-primary); text-decoration: underline; }
.consent-confirm {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; border-top: 1px dashed var(--c-border);
  cursor: pointer; font-size: 0.86rem; color: var(--c-text); background: var(--c-surface);
  transition: background .12s;
}
.consent-confirm:hover { background: #f0fdf4; }
.consent-confirm input[type="checkbox"] { accent-color: #16a34a; width: 16px; height: 16px; flex-shrink: 0; }

/* Progress bar (check.html) */
.progress-bar-wrap {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 32px; gap: 0;
}
.progress-step {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  flex: 0 0 auto;
}
.progress-step-circle {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid var(--c-border); background: var(--c-surface);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.875rem; font-weight: 700; color: var(--c-muted); transition: all .25s;
}
.progress-step.active .progress-step-circle  { border-color: var(--c-primary); background: var(--c-primary); color: #fff; }
.progress-step.done .progress-step-circle    { border-color: var(--teal); background: var(--teal); color: #fff; }
.progress-step.done .progress-step-circle::before { content: '✓'; }
.progress-step.done .progress-step-circle span { display: none; }
.progress-step-label { font-size: 0.75rem; font-weight: 500; color: var(--c-muted); white-space: nowrap; }
.progress-step.active .progress-step-label { color: var(--c-primary); font-weight: 600; }
.progress-step.done .progress-step-label   { color: var(--teal); }
.progress-line {
  flex: 1; height: 2px; background: var(--c-border); margin: 0 4px; margin-bottom: 22px; transition: background .25s;
}
.progress-line.done { background: var(--teal); }

/* Form steps */
.form-step { display: none; }
.form-step.active { display: block; animation: stepIn 0.35s ease both; }
@keyframes stepIn { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:translateY(0); } }

.form-step-actions {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; margin-top: 8px;
}
.btn-back {
  background: none; border: none; color: var(--c-muted);
  font-size: 0.9rem; font-weight: 500; cursor: pointer; padding: 8px 4px;
  font-family: var(--font); transition: color .15s;
}
.btn-back:hover { color: var(--c-text); }

/* Signature */
.signature-area {
  border: 2px dashed var(--c-border); border-radius: var(--r-lg);
  background: var(--c-bg); position: relative; overflow: hidden;
  cursor: crosshair; transition: border-color .2s;
}
.signature-area:hover, .signature-area.active { border-color: var(--c-primary); }
.signature-area canvas { display: block; width: 100%; touch-action: none; }
.signature-hint {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  color: var(--c-muted); font-size: 0.9rem; pointer-events: none; transition: opacity .2s;
}
.signature-area.has-sig .signature-hint { opacity: 0; }
.signature-actions { margin-top: 8px; display: flex; justify-content: flex-end; }
.btn-clear-sig {
  background: none; border: none; color: var(--c-muted); font-size: 0.82rem;
  cursor: pointer; padding: 4px 8px; font-family: var(--font); text-decoration: underline;
}
.btn-clear-sig:hover { color: var(--coral); }

/* Security badges */
.security-badges {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; margin-top: 24px; flex-wrap: wrap;
}
.security-badge {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.75rem; color: var(--c-muted); font-weight: 500;
}

/* Success card */
.success-box { text-align: center; padding: 20px 0; }
.success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--teal-light); color: var(--teal);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.success-box h2 { color: var(--c-text); margin-bottom: 8px; }
.success-box p { color: var(--c-muted); margin-bottom: 0; }
.request-id {
  background: var(--c-bg); border-radius: var(--r-md); padding: 12px 20px;
  font-size: 0.875rem; color: var(--c-muted); margin-top: 20px; display: inline-block;
}
.request-id strong { color: var(--c-text); font-family: monospace; }

/* Insurance type selector */
.ins-type-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 8px; }
.ins-type-btn {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 14px 8px; border: 1.5px solid var(--c-border); border-radius: var(--r-md);
  background: var(--c-surface); cursor: pointer; transition: border-color .2s, background .2s, transform .15s;
  font-family: var(--font); font-size: 0.8rem; font-weight: 600; color: var(--c-muted);
  min-height: 70px;
}
.ins-type-btn:hover { border-color: var(--c-primary); background: var(--c-primary-light); color: var(--c-primary); }
.ins-type-btn.selected { border-color: var(--c-primary); background: var(--c-primary-light); color: var(--c-primary); transform: scale(1.02); }
.ins-type-icon { font-size: 1.4rem; line-height: 1; }
.ins-type-label { text-align: center; line-height: 1.2; }

/* Conditional fields */
.cond-fields {
  background: var(--c-bg); border: 1px solid var(--c-border);
  border-radius: var(--r-md); padding: 16px; margin-bottom: 20px;
}
.cond-fields-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.8rem; font-weight: 700; color: var(--c-muted); margin-bottom: 14px;
}
.cond-fields .form-group { margin-bottom: 12px; }
.cond-fields .form-group:last-child { margin-bottom: 0; }

/* Estimated premium */
.est-premium-box {
  background: linear-gradient(135deg, var(--c-navy) 0%, #112240 100%);
  border-radius: var(--r-lg); padding: 20px 24px; margin-bottom: 24px;
  text-align: center; border: 1px solid rgba(245,158,11,0.3);
}
.est-premium-label {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 0.78rem; font-weight: 600; color: rgba(255,255,255,0.5);
  text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px;
}
.est-premium-range { font-size: 1.6rem; font-weight: 900; color: var(--c-accent); margin-bottom: 6px; direction: ltr; }
.est-premium-sub { font-size: 0.75rem; color: rgba(255,255,255,0.4); line-height: 1.5; }

/* Vehicle multi-car */
.vehicle-fields { display: flex; flex-direction: column; gap: 12px; }
.vehicle-field-row { display: flex; align-items: flex-start; gap: 8px; }
.btn-remove-car { background: none; border: none; color: var(--coral); cursor: pointer; padding: 13px 6px; font-size: 1.1rem; }
.btn-add-car {
  display: inline-flex; align-items: center; gap: 6px;
  background: none; border: 1.5px dashed var(--c-border); color: var(--c-muted);
  padding: 10px 16px; border-radius: var(--r-md); font-size: 0.875rem;
  cursor: pointer; font-family: var(--font); transition: border-color .2s, color .2s;
}
.btn-add-car:hover { border-color: var(--c-primary); color: var(--c-primary); }

/* Loading spinner */
.loading-spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  animation: spin .7s linear infinite; flex-shrink: 0;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ══════════════════════════════════════════════════════
   MY AREA (my.html)
   ══════════════════════════════════════════════════════ */
.my-page { padding: 0 0 80px; background: var(--c-bg); }
.my-header { background: var(--c-navy); padding: 28px 20px; margin-bottom: 32px; }
.my-greeting { max-width: 1100px; margin: 0 auto; }
.my-greeting h2 { font-size: 1.5rem; color: #fff; margin-bottom: 4px; }
.my-greeting p  { font-size: 0.875rem; color: #64748B; }

.quick-actions-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 32px;
}
.quick-action-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 20px; display: flex; align-items: flex-start;
  gap: 14px; box-shadow: var(--shadow-sm); cursor: pointer;
  transition: transform .2s, box-shadow .2s, border-color .2s; text-decoration: none; color: inherit;
}
.quick-action-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); border-color: var(--teal); }
.quick-action-icon {
  width: 44px; height: 44px; border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.quick-action-icon.teal  { background: var(--teal-light);  color: var(--teal); }
.quick-action-icon.gold  { background: var(--gold-light);  color: var(--gold); }
.quick-action-icon.blue  { background: #EFF6FF; color: #2563EB; }
.quick-action-icon.coral { background: var(--coral-light); color: var(--coral); }
.quick-action-title { font-weight: 700; font-size: 0.9rem; margin-bottom: 3px; color: var(--c-text); }
.quick-action-sub   { font-size: 0.78rem; color: var(--c-muted); }

.status-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 40px; }
.status-card {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); padding: 24px; display: flex; align-items: center;
  gap: 16px; box-shadow: var(--shadow-sm);
}
.status-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.status-dot.green  { background: var(--teal);  box-shadow: 0 0 0 4px var(--teal-light); }
.status-dot.yellow { background: var(--amber); box-shadow: 0 0 0 4px var(--amber-light); }
.status-dot.red    { background: var(--coral); box-shadow: 0 0 0 4px var(--coral-light); }
.status-card .label { font-size: 0.8rem; color: var(--c-muted); margin-bottom: 2px; }
.status-card .value { font-weight: 600; font-size: 0.95rem; color: var(--c-text); }

.state-box {
  text-align: center; padding: 60px 24px; background: var(--c-surface);
  border-radius: var(--r-xl); border: 1px solid var(--c-border); box-shadow: var(--shadow-sm);
}
.state-box .state-icon { font-size: 3rem; margin-bottom: 20px; }
.state-box h3 { color: var(--c-text); }

.report-container {
  background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-xl); padding: 40px; box-shadow: var(--shadow-sm);
}
.score-section { text-align: center; padding: 32px 0; margin-bottom: 32px; border-bottom: 1px solid var(--c-border); }
.score-ring {
  width: 120px; height: 120px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 2.5rem; font-weight: 800;
}
.score-ring.high   { background: var(--teal-light);  color: var(--teal); }
.score-ring.medium { background: var(--amber-light); color: var(--amber); }
.score-ring.low    { background: var(--coral-light); color: var(--coral); }
.finding-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border-radius: var(--r-md); margin-bottom: 10px; border: 1px solid transparent;
}
.finding-item.ok      { background: var(--teal-light);  border-color: rgba(5,150,105,.15); }
.finding-item.warning { background: var(--amber-light); border-color: rgba(245,158,11,.2); }
.finding-item.error   { background: var(--coral-light); border-color: rgba(239,68,68,.2); }
.finding-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.finding-text { font-size: 0.9rem; line-height: 1.6; color: var(--c-text); }
.finding-text strong { font-weight: 600; display: block; margin-bottom: 2px; }

/* ══════════════════════════════════════════════════════
   ABOUT & HOW PAGES
   ══════════════════════════════════════════════════════ */
.about-page-hero {
  background: var(--c-navy); padding: 80px 0;
}

.how-page { padding: 72px 0; }
.comparison-table {
  width: 100%; border-collapse: collapse; margin-bottom: 60px;
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-md);
}
.comparison-table thead th { padding: 16px 24px; font-size: 1rem; font-weight: 700; text-align: center; }
.comparison-table thead th:first-child { background: var(--c-bg); text-align: right; }
.comparison-table thead th.col-ai   { background: var(--c-navy); color: #fff; }
.comparison-table thead th.col-trad { background: #F1F5F9; color: var(--c-text); }
.comparison-table tbody tr { border-bottom: 1px solid var(--c-border); }
.comparison-table tbody tr:last-child { border-bottom: none; }
.comparison-table tbody td { padding: 14px 24px; font-size: 0.9rem; background: var(--c-surface); }
.comparison-table tbody td:first-child { font-weight: 600; background: #FAFBFC; }
.comparison-table tbody td.good { color: var(--teal); font-weight: 600; text-align: center; }
.comparison-table tbody td.bad  { color: var(--c-muted); text-align: center; }
.how-steps { display: flex; flex-direction: column; gap: 24px; margin-bottom: 60px; }
.how-step {
  display: flex; gap: 24px; align-items: flex-start;
  padding: 28px; background: var(--c-surface); border: 1px solid var(--c-border);
  border-radius: var(--r-lg); box-shadow: var(--shadow-sm);
}
.how-step-num {
  width: 48px; height: 48px; border-radius: 14px; background: var(--c-navy);
  color: var(--c-accent); font-size: 1.4rem; font-weight: 900;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.how-step-body h3 { font-size: 1.05rem; margin-bottom: 6px; color: var(--c-text); }
.how-step-body p  { font-size: 0.9rem; color: var(--c-muted); line-height: 1.7; margin: 0; }

/* ══════════════════════════════════════════════════════
   ANIMATIONS & UTILS
   ══════════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}
.pulse { animation: pulse 2s ease-in-out infinite; }

/* ── Section Header ────────────────────────────────── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-header h2 { margin-bottom: 12px; }
.section-header p  { font-size: 1.0625rem; color: var(--c-muted); }

/* ── Footer extras ─────────────────────────────────── */
.footer-contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.875rem; color: #94A3B8; padding: 5px 0;
}
.footer-contact-item a { color: #94A3B8; transition: color .15s; }
.footer-contact-item a:hover { color: #fff; }
.footer-contact-item svg { flex-shrink: 0; color: #64748B; }
.footer-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  padding: 5px 12px; border-radius: 100px;
  font-size: 0.75rem; color: #94A3B8; margin-top: 14px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.8125rem; color: #64748B; }
.footer-legal a:hover { color: #94A3B8; }

/* ── Data-fade (IntersectionObserver — JS adds animation) */
[data-fade] { opacity: 0; }

/* ── Reviews Carousel ──────────────────────────────── */
.reviews-carousel-wrap { position: relative; }
.reviews-dots {
  display: flex; justify-content: center; gap: 8px; margin-top: 20px;
}
.review-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none; padding: 0;
  background: rgba(255,255,255,0.25); cursor: pointer; transition: background .2s, transform .2s;
}
.review-dot.active { background: #fff; transform: scale(1.3); }
@media (min-width: 901px) { .reviews-dots { display: none; } }
@media (max-width: 900px) {
  .reviews-grid {
    display: flex !important; overflow-x: auto; scroll-snap-type: x mandatory;
    scrollbar-width: none; -ms-overflow-style: none;
    gap: 0; padding-bottom: 4px;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .reviews-grid .review-card {
    flex: 0 0 calc(100% - 32px); scroll-snap-align: center;
    margin: 0 8px;
  }
}

/* ── Mobile Sticky CTA ─────────────────────────────── */
.mobile-sticky-cta {
  position: fixed; bottom: 0; right: 0; left: 0; z-index: 150;
  background: rgba(15,32,67,0.97); backdrop-filter: blur(10px);
  padding: 12px 16px; border-top: 1px solid rgba(255,255,255,0.12);
  transform: translateY(100%); transition: transform .3s ease;
  display: none;
}
.mobile-sticky-cta .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 14px; }
@media (max-width: 640px) {
  .mobile-sticky-cta { display: block; }
  body { padding-bottom: 80px; }
  .cookie-banner { bottom: 88px; }
}

/* ── Cookie Banner ─────────────────────────────────── */
.cookie-banner {
  position: fixed; bottom: 20px; right: 20px; z-index: 200;
  max-width: 380px; background: var(--c-navy); color: #94A3B8;
  padding: 16px 20px; border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; gap: 12px;
}
.cookie-banner p { font-size: 0.875rem; color: #94A3B8; margin: 0; }
.cookie-banner a { color: #93C5FD; text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; justify-content: flex-end; }

.hidden { display: none !important; }
.text-center { text-align: center; }
.text-muted  { color: var(--c-muted); font-size: 0.875rem; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }

/* ── Status Bar ──────────────────────────────────────── */
.status-bar {
  background: rgba(8,18,40,0.98);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  padding: 7px 20px;
  text-align: center;
  font-size: 0.78rem;
  color: #475569;
  position: relative;
  z-index: 101;
}
.status-bar-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex-wrap: wrap;
}
.status-live-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22C55E; box-shadow: 0 0 6px #22C55E; flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity:1; box-shadow:0 0 6px #22C55E; }
  50%      { opacity:.7; box-shadow:0 0 14px #22C55E; }
}
.status-bar strong { color: #94A3B8; }
.status-sep { color: #1e293b; margin: 0 2px; }

/* ── Hero Gradient Mesh (3 blobs) ────────────────────── */
/* override ::before in hero section */

/* ── Hero Mini Form ──────────────────────────────────── */
.hero-mini-form {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-mini-form-label {
  font-size: 0.8rem; color: #64748B; margin-bottom: 10px;
}
.hero-mini-form-row {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.hero-mini-input {
  flex: 1; min-width: 130px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.12);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  font-family: var(--font); font-size: 0.9rem;
  color: #fff; outline: none;
  transition: border-color .2s, background .2s;
}
.hero-mini-input::placeholder { color: #334155; }
.hero-mini-input:focus {
  border-color: rgba(26,86,219,.65);
  background: rgba(255,255,255,0.1);
}
.hero-mini-form-trust {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 10px; font-size: 0.74rem; color: #334155;
}
.hero-mini-form-trust span { display: flex; align-items: center; gap: 4px; }
.hero-mini-form-success {
  display: none;
  margin-top: 12px;
  padding: 11px 16px;
  background: rgba(34,197,94,.1);
  border: 1px solid rgba(34,197,94,.22);
  border-radius: var(--r-sm);
  color: #4ade80; font-size: 0.875rem;
}

/* ── Partner logos ───────────────────────────────────── */
.hero-partners-logos {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; align-items: center;
}

/* ── Wave Dividers ───────────────────────────────────── */
.wave-divider { line-height: 0; overflow: hidden; }
.wave-divider svg { display: block; width: 100%; }

/* ── Services — Glass Cards ──────────────────────────── */
.services-bg {
  background: linear-gradient(155deg, #edf2ff 0%, var(--c-bg) 50%, #e8f0fe 100%);
}

/* ── Hero AI Card Animation ──────────────────────────── */
@keyframes ai-row-in {
  from { opacity:0; transform: translateX(8px); }
  to   { opacity:1; transform: translateX(0); }
}
.hero-card-row.ai-hidden,
.hero-saving.ai-hidden { opacity:0; }
.hero-card-row.ai-visible {
  animation: ai-row-in .45s cubic-bezier(.4,0,.2,1) forwards;
}
.hero-saving.ai-visible {
  animation: ai-row-in .5s cubic-bezier(.4,0,.2,1) .1s forwards;
}
@keyframes ai-scan {
  0%,100% { opacity:.35; }
  50%      { opacity:1; }
}
.ai-scanning .hero-card-label {
  animation: ai-scan .9s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .tech-grid { grid-template-columns: 1fr; gap: 36px; }
  .tools-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
  .status-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar-links, .navbar-cta { display: none; }
  .navbar-hamburger { display: flex; }

  .hero-grid { padding: 52px 20px 36px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .statsbar-inner { grid-template-columns: repeat(2, 1fr); }
  .statsbar-item { border-bottom: 1px solid var(--c-border); }
  .statsbar-item:nth-child(odd) { border-right: none; }

  .services-grid { grid-template-columns: 1fr; }
  .ins-type-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .quick-actions-grid { grid-template-columns: 1fr; }
  .report-container { padding: 24px 20px; }
  .section { padding: 52px 0; }

  /* Partners bar — wrap on mobile */
  .hero-partners-logos {
    gap: 8px;
    justify-content: center;
  }
  .partner-badge {
    font-size: 0.78rem;
    padding: 5px 10px;
  }

  /* Steps — single column on mobile */
  .steps-grid { grid-template-columns: 1fr; gap: 12px; }

  /* Hero trust row — stack vertically */
  .hero-trust { flex-direction: column; gap: 10px; align-items: flex-start; }

  /* Reviews dots nav */
  .reviews-dots { margin-top: 20px; }

  /* Footer steps alignment */
  .footer-grid { gap: 24px; }
}

@media (max-width: 480px) {
  /* Very small screens — extra tightening */
  .hero-title { font-size: clamp(1.6rem, 8vw, 2.4rem); }
  .statsbar-inner { grid-template-columns: 1fr 1fr; gap: 0; }
  .hero-partners { padding: 16px 12px; }
  .hero-partners-logos { gap: 6px; }
  .partner-badge { font-size: 0.72rem; padding: 4px 8px; }
  .mobile-sticky-cta { padding: 10px 16px; }
}
