/* ==========================================================================
   Bestautoinsurancepro — UK Financial Services Insurance
   Modern fintech theme: deep navy + electric blue + warm gold
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Manrope:wght@500;600;700;800&family=Fraunces:ital,wght@0,500;0,600;0,700;1,500;1,600&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Brand */
  --brand-navy-900: #050d24;
  --brand-navy-800: #0a1738;
  --brand-navy-700: #102149;
  --brand-navy-600: #182d5e;
  --brand-blue-500: #2f6bff;
  --brand-blue-600: #1f55e0;
  --brand-blue-300: #7aa1ff;
  --brand-cyan:    #25c2d8;
  --brand-gold:    #d6a648;
  --brand-gold-2:  #f1c97b;

  /* Surfaces */
  --bg-page:   #f5f7fb;
  --bg-card:   #ffffff;
  --bg-soft:   #eef2f9;
  --bg-ink:    #050d24;

  /* Text */
  --text-1: #0b1a3a;
  --text-2: #36476b;
  --text-3: #6a7896;
  --text-on-dark: #e6ecff;
  --text-muted-on-dark: #9aa9cf;

  /* Lines */
  --line: #e2e8f3;
  --line-soft: #eef2f9;
  --line-dark: rgba(255,255,255,0.08);

  /* Effects */
  --shadow-sm: 0 4px 12px rgba(10, 23, 56, 0.06);
  --shadow-md: 0 12px 32px rgba(10, 23, 56, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 23, 56, 0.12);
  --shadow-glow: 0 18px 60px rgba(47, 107, 255, 0.28);
  --ring: 0 0 0 3px rgba(47, 107, 255, 0.25);

  /* Type */
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --font-head: 'Manrope', 'Inter', sans-serif;
  --font-serif: 'Fraunces', 'Georgia', serif;

  /* Radius & motion */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-fast: 0.25s ease;

  --maxw: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html, body { overflow-x: hidden; width: 100%; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  background: var(--bg-page);
  color: var(--text-2);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-size: 16px;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; transition: color var(--ease-fast), opacity var(--ease-fast); }
button { font: inherit; cursor: pointer; border: 0; background: transparent; }
ul { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--text-1);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 4.4vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.35rem); }
p  { color: var(--text-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue-500);
  background: rgba(47, 107, 255, 0.08);
  padding: 7px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 1.1rem;
}
.eyebrow.eyebrow--gold { color: var(--brand-gold); background: rgba(214, 166, 72, 0.12); }
.eyebrow.eyebrow--light { color: #ffd58a; background: rgba(255, 213, 138, 0.1); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-1);
  margin-bottom: 0.8rem;
  letter-spacing: -0.015em;
}
.section-sub {
  color: var(--text-3);
  font-size: 1.05rem;
  max-width: 640px;
}
.section-head { text-align: center; margin: 0 auto 3rem; max-width: 720px; }
.section-head .section-sub { margin: 0 auto; }

