/* ============================================================
   Aged Life Leads — Premium redesign
   Palette derived from brand logo: deep navy + signal red
   ============================================================ */

:root {
  /* Brand */
  --navy-950: #0c142e;
  --navy-900: #131d3f;
  --navy-800: #1c2a58;
  --navy-700: #253571;
  --navy-600: #33468f;
  --red-600: #c81e2e;
  --red-500: #d92435;
  --red-400: #e94b5a;
  --red-50: #fdeef0;

  /* Neutrals */
  --ink: #131d3f;
  --ink-soft: #3f4a6e;
  --ink-mute: #5a6482;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #e6e4dd;
  --line-soft: #efede7;

  /* On-dark */
  --cloud: #eef1fb;
  --cloud-soft: #b9c2e2;

  /* Type */
  --font-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;

  /* System */
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(19, 29, 63, 0.05), 0 2px 8px rgba(19, 29, 63, 0.04);
  --shadow-md: 0 2px 4px rgba(19, 29, 63, 0.04), 0 12px 32px rgba(19, 29, 63, 0.09);
  --shadow-lg: 0 4px 8px rgba(19, 29, 63, 0.05), 0 24px 64px rgba(19, 29, 63, 0.14);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }
html { scroll-padding-top: 92px; -webkit-text-size-adjust: 100%; font-size: 17px; }
@media (max-width: 720px) { html { font-size: 16px; } }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; }
:focus-visible { outline: 3px solid var(--red-500); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.12; letter-spacing: -0.02em; font-weight: 700; }
h1 { font-size: clamp(2.4rem, 5.2vw, 3.9rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.75rem); }
h3 { font-size: 1.25rem; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
/* Reduced-motion users keep hover/scroll polish but lose the infinite
   decorative loops. (OS-level "animations off" is common on Windows and
   was silencing every transition on the site.) */
@media (prefers-reduced-motion: reduce) {
  .lead-card-main, .lead-card-float, .lead-card-float2,
  .announce-dot, .badge-new-dot { animation: none !important; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 24px; border-radius: 999px;
  font-weight: 600; font-size: 0.95rem; line-height: 1.2;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  cursor: pointer; white-space: nowrap; min-height: 44px;
}
.btn:active { transform: scale(0.97); }
.btn { position: relative; overflow: hidden; }
.btn-primary::before {
  content: ""; position: absolute; top: 0; left: -80%;
  width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.28), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s var(--ease);
  pointer-events: none;
}
.btn-primary:hover::before { left: 130%; }
.btn-lg { padding: 16px 32px; font-size: 1.02rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: linear-gradient(180deg, var(--red-500), var(--red-600));
  color: #fff;
  box-shadow: 0 1px 2px rgba(200, 30, 46, 0.4), 0 8px 24px rgba(200, 30, 46, 0.28), inset 0 1px 0 rgba(255,255,255,0.22);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(200, 30, 46, 0.4), 0 14px 34px rgba(200, 30, 46, 0.38), inset 0 1px 0 rgba(255,255,255,0.22); }
.btn-ghost { color: var(--ink); }
.btn-ghost:hover { color: var(--red-600); }
.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.35); color: #fff;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { border-color: rgba(255, 255, 255, 0.8); background: rgba(255, 255, 255, 0.12); transform: translateY(-2px); }
.btn-outline-dark { border: 1.5px solid var(--line); color: var(--ink); background: var(--surface); }
.btn-outline-dark:hover { border-color: var(--navy-800); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ---------- Announcement bar ---------- */
.announce {
  background: linear-gradient(90deg, var(--red-600), #a5121f 60%, var(--red-600));
  color: #fff; text-align: center;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em;
  padding: 8px 16px;
}
.announce p { display: inline-flex; align-items: center; gap: 8px; }
.announce-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #fff; display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.8); } }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(251, 250, 247, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.nav.scrolled { border-bottom-color: var(--line-soft); box-shadow: 0 4px 24px rgba(19, 29, 63, 0.06); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.nav-logo img { width: 124px; height: auto; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  font-size: 0.92rem; font-weight: 500; color: var(--ink-soft);
  position: relative; padding: 6px 0; white-space: nowrap;
  transition: color 0.3s ease;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--red-500);
  border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 6px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 10px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.25s var(--ease), opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu {
  display: flex; flex-direction: column; gap: 4px;
  padding: 0 24px;
  max-height: 0; opacity: 0; visibility: hidden; overflow: hidden;
  background: var(--paper);
  transition: max-height 0.45s var(--ease), opacity 0.3s ease, padding 0.3s ease, visibility 0s linear 0.45s;
}
.mobile-menu a:not(.btn) { padding: 12px 4px; font-weight: 500; color: var(--ink-soft); border-bottom: 1px solid var(--line-soft); }
.mobile-menu .btn { margin-top: 14px; }
.mobile-menu.open {
  max-height: 560px; opacity: 1; visibility: visible;
  padding: 12px 24px 24px;
  border-top: 1px solid var(--line-soft);
  transition: max-height 0.45s var(--ease), opacity 0.3s ease 0.05s, padding 0.3s ease, visibility 0s;
}
@media (min-width: 961px) { .mobile-menu { display: none; } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(120% 130% at 80% -10%, var(--navy-700) 0%, var(--navy-900) 45%, var(--navy-950) 100%);
  color: #fff;
  overflow: hidden;
  padding: 84px 0 96px;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(90% 70% at 50% 20%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(90% 70% at 50% 20%, black 30%, transparent 100%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(90px); }
.hero-glow-1 { width: 560px; height: 560px; right: -140px; top: -180px; background: rgba(217, 36, 53, 0.22); }
.hero-glow-2 { width: 480px; height: 480px; left: -160px; bottom: -220px; background: rgba(51, 70, 143, 0.5); }

.hero-inner {
  position: relative; display: grid;
  grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.01em;
  color: var(--cloud); margin-bottom: 26px;
  backdrop-filter: blur(8px);
}
.hero-badge svg { color: #5ee39a; }
.hero h1 { margin-bottom: 22px; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(92deg, var(--red-400), #ff8f7a);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub { font-size: 1.13rem; color: var(--cloud-soft); max-width: 54ch; margin-bottom: 34px; }
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-checks { list-style: none; display: flex; flex-wrap: wrap; gap: 10px 26px; }
.hero-checks li { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--cloud-soft); font-weight: 500; }
.hero-checks svg { color: #5ee39a; flex-shrink: 0; }

/* Hero visual — lead cards */
.hero-visual { position: relative; min-height: 420px; }
.lead-card {
  background: rgba(255, 255, 255, 0.97);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.lead-card-main {
  position: relative; z-index: 2;
  padding: 26px; max-width: 400px; margin: 0 auto;
  animation: floaty 7s ease-in-out infinite;
}
.lead-card-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.lead-tag {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--red-600); background: var(--red-50);
  padding: 6px 12px; border-radius: 999px;
}
.lead-price { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--navy-900); }
.lead-price small { font-size: 0.8rem; font-weight: 600; color: var(--ink-mute); }
.lead-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-top: 1px solid var(--line-soft);
}
.lead-row > div { flex: 1; display: flex; flex-direction: column; }
.lead-row strong { font-size: 0.92rem; }
.lead-row small { font-size: 0.78rem; color: var(--ink-mute); }
.lead-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center; flex-shrink: 0;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: #fff; font-size: 0.74rem; font-weight: 700;
}
.lead-verify {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.72rem; font-weight: 700; color: #178a4c;
  background: #e8f7ef; padding: 5px 10px; border-radius: 999px;
}
.lead-card-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px; padding-top: 16px; border-top: 1px solid var(--line-soft);
  font-size: 0.78rem; color: var(--ink-mute); font-weight: 500;
}
.lead-status { color: var(--red-600); font-weight: 700; }
.lead-card-float {
  position: absolute; z-index: 3; top: 6%; right: 0;
  padding: 18px 20px;
  animation: floaty 6s ease-in-out infinite reverse;
}
.float-stat { display: flex; align-items: baseline; gap: 2px; flex-wrap: wrap; max-width: 130px; }
.float-num, .float-pct { font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--red-600); }
.float-stat small { flex-basis: 100%; font-size: 0.74rem; color: var(--ink-mute); font-weight: 600; line-height: 1.35; }
.lead-card-float2 {
  position: absolute; z-index: 3; bottom: 4%; left: -2%;
  display: flex; align-items: center; gap: 12px;
  padding: 16px 20px;
  animation: floaty 8s ease-in-out 1s infinite;
}
.lead-card-float2 svg { color: var(--red-500); }
.lead-card-float2 div { display: flex; flex-direction: column; line-height: 1.25; }
.lead-card-float2 strong { font-size: 0.9rem; }
.lead-card-float2 small { font-size: 0.75rem; color: var(--ink-mute); font-weight: 600; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) { .lead-card-main, .lead-card-float, .lead-card-float2 { animation: none; } }

/* Stats bar */
.stats-bar {
  margin-top: 72px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}
.stat { padding: 28px 22px; text-align: center; }
.stat + .stat { border-left: 1px solid rgba(255, 255, 255, 0.1); }
.stat-num, .stat-plus {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.6rem, 2.6vw, 2.1rem); color: #fff;
}
.stat-plus { color: var(--red-400); }
.stat p { font-size: 0.82rem; color: var(--cloud-soft); font-weight: 500; margin-top: 4px; }

