/* ── Variables ─────────────────────────────── */
:root {
  --navy:     #1A3C5E;
  --navy-d:   #0D2035;
  --gold:     #F4A300;
  --gold-d:   #D08C00;
  --green:    #2ECC71;
  --bg:       #F8F9FA;
  --text:     #212529;
  --muted:    #6C757D;
  --border:   #E9ECEF;
  --white:    #FFFFFF;
  --shadow:   0 4px 24px rgba(26,60,94,.08);
  --shadow-h: 0 12px 40px rgba(26,60,94,.18);
  --r:        16px;
  --r-lg:     24px;
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3 { font-family: 'Poppins', sans-serif; line-height: 1.15; }
a { text-decoration: none; color: inherit; }

/* ── Layout ────────────────────────────────── */
.wrap { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section     { padding: 80px 0; }
.section-alt { padding: 80px 0; background: var(--bg); }
.eyebrow {
  display: inline-block; text-transform: uppercase; letter-spacing: .15em;
  font-size: .78rem; font-family: 'Poppins', sans-serif; font-weight: 700;
  color: var(--gold); margin-bottom: 12px;
}
.section-head { margin-bottom: 48px; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); color: var(--navy-d); margin-bottom: 12px; }
.section-head p  { color: var(--muted); font-size: 1.05rem; max-width: 680px; }
.center { text-align: center; }
.center .section-head p { margin: 0 auto; }

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 24px; border-radius: 12px; font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: .95rem; border: 2px solid transparent;
  cursor: pointer; transition: all .2s ease; white-space: nowrap;
}
.btn-gold    { background: var(--gold); color: var(--navy-d); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-d); border-color: var(--gold-d); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(244,163,0,.35); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,.4); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }
.btn-lg { padding: 18px 32px; font-size: 1.05rem; border-radius: 14px; }
.btn-w  { width: 100%; justify-content: center; }

/* ── Header ────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  transition: box-shadow .2s;
}
header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.3); }
nav { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 24px; }
.brand { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.05rem; color: var(--white); }
.brand em { color: var(--gold); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { font-size: .93rem; font-weight: 500; color: rgba(255,255,255,.75); transition: color .15s; }
.nav-links a:hover { color: var(--white); }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: all .25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav {
  display: none; position: absolute; top: 72px; left: 0; right: 0;
  background: var(--navy-d); border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 16px 20px 24px; flex-direction: column; gap: 4px;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1rem; font-weight: 500; color: rgba(255,255,255,.8);
  padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-nav a:last-child { border-bottom: none; padding-bottom: 0; }
.mobile-nav .btn { margin-top: 10px; }

/* ── Hero ──────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-d) 100%);
  padding: 80px 0 72px; position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.hero-grid {
  display: grid; grid-template-columns: 1.1fr .9fr;
  gap: 56px; align-items: center; position: relative; z-index: 1;
}
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--white); margin-bottom: 20px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-lead { font-size: 1.08rem; color: rgba(255,255,255,.78); max-width: 540px; margin-bottom: 32px; line-height: 1.75; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.trust-bar { display: flex; gap: 20px; flex-wrap: wrap; }
.trust-item { font-size: .86rem; color: rgba(255,255,255,.65); display: flex; align-items: center; gap: 7px; }
.trust-item::before { content: '✓'; color: var(--green); font-weight: 700; }

/* Hero card */
.hero-card {
  background: rgba(255,255,255,.07); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.15); border-radius: var(--r-lg); padding: 28px;
}
.hc-label { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .8rem; color: var(--gold); text-transform: uppercase; letter-spacing: .1em; margin-bottom: 20px; }
.hc-step { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.hc-step:last-of-type { border-bottom: none; }
.hc-num {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); color: var(--navy-d);
  font-family: 'Poppins', sans-serif; font-weight: 800; font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
}
.hc-body strong { display: block; color: var(--white); font-size: .95rem; margin-bottom: 3px; }
.hc-body span   { font-size: .84rem; color: rgba(255,255,255,.58); line-height: 1.5; }
.hc-cta { margin-top: 20px; }