.gradient-text {
  background: linear-gradient(135deg, #2f6bff 0%, #25c2d8 50%, #d6a648 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.container { width: 92%; max-width: var(--maxw); margin: 0 auto; }
.section { padding: clamp(60px, 8vw, 110px) 0; }
.section--dark {
  background: linear-gradient(180deg, #050d24 0%, #0a1738 100%);
  color: var(--text-on-dark);
}
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p { color: var(--text-muted-on-dark); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  border-radius: var(--r-md);
  transition: transform var(--ease-fast), box-shadow var(--ease-fast), background var(--ease-fast), color var(--ease-fast);
  white-space: nowrap;
  cursor: pointer;
  border: 1.5px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: linear-gradient(135deg, var(--brand-blue-500) 0%, var(--brand-blue-600) 100%);
  color: #fff;
  box-shadow: 0 12px 28px rgba(47, 107, 255, 0.32);
}
.btn--primary:hover { box-shadow: 0 18px 40px rgba(47, 107, 255, 0.42); }

.btn--gold {
  background: linear-gradient(135deg, var(--brand-gold) 0%, var(--brand-gold-2) 100%);
  color: #1a1300;
  box-shadow: 0 12px 28px rgba(214, 166, 72, 0.32);
}
.btn--gold:hover { box-shadow: 0 18px 40px rgba(214, 166, 72, 0.42); }

.btn--ghost {
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: rgba(255,255,255,0.18);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,0.14); }

.btn--outline {
  background: transparent;
  color: var(--text-1);
  border-color: var(--line);
}
.btn--outline:hover { border-color: var(--brand-blue-500); color: var(--brand-blue-500); }

.btn--block { width: 100%; }
.btn--lg { padding: 17px 30px; font-size: 1.02rem; }

.btn .arrow { transition: transform var(--ease-fast); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------- Topbar ---------- */
.topbar {
  background: var(--bg-ink);
  color: #b9c3e2;
  font-size: 0.82rem;
  padding: 9px 0;
  border-bottom: 1px solid var(--line-dark);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.topbar a { color: #d6def1; }
.topbar a:hover { color: #fff; }
.topbar .dot { width: 4px; height: 4px; background: #2c3a66; border-radius: 50%; }
.topbar .pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(37, 194, 216, 0.12);
  color: #7be1f0;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.topbar .pill::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%; background: #25c2d8;
  box-shadow: 0 0 0 4px rgba(37, 194, 216, 0.18);
}

/* ---------- Affiliate banner ---------- */
.affiliate-banner {
  background: linear-gradient(90deg, #0a1738 0%, #102149 100%);
  color: #c9d4f0;
  text-align: center;
  padding: 9px 16px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  border-bottom: 1px solid var(--line-dark);
}
.affiliate-banner b { color: #ffd58a; font-weight: 700; }

/* ---------- Header ---------- */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(150%) blur(14px);
  -webkit-backdrop-filter: saturate(150%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow var(--ease-fast), background var(--ease-fast);
}
header.scrolled { box-shadow: 0 6px 20px rgba(10,23,56,0.06); background: rgba(255,255,255,0.96); }
.nav-container { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; gap: 30px; }

/* Brand wordmark */
.brand-logo {
  display: inline-flex; align-items: center; gap: 10px;
  text-decoration: none; color: var(--text-1);
}
.brand-mark {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--brand-blue-500) 0%, var(--brand-navy-700) 100%);
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800;
  font-family: var(--font-head);
  font-size: 1.1rem;
  position: relative;
  box-shadow: 0 8px 18px rgba(47, 107, 255, 0.3);
}
.brand-mark::after {
  content: ""; position: absolute; right: -3px; bottom: -3px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--brand-gold);
  border: 2px solid #fff;
}
.brand-name {
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--text-1);
  line-height: 1;
}
.brand-name span { color: var(--brand-blue-500); }
.brand-tag {
  display: block; margin-top: 2px;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--text-3);
}

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  display: inline-flex; align-items: center;
  padding: 9px 16px;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-2);
  border-radius: var(--r-sm);
  position: relative;
}
.nav-links a:hover { color: var(--brand-blue-500); background: rgba(47, 107, 255, 0.06); }
.nav-links a.active { color: var(--brand-blue-500); font-weight: 600; }
.nav-links a.active::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 2px;
  height: 2px; background: var(--brand-blue-500); border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 10px; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
  cursor: pointer;
  z-index: 101;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--text-1);
  border-radius: 2px;
  transition: transform var(--ease-fast), opacity var(--ease-fast);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
  position: fixed; top: 0; left: 0; right: 0;
  background: var(--bg-page); z-index: 99;
  padding: 90px 24px 32px;
  box-shadow: 0 18px 40px rgba(10,23,56,0.12);
  visibility: hidden;
  opacity: 0;
  transform: translateY(-110%);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease), visibility 0.3s;
  max-height: 100vh; overflow-y: auto;
}
.mobile-nav.open { transform: translateY(0); visibility: visible; opacity: 1; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: block; padding: 16px 12px; font-size: 1.08rem; font-weight: 600;
  color: var(--text-1); border-bottom: 1px solid var(--line-soft);
}
.mobile-nav a.active { color: var(--brand-blue-500); }
.mobile-nav .mobile-cta { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }

/* ---------- Preloader ---------- */
#preloader {
  position: fixed; inset: 0;
  background: var(--bg-ink);
  z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#preloader .pl-mark {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-blue-500) 0%, var(--brand-blue-600) 100%);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.4rem;
  box-shadow: 0 18px 50px rgba(47, 107, 255, 0.4);
  animation: plpulse 1.2s ease-in-out infinite;
}
#preloader .pl-text {
  margin-top: 18px;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #9aa9cf;
}
#preloader .pl-bar {
  margin-top: 18px;
  width: 180px; height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