/* ---------- Sections ---------- */
.section { padding: 104px 0; }
.section-dark {
  background: radial-gradient(110% 120% at 50% -20%, var(--navy-800) 0%, var(--navy-950) 70%);
  color: #fff;
}
.section-navy { background: var(--navy-900); color: #fff; }
.section-tint { background: linear-gradient(180deg, #f6f4ee, var(--paper)); }
.section-head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.section-head p { color: var(--ink-mute); margin-top: 16px; font-size: 1.05rem; }
.section-dark .section-head p, .section-navy .section-head p { color: var(--cloud-soft); }
.eyebrow {
  display: inline-block; margin-bottom: 16px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red-600);
}
.eyebrow-light { color: var(--red-400); }

/* ---------- What are aged leads / compare ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.split-copy h2 { margin-bottom: 20px; }
.split-copy p { color: var(--ink-soft); margin-bottom: 18px; }
.split-copy .btn { margin-top: 10px; }

.compare {
  position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: 18px;
}
.compare-col {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 26px;
  box-shadow: var(--shadow-sm);
}
.compare-aged {
  border: 2px solid var(--red-500);
  box-shadow: var(--shadow-md);
  position: relative;
}
.compare-badge {
  position: absolute; top: -13px; left: 24px;
  background: var(--red-500); color: #fff;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 999px;
}
.compare-col h3 { font-size: 1.02rem; margin-bottom: 6px; color: var(--ink-mute); }
.compare-aged h3 { color: var(--navy-900); }
.compare-price { font-family: var(--font-display); font-weight: 800; font-size: 1.9rem; color: var(--ink-mute); margin-bottom: 18px; }
.compare-price span { font-size: 0.85rem; font-weight: 600; }
.compare-aged .compare-price { color: var(--red-600); }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.compare-col li { font-size: 0.88rem; color: var(--ink-soft); padding-left: 22px; position: relative; }
.compare-fresh li::before { content: "✕"; position: absolute; left: 0; color: #c2beb2; font-weight: 700; }
.compare-aged li::before { content: "✓"; position: absolute; left: 0; color: #178a4c; font-weight: 800; }
.compare-vs {
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  z-index: 2; width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--navy-900); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: 0.78rem;
  box-shadow: 0 0 0 6px var(--paper);
}

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; counter-reset: step; }
.step {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform 0.45s var(--ease), background 0.35s ease;
}
.step:hover { transform: translateY(-4px); background: rgba(255, 255, 255, 0.08); }
.step-num {
  position: absolute; top: 26px; right: 28px;
  font-family: var(--font-display); font-weight: 800; font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.09);
}
.step-icon {
  width: 54px; height: 54px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 22px;
  background: linear-gradient(135deg, var(--red-500), var(--red-600));
  color: #fff;
  box-shadow: 0 8px 20px rgba(217, 36, 53, 0.35);
}
.step h3 { margin-bottom: 10px; color: #fff; }
.step p { font-size: 0.94rem; color: var(--cloud-soft); }

/* ---------- Pricing ---------- */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; align-items: stretch; }
.price-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.35s ease;
}
.price-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: #d8d5cb; }
.price-card-featured {
  border: 2px solid var(--red-500);
  box-shadow: var(--shadow-md);
}
.price-card-featured:hover { box-shadow: var(--shadow-lg); border-color: var(--red-500); }
.price-popular {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(90deg, var(--red-500), var(--red-600));
  color: #fff; white-space: nowrap;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(217, 36, 53, 0.35);
}
.price-head { padding-bottom: 20px; border-bottom: 1px solid var(--line-soft); margin-bottom: 20px; }
.price-tag {
  display: inline-block; margin-bottom: 14px;
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em;
  color: var(--navy-700); background: #eef0f8;
  padding: 5px 11px; border-radius: 6px;
}
.price-card h3 { font-size: 1.06rem; margin-bottom: 12px; min-height: 2.4em; }
.price-amount { font-family: var(--font-display); font-weight: 800; font-size: 2.5rem; letter-spacing: -0.03em; color: var(--navy-900); }
.price-amount span { font-size: 0.9rem; font-weight: 600; color: var(--ink-mute); letter-spacing: 0; }
.price-list { list-style: none; flex: 1; display: flex; flex-direction: column; gap: 9px; margin-bottom: 26px; }
.price-list li { font-size: 0.88rem; color: var(--ink-soft); padding-left: 24px; position: relative; }
.price-list li::before {
  content: ""; position: absolute; left: 0; top: 4px;
  width: 15px; height: 15px; border-radius: 50%;
  background: var(--red-50) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c81e2e' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 9px no-repeat;
}
.pricing-note { text-align: center; margin-top: 40px; font-size: 0.9rem; color: var(--ink-mute); }