/* ── Grids ─────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

/* ── Problem cards ─────────────────────────── */
.prob-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r);
  padding: 24px; box-shadow: var(--shadow); transition: transform .2s, box-shadow .2s;
}
.prob-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-h); }
.prob-icon { font-size: 1.8rem; margin-bottom: 10px; }
.prob-card h3 { font-size: 1rem; color: var(--navy-d); margin-bottom: 6px; }
.prob-card p  { font-size: .92rem; color: var(--muted); line-height: 1.6; }
.bridge {
  margin-top: 32px; padding: 20px 24px;
  background: var(--white); border: 1px solid var(--border);
  border-left: 4px solid var(--gold); border-radius: var(--r);
  color: var(--muted); font-size: .98rem;
}
.bridge strong { color: var(--navy-d); }

/* ── How we help ───────────────────────────── */
.help-col { text-align: center; padding: 32px 24px; }
.help-icon { font-size: 2.4rem; margin-bottom: 16px; }
.help-col h3 { font-size: 1.1rem; color: var(--navy-d); margin-bottom: 14px; }
.help-col ul { list-style: none; text-align: left; }
.help-col ul li {
  padding: 7px 0; font-size: .93rem; color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.help-col ul li:last-child { border-bottom: none; }
.help-col ul li::before { content: '→ '; color: var(--gold); font-weight: 700; }

/* ── Service cards ─────────────────────────── */
.svc-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r);
  padding: 28px 24px; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-h); border-color: rgba(26,60,94,.15); }
.svc-badge {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  background: #EEF5FF; color: var(--navy);
  font-size: .78rem; font-weight: 700; font-family: 'Poppins', sans-serif;
  margin-bottom: 14px; width: fit-content;
}
.svc-badge.new   { background: #FFF3E0; color: #E65100; }
.svc-badge.rec   { background: #E8F5E9; color: #2E7D32; }
.svc-badge.green { background: #E8F5E9; color: #2E7D32; }
.svc-card h3 { font-size: 1.05rem; color: var(--navy-d); margin-bottom: 8px; }
.svc-card p  { font-size: .92rem; color: var(--muted); flex: 1; margin-bottom: 16px; line-height: 1.65; }
.svc-link {
  font-size: .88rem; font-weight: 600; color: var(--navy);
  display: inline-flex; align-items: center; gap: 4px; transition: color .15s;
}
.svc-link:hover { color: var(--gold); }
.svc-link::after { content: '→'; transition: transform .15s; }
.svc-link:hover::after { transform: translateX(4px); }

/* ── Process timeline ──────────────────────── */
.process-steps {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; position: relative; margin-top: 48px;
}
.process-steps::before {
  content: ''; position: absolute; top: 27px; left: 10%; right: 10%; height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--navy)); z-index: 0;
}
.ps { display: flex; flex-direction: column; align-items: center; text-align: center; position: relative; z-index: 1; padding: 0 12px; }
.ps-num {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-d) 100%);
  color: var(--white); font-family: 'Poppins', sans-serif; font-weight: 800;
  font-size: 1.15rem; display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; border: 3px solid var(--white);
  box-shadow: 0 4px 16px rgba(26,60,94,.25);
}
.ps:first-child .ps-num,
.ps:last-child  .ps-num { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-d) 100%); color: var(--navy-d); }
.ps h3 { font-size: .95rem; color: var(--navy-d); margin-bottom: 6px; }
.ps p  { font-size: .83rem; color: var(--muted); line-height: 1.5; }