#preloader .pl-bar::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, var(--brand-blue-500), transparent);
  animation: plslide 1.4s infinite;
}
@keyframes plpulse { 0%,100% { transform: scale(1);} 50% { transform: scale(1.05);} }
@keyframes plslide { 0% { transform: translateX(-100%);} 100% { transform: translateX(100%);} }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(47, 107, 255, 0.18) 0%, transparent 60%),
    radial-gradient(900px 500px at 0% 30%, rgba(37, 194, 216, 0.10) 0%, transparent 60%),
    linear-gradient(180deg, #f5f7fb 0%, #eef2f9 100%);
  overflow: hidden;
  padding: clamp(60px, 8vw, 110px) 0 clamp(60px, 8vw, 100px);
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10, 23, 56, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 23, 56, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at 50% 0%, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; display: grid; grid-template-columns: 1.05fr 1fr; gap: 60px; align-items: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--brand-blue-500);
  margin-bottom: 22px;
  box-shadow: var(--shadow-sm);
}
.hero-eyebrow .pulse { width: 8px; height: 8px; border-radius: 50%; background: #25c2d8; box-shadow: 0 0 0 4px rgba(37, 194, 216, 0.2); animation: pulse 1.6s infinite; }
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(37, 194, 216, 0.45); }
  50% { box-shadow: 0 0 0 8px rgba(37, 194, 216, 0); }
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.9rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text-1);
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  font-family: var(--font-serif);
  font-weight: 600;
  font-style: italic;
  background: linear-gradient(135deg, #2f6bff 0%, #25c2d8 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-lede { font-size: 1.12rem; color: var(--text-2); max-width: 540px; margin-bottom: 32px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-trust { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero-trust .item { display: flex; align-items: center; gap: 10px; color: var(--text-3); font-size: 0.88rem; font-weight: 500; }
.hero-trust .item svg { color: var(--brand-blue-500); flex-shrink: 0; }
.hero-trust .avatars { display: flex; }
.hero-trust .avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid #fff;
  background: linear-gradient(135deg, var(--brand-blue-300), var(--brand-blue-500));
  display: inline-block; margin-left: -8px;
  color: #fff; font-size: 0.7rem; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
}
.hero-trust .avatars span:first-child { margin-left: 0; background: linear-gradient(135deg, #ffd58a, #d6a648); color: #1a1300; }
.hero-trust .avatars span:nth-child(2) { background: linear-gradient(135deg, #7be1f0, #25c2d8); color: #052b30; }
.hero-trust .avatars span:nth-child(3) { background: linear-gradient(135deg, #b3c7ff, #2f6bff); }
.hero-trust .avatars span:last-child { background: var(--text-1); color: #fff; }

.hero-visual { position: relative; }
.hero-img-main {
  position: relative;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(10, 23, 56, 0.25);
  border: 1px solid rgba(255,255,255,0.4);
  aspect-ratio: 5/4;
  background: var(--brand-navy-800);
}
.hero-img-main img { width: 100%; height: 100%; object-fit: cover; }

.hero-float {
  position: absolute;
  background: #fff;
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: 0 20px 50px rgba(10, 23, 56, 0.18);
  display: flex; align-items: center; gap: 12px;
  border: 1px solid var(--line-soft);
}
.hero-float .icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-float h5 { font-family: var(--font-head); font-size: 0.92rem; font-weight: 700; color: var(--text-1); margin: 0; }
.hero-float p  { font-size: 0.74rem; color: var(--text-3); margin: 0; }
.hero-float--1 { top: 24px; left: -20px; }
.hero-float--1 .icon { background: rgba(47, 107, 255, 0.12); color: var(--brand-blue-500); }
.hero-float--2 { bottom: 28px; right: -16px; }
.hero-float--2 .icon { background: rgba(37, 194, 216, 0.12); color: var(--brand-cyan); }
.hero-float--3 { bottom: 110px; left: -28px; padding: 12px 16px; }
.hero-float--3 .icon { background: rgba(214, 166, 72, 0.14); color: var(--brand-gold); }

/* ============================================================
   GLOBAL RESPONSIVE — mobile / tablet
   ============================================================ */
@media (max-width: 960px) {
  /* Header */
  .nav-container { padding: 14px 0; gap: 14px; }
  .nav-links { display: none; }
  .nav-cta > .btn { display: none; }
  .menu-toggle { display: flex; }

  /* Topbar — stack & reduce on small screens */
  .topbar { font-size: 0.76rem; padding: 8px 0; }
  .topbar .container { gap: 8px; }
  .topbar-left, .topbar-right { gap: 10px; }
  .topbar .sep { display: none; }

  /* Brand wordmark — shrink on small screens */
  .brand-name { font-size: 1.2rem; }
  .brand-tag { font-size: 0.6rem; letter-spacing: 0.14em; }
  .brand-mark { width: 38px; height: 38px; font-size: 0.95rem; }

  /* Container tighter on mobile */
  .container { width: 94%; }
}

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 50px; }
  .hero-visual { order: -1; max-width: 460px; margin: 0 auto; width: 100%; }
  .hero-float--1 { left: 8px; top: 16px; }
  .hero-float--2 { right: 8px; bottom: 16px; }
  .hero-float--3 { left: 8px; bottom: 100px; }
  .hero-float h5 { font-size: 0.84rem; }
  .hero-float p { font-size: 0.7rem; }
  .hero-float .icon { width: 34px; height: 34px; }
  .hero-trust { gap: 14px; }
  .hero-trust .item { font-size: 0.82rem; }
}

/* ---------- Trust strip ---------- */
.trust-strip {
  background: #fff;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  padding: 26px 0;
}
.trust-strip .container {
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.trust-strip .label {
  font-family: var(--font-head);
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-3);
}
.trust-strip .badges { display: flex; align-items: center; gap: 28px; flex-wrap: wrap; }
.trust-strip .badge {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head);
  font-weight: 600; font-size: 0.9rem; color: var(--text-2);
}
.trust-strip .badge-mark {
  width: 36px; height: 36px; border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-soft); color: var(--brand-blue-500);
}

/* ---------- Features grid ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-card {
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 130px; height: 130px; border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 107, 255, 0.08), transparent 70%);
  opacity: 0; transition: opacity 0.4s var(--ease);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(47, 107, 255, 0.2); }
.feature-card:hover::after { opacity: 1; }
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(47, 107, 255, 0.12) 0%, rgba(37, 194, 216, 0.08) 100%);
  color: var(--brand-blue-500);
  margin-bottom: 20px;
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.feature-card p { font-size: 0.96rem; line-height: 1.65; }
.feature-card .tag {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px;
  font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--brand-blue-500);
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .feature-grid { grid-template-columns: 1fr; } }

/* Extra small devices */
@media (max-width: 480px) {
  .topbar-left .pill { display: none; }
  .topbar-left span:not(.pill) { display: none; }
  .topbar { padding: 6px 0; }
  .nav-container { padding: 12px 0; }
  .brand-mark { width: 36px; height: 36px; font-size: 0.9rem; }
  .brand-name { font-size: 1.1rem; }
  .brand-tag { display: none; }
  .section { padding: 50px 0; }
  .menu-toggle { width: 40px; height: 40px; }
  .hero-float--1, .hero-float--2, .hero-float--3 { padding: 10px 14px; }
  .hero h1.title-xl { font-size: 2rem; }
  .feature-card, .cover-card, .reward-card { padding: 24px 20px; }
  .testimonial { padding: 24px 20px; }
  .final-cta { padding: 40px 20px; }
  .affiliate-banner { font-size: 0.72rem; padding: 8px 12px; }
  .affiliate-banner br { display: none; }
  .pros-cons .pc { padding: 22px 18px; }
  .footer-col { padding: 0; }
}

/* ---------- Editorial section (image + text) ---------- */
.editorial { padding: clamp(60px, 8vw, 110px) 0; }
.editorial-grid {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 64px; align-items: center;
}
.editorial-img-wrap {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 4/3; box-shadow: var(--shadow-lg);
  background: var(--brand-navy-800);
}
.editorial-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.editorial-img-wrap .badge-stack {
  position: absolute; left: 22px; bottom: 22px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-radius: var(--r-md);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-md);
}
.editorial-img-wrap .badge-stack .dot { width: 10px; height: 10px; border-radius: 50%; background: #16a34a; box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.2); }
.editorial-img-wrap .badge-stack h5 { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; color: var(--text-1); }
.editorial-img-wrap .badge-stack p { font-size: 0.78rem; color: var(--text-3); margin: 0; }

.editorial h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); margin-bottom: 16px; }
.editorial .checklist { margin: 24px 0 28px; display: flex; flex-direction: column; gap: 12px; }
.editorial .checklist li { display: flex; align-items: flex-start; gap: 12px; color: var(--text-2); font-size: 0.98rem; }
.editorial .checklist .check {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: rgba(47, 107, 255, 0.1); color: var(--brand-blue-500);
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.editorial .checklist .check svg { width: 14px; height: 14px; }
@media (max-width: 900px) { .editorial-grid { grid-template-columns: 1fr; gap: 40px; } }

/* ---------- Cover types (image cards) ---------- */
.cover-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 40px; }
.cover-card {
  position: relative;
  background: #fff;
  border-radius: var(--r-lg);
  padding: 32px 28px;
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s var(--ease);
  overflow: hidden;
}
.cover-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.cover-card .cover-illust {
  height: 100px; margin-bottom: 22px;
  display: flex; align-items: center;
}
.cover-card .cover-illust svg { height: 100%; }
.cover-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.cover-card p { font-size: 0.95rem; }
.cover-card .cover-list { margin-top: 18px; display: flex; flex-direction: column; gap: 8px; }
.cover-card .cover-list li { display: flex; align-items: flex-start; gap: 8px; font-size: 0.88rem; color: var(--text-3); }
.cover-card .cover-list li svg { flex-shrink: 0; color: var(--brand-blue-500); margin-top: 3px; }
.cover-card .cover-cta { display: inline-flex; align-items: center; gap: 6px; margin-top: 22px; font-weight: 700; color: var(--brand-blue-500); font-family: var(--font-head); font-size: 0.9rem; }
.cover-card .cover-cta .arrow { transition: transform var(--ease-fast); }
.cover-card:hover .cover-cta .arrow { transform: translateX(3px); }
@media (max-width: 900px) { .cover-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .cover-grid { grid-template-columns: 1fr; } }

/* ---------- Stats counter ---------- */
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
  margin-top: 40px;
}
.stat-card {
  text-align: center;
  padding: 32px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-lg);
  backdrop-filter: blur(6px);
}
.stat-card .num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  background: linear-gradient(135deg, #7be1f0 0%, #d6a648 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  line-height: 1;
}
.stat-card .num sup { font-size: 0.5em; vertical-align: super; }
.stat-card .lbl { color: var(--text-muted-on-dark); font-size: 0.9rem; font-weight: 500; margin-top: 10px; }
@media (max-width: 900px) { .stats-grid { grid-template-columns: 1fr 1fr; } }