/* ---------- Semi-Fresh Exclusive ---------- */
.section-exclusive {
  background: linear-gradient(180deg, #fdf2f0 0%, var(--paper) 62%);
  border-top: 1px solid #f6ded9;
}
.nowrap { white-space: nowrap; }
.badge-new {
  display: inline-flex; align-items: center; gap: 9px;
  margin-bottom: 18px; padding: 8px 18px; border-radius: 999px;
  background: linear-gradient(92deg, var(--red-500), var(--red-600));
  color: #fff; font-size: 0.76rem; font-weight: 700; letter-spacing: 0.09em; text-transform: uppercase;
  box-shadow: 0 8px 22px rgba(217, 36, 53, 0.32);
}
.badge-new-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #fff;
  animation: pulse 2s ease-in-out infinite;
}
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-bottom: 44px; }
.trust-item {
  display: flex; align-items: center; gap: 15px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.trust-icon {
  width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--red-50); color: var(--red-600);
}
.trust-item p { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.5; }
.trust-item strong { color: var(--ink); }
.exclusive-grid { margin-bottom: 8px; }
.x-card {
  position: relative; display: flex; flex-direction: column; align-items: flex-start;
  background: linear-gradient(160deg, var(--navy-800) 0%, var(--navy-950) 90%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  color: #fff;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.x-card::before {
  content: ""; position: absolute; top: -70px; right: -70px;
  width: 170px; height: 170px; border-radius: 50%;
  background: rgba(217, 36, 53, 0.24); filter: blur(46px);
  pointer-events: none;
}
.x-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.x-tag {
  display: inline-block; margin-bottom: 18px;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #ffb3bb; background: rgba(217, 36, 53, 0.2);
  border: 1px solid rgba(233, 75, 90, 0.4);
  padding: 6px 12px; border-radius: 999px;
}
.x-card h3 { font-size: 1.12rem; margin-bottom: 12px; color: #fff; }
.x-amount {
  font-family: var(--font-display); font-weight: 800; font-size: 2.6rem;
  letter-spacing: -0.03em; color: #fff; margin-bottom: 24px;
}
.x-amount span { font-size: 0.9rem; font-weight: 600; color: var(--cloud-soft); letter-spacing: 0; }
.x-card .btn { margin-top: auto; }
.honesty {
  text-align: center; max-width: 620px; margin: 34px auto 0;
  font-size: 0.92rem; color: var(--ink-mute);
}
.exclusive-more { text-align: center; margin-top: 30px; }

/* ---------- Semi-fresh page hero & CTA ---------- */
.x-hero { padding: 90px 0 100px; }
.x-hero-inner { position: relative; max-width: 860px; margin: 0 auto; text-align: center; }
.x-hero .hero-sub { margin-left: auto; margin-right: auto; }
.x-hero .hero-actions, .x-hero .hero-checks { justify-content: center; }
.x-cta { text-align: center; max-width: 660px; margin: 0 auto; }
.x-cta .cta-logo { margin: 0 auto 28px; }
.x-cta h2 { margin-bottom: 16px; }
.x-cta p { color: var(--cloud-soft); font-size: 1.05rem; margin-bottom: 34px; }
.x-cta-actions { justify-content: center; margin-bottom: 0; }

/* ---------- Mega menu ---------- */
.mega-trigger {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.92rem; font-weight: 500; color: var(--ink-soft);
  padding: 6px 0; white-space: nowrap; position: relative;
  transition: color 0.3s ease;
}
.mega-trigger svg { transition: transform 0.35s var(--ease); }
.mega-trigger:hover, .mega-trigger.open { color: var(--ink); }
.mega-trigger.open svg { transform: rotate(180deg); }
.mega-trigger::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--red-500);
  border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.mega-trigger:hover::after, .mega-trigger.open::after { transform: scaleX(1); }
.mega-panel {
  position: absolute; top: calc(100% + 10px); left: 50%; z-index: 90;
  width: min(1120px, calc(100vw - 32px));
  transform: translateX(-50%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: 0 12px 24px rgba(19, 29, 63, 0.08), 0 32px 72px rgba(19, 29, 63, 0.16);
  padding: 28px 30px;
  animation: megaIn 0.4s var(--ease);
}
@keyframes megaIn {
  from { opacity: 0; transform: translateX(-50%) translateY(-12px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.mega-grid { display: grid; gap: 8px 0; }
.mega-grid-3 { grid-template-columns: 1fr 1fr 1fr; }
.mega-col { padding: 0 30px; display: flex; flex-direction: column; gap: 4px; }
.mega-col:first-child { padding-left: 0; }
.mega-col + .mega-col { border-left: 1px solid var(--line-soft); }
.mega-head {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.11em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.mega-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 9px 12px; margin: 0 -12px; border-radius: 12px;
  transition: background 0.3s ease, transform 0.35s var(--ease);
}
.mi-icon {
  width: 38px; height: 38px; border-radius: 11px; flex-shrink: 0;
  display: grid; place-items: center;
  background: #eef0f8; color: var(--navy-700);
  transition: background 0.3s ease, color 0.3s ease, transform 0.35s var(--ease);
}
.mi-icon-red { background: var(--red-50); color: var(--red-600); }
.mi-body { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.mega-item strong { font-size: 0.92rem; font-weight: 600; color: var(--ink); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.mega-item small { font-size: 0.79rem; color: var(--ink-mute); line-height: 1.45; }
a.mega-item:hover { background: var(--paper); transform: translateX(4px); }
a.mega-item:hover strong { color: var(--red-600); }
a.mega-item:hover .mi-icon { background: var(--red-500); color: #fff; transform: scale(1.06); }
.mega-soon { cursor: default; }
.mega-soon .mi-icon { background: var(--line-soft); color: var(--ink-mute); }
.mega-soon strong { color: var(--ink-soft); }
.mega-cta {
  grid-column: 1 / -1;
  margin-top: 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap;
  background: linear-gradient(120deg, var(--navy-800), var(--navy-950));
  border-radius: 16px; padding: 16px 22px;
}
.mega-cta > div { display: flex; flex-direction: column; gap: 2px; }
.mega-cta strong { color: #fff; font-size: 0.98rem; }
.mega-cta span { color: var(--cloud-soft); font-size: 0.83rem; }
.soon-pill {
  display: inline-block;
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase;
  color: var(--navy-700); background: #eef0f8; border: 1px solid #d8dcef;
  padding: 3px 8px; border-radius: 999px; white-space: nowrap;
}
.mm-label {
  font-size: 0.7rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-mute); margin: 14px 0 2px; padding: 0 4px;
}
.mm-soon {
  display: flex; align-items: center; gap: 8px;
  padding: 12px 4px; font-weight: 500; color: var(--ink-mute);
  border-bottom: 1px solid var(--line-soft); font-size: 0.95rem;
}
@media (max-width: 960px) { .mega-panel { display: none !important; } }

/* ---------- Nav "New" pill ---------- */
.nav-new-pill {
  display: inline-block; margin-left: 7px; vertical-align: 2px;
  font-size: 0.62rem; font-weight: 800; letter-spacing: 0.07em; text-transform: uppercase;
  color: #fff; background: linear-gradient(92deg, var(--red-500), var(--red-600));
  padding: 3px 8px; border-radius: 999px;
}

/* ---------- Calculator ---------- */
.calc-wrap {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center;
}
.calc-copy h2 { margin-bottom: 18px; }
.calc-copy p { color: var(--cloud-soft); font-size: 1.05rem; }
.calc-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-lg);
  padding: 36px;
  backdrop-filter: blur(10px);
}
.calc-field { margin-bottom: 24px; }
.calc-field label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--cloud); margin-bottom: 10px; }
.calc-input-wrap {
  display: flex; align-items: center; gap: 4px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px; padding: 0 16px;
  transition: border-color 0.2s;
}
.calc-input-wrap:focus-within { border-color: var(--red-400); }
.calc-input-wrap span { color: var(--cloud-soft); font-weight: 600; }
.calc-input-wrap input {
  width: 100%; background: none; border: none; color: #fff;
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  padding: 12px 0; outline: none;
  -moz-appearance: textfield; appearance: textfield;
}
.calc-input-wrap input::-webkit-outer-spin-button, .calc-input-wrap input::-webkit-inner-spin-button { -webkit-appearance: none; }
input[type="range"] {
  width: 100%; margin-top: 16px; accent-color: var(--red-500);
  cursor: pointer; height: 32px;
}
.calc-panel select {
  width: 100%; padding: 14px 16px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px; color: #fff;
  font: inherit; font-weight: 500; outline: none;
  transition: border-color 0.2s; cursor: pointer;
}
.calc-panel select:focus { border-color: var(--red-400); }
.calc-panel select option { color: var(--ink); }
.calc-results { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 20px; }
.calc-result {
  border-radius: 16px; padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex; flex-direction: column;
}
.calc-result-aged { background: rgba(217, 36, 53, 0.15); border-color: rgba(233, 75, 90, 0.45); }
.calc-result small { font-size: 0.75rem; color: var(--cloud-soft); font-weight: 600; margin-bottom: 6px; }
.calc-result strong { font-family: var(--font-display); font-size: 2.1rem; font-weight: 800; color: #fff; line-height: 1.1; font-variant-numeric: tabular-nums; }
.calc-result-aged strong { color: #ff9aa4; }
.calc-result span { font-size: 0.78rem; color: var(--cloud-soft); font-weight: 500; }
.calc-note { font-size: 0.92rem; color: var(--cloud-soft); text-align: center; }
.calc-note strong { color: #fff; }

/* ---------- Features ---------- */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature-icon {
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: #fff;
}
.feature h3 { font-size: 1.05rem; margin-bottom: 10px; }
.feature p { font-size: 0.9rem; color: var(--ink-soft); }

/* ---------- Testimonials ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; gap: 18px;
}
.stars { display: flex; gap: 3px; color: #f0a92e; }
.testimonial blockquote { font-size: 0.97rem; color: var(--ink-soft); line-height: 1.7; flex: 1; }
.testimonial figcaption { display: flex; align-items: center; gap: 13px; }
.t-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--red-500), var(--navy-800));
  color: #fff; font-size: 0.8rem; font-weight: 700;
}
.testimonial figcaption strong { display: block; font-size: 0.93rem; }
.testimonial figcaption small { font-size: 0.8rem; color: var(--ink-mute); }

/* ---------- FAQ ---------- */
.faq-container { max-width: 820px; }
.faq-list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.faq-item[open] { box-shadow: var(--shadow-sm); border-color: #d8d5cb; }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px;
  font-family: var(--font-display); font-weight: 600; font-size: 1.04rem;
  cursor: pointer; list-style: none; user-select: none;
  min-height: 44px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.faq-icon::before, .faq-icon::after {
  content: ""; position: absolute; background: var(--red-600); border-radius: 2px;
  transition: transform 0.45s var(--ease);
}
.faq-icon::before { width: 14px; height: 2.5px; left: 4px; top: 10px; }
.faq-icon::after { width: 2.5px; height: 14px; left: 9.8px; top: 4px; }
.faq-item[open] .faq-icon::after { transform: scaleY(0); }
.faq-body { padding: 0 24px 22px; overflow: hidden; transition: height 0.35s var(--ease); }
.faq-body p { color: var(--ink-soft); font-size: 0.95rem; }

/* ---------- CTA / Contact ---------- */
.cta-section { padding-bottom: 120px; }
.cta-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.cta-logo { width: 140px; margin-bottom: 28px; }
.cta-copy h2 { margin-bottom: 18px; }
.cta-copy > p { color: var(--cloud-soft); font-size: 1.05rem; margin-bottom: 32px; max-width: 46ch; }
.cta-contacts { display: flex; flex-direction: column; gap: 14px; }
.cta-contact {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 600; font-size: 1rem; color: var(--cloud);
  transition: color 0.3s ease; width: fit-content; min-height: 44px;
}
.cta-contact svg { color: var(--red-400); flex-shrink: 0; }
.cta-contact:hover { color: #fff; }

.contact-form {
  background: rgba(255, 255, 255, 0.98);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-lg);
  color: var(--ink);
}
.contact-form h3 { margin-bottom: 24px; font-size: 1.3rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 18px; }
.form-field label { display: block; font-size: 0.84rem; font-weight: 600; margin-bottom: 7px; color: var(--ink); }
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit; font-size: 0.95rem; color: var(--ink);
  background: var(--paper);
  transition: border-color 0.2s, box-shadow 0.2s;
  min-height: 44px;
}
.form-field textarea { resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--red-500);
  box-shadow: 0 0 0 3px rgba(217, 36, 53, 0.13);
}
.form-field input::placeholder, .form-field textarea::placeholder { color: #a9a695; }
.form-note { margin-top: 14px; text-align: center; font-size: 0.8rem; color: var(--ink-mute); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-950); color: var(--cloud-soft); padding: 72px 0 36px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255, 255, 255, 0.09);
}
.footer-brand img { width: 130px; margin-bottom: 20px; }
.footer-brand p { font-size: 0.9rem; max-width: 34ch; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  font-family: var(--font-display); color: #fff; font-size: 0.95rem;
  margin-bottom: 6px; letter-spacing: 0.01em;
}
.footer-col a { font-size: 0.9rem; transition: color 0.3s ease; width: fit-content; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
  padding-top: 32px; font-size: 0.82rem;
}
.footer-legal { display: flex; gap: 24px; }
.footer-legal a:hover { color: #fff; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .trust-row { grid-template-columns: 1fr; max-width: 560px; margin-left: auto; margin-right: auto; }
  .features { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .hero-inner { grid-template-columns: 1fr; gap: 64px; }
  .hero-visual { max-width: 460px; margin: 0 auto; width: 100%; }
  .split { grid-template-columns: 1fr; gap: 56px; }
  .calc-wrap { grid-template-columns: 1fr; gap: 44px; }
  .cta-wrap { grid-template-columns: 1fr; gap: 56px; }
  .testimonials { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 720px) {
  .section { padding: 76px 0; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: none; }
  .stat:nth-child(n+3) { border-top: 1px solid rgba(255, 255, 255, 0.1); }
  .pricing-grid { grid-template-columns: 1fr; }
  .features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; gap: 26px; }
  .compare-vs { display: none; }
  .contact-form { padding: 28px 22px; }
  .calc-panel { padding: 26px 20px; }
  .calc-results { grid-template-columns: 1fr; }
  .hero { padding: 64px 0 76px; }
  .hero-visual { min-height: 0; padding-bottom: 56px; }
  .lead-card-float { top: -20px; right: -6px; padding: 14px 16px; }
  .lead-card-float2 { bottom: 0; left: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   Premium polish — staggered reveals & micro-interactions
   ============================================================ */
.pricing-grid > .reveal:nth-child(2), .features > .reveal:nth-child(2),
.testimonials > .reveal:nth-child(2), .steps > .reveal:nth-child(2),
.trust-row > .reveal:nth-child(2) { transition-delay: 0.09s; }
.pricing-grid > .reveal:nth-child(3), .features > .reveal:nth-child(3),
.testimonials > .reveal:nth-child(3), .steps > .reveal:nth-child(3),
.trust-row > .reveal:nth-child(3) { transition-delay: 0.18s; }
.pricing-grid > .reveal:nth-child(4), .features > .reveal:nth-child(4) { transition-delay: 0.27s; }

.price-card, .x-card, .feature, .testimonial, .trust-item { will-change: transform; }
.feature-icon, .step-icon, .trust-icon { transition: transform 0.45s var(--ease); }
.feature:hover .feature-icon, .step:hover .step-icon, .trust-item:hover .trust-icon { transform: scale(1.08) rotate(-3deg); }
.footer-col a, .footer-legal a { transition: color 0.3s ease, transform 0.35s var(--ease); }
.footer-col a:hover { transform: translateX(3px); }

/* ============================================================
   Inner pages (legal + order) shared chrome
   ============================================================ */
.page-hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 150% at 75% -20%, var(--navy-700) 0%, var(--navy-900) 50%, var(--navy-950) 100%);
  color: #fff; padding: 64px 0;
}
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 12px; }
.page-hero p { color: var(--cloud-soft); max-width: 62ch; }
.page-hero .eyebrow { color: var(--red-400); }

/* Legal pages */
.legal-body { max-width: 780px; margin: 0 auto; padding: 72px 24px 96px; }
.legal-body h2 { font-size: 1.35rem; margin: 44px 0 14px; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--ink-soft); font-size: 0.97rem; }
.legal-body p { margin-bottom: 14px; }
.legal-body ul { margin: 0 0 16px 22px; display: flex; flex-direction: column; gap: 8px; }
.legal-body strong { color: var(--ink); }
.legal-updated { font-size: 0.82rem; color: var(--ink-mute); margin-bottom: 34px; }
.legal-callout {
  background: var(--red-50); border: 1px solid #f3cfd3;
  border-radius: var(--radius); padding: 20px 22px; margin: 24px 0;
}
.legal-callout p { margin: 0; color: var(--ink); }

/* ============================================================
   Order page
   ============================================================ */
.order-layout {
  display: grid; grid-template-columns: 1.5fr 1fr; gap: 34px;
  align-items: start; padding: 56px 0 104px;
}
.order-builder { display: flex; flex-direction: column; gap: 26px; }
.order-block {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow-sm);
}
.order-block > h2 {
  font-size: 1.15rem; margin-bottom: 6px;
  display: flex; align-items: center; gap: 12px;
}
.order-step-num {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: var(--navy-900); color: #fff;
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700;
}
.order-block > p.order-hint { color: var(--ink-mute); font-size: 0.88rem; margin-bottom: 20px; }

/* product picker */
.product-group-label {
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink-mute); margin: 18px 0 10px;
}
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.product-option { position: relative; }
.product-option input { position: absolute; opacity: 0; pointer-events: none; }
.product-option label {
  display: flex; flex-direction: column; gap: 3px;
  border: 1.5px solid var(--line); border-radius: 14px;
  padding: 15px 16px; cursor: pointer; min-height: 44px;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  background: var(--paper);
}
.product-option label:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.product-option input:checked + label {
  border-color: var(--red-500); background: var(--red-50);
  box-shadow: 0 0 0 3px rgba(217, 36, 53, 0.12);
}
.product-option input:focus-visible + label { outline: 3px solid var(--red-500); outline-offset: 2px; }
.product-name { font-weight: 600; font-size: 0.93rem; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.product-price { font-family: var(--font-display); font-weight: 800; color: var(--navy-900); }
.product-note { font-size: 0.76rem; color: var(--ink-mute); }
.product-x-tag {
  font-size: 0.6rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--red-600); background: rgba(217, 36, 53, 0.1);
  border: 1px solid rgba(217, 36, 53, 0.25);
  padding: 2px 7px; border-radius: 999px; white-space: nowrap;
}

/* quantity */
.qty-presets { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.qty-chip {
  padding: 10px 20px; border-radius: 999px; min-height: 44px;
  border: 1.5px solid var(--line); background: var(--paper);
  font-weight: 600; font-size: 0.92rem; cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease, color 0.3s ease, transform 0.4s var(--ease);
}
.qty-chip:hover { transform: translateY(-2px); border-color: #cfccc0; }
.qty-chip.selected { border-color: var(--red-500); background: var(--red-50); color: var(--red-600); }
.qty-chip-price { margin-left: 7px; font-weight: 800; color: var(--red-600); }

/* focused inventory mode */
.product-group[hidden] { display: none; }
.group-switch {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 18px; padding: 8px 4px; min-height: 40px;
  font-size: 0.85rem; font-weight: 500; color: var(--ink-mute);
  border-radius: 8px; text-align: left;
  transition: color 0.3s ease;
}
.group-switch span { color: var(--red-600); font-weight: 700; white-space: nowrap; transition: transform 0.2s var(--ease); display: inline-block; }
.group-switch:hover { color: var(--ink); }
.group-switch:hover span { transform: translateX(3px); }

/* quantity quick-picks + stepper (step 2) */
.qty-picks { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; margin-bottom: 18px; }
.qty-picks.in { animation: revealIn 0.5s var(--ease); }
.qty-pick {
  display: flex; flex-direction: column; gap: 5px; align-items: center;
  padding: 16px 8px; text-align: center;
  border: 1.5px solid var(--line); border-radius: 14px; background: var(--paper);
  cursor: pointer; font: inherit;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.qty-pick:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: #cfccc0; }
.qty-pick.active {
  border-color: var(--red-500); background: var(--red-50);
  box-shadow: 0 0 0 3px rgba(217, 36, 53, 0.13);
}
.qp-qty { font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.qp-total {
  font-family: var(--font-display); font-weight: 800; font-size: 1.25rem;
  letter-spacing: -0.02em; color: var(--navy-900);
}
.qp-save {
  font-size: 0.68rem; font-weight: 800; letter-spacing: 0.05em; text-transform: uppercase;
  color: #12613a; background: #e8f7ef; border: 1px solid #b8e6cc;
  padding: 3px 8px; border-radius: 999px; white-space: nowrap;
}
.qp-regular { color: var(--ink-mute); background: var(--line-soft); border-color: var(--line); }
.qty-row { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.qty-row > label { font-size: 0.95rem; font-weight: 600; color: var(--ink); }
.qty-stepper {
  display: flex; align-items: stretch;
  border: 1.5px solid var(--line); border-radius: 12px; overflow: hidden;
  background: var(--surface);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.qty-stepper:focus-within { border-color: var(--red-500); box-shadow: 0 0 0 3px rgba(217, 36, 53, 0.13); }
.qty-stepper button {
  width: 46px; min-height: 48px; display: grid; place-items: center;
  color: var(--ink-soft); background: var(--paper);
  transition: background 0.3s ease, color 0.3s ease;
}
.qty-stepper button:hover { background: var(--red-50); color: var(--red-600); }
.qty-stepper input {
  width: 110px; border: none; outline: none; text-align: center;
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--ink);
  background: var(--surface);
  -moz-appearance: textfield; appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button, .qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; }
.qty-rate-echo { font-size: 0.92rem; font-weight: 600; color: var(--red-600); font-variant-numeric: tabular-nums; }
.qty-min-note { margin-top: 12px; font-size: 0.85rem; font-weight: 600; color: var(--red-600); }
.qty-min-note[hidden] { display: none; }

/* package tier cards (step 2) */
.pkg-placeholder {
  display: flex; align-items: center; gap: 10px;
  padding: 22px 20px; border: 1.5px dashed var(--line); border-radius: 14px;
  color: var(--ink-mute); font-size: 0.92rem; font-weight: 500;
  background: var(--paper);
}
.pkg-placeholder svg { color: var(--red-500); flex-shrink: 0; }
.pkg-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.pkg-grid.in { animation: revealIn 0.4s var(--ease); }
@keyframes revealIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
.pkg-card {
  position: relative; display: flex; flex-direction: column; gap: 6px;
  padding: 20px 20px 18px; text-align: left;
  border: 1.5px solid var(--line); border-radius: 16px; background: var(--paper);
  cursor: pointer; font: inherit;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pkg-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); border-color: #cfccc0; }
.pkg-card.selected {
  border-color: var(--red-500); background: var(--red-50);
  box-shadow: 0 0 0 3px rgba(217, 36, 53, 0.13);
}
.pkg-tier {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em; color: var(--ink-soft);
}
.pkg-tier svg { color: #f0a92e; }
.pkg-price {
  font-family: var(--font-display); font-weight: 800; font-size: 1.7rem;
  letter-spacing: -0.02em; color: var(--navy-900);
  display: flex; align-items: baseline; gap: 9px; flex-wrap: wrap;
}
.pkg-off {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.05em;
  color: var(--red-600); background: rgba(217, 36, 53, 0.1);
  border: 1px solid rgba(217, 36, 53, 0.25);
  padding: 3px 9px; border-radius: 999px; white-space: nowrap;
}
.pkg-desc { font-size: 0.85rem; color: var(--ink-mute); font-weight: 500; }
.pkg-check {
  position: absolute; top: 14px; right: 14px;
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--red-500); color: #fff;
  opacity: 0; transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.4s var(--ease);
}
.pkg-card.selected .pkg-check { opacity: 1; transform: scale(1); }
.sum-save span:last-child { color: #5ee39a; font-weight: 700; }

/* multi-select dropdown (states) */
.ms { position: relative; }
.ms-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 12px 14px; min-height: 44px;
  border: 1.5px solid var(--line); border-radius: 10px; background: var(--paper);
  font: inherit; font-size: 0.95rem; color: var(--ink); cursor: pointer; text-align: left;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.ms-trigger:hover { border-color: #cfccc0; }
.ms.open .ms-trigger { border-color: var(--red-500); box-shadow: 0 0 0 3px rgba(217, 36, 53, 0.13); }
.ms-value { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.ms-value.ms-placeholder { color: #a9a695; }
.ms-caret { color: var(--ink-mute); transition: transform 0.45s var(--ease); flex-shrink: 0; }
.ms.open .ms-caret { transform: rotate(180deg); }
.ms-panel {
  position: fixed; z-index: 300;
  width: min(460px, calc(100vw - 32px));
  background: var(--surface); border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-lg); padding: 10px;
  animation: msIn 0.25s var(--ease);
}
.ms-panel.up { animation: msInUp 0.25s var(--ease); }
.ms-panel[hidden] { display: none; }
@keyframes msIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }
@keyframes msInUp { from { opacity: 0; transform: translateY(4px); } to { opacity: 1; transform: none; } }
.ms-search {
  display: flex; align-items: center; gap: 8px; padding: 0 10px; margin-bottom: 8px;
  border: 1.5px solid var(--line); border-radius: 9px; background: var(--paper);
}
.ms-search svg { color: var(--ink-mute); flex-shrink: 0; }
.ms-search input { flex: 1; border: none; background: none; outline: none; font: inherit; font-size: 0.9rem; padding: 9px 0; color: var(--ink); }
.ms-toolbar { display: flex; gap: 8px; padding: 0 4px 8px; border-bottom: 1px solid var(--line-soft); margin-bottom: 6px; }
.ms-toolbar button { font-size: 0.78rem; font-weight: 700; color: var(--red-600); padding: 5px 9px; border-radius: 7px; min-height: 32px; transition: background 0.3s ease; }
.ms-toolbar button:hover { background: var(--red-50); }
.ms-list {
  max-height: 300px; overflow-y: auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  scrollbar-width: thin; padding-right: 2px;
}
.ms-list label.ms-option {
  display: flex; align-items: center; gap: 11px; padding: 9px 10px; margin: 0;
  border-radius: 8px; cursor: pointer;
  font-size: 0.92rem; font-weight: 500; color: var(--ink-soft); min-height: 42px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  transition: background 0.25s ease, color 0.25s ease;
}
.ms-list label.ms-option:hover { background: var(--paper); color: var(--ink); }
.ms-list label.ms-option.selected { color: var(--ink); font-weight: 600; background: var(--red-50); }
.ms-option input { position: absolute; opacity: 0; pointer-events: none; }
.ms-check {
  width: 18px; height: 18px; border-radius: 5px; border: 1.5px solid var(--line);
  flex-shrink: 0; display: grid; place-items: center; transition: all 0.3s var(--ease);
}
.ms-option.selected .ms-check { background: var(--red-500); border-color: var(--red-500); }
.ms-option.selected .ms-check::after {
  content: ""; width: 5px; height: 9px; border: solid #fff; border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-1px);
}
.ms-option input:focus-visible + .ms-check { outline: 3px solid var(--red-500); outline-offset: 2px; }
.ms-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.ms-chips:empty { display: none; }
.ms-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--navy-900); color: #fff; font-size: 0.8rem; font-weight: 600;
  padding: 6px 7px 6px 13px; border-radius: 999px;
}
.ms-chip button {
  color: rgba(255, 255, 255, 0.7); font-size: 1.05rem; line-height: 1;
  width: 19px; height: 19px; border-radius: 50%; display: grid; place-items: center;
  transition: background 0.3s ease, color 0.3s ease;
}
.ms-chip button:hover { background: rgba(255, 255, 255, 0.18); color: #fff; }
.qty-custom { display: flex; align-items: center; gap: 12px; }
.qty-custom label { font-size: 0.88rem; font-weight: 600; color: var(--ink-soft); }
.qty-custom input {
  width: 130px; padding: 11px 14px;
  border: 1.5px solid var(--line); border-radius: 10px;
  font: inherit; font-weight: 700; font-size: 1rem; color: var(--ink);
  background: var(--paper); transition: border-color 0.2s, box-shadow 0.2s;
}
.qty-custom input:focus { outline: none; border-color: var(--red-500); box-shadow: 0 0 0 3px rgba(217, 36, 53, 0.13); }

/* states */
.state-tools { display: flex; gap: 10px; margin-bottom: 14px; }
.state-tools button {
  font-size: 0.8rem; font-weight: 700; color: var(--red-600);
  padding: 6px 10px; border-radius: 8px; min-height: 34px;
  transition: background 0.3s ease;
}
.state-tools button:hover { background: var(--red-50); }
.state-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(58px, 1fr)); gap: 8px;
  max-height: 250px; overflow-y: auto; padding: 4px;
}
.state-chip { position: relative; }
.state-chip input { position: absolute; opacity: 0; pointer-events: none; }
.state-chip label {
  display: grid; place-items: center;
  padding: 9px 4px; border-radius: 9px; min-height: 40px;
  border: 1.5px solid var(--line); background: var(--paper);
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.03em; color: var(--ink-soft);
  cursor: pointer; transition: all 0.3s var(--ease);
}
.state-chip label:hover { border-color: #cfccc0; }
.state-chip input:checked + label { border-color: var(--navy-800); background: var(--navy-900); color: #fff; }
.state-chip input:focus-visible + label { outline: 3px solid var(--red-500); outline-offset: 2px; }
.state-count { font-size: 0.82rem; color: var(--ink-mute); margin-top: 12px; font-weight: 500; }

/* summary */
.order-summary {
  position: sticky; top: 100px;
  background: linear-gradient(165deg, var(--navy-800) 0%, var(--navy-950) 90%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg); padding: 30px;
  color: #fff; box-shadow: var(--shadow-lg);
}
.order-summary h2 { font-size: 1.15rem; margin-bottom: 22px; }
.sum-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 0.92rem;
}
.sum-row span:first-child { color: var(--cloud-soft); }
.sum-row span:last-child { font-weight: 600; text-align: right; }
.sum-total { display: flex; justify-content: space-between; align-items: baseline; padding: 20px 0 6px; }
.sum-total span:first-child { font-weight: 600; color: var(--cloud); }
.sum-total strong {
  font-family: var(--font-display); font-size: 2.1rem; font-weight: 800;
  font-variant-numeric: tabular-nums; letter-spacing: -0.02em;
}
.sum-total strong.bump { animation: bump 0.3s var(--ease); }
@keyframes bump { 0% { transform: scale(1); } 40% { transform: scale(1.06); } 100% { transform: scale(1); } }
.order-summary .btn { margin-top: 18px; }
.sum-trust { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 9px; }
.sum-trust li { display: flex; align-items: center; gap: 9px; font-size: 0.82rem; color: var(--cloud-soft); }
.sum-trust svg { color: #5ee39a; flex-shrink: 0; }
.sum-trust a { color: var(--cloud); text-decoration: underline; text-underline-offset: 3px; }
.sum-error { display: none; margin-top: 14px; font-size: 0.85rem; color: #ffb3bb; font-weight: 500; }
.sum-error.show { display: block; }

/* payment panel */
.pay-panel { display: none; margin-top: 22px; border-top: 1px solid rgba(255,255,255,0.12); padding-top: 22px; }
.pay-panel.show { display: block; animation: fadeUp 0.4s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.pay-panel h3 { font-size: 1rem; margin-bottom: 14px; }
.pay-note { font-size: 0.83rem; color: var(--cloud-soft); margin-top: 12px; line-height: 1.55; }
#whopEmbed { background: #fff; border-radius: 14px; min-height: 60px; }
.order-success { display: none; text-align: center; padding: 28px 8px 8px; }
.order-success.show { display: block; animation: fadeUp 0.4s var(--ease); }
.order-success-icon {
  width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 16px;
  display: grid; place-items: center;
  background: rgba(94, 227, 154, 0.15); color: #5ee39a;
  border: 1.5px solid rgba(94, 227, 154, 0.4);
}
.order-success h3 { margin-bottom: 8px; }
.order-success p { font-size: 0.88rem; color: var(--cloud-soft); }

/* payment modal */
body.modal-open { overflow: hidden; }
.pay-modal {
  position: fixed; inset: 0; z-index: 1000;
  display: none; place-items: center; padding: 20px;
}
.pay-modal.show { display: grid; }
.pay-overlay {
  position: absolute; inset: 0;
  background: rgba(12, 20, 46, 0.62);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  animation: overlayIn 0.28s ease;
}
.pay-panel-modal {
  position: relative; width: 100%; max-width: 500px;
  max-height: 88vh; overflow-y: auto;
  background: #fff; color: var(--ink);
  border-radius: var(--radius-lg); padding: 30px;
  box-shadow: var(--shadow-lg);
  animation: modalIn 0.38s var(--ease);
  outline: none;
}
.pay-modal.closing .pay-overlay { animation: overlayOut 0.24s ease forwards; }
.pay-modal.closing .pay-panel-modal { animation: modalOut 0.24s var(--ease) forwards; }
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes overlayOut { from { opacity: 1; } to { opacity: 0; } }
@keyframes modalIn { from { opacity: 0; transform: translateY(26px) scale(0.97); } to { opacity: 1; transform: none; } }
@keyframes modalOut { from { opacity: 1; transform: none; } to { opacity: 0; transform: translateY(14px) scale(0.98); } }
.pay-close {
  position: absolute; top: 16px; right: 16px;
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  color: var(--ink-mute); background: var(--paper);
  transition: background 0.3s ease, color 0.3s ease, transform 0.4s var(--ease);
}
.pay-close:hover { background: var(--red-50); color: var(--red-600); transform: rotate(90deg); }
.pay-head { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.pay-head h3 { font-size: 1.25rem; }
.pay-lock {
  width: 40px; height: 40px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: #fff;
}
.pay-recap {
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; padding: 16px 18px; margin-bottom: 20px;
}
.pay-recap-info { display: flex; flex-direction: column; gap: 2px; }
.pay-recap-info span { font-weight: 600; font-size: 0.95rem; }
.pay-recap-info small { font-size: 0.79rem; color: var(--ink-mute); }
.pay-recap strong {
  font-family: var(--font-display); font-size: 1.5rem; font-weight: 800;
  font-variant-numeric: tabular-nums; color: var(--navy-900);
}
.pay-body { min-height: 90px; }
.pay-loading {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  padding: 34px 0; color: var(--ink-mute); font-size: 0.9rem; font-weight: 500;
}
.pay-spinner {
  width: 20px; height: 20px; border-radius: 50%;
  border: 2.5px solid var(--line); border-top-color: var(--red-500);
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.pay-fallback p { font-size: 0.92rem; color: var(--ink-soft); margin-bottom: 18px; }
.pay-success { text-align: center; padding: 10px 4px; }
.pay-success h3 { margin-bottom: 8px; }
.pay-success p { font-size: 0.92rem; color: var(--ink-soft); }
.pay-foot {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 18px; font-size: 0.78rem; color: var(--ink-mute); text-align: center;
}
.pay-foot svg { flex-shrink: 0; }

/* contact form feedback */
.form-status { display: none; margin-top: 16px; padding: 14px 16px; border-radius: 12px; font-size: 0.9rem; font-weight: 500; }
.form-status.ok { display: block; background: #e8f7ef; color: #12613a; border: 1px solid #b8e6cc; }
.form-status.err { display: block; background: var(--red-50); color: var(--red-600); border: 1px solid #f3cfd3; }

/* semi-fresh page info strip */
.x-info { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 54px; }
.x-info-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm);
}
.x-info-card h3 { font-size: 1.05rem; margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
.x-info-card h3 svg { color: var(--red-600); }
.x-info-card ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 18px; margin: 0; }
.x-info-card li { font-size: 0.88rem; color: var(--ink-soft); padding-left: 20px; position: relative; }
.x-info-card li::before { content: "✓"; position: absolute; left: 0; color: #178a4c; font-weight: 800; }
.x-info-card p { font-size: 0.9rem; color: var(--ink-soft); }

@media (max-width: 1024px) {
  .order-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .x-info { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .product-grid { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .qty-picks { grid-template-columns: 1fr 1fr; }
  .ms-list { grid-template-columns: 1fr; }
  .order-block { padding: 22px 18px; }
  .order-layout { padding: 40px 0 80px; }
  .x-info-card ul { grid-template-columns: 1fr; }
  .page-hero { padding: 48px 0; }
}