/* ── Why us ────────────────────────────────── */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 40px; }
.why-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--r); padding: 28px; box-shadow: var(--shadow); }
.why-icon { font-size: 1.8rem; margin-bottom: 12px; }
.why-card h3 { font-size: 1.05rem; color: var(--navy-d); margin-bottom: 8px; }
.why-card p  { font-size: .93rem; color: var(--muted); line-height: 1.65; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat {
  text-align: center; padding: 28px 16px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-d) 100%);
  border-radius: var(--r); color: var(--white);
}
.stat-num   { font-family: 'Poppins', sans-serif; font-size: 2rem; font-weight: 800; color: var(--gold); }
.stat-label { font-size: .82rem; color: rgba(255,255,255,.65); margin-top: 4px; line-height: 1.4; }

/* ── FAQ ───────────────────────────────────── */
.faq-wrap { max-width: 760px; margin: 0 auto; }
.faq-item { border: 1px solid var(--border); border-radius: var(--r); background: var(--white); margin-bottom: 10px; overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 22px; background: none; border: none; cursor: pointer;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: .97rem; color: var(--navy-d);
  transition: background .15s;
}
.faq-q:hover { background: var(--bg); }
.faq-icon {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--bg); display: flex; align-items: center; justify-content: center;
  font-size: .9rem; transition: transform .25s, background .2s; color: var(--navy);
  font-style: normal; font-weight: 700; font-family: 'Poppins', sans-serif;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--gold); color: var(--navy-d); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-item.open .faq-body { max-height: 400px; }
.faq-body-inner { padding: 0 22px 20px; font-size: .95rem; color: var(--muted); line-height: 1.75; }

/* ── CTA section ───────────────────────────── */
.cta-section {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-d) 100%);
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 620px; margin: 0 auto; }
.cta-inner h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); color: var(--white); margin-bottom: 16px; }
.cta-inner > p { color: rgba(255,255,255,.75); font-size: 1.05rem; margin-bottom: 28px; line-height: 1.7; }
.cta-bullets { list-style: none; margin-bottom: 36px; display: inline-block; text-align: left; }
.cta-bullets li { padding: 6px 0; color: rgba(255,255,255,.8); font-size: .97rem; display: flex; align-items: center; gap: 10px; }
.cta-bullets li::before { content: '✓'; color: var(--green); font-weight: 700; font-size: 1rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-sub { margin-top: 24px; font-size: .88rem; color: rgba(255,255,255,.4); }
.cta-sub a { color: rgba(255,255,255,.6); text-decoration: underline; }
.cta-sub a:hover { color: var(--white); }

/* ── Footer ────────────────────────────────── */
footer { background: #08192B; padding: 56px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 48px; }
.footer-brand { font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
.footer-brand em { color: var(--gold); font-style: normal; }
.footer-desc { font-size: .9rem; color: rgba(255,255,255,.4); line-height: 1.7; }
.footer-heading { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: .82rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: .9rem; color: rgba(255,255,255,.5); transition: color .15s; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom span { font-size: .84rem; color: rgba(255,255,255,.28); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: .84rem; color: rgba(255,255,255,.38); transition: color .15s; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ── Inner page hero ──────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-d) 100%);
  padding: 56px 0; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 760px; }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 3rem); color: var(--white); margin-bottom: 16px; }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero-lead { font-size: 1.05rem; color: rgba(255,255,255,.78); margin-bottom: 28px; line-height: 1.75; max-width: 640px; }
.page-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.breadcrumb { display: flex; gap: 8px; align-items: center; margin-bottom: 20px; }
.breadcrumb a { font-size: .84rem; color: rgba(255,255,255,.5); transition: color .15s; }
.breadcrumb a:hover { color: rgba(255,255,255,.85); }
.breadcrumb span { font-size: .84rem; color: rgba(255,255,255,.3); }
.breadcrumb-cur { font-size: .84rem; color: rgba(255,255,255,.75); }