/* ---------- Industries chips ---------- */
.chip-grid { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 32px; }
.chip {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 12px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  font-family: var(--font-head);
  font-weight: 600; font-size: 0.92rem; color: var(--text-1);
  transition: all var(--ease-fast);
}
.chip:hover { border-color: var(--brand-blue-500); color: var(--brand-blue-500); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.chip svg { color: var(--brand-blue-500); }

/* ---------- Testimonial ---------- */
.testimonial {
  background: #fff;
  border-radius: var(--r-xl);
  padding: 50px;
  box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: 320px 1fr; gap: 50px; align-items: center;
  border: 1px solid var(--line-soft);
}
.testimonial .t-photo {
  border-radius: var(--r-lg); overflow: hidden;
  aspect-ratio: 1/1;
  background: var(--bg-soft);
}
.testimonial .t-photo img { width: 100%; height: 100%; object-fit: cover; }
.testimonial .t-body { position: relative; }
.testimonial .quote-mark {
  font-family: var(--font-serif);
  font-size: 5rem; line-height: 1; color: var(--brand-blue-500); opacity: 0.18;
  position: absolute; top: -10px; left: -8px;
}
.testimonial blockquote {
  font-family: var(--font-serif);
  font-size: 1.35rem; line-height: 1.5; color: var(--text-1);
  font-weight: 500; font-style: italic;
  margin-bottom: 22px;
}
.testimonial .t-meta { display: flex; align-items: center; gap: 14px; }
.testimonial .t-meta .stars { display: inline-flex; gap: 2px; color: var(--brand-gold); }
.testimonial .t-meta h5 { font-family: var(--font-head); font-size: 1.02rem; font-weight: 700; color: var(--text-1); }
.testimonial .t-meta p  { font-size: 0.86rem; color: var(--text-3); margin: 0; }
@media (max-width: 900px) { .testimonial { grid-template-columns: 1fr; gap: 30px; padding: 32px; } .testimonial .t-photo { max-width: 200px; } }
@media (max-width: 480px) { .testimonial .t-photo { max-width: 140px; } .testimonial blockquote { font-size: 1.1rem; } .testimonial { padding: 24px 18px; } }

/* ---------- Pros & Cons ---------- */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 32px; }
.pros-cons .pc {
  border-radius: var(--r-lg);
  padding: 30px 28px;
}
.pros-cons .pc--pro { background: linear-gradient(135deg, rgba(47, 107, 255, 0.06) 0%, rgba(37, 194, 216, 0.04) 100%); border: 1px solid rgba(47, 107, 255, 0.18); }
.pros-cons .pc--con { background: linear-gradient(135deg, rgba(214, 166, 72, 0.06) 0%, rgba(255, 138, 101, 0.05) 100%); border: 1px solid rgba(214, 166, 72, 0.2); }
.pros-cons h4 { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-head); font-size: 1.05rem; margin-bottom: 18px; }
.pros-cons .pc--pro h4 { color: var(--brand-blue-500); }
.pros-cons .pc--con h4 { color: var(--brand-gold); }
.pros-cons ul { display: flex; flex-direction: column; gap: 10px; }
.pros-cons li { display: flex; align-items: flex-start; gap: 10px; color: var(--text-2); font-size: 0.96rem; }
.pros-cons li svg { flex-shrink: 0; margin-top: 4px; }
.pros-cons .pc--pro li svg { color: var(--brand-blue-500); }
.pros-cons .pc--con li svg { color: var(--brand-gold); }
@media (max-width: 700px) { .pros-cons { grid-template-columns: 1fr; } }