/* ── Feature list ──────────────────────────── */
.feature-list { list-style: none; }
.feature-item { display: flex; gap: 18px; padding: 20px 0; border-bottom: 1px solid var(--border); }
.feature-item:last-child { border-bottom: none; }
.fi-icon { font-size: 1.6rem; flex-shrink: 0; width: 44px; padding-top: 2px; }
.fi-body h3 { font-size: 1rem; color: var(--navy-d); margin-bottom: 5px; }
.fi-body p { font-size: .93rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ── Content with sidebar ──────────────────── */
.content-sidebar { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }
.sticky-sidebar { position: sticky; top: 92px; }
.sidebar-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px; box-shadow: var(--shadow);
}
.sidebar-card h3 { font-size: 1.05rem; color: var(--navy-d); margin-bottom: 16px; }
.sidebar-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.sidebar-list li { font-size: .93rem; color: var(--muted); display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.sidebar-list li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.sidebar-price { margin: 16px 0; padding: 14px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.sidebar-price .label { font-size: .82rem; color: var(--muted); margin-bottom: 4px; }
.sidebar-price .value { font-family: 'Poppins', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--navy-d); }
.sidebar-price .note { font-size: .8rem; color: var(--muted); margin-top: 3px; }

/* ── Highlight box ─────────────────────────── */
.highlight-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-d) 100%);
  border-radius: var(--r-lg); padding: 32px; color: var(--white); margin: 32px 0;
}
.highlight-box h3 { font-size: 1.15rem; color: var(--white); margin-bottom: 12px; }
.highlight-box p { color: rgba(255,255,255,.75); font-size: .97rem; line-height: 1.7; margin: 0; }

/* ── Steps list ────────────────────────────── */
.steps-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.step-item { display: flex; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--border); }
.step-item:last-child { border-bottom: none; }
.step-num {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-d));
  color: var(--white); font-family: 'Poppins', sans-serif; font-weight: 800; font-size: .95rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(26,60,94,.2);
}
.step-body h3 { font-size: 1rem; color: var(--navy-d); margin-bottom: 6px; }
.step-body p { font-size: .93rem; color: var(--muted); line-height: 1.65; margin: 0; }

/* ── Result cards ──────────────────────────── */
.result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.result-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r);
  padding: 24px; box-shadow: var(--shadow); text-align: center;
}
.result-num { font-family: 'Poppins', sans-serif; font-size: 2.2rem; font-weight: 800; color: var(--gold); }
.result-label { font-size: .88rem; color: var(--muted); margin-top: 6px; line-height: 1.5; }

/* ── Check grid ────────────────────────────── */
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.check-item { display: flex; gap: 10px; align-items: flex-start; font-size: .93rem; color: var(--muted); line-height: 1.55; }
.check-item::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

/* ── Sidebar links (not footer) ───────────── */
.sidebar-links { display: flex; flex-direction: column; gap: 8px; }
.sidebar-links a {
  font-size: .9rem; font-weight: 600; color: var(--navy);
  display: inline-flex; align-items: center; gap: 5px; transition: color .15s;
}
.sidebar-links a:hover { color: var(--gold); }
.sidebar-links a::after { content: '→'; transition: transform .15s; font-size: .85rem; }
.sidebar-links a:hover::after { transform: translateX(4px); }

/* ── Package cards ─────────────────────────── */
.pkg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 8px; }
.pkg-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r);
  padding: 24px; box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.pkg-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-h); border-color: rgba(26,60,94,.15); }
.pkg-card h3 { font-size: 1rem; color: var(--navy-d); margin-bottom: 8px; }
.pkg-card p { font-size: .9rem; color: var(--muted); flex: 1; margin-bottom: 16px; line-height: 1.6; }
.pkg-card .btn { margin-top: auto; }
@media (max-width: 768px) { .pkg-grid { grid-template-columns: 1fr; } }