/* ---------- Comparison table ---------- */
.cmp-wrap {
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-top: 32px;
}
.cmp-table { width: 100%; border-collapse: collapse; }
.cmp-table th, .cmp-table td { padding: 18px 22px; text-align: left; font-size: 0.96rem; }
.cmp-table thead th {
  background: linear-gradient(135deg, var(--brand-navy-800) 0%, var(--brand-navy-700) 100%);
  color: #fff; font-family: var(--font-head); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.cmp-table thead th.hot { background: linear-gradient(135deg, var(--brand-blue-500) 0%, var(--brand-blue-600) 100%); }
.cmp-table tbody tr { border-top: 1px solid var(--line-soft); }
.cmp-table tbody tr:hover { background: var(--bg-soft); }
.cmp-table td:first-child { color: var(--text-3); font-weight: 500; }
.cmp-table td.hot { background: rgba(47, 107, 255, 0.05); font-weight: 600; color: var(--text-1); }
.cmp-table .check { width: 22px; height: 22px; color: var(--brand-blue-500); }
.cmp-table .cross { width: 22px; height: 22px; color: #b5b9c4; }
@media (max-width: 720px) { .cmp-table th, .cmp-table td { padding: 14px 12px; font-size: 0.88rem; } }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; max-width: 880px; margin-left: auto; margin-right: auto; }
.faq-item {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
}
.faq-item.active { border-color: rgba(47, 107, 255, 0.3); box-shadow: 0 12px 32px rgba(47, 107, 255, 0.08); }
.faq-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 20px 24px; text-align: left;
  font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; color: var(--text-1);
  background: transparent;
}
.faq-btn .faq-icon {
  width: 30px; height: 30px; flex-shrink: 0;
  border-radius: 8px;
  background: var(--bg-soft);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--brand-blue-500);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}
.faq-item.active .faq-btn .faq-icon { background: var(--brand-blue-500); color: #fff; transform: rotate(45deg); }
.faq-content {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.faq-content-inner { padding: 0 24px 22px; color: var(--text-2); font-size: 0.98rem; line-height: 1.7; }

/* ---------- Final CTA ---------- */
.final-cta {
  position: relative;
  background:
    radial-gradient(800px 400px at 20% 20%, rgba(47, 107, 255, 0.4) 0%, transparent 60%),
    radial-gradient(700px 400px at 80% 80%, rgba(37, 194, 216, 0.3) 0%, transparent 60%),
    linear-gradient(135deg, var(--brand-navy-800) 0%, var(--brand-navy-700) 100%);
  border-radius: var(--r-xl);
  padding: 70px 60px;
  text-align: center;
  overflow: hidden;
  margin: 0 0 clamp(60px, 8vw, 100px);
  color: #fff;
}
.final-cta::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 80%);
}
.final-cta .container { position: relative; }
.final-cta h2 { color: #fff; font-size: clamp(1.8rem, 3.4vw, 2.4rem); margin-bottom: 16px; }
.final-cta p  { color: var(--text-muted-on-dark); max-width: 580px; margin: 0 auto 30px; }
.final-cta .ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (max-width: 700px) { .final-cta { padding: 50px 24px; } }

/* ---------- Footer ---------- */
footer {
  background: var(--bg-ink);
  color: var(--text-muted-on-dark);
  padding: 70px 0 30px;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-col h4 {
  color: #fff;
  font-family: var(--font-head); font-size: 0.92rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col a { display: block; padding: 6px 0; color: var(--text-muted-on-dark); font-size: 0.92rem; }
.footer-col a:hover { color: #fff; }
.footer-col p  { color: var(--text-muted-on-dark); font-size: 0.92rem; }
.footer-col .footer-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; }
.footer-col .footer-brand .brand-mark { width: 40px; height: 40px; border-radius: 12px; }
.footer-col .footer-brand .brand-name { color: #fff; }
.footer-col .footer-brand .brand-tag { color: #7d8aac; }
.footer-col .owner-line { display: flex; align-items: center; gap: 10px; margin-top: 18px; color: #cdd6ee; font-size: 0.92rem; }
.footer-col .owner-line strong { color: #fff; font-weight: 600; }
.footer-col .email-line { display: flex; align-items: center; gap: 10px; margin-top: 8px; color: #cdd6ee; font-size: 0.92rem; }
.footer-col .email-line a { color: #7be1f0; padding: 0; }
.footer-col .email-line a:hover { color: #fff; }
.footer-socials { display: flex; gap: 8px; margin-top: 18px; }
.footer-socials a {
  width: 38px; height: 38px; padding: 0;
  border-radius: 10px;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-dark);
  color: var(--text-muted-on-dark);
}
.footer-socials a:hover { background: rgba(47, 107, 255, 0.18); color: #fff; border-color: rgba(47, 107, 255, 0.4); }
.footer-bottom {
  margin-top: 50px; padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  font-size: 0.85rem; color: #7d8aac;
}
.regulatory {
  margin-top: 28px;
  padding: 22px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--line-dark);
  border-radius: var(--r-md);
  font-size: 0.82rem;
  color: #7d8aac;
  line-height: 1.65;
}
.regulatory b { color: #c9d4f0; font-weight: 600; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .trust-strip .container { flex-direction: column; align-items: flex-start; gap: 16px; }
  .trust-strip .badges { gap: 16px; }
}
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; bottom: 20px; left: 20px; right: 20px;
  max-width: 460px; margin: 0 auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: 24px;
  z-index: 200;
  transform: translateY(140%);
  transition: transform 0.5s var(--ease);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.cookie-banner p  { font-size: 0.9rem; color: var(--text-3); margin-bottom: 18px; }
.cookie-banner p a { color: var(--brand-blue-500); text-decoration: underline; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 18px; font-size: 0.88rem; flex: 1; min-width: 130px; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   ORDER / PLAN PAGE
   ============================================================ */
.page-head {
  background:
    radial-gradient(900px 400px at 80% 0%, rgba(47, 107, 255, 0.2) 0%, transparent 60%),
    linear-gradient(180deg, var(--bg-ink) 0%, var(--brand-navy-800) 100%);
  color: #fff;
  padding: 90px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 50px 50px;
  mask-image: radial-gradient(ellipse at center top, black, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center top, black, transparent 70%);
}
.page-head .container { position: relative; }
.page-head .eyebrow { background: rgba(255,255,255,0.08); color: #7be1f0; }
.page-head h1 { color: #fff; font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin-bottom: 14px; }
.page-head p  { color: var(--text-muted-on-dark); max-width: 640px; margin: 0 auto; }
.page-head .crumbs { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px; font-size: 0.84rem; color: #7d8aac; }
.page-head .crumbs a { color: #9aa9cf; }
.page-head .crumbs a:hover { color: #fff; }

.product-section { padding: 60px 0 100px; }
.product-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: start; }
.gallery-main {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
  background: var(--brand-navy-800);
}
.gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 14px; }
.gallery-thumbs .thumb {
  width: 76px; height: 76px; border-radius: 12px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer;
  background: var(--bg-soft);
  transition: border-color var(--ease-fast);
}
.gallery-thumbs .thumb.active { border-color: var(--brand-blue-500); }
.gallery-thumbs .thumb img { width: 100%; height: 100%; object-fit: cover; }

.product-card {
  background: #fff;
  border-radius: var(--r-lg);
  border: 1px solid var(--line-soft);
  box-shadow: var(--shadow-md);
  padding: 30px;
}
.product-card .stars { display: inline-flex; gap: 2px; color: var(--brand-gold); margin-bottom: 4px; }
.product-card .stars-row { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; color: var(--text-3); font-size: 0.9rem; }
.product-card h1 { font-size: clamp(1.6rem, 2.4vw, 2.1rem); margin-bottom: 10px; }
.product-card .lede { color: var(--text-3); font-size: 0.98rem; margin-bottom: 20px; }
.product-card .price-card {
  background: linear-gradient(135deg, rgba(47, 107, 255, 0.07) 0%, rgba(37, 194, 216, 0.05) 100%);
  border: 1px solid rgba(47, 107, 255, 0.18);
  border-radius: var(--r-md);
  padding: 22px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  margin-bottom: 22px;
}
.price-card .lbl { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-3); }
.price-card .price {
  font-family: var(--font-head); font-weight: 800; font-size: 2.4rem; color: var(--text-1);
  line-height: 1;
}
.price-card .price small { font-size: 0.5em; font-weight: 600; color: var(--text-3); }
.price-card .badge { background: rgba(214, 166, 72, 0.16); color: var(--brand-gold); padding: 6px 12px; border-radius: var(--r-pill); font-weight: 700; font-size: 0.78rem; font-family: var(--font-head); }
.product-card .specs { margin: 24px 0; display: flex; flex-direction: column; gap: 0; }
.product-card .specs li { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; border-bottom: 1px solid var(--line-soft); font-size: 0.94rem; }
.product-card .specs li:last-child { border-bottom: 0; }
.product-card .specs li span:first-child { color: var(--text-3); }
.product-card .specs li span:last-child { color: var(--text-1); font-weight: 600; text-align: right; }

.disclosure-note {
  margin-top: 14px;
  background: var(--bg-soft);
  border-radius: var(--r-md);
  padding: 16px 18px;
  font-size: 0.84rem;
  color: var(--text-3);
  display: flex; align-items: flex-start; gap: 10px;
}
.disclosure-note svg { flex-shrink: 0; color: var(--brand-blue-500); margin-top: 2px; }

@media (max-width: 900px) { .product-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ============================================================
   REVIEW PAGE
   ============================================================ */
.review-hero { padding: 60px 0; }
.review-hero .grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 50px; align-items: center; }
.review-hero .rating-card {
  background: linear-gradient(135deg, var(--brand-navy-800) 0%, var(--brand-navy-700) 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 30px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.review-hero .rating-card::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(400px 200px at 80% 20%, rgba(47, 107, 255, 0.4) 0%, transparent 60%);
}
.review-hero .rating-card .container-x { position: relative; }
.review-hero .score { font-family: var(--font-head); font-size: 3.6rem; font-weight: 800; line-height: 1; }
.review-hero .score small { font-size: 0.4em; color: var(--text-muted-on-dark); }
.review-hero .stars-big { color: var(--brand-gold); display: inline-flex; gap: 4px; margin: 10px 0 6px; }
.review-hero .stars-big svg { width: 22px; height: 22px; }
.review-hero .rating-card p { color: var(--text-muted-on-dark); font-size: 0.92rem; }
.review-hero .meta-row { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 22px; color: var(--text-3); font-size: 0.88rem; }
.review-hero .meta-row .pill { padding: 6px 12px; background: var(--bg-soft); border-radius: var(--r-pill); font-weight: 600; }
.review-hero .meta-row .pill.green { background: rgba(22, 163, 74, 0.1); color: #16a34a; }
@media (max-width: 900px) { .review-hero .grid { grid-template-columns: 1fr; } }

.article { padding: 60px 0 100px; }
.article-inner { max-width: 820px; margin: 0 auto; }
.article h2 { font-size: clamp(1.4rem, 2.2vw, 1.8rem); margin: 38px 0 14px; color: var(--text-1); }
.article p { margin-bottom: 16px; color: var(--text-2); font-size: 1.02rem; }
.article ul, .article ol { margin: 14px 0 18px 22px; }
.article ul li, .article ol li { color: var(--text-2); margin-bottom: 8px; }
.article strong { color: var(--text-1); }
.pull-quote {
  margin: 32px 0;
  padding: 26px 30px;
  background: linear-gradient(135deg, rgba(47, 107, 255, 0.07) 0%, rgba(37, 194, 216, 0.05) 100%);
  border-left: 4px solid var(--brand-blue-500);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.18rem;
  line-height: 1.5;
  color: var(--text-1);
}
.toc-list { background: #fff; border: 1px solid var(--line-soft); border-radius: var(--r-md); padding: 22px 24px; margin-bottom: 32px; }
.toc-list h4 { font-family: var(--font-head); font-size: 0.84rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--text-3); margin-bottom: 14px; }
.toc-list ol { margin: 0; padding-left: 18px; }
.toc-list ol li { color: var(--text-2); margin-bottom: 6px; }
.toc-list ol li a { color: var(--text-1); font-weight: 500; }
.toc-list ol li a:hover { color: var(--brand-blue-500); }

.verdict-box {
  margin: 40px 0;
  background: linear-gradient(135deg, var(--brand-navy-800) 0%, var(--brand-navy-700) 100%);
  color: #fff;
  border-radius: var(--r-lg);
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.verdict-box::before { content: ""; position: absolute; inset: 0; background: radial-gradient(500px 250px at 50% 0%, rgba(214, 166, 72, 0.25) 0%, transparent 60%); }
.verdict-box .container-x { position: relative; }
.verdict-box h3 { color: #fff; font-size: 1.5rem; margin-bottom: 12px; }
.verdict-box p { color: var(--text-muted-on-dark); margin-bottom: 22px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; margin-top: 40px; }
.contact-info {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-info h2 { font-size: 1.6rem; margin-bottom: 8px; }
.contact-info > p { color: var(--text-3); margin-bottom: 28px; }
.contact-card {
  padding: 20px 22px;
  border-radius: var(--r-md);
  background: var(--bg-soft);
  border: 1px solid var(--line-soft);
  margin-bottom: 16px;
}
.contact-card h4 { font-family: var(--font-head); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-3); margin-bottom: 10px; }
.contact-card .big { font-family: var(--font-head); font-size: 1.15rem; font-weight: 700; color: var(--text-1); }
.contact-card a.big { color: var(--brand-blue-500); }
.contact-card a.big:hover { color: var(--brand-blue-600); }
.contact-card p { font-size: 0.94rem; color: var(--text-2); margin: 4px 0; }

.contact-form {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form h2 { font-size: 1.6rem; margin-bottom: 8px; }
.contact-form > p { color: var(--text-3); margin-bottom: 26px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-family: var(--font-head); font-weight: 600; font-size: 0.86rem; color: var(--text-1); margin-bottom: 8px; }
.form-group .form-input,
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--r-md);
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--text-1);
  font-size: 0.96rem;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
}
.form-group .form-input:focus,
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: 0;
  border-color: var(--brand-blue-500);
  box-shadow: var(--ring);
}
.form-group textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 700px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-page { padding: 70px 0 100px; }
.legal-inner { max-width: 820px; margin: 0 auto; background: #fff; border-radius: var(--r-lg); border: 1px solid var(--line-soft); padding: 50px 56px; box-shadow: var(--shadow-sm); }
.legal-inner h1 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 8px; }
.legal-inner .last-updated { color: var(--text-3); font-size: 0.88rem; margin-bottom: 26px; }
.legal-inner h2 { font-size: 1.25rem; margin: 28px 0 12px; color: var(--text-1); }
.legal-inner p { margin-bottom: 14px; color: var(--text-2); font-size: 0.98rem; }
.legal-inner a { color: var(--brand-blue-500); }
.legal-inner a:hover { text-decoration: underline; }
@media (max-width: 700px) { .legal-inner { padding: 32px 24px; } }

/* ============================================================
   Small utilities
   ============================================================ */
.center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