/* ── Tag chips ─────────────────────────────── */
.tag-row { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 16px; }
.tag { display: inline-block; padding: 6px 14px; border-radius: 999px; background: #EEF5FF; color: var(--navy); font-size: .82rem; font-weight: 600; font-family: 'Poppins', sans-serif; }
.tag.gold { background: #FFF3CD; color: #856404; }
.tag.green { background: #E8F5E9; color: #2E7D32; }
.tag.blue  { background: #E8F0FE; color: #1A73E8; }

/* ── Partner badge block ───────────────────── */
.partner-block {
  display: flex; align-items: center; gap: 36px;
  background: linear-gradient(135deg, #ebf3fe 0%, #f4f8ff 100%);
  border: 1.5px solid #c9defa; border-radius: var(--r-lg);
  padding: 28px 36px; margin-top: 48px;
  text-decoration: none; color: inherit;
  transition: box-shadow .2s, transform .2s;
}
.partner-block:hover { box-shadow: 0 8px 32px rgba(26,115,232,.15); transform: translateY(-2px); }
.partner-block img { width: 130px; flex-shrink: 0; }
.partner-block-body { flex: 1; }
.partner-block-body h3 { font-size: 1.05rem; color: var(--navy-d); margin-bottom: 8px; }
.partner-block-body p  { font-size: .9rem; color: var(--muted); margin: 0 0 10px; line-height: 1.65; }
.partner-block-body .pb-link { font-size: .85rem; font-weight: 600; color: #1a73e8; }
@media (max-width: 600px) {
  .partner-block { flex-direction: column; text-align: center; padding: 24px; gap: 20px; }
  .partner-block img { width: 110px; }
}

/* ── Scroll animations ─────────────────────── */
.anim { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.anim.show { opacity: 1; transform: none; }
.d1 { transition-delay: .08s; }
.d2 { transition-delay: .18s; }
.d3 { transition-delay: .28s; }
.d4 { transition-delay: .38s; }

/* ── Responsive ────────────────────────────── */
@media (max-width: 1020px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .content-sidebar { grid-template-columns: 1fr; }
  .sticky-sidebar { position: static; }
  .result-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .section, .section-alt { padding: 56px 0; }
  .hero { padding: 52px 0; }
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; gap: 16px; }
  .ps { flex-direction: row; text-align: left; align-items: flex-start; gap: 16px; }
  .ps-num { margin-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; width: 100%; }
  .cta-actions .btn { width: 100%; }
  .result-grid { grid-template-columns: 1fr; }
  .check-grid { grid-template-columns: 1fr; }
  .page-hero-actions { flex-direction: column; }
  .page-hero-actions .btn { width: 100%; }
}

/* ── Cookie consent banner ─────────────────── */
#cookie-banner {
  display: none; position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
  background: #08192B; padding: 16px 24px; gap: 20px; align-items: center;
  box-shadow: 0 -4px 32px rgba(0,0,0,.35); flex-wrap: wrap;
}
#cookie-banner .cb-text { flex: 1; min-width: 220px; }
#cookie-banner .cb-text p { font-size: .87rem; line-height: 1.6; margin: 0; color: rgba(255,255,255,.8); }
#cookie-banner .cb-text a { color: var(--gold); text-decoration: underline; white-space: nowrap; }
#cookie-banner .cb-text strong { color: #fff; }
#cookie-banner .cb-actions { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }
.cb-decline-btn {
  background: none; border: 1.5px solid rgba(255,255,255,.3); color: rgba(255,255,255,.65);
  padding: 9px 18px; border-radius: 10px; cursor: pointer; font-family: 'Poppins', sans-serif;
  font-size: .83rem; font-weight: 600; transition: border-color .2s, color .2s; white-space: nowrap;
}
.cb-decline-btn:hover { border-color: rgba(255,255,255,.65); color: #fff; }
@media (max-width: 600px) {
  #cookie-banner { padding: 16px; gap: 14px; }
  #cookie-banner .cb-actions { width: 100%; justify-content: flex-end; }
}
