/* =====================================================================
   M-POWER SOLUTIONS - Shared Stylesheet
   Light theme. Palette: #1C1C1C ink, #C80000 red, #D9BB36 gold.
   No em dashes anywhere in copy. Operator voice.
   ===================================================================== */

:root {
  --ink: #1C1C1C;
  --ink-soft: #3A3A3A;
  --gray: #6B6B6B;
  --gray-light: #9A9A9A;
  --line: #E6E6E6;
  --bg: #FFFFFF;
  --bg-alt: #F1EEE9;
  --bg-dark: #1C1C1C;
  --red: #C80000;
  --red-dark: #A00000;
  --red-soft: #FBEBEB;
  --gold: #D9BB36;
  --gold-soft: #FBF6E6;
  --white: #FFFFFF;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(28,28,28,0.06);
  --shadow-md: 0 8px 30px rgba(28,28,28,0.10);
  --shadow-red: 0 8px 26px rgba(200,0,0,0.20);
  --maxw: 1180px;
  --font-display: 'Archivo', sans-serif;
  --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-weight: 800;
}

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 14px;
  display: inline-block;
}
.eyebrow.gold { color: #B8951C; }

.section { padding: 88px 0; }
.section.alt { background: var(--bg-alt); }
.section.dark { background: var(--bg-dark); }
.section.dark h1, .section.dark h2, .section.dark h3, .section.dark h4 { color: var(--white); }
.section.dark p { color: #C9C9C9; }

.section-head { max-width: 760px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 18px; }
.section-head p { font-size: 19px; color: var(--gray); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 16px;
  padding: 15px 30px; border-radius: var(--radius-sm);
  cursor: pointer; border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}
.btn-primary { background: var(--red); color: var(--white); box-shadow: var(--shadow-red); }
.btn-primary:hover { background: var(--red-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(200,0,0,0.30); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #000; color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-light:hover { background: var(--white); color: var(--ink); }
.btn-lg { font-size: 18px; padding: 18px 38px; }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-row.center { justify-content: center; }

.mobile-only-cta { display: none; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; }
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; }
.nav-links a { color: var(--ink); font-weight: 600; font-size: 15.5px; position: relative; }
.nav-links a:hover { color: var(--red); }
.nav-links a.active { color: var(--red); }
.nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-phone { color: var(--ink); font-weight: 700; font-size: 15.5px; white-space: nowrap; }
.nav-phone:hover { color: var(--red); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 26px; height: 2px; background: var(--ink); margin: 5px 0; transition: 0.3s; }

/* dropdown */
.nav-drop { position: relative; }
.nav-drop > a::after { content: '▾'; font-size: 11px; margin-left: 5px; color: var(--gray); }
.nav-drop-menu {
  position: absolute; top: 130%; left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-md); padding: 12px; min-width: 230px;
  opacity: 0; visibility: hidden; transition: 0.2s; list-style: none;
}
.nav-drop:hover .nav-drop-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav-drop-menu li a { display: block; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 15px; }
.nav-drop-menu li a:hover { background: var(--red-soft); color: var(--red); }

/* ---------- Hero (animated data field) ---------- */
.hero-dark {
  position: relative; overflow: hidden;
  background: radial-gradient(135% 130% at 72% 0%, #262626 0%, #1C1C1C 38%, #0E0E0E 72%, #000000 100%);
  color: #fff; padding: 90px 0 80px;
}
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; width: 100%; }
.hero-viz { position: relative; min-height: 460px; }
#heroCanvas { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; display: block; pointer-events: none; }
.hero-dark::after {
  content: ''; position: absolute; top: -10%; right: -6%; width: 52%; height: 100%; z-index: 0; pointer-events: none;
  background: radial-gradient(circle, rgba(200,0,0,0.26) 0%, rgba(200,0,0,0.07) 42%, transparent 68%);
  filter: blur(10px);
}
.hero-dark .container { position: relative; z-index: 3; }
.hero-glow-line { position: absolute; left: 0; right: 0; top: 0; height: 2px; z-index: 4;
  background: linear-gradient(90deg, transparent, rgba(217,187,54,0.55) 30%, rgba(200,0,0,0.65) 55%, transparent 90%); }

/* signal pulse ripple on load (now centered in the viz column) */
.hero-pulse {
  position: absolute; top: 40%; left: 70%; z-index: 1; width: 10px; height: 10px; border-radius: 50%;
  border: 1.5px solid rgba(217,187,54,0.5); transform: translate(-50%,-50%); pointer-events: none; opacity: 0;
}
.hero-pulse.go { animation: pulseOut 2.8s cubic-bezier(0.16,0.8,0.3,1) 0.5s forwards; }
@keyframes pulseOut {
  0% { opacity: 0.7; width: 10px; height: 10px; border-color: rgba(217,187,54,0.6); }
  70% { opacity: 0.12; }
  100% { opacity: 0; width: 1400px; height: 1400px; border-color: rgba(200,0,0,0.05); }
}

.hero-dark .hero-tag {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(217,187,54,0.10); color: #E8CE6A; border: 1px solid rgba(217,187,54,0.34);
  padding: 7px 16px; border-radius: 100px; font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; margin-bottom: 30px; text-transform: uppercase;
}
.hero-dark .hero-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px 1px rgba(217,187,54,0.8); animation: dotPulse 2.4s ease-in-out infinite; }
@keyframes dotPulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

.hero-dark h1 {
  color: #fff; font-size: clamp(46px, 7.4vw, 96px); line-height: 0.95; letter-spacing: -0.035em;
  margin-bottom: 30px; max-width: 15ch; font-weight: 900;
}
/* redaction reveal */
.redact { position: relative; display: inline-block; color: var(--red); }
.redact .word { opacity: 0; transition: opacity 0.05s; }
.redact::before {
  content: ''; position: absolute; left: -0.06em; right: -0.06em; top: 0.06em; bottom: 0.10em;
  background: #0E0E0E; border-radius: 3px; transform-origin: left center; z-index: 2;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.06) inset;
}
.redact.revealed .word { opacity: 1; transition: opacity 0.18s 0.05s; }
.redact.revealed::before { animation: wipe 0.55s cubic-bezier(0.7,0,0.3,1) forwards; }
@keyframes wipe { 0% { transform: scaleX(1); } 100% { transform: scaleX(0); } }
.hero-dark h1 .red::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0.04em; height: 0.08em;
  background: linear-gradient(90deg, var(--red), rgba(200,0,0,0)); border-radius: 2px; opacity: 0;
}
.redact.revealed.red::after { opacity: 1; transition: opacity 0.3s 0.5s; }

.hero-sub-line1 { font-size: clamp(20px, 2.3vw, 26px); color: #EAEDF2; font-weight: 600; margin-bottom: 8px; letter-spacing: -0.01em; }
.hero-sub-line2 { font-size: clamp(17px, 1.9vw, 21px); color: #A2A2A2; font-weight: 500; margin-bottom: 38px; }
.hero-sub-line2 b { color: #fff; font-weight: 700; }

.hero-dark .btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,0.32); }
.hero-dark .btn-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }

.hero-cred { margin-top: 56px; padding-top: 34px; border-top: 1px solid rgba(255,255,255,0.12); position: relative; z-index: 3; }
.hero-cred-label { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: #6E6E6E; font-weight: 700; margin-bottom: 22px; text-align: center; }
.hero-cred-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; align-items: start; max-width: 980px; margin: 0 auto; }
.hero-cred-row.cred-3 { grid-template-columns: repeat(3, 1fr); max-width: 720px; }
.hero-cred-item { text-align: center; }
.hero-cred-item .num { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: #fff; line-height: 1; }
.hero-cred-item .num span { color: var(--gold); }
.hero-cred-item .lbl { font-size: 14px; color: #8C8C8C; margin-top: 8px; font-weight: 500; }

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-viz { display: none; }
  #heroCanvas { display: none; }
}
@media (max-width: 760px) {
  .hero-dark { padding: 74px 0 60px; min-height: 0; }
  .hero-cred-row { gap: 30px; }
  .hero-cred-item .num { font-size: 30px; }
}
@media (prefers-reduced-motion: reduce) {
  .hero-pulse, .hero-dark .hero-tag .dot { animation: none; }
  .redact::before { display: none; }
  .redact .word { opacity: 1; }
  .hero-dark h1 .red::after { opacity: 1; }
}

/* ---------- Inner-page dark hero (service pages) ---------- */
.hero-dark.inner { padding: 70px 0 76px; }
.hero-dark.inner h1 { font-size: clamp(40px, 5.6vw, 68px); margin-bottom: 22px; max-width: 16ch; }
.hero-dark.inner h1 .red { color: var(--red); }
.hero-dark .hero-sub { font-size: clamp(18px, 2vw, 22px); color: #B2B2B2; max-width: 56ch; margin-bottom: 32px; font-weight: 500; }
.hero-dark .hero-sub strong { color: #fff; }
.hero-dark .stat-strip { border-top-color: rgba(255,255,255,0.12); }
.hero-dark .stat .num { color: #fff; }
.hero-dark .stat .num span { color: var(--gold); }
.hero-dark .stat .lbl { color: #8C8C8C; }
.hero-dark .crumb-inline { color: #8C8C8C; font-size: 14px; margin-bottom: 22px; }
.hero-dark .crumb-inline a { color: #8C8C8C; font-weight: 600; }
.hero-dark .crumb-inline a:hover { color: #fff; }

/* ---------- Legacy light hero (fallback) ---------- */
.hero { padding: 96px 0 84px; position: relative; overflow: hidden; }
.hero-bg-grid {
  position: absolute; inset: 0; z-index: 0; opacity: 0.5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 70% 20%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 70% at 70% 20%, #000 30%, transparent 75%);
}
.hero .container { position: relative; z-index: 1; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold-soft); color: #8A6E12; border: 1px solid #EAD98C;
  padding: 7px 16px; border-radius: 100px; font-size: 13.5px; font-weight: 700;
  letter-spacing: 0.04em; margin-bottom: 26px;
}
.hero-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); }
.hero h1 {
  font-size: clamp(40px, 6.2vw, 76px); line-height: 0.98; margin-bottom: 24px; max-width: 14ch;
}
.hero h1 .red { color: var(--red); }
.hero-sub { font-size: clamp(19px, 2.2vw, 23px); color: var(--ink-soft); max-width: 60ch; margin-bottom: 16px; font-weight: 500; }
.hero-sub strong { color: var(--ink); }
.hero-microline { font-size: 16px; color: var(--gray); margin-bottom: 34px; font-weight: 600; }
.hero-microline b { color: var(--red); }

/* stat strip */
.stat-strip { display: flex; gap: 48px; flex-wrap: wrap; margin-top: 56px; padding-top: 40px; border-top: 1px solid var(--line); }
.stat .num { font-family: var(--font-display); font-size: 40px; font-weight: 800; color: var(--ink); line-height: 1; }
.stat .num span { color: var(--red); }
.stat .lbl { font-size: 14.5px; color: var(--gray); margin-top: 6px; font-weight: 600; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; box-shadow: var(--shadow-sm); transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 10px 30px rgba(28,28,28,0.10), 0 0 0 1px rgba(217,187,54,0.5), 0 0 22px rgba(217,187,54,0.28); }

/* cards inside dark sections */
.section.dark .card { background: #1C1C1C00; background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.10); box-shadow: none; }
.section.dark .card h3 { color: #fff; }
.section.dark .card p { color: #B2B2B2; }
.section.dark .card .ic { background: rgba(200,0,0,0.16); }
.section.dark .card .ic svg { stroke: #FF5A5A; }
.section.dark .card:hover { border-color: var(--gold); box-shadow: 0 0 0 1px rgba(217,187,54,0.55), 0 0 24px rgba(217,187,54,0.22); }
.section.dark .card a { color: #FF6B6B; }
.section.dark .card a:hover { color: #fff; }
.card .ic {
  width: 50px; height: 50px; border-radius: 12px; background: var(--red-soft);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.card .ic svg { width: 26px; height: 26px; stroke: var(--red); fill: none; stroke-width: 2; }
.card h3 { font-size: 20px; margin-bottom: 10px; }
.card p { color: var(--gray); font-size: 15.5px; }
.section.alt .card { background: var(--white); }

/* ---------- Process / timeline ---------- */
.timeline { max-width: 760px; margin: 0 auto; }
.tl-step { display: flex; gap: 26px; padding-bottom: 38px; position: relative; }
.tl-step:not(:last-child)::before {
  content: ''; position: absolute; left: 27px; top: 56px; bottom: 0; width: 2px; background: var(--line);
}
.tl-num {
  flex-shrink: 0; width: 56px; height: 56px; border-radius: 50%;
  background: var(--ink); color: var(--white); font-family: var(--font-display); font-weight: 800; font-size: 19px;
  display: flex; align-items: center; justify-content: center; z-index: 1;
  border: 3px solid var(--white); box-shadow: 0 0 0 2px var(--line);
}
.tl-step.red .tl-num { background: var(--red); }
.tl-body h3 { font-size: 21px; margin-bottom: 8px; }
.tl-body p { color: var(--gray); }

/* ---------- Comparison (IS / ISN'T, For / Not For) ---------- */
.compare { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-col { border-radius: var(--radius); padding: 32px; border: 1px solid var(--line); }
.compare-col.good { background: var(--bg); border-color: #D8EAD8; }
.compare-col.bad { background: var(--bg); border-color: #F0D8D8; }
.compare-col h3 { font-size: 21px; margin-bottom: 20px; display: flex; align-items: center; gap: 10px; }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.compare-col li { display: flex; gap: 12px; font-size: 15.5px; color: var(--ink-soft); }
.compare-col li .mk { flex-shrink: 0; font-weight: 800; }
.good li .mk { color: #1E8C3A; }
.bad li .mk { color: var(--red); }

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.price-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.price-card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; display: flex; flex-direction: column; position: relative; box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.price-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 10px 30px rgba(28,28,28,0.10), 0 0 0 1px rgba(217,187,54,0.5), 0 0 22px rgba(217,187,54,0.28); }
.price-card.feature { border-color: var(--red); box-shadow: var(--shadow-red); }
.price-card.feature:hover { border-color: var(--red); box-shadow: 0 12px 32px rgba(200,0,0,0.22), 0 0 0 1px rgba(200,0,0,0.5), 0 0 24px rgba(200,0,0,0.30); }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--red); color: var(--white); font-size: 12px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em; padding: 6px 16px; border-radius: 100px; white-space: nowrap;
}
.price-card h3 { font-size: 23px; margin-bottom: 6px; text-align: center; }
.price-card .plan-note { font-size: 14px; color: var(--gray); margin-bottom: 18px; min-height: 40px; text-align: center; }
.price-amt { font-family: var(--font-display); font-size: 38px; font-weight: 800; color: var(--ink); line-height: 1; text-align: center; }
.price-amt span { font-size: 16px; color: var(--gray); font-weight: 600; }
.price-sub { font-size: 14px; color: var(--gray); margin: 8px 0 20px; text-align: center; }
.price-card ul { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 24px; flex-grow: 1; }
.price-card li { display: flex; gap: 10px; font-size: 14.5px; color: var(--ink-soft); }
.price-card li::before { content: '✓'; color: var(--red); font-weight: 800; flex-shrink: 0; }
.price-card .btn { width: 100%; justify-content: center; }
.price-card .tier-split { text-align: left; }

/* two-tier inside a card (Standard / Plus) */
.tier-split { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.tier-split .t-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 14px; }
.tier-split .t-row b { font-family: var(--font-display); font-size: 19px; }

/* ---------- Property page components ---------- */
.container.narrow { max-width: 860px; }
.lead-def { font-size: 18px; line-height: 1.7; color: var(--ink-soft); }
.section.dark .lead-def { color: #B2B2B2; }

/* ---------- Definition card (AEO intro, visualized) ---------- */
.def-card {
  max-width: 880px; margin: 0 auto; position: relative;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  padding: 38px 44px; box-shadow: var(--shadow-sm);
}
.section.alt .def-card { background: var(--white); }
.def-card .def-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red); margin-bottom: 16px;
}
.def-card .def-label::before { content: ''; width: 18px; height: 2px; background: var(--red); display: inline-block; }
.def-card .def-lead { font-family: var(--font-display); font-weight: 700; font-size: clamp(20px, 2.4vw, 25px); line-height: 1.4; color: var(--ink); margin-bottom: 16px; }
.def-card .def-lead b { color: var(--red); font-weight: 700; }
.def-card .def-body { font-size: 16.5px; line-height: 1.7; color: var(--gray); }
.def-card .def-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--line); }
.def-card .def-tag { font-size: 13px; font-weight: 600; color: var(--ink-soft); background: var(--bg-alt); border: 1px solid var(--line); border-radius: 100px; padding: 6px 14px; }
.def-card .def-tag b { color: var(--red); font-weight: 700; }
@media (max-width: 760px) { .def-card { padding: 28px 24px; } }

.cat-grid { gap: 18px; }
.cat-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px 24px; transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease; }
.cat-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 10px 30px rgba(28,28,28,0.10), 0 0 0 1px rgba(217,187,54,0.5), 0 0 22px rgba(217,187,54,0.28); }
.cat-card h3 { font-size: 18px; margin-bottom: 14px; }
.cat-card ul { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.cat-card li { font-size: 14.5px; color: var(--gray); padding-left: 16px; position: relative; }
.cat-card li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--red); }
.cat-card-cta { background: var(--bg-alt); border-style: dashed; display: flex; flex-direction: column; justify-content: center; }
.cat-card-cta p { font-size: 14.5px; color: var(--gray); margin-bottom: 14px; }

.tag-pill { display: inline-block; font-size: 10px; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase; background: rgba(217,187,54,0.16); color: var(--gold); padding: 3px 9px; border-radius: 100px; vertical-align: middle; margin-left: 6px; }

.compare-table { margin-top: 40px; overflow-x: auto; width: 100%; max-width: 100%; -webkit-overflow-scrolling: touch; }
.compare-table table { width: 100%; border-collapse: collapse; min-width: 640px; }
.compare-table th, .compare-table td { padding: 14px 18px; text-align: left; font-size: 14.5px; border-bottom: 1px solid var(--line); }
.compare-table thead th { font-family: var(--font-display); font-weight: 800; color: var(--ink); font-size: 15px; }
.compare-table thead th:last-child { color: var(--red); }
.compare-table td:first-child { font-weight: 600; color: var(--ink); }
.compare-table td { color: var(--gray); }
.compare-table tbody tr:hover { background: var(--bg-alt); }
.price-footnote { font-size: 13px; color: var(--gray); margin-top: 16px; line-height: 1.5; }
.section.dark .price-footnote { color: #8C8C8C; }
.card-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.card-list li { font-size: 15px; color: var(--gray); padding-left: 22px; position: relative; }
.card-list li::before { content: '✓'; position: absolute; left: 0; color: var(--red); font-weight: 800; }
.section.dark .card-list li { color: #B2B2B2; }
.section.dark .card-list li::before { color: #FF5A5A; }

/* ---------- Hero data card (animated record preview) ---------- */
.data-card {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: min(420px, 92%);
  background: linear-gradient(180deg, rgba(32,32,32,0.96) 0%, rgba(20,20,20,0.96) 100%);
  border: 1px solid rgba(255,255,255,0.10); border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(217,187,54,0.08);
  overflow: hidden; backdrop-filter: blur(4px);
}
.dc-head { display: flex; align-items: center; gap: 13px; padding: 18px 20px; border-bottom: 1px solid rgba(255,255,255,0.08); position: relative; }
.dc-ico { width: 40px; height: 40px; border-radius: 10px; background: rgba(200,0,0,0.16); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.dc-ico svg { width: 20px; height: 20px; stroke: #FF5A5A; fill: none; stroke-width: 2; }
.dc-title { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: #fff; line-height: 1.1; }
.dc-sub { font-size: 12px; color: #8A8A8A; margin-top: 2px; }
.dc-live { position: absolute; top: 20px; right: 20px; width: 9px; height: 9px; border-radius: 50%; background: #35C66B; box-shadow: 0 0 0 0 rgba(53,198,107,0.6); animation: dcLive 2s ease-out infinite; }
@keyframes dcLive { 0% { box-shadow: 0 0 0 0 rgba(53,198,107,0.55); } 70% { box-shadow: 0 0 0 8px rgba(53,198,107,0); } 100% { box-shadow: 0 0 0 0 rgba(53,198,107,0); } }
.dc-rows { padding: 6px 0; }
.dc-row {
  display: flex; align-items: center; gap: 12px; padding: 11px 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  opacity: 0; transform: translateY(8px); transition: opacity 0.5s ease, transform 0.5s ease;
}
.dc-row.in { opacity: 1; transform: translateY(0); }
.dc-row:first-child { border-top: none; }
.dc-row .k { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: #9A9A9A; min-width: 132px; }
.dc-row .k svg { width: 15px; height: 15px; stroke: #FF5A5A; fill: none; stroke-width: 1.8; flex-shrink: 0; }
.dc-row .v { font-size: 14px; font-weight: 700; color: #F0F0F0; }
.dc-row .v.gold { color: var(--gold); }
.dc-row .v.warn { color: #E04848; }
.dc-row .v.good { color: #35C66B; }

/* ---------- DFY pipeline card (animated stage flow) ---------- */
.pipe-card {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: min(440px, 94%);
  background: linear-gradient(180deg, rgba(32,32,32,0.96) 0%, rgba(20,20,20,0.96) 100%);
  border: 1px solid rgba(255,255,255,0.10); border-radius: 16px; padding: 22px 22px 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45), 0 0 0 1px rgba(217,187,54,0.08);
  backdrop-filter: blur(4px);
}
.pipe-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.pipe-title { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: #fff; }
.pipe-live { display: flex; align-items: center; gap: 7px; font-size: 11px; color: #8A8A8A; font-weight: 600; }
.pipe-live .dot { width: 8px; height: 8px; border-radius: 50%; background: #35C66B; box-shadow: 0 0 0 0 rgba(53,198,107,0.6); animation: dcLive 2s ease-out infinite; }
.pipe-stage { display: flex; align-items: center; gap: 14px; padding: 13px 0; position: relative; }
.pipe-stage:not(:last-child)::after { content: ''; position: absolute; left: 19px; top: 44px; bottom: -2px; width: 2px; background: rgba(255,255,255,0.08); }
.pipe-ico {
  width: 38px; height: 38px; border-radius: 10px; flex-shrink: 0; z-index: 1;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.pipe-ico svg { width: 18px; height: 18px; stroke: #9A9A9A; fill: none; stroke-width: 2; transition: stroke 0.4s ease; }
.pipe-stage.active .pipe-ico { background: rgba(200,0,0,0.18); border-color: rgba(255,90,90,0.5); box-shadow: 0 0 16px rgba(200,0,0,0.25); }
.pipe-stage.active .pipe-ico svg { stroke: #FF5A5A; }
.pipe-stage.done .pipe-ico { background: rgba(53,198,107,0.14); border-color: rgba(53,198,107,0.4); }
.pipe-stage.done .pipe-ico svg { stroke: #35C66B; }
.pipe-body { flex: 1; min-width: 0; }
.pipe-name { font-size: 14px; font-weight: 700; color: #F0F0F0; display: flex; justify-content: space-between; align-items: baseline; }
.pipe-count { font-family: var(--font-display); font-weight: 800; font-size: 15px; color: var(--gold); }
.pipe-desc { font-size: 11.5px; color: #8A8A8A; margin-top: 2px; }
.pipe-bar { height: 3px; border-radius: 3px; background: rgba(255,255,255,0.07); margin-top: 8px; overflow: hidden; }
.pipe-bar > i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--red), var(--gold)); border-radius: 3px; transition: width 0.5s ease; }

/* ---------- DFY pricing add-ons ---------- */
.addon-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 24px; }
.addon-card { background: var(--white); border: 1px dashed var(--line); border-left: 3px solid var(--gold); border-radius: var(--radius); padding: 24px 26px; }
.addon-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.addon-head h3 { font-size: 19px; }
.addon-price { font-family: var(--font-display); font-weight: 800; font-size: 22px; color: var(--red); white-space: nowrap; }
.addon-price span { font-size: 13px; color: var(--gray); font-weight: 600; }
.addon-card p { color: var(--gray); font-size: 14.5px; line-height: 1.6; }
@media (max-width: 760px) { .addon-row { grid-template-columns: 1fr; } }

/* ---------- DFY: Flex intro row ---------- */
.flex-row { display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 44px; background: var(--bg); }
.flex-row .flex-left { padding: 32px 36px; }
.flex-row .flex-right { padding: 32px 36px; background: var(--bg-alt); border-left: 1px solid var(--line); display: flex; flex-direction: column; justify-content: center; }
.flex-row .flex-eyebrow { font-size: 12px; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.flex-row h3 { font-size: 26px; margin-bottom: 6px; }
.flex-row .flex-note { color: var(--gray); font-size: 15px; margin-bottom: 18px; }
.flex-row .flex-feats { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.flex-row .flex-feats span { font-size: 13.5px; color: var(--ink-soft); position: relative; padding-left: 18px; }
.flex-row .flex-feats span::before { content: '\2713'; position: absolute; left: 0; color: var(--red); font-weight: 800; }
.flex-row .flex-amt { font-family: var(--font-display); font-weight: 900; font-size: 46px; color: var(--ink); line-height: 1; }
.flex-row .flex-amt span { font-size: 18px; font-weight: 600; color: var(--gray); }
.flex-row .flex-setup { font-size: 14px; color: var(--gray); margin-top: 6px; margin-bottom: 18px; }
.flex-row .btn { align-self: flex-start; }

/* ---------- DFY: master pay-mode toggle ---------- */
.pay-toggle { display: inline-flex; align-items: center; background: var(--bg); border: 1px solid var(--line); border-radius: 100px; padding: 5px; gap: 4px; box-shadow: var(--shadow-sm); }
.pay-toggle button { font-family: var(--font-body); font-weight: 700; font-size: 14.5px; border: none; background: transparent; color: var(--gray); padding: 11px 24px; border-radius: 100px; cursor: pointer; transition: all 0.25s ease; white-space: nowrap; }
.pay-toggle button.active { background: var(--ink); color: #fff; }
.pay-toggle button .save-flag { color: var(--gold); font-weight: 800; margin-left: 4px; }
.pay-toggle button.active .save-flag { color: var(--gold); }
.toggle-wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 36px; }
.toggle-wrap .toggle-hint { font-size: 13.5px; color: var(--gray); }

/* ---------- DFY: term-card price block, two states ---------- */
.term-price { margin-bottom: 6px; min-height: 132px; }
.term-price .tp-total { font-family: var(--font-display); font-weight: 900; font-size: 42px; color: var(--ink); line-height: 1; }
.term-price .tp-total .tp-cur { font-size: 22px; vertical-align: top; font-weight: 800; }
.term-price .tp-term { font-size: 13px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 8px; }
.term-price .tp-line { font-size: 14.5px; color: var(--ink-soft); margin-top: 10px; }
.term-price .tp-line b { color: var(--ink); font-weight: 800; }
.term-price .tp-weekly { font-size: 14.5px; color: var(--gray); margin-top: 4px; }
.term-price .tp-weekly b { color: var(--ink); font-weight: 700; }
/* upfront state */
.term-price .tp-save { display: flex; flex-direction: column; gap: 7px; margin-top: 14px; }
.term-price .tp-save .save-pill { display: inline-flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 700; color: var(--ink-soft); }
.term-price .tp-save .save-pill b { color: #1E8C3A; font-weight: 800; }
.term-price .tp-save .save-pill::before { content: '\2193'; color: #1E8C3A; font-weight: 900; }
/* toggle-driven visibility */
.price-grid[data-mode="installments"] .tp-upfront { display: none; }
.price-grid[data-mode="upfront"] .tp-installments { display: none; }

@media (max-width: 860px) {
  .flex-row { grid-template-columns: 1fr; }
  .flex-row .flex-right { border-left: none; border-top: 1px solid var(--line); }
}

/* ---------- Feature list two-col ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split.alt-order .split-media { order: -1; }
.split h2 { font-size: clamp(28px, 3.4vw, 40px); margin-bottom: 18px; }
.split p { color: var(--gray); font-size: 17px; margin-bottom: 16px; }
.check-list { list-style: none; display: flex; flex-direction: column; gap: 13px; margin-top: 22px; }
.check-list li { display: flex; gap: 12px; font-size: 16px; color: var(--ink-soft); }
.check-list li::before { content: '✓'; color: var(--red); font-weight: 800; flex-shrink: 0; font-size: 18px; }
.media-panel {
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 40px; box-shadow: var(--shadow-sm);
}

/* ---------- Trust strip ---------- */
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.trust-item .num { font-family: var(--font-display); font-size: 34px; font-weight: 800; color: var(--white); }
.trust-item .num span { color: var(--gold); }
.trust-item .lbl { color: #B8B8B8; font-size: 15px; margin-top: 8px; }
/* light variant */
.trust-light .trust-item .num { color: var(--ink); }
.trust-light .trust-item .num span { color: #B8951C; }
.trust-light .trust-item .lbl { color: var(--gray); }

/* ---------- Testimonials ---------- */
.tst-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.tst {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.tst:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 10px 30px rgba(28,28,28,0.10), 0 0 0 1px rgba(217,187,54,0.5), 0 0 22px rgba(217,187,54,0.28); }
.tst .stars { color: var(--gold); font-size: 16px; letter-spacing: 2px; margin-bottom: 14px; }
.tst p { font-size: 15.5px; color: var(--ink-soft); font-style: italic; margin-bottom: 18px; flex-grow: 1; }
.tst .who { font-weight: 700; color: var(--ink); font-size: 15px; }

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 22px 0; font-family: var(--font-display); font-weight: 700; font-size: 19px; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-q .plus { color: var(--red); font-size: 24px; flex-shrink: 0; transition: transform 0.25s; line-height: 1; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 0 22px; color: var(--gray); font-size: 16px; }

/* FAQ inside dark sections */
.section.dark .faq-item { border-bottom-color: rgba(255,255,255,0.12); }
.section.dark .faq-q { color: #fff; }
.section.dark .faq-q .plus { color: #FF5A5A; }
.section.dark .faq-a-inner { color: #B2B2B2; }

/* ---------- CTA band ---------- */
.cta-band {
  color: var(--ink); text-align: center; padding: 88px 0; position: relative; overflow: hidden;
  background: var(--bg);
}
.cta-band::before {
  content: ''; position: absolute; inset: 0; opacity: 0.6; pointer-events: none;
  background-image: repeating-linear-gradient(125deg, rgba(28,28,28,0.018) 0px, rgba(28,28,28,0.018) 1px, transparent 1px, transparent 9px);
}
.cta-band::after {
  content: ''; position: absolute; left: 0; right: 0; top: 0; height: 3px;
  background: var(--red);
}
.cta-band h2 { color: var(--ink); font-size: clamp(30px, 4.4vw, 50px); margin-bottom: 16px; }
.cta-band p { color: var(--gray); font-size: 19px; max-width: 56ch; margin: 0 auto 32px; }
.cta-band .btn-outline-light { color: var(--ink); border-color: var(--ink); }
.cta-band .btn-outline-light:hover { background: var(--ink); color: var(--white); border-color: var(--ink); }
.cta-band .container { position: relative; z-index: 1; }

/* ---------- Cross-sell ---------- */
.xsell-card { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: 0.2s; }
.xsell-card:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 10px 30px rgba(28,28,28,0.10), 0 0 0 1px rgba(217,187,54,0.5), 0 0 22px rgba(217,187,54,0.28); }
.xsell-card h3 { font-size: 20px; margin-bottom: 10px; }
.xsell-card p { color: var(--gray); font-size: 15px; margin-bottom: 16px; }
.xsell-card .lnk { font-weight: 700; color: var(--red); font-size: 15px; display: inline-flex; align-items: center; gap: 6px; }
.xsell-card .lnk:hover { gap: 10px; }

/* ---------- About page ---------- */
.about-hero .hero-grid { align-items: center; }
/* Hero: image sits on the RIGHT, so fade to pure black on the right, brand navy on the left */
.about-hero.hero-dark {
  background: linear-gradient(90deg, #2E2E2E 0%, #232323 24%, #121212 40%, #000000 52%, #000000 100%);
}
.about-hero.hero-dark::after { display: none; }
.about-portrait {
  position: relative; max-width: 440px; margin-left: auto; overflow: visible;
}
.about-portrait img {
  display: block; width: 100%; height: auto; filter: grayscale(100%) contrast(1.05);
  -webkit-mask-image: radial-gradient(125% 115% at 60% 42%, #000 58%, transparent 100%);
  mask-image: radial-gradient(125% 115% at 60% 42%, #000 58%, transparent 100%);
}
.about-portrait .badge {
  position: absolute; left: 12px; bottom: 8px; z-index: 2;
  font-size: 13px; font-weight: 800; letter-spacing: 0.04em; color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.9), 0 1px 3px rgba(0,0,0,0.9);
}
.about-portrait .badge span { display: block; font-size: 12px; font-weight: 500; color: #C8C8C8; letter-spacing: 0; margin-top: 2px; }

.owner-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.owner-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); max-width: 380px; }
.owner-photo img { display: block; width: 100%; height: auto; filter: grayscale(100%) contrast(1.04); }
.owner-text .quote { font-family: var(--font-display); font-weight: 700; font-size: clamp(22px, 2.6vw, 28px); line-height: 1.4; color: var(--ink); margin-bottom: 20px; }
.owner-text .quote b { color: var(--red); }
.owner-text .sig { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--ink); margin-top: 22px; }
.owner-text .sig span { display: block; font-family: var(--font-body); font-size: 14px; font-weight: 500; color: var(--gray); margin-top: 2px; }

.value-card .vnum { font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 12px; }
.value-card h3 { font-size: 21px; margin-bottom: 6px; }
.value-card .vsub { font-size: 14px; font-weight: 700; color: var(--red); margin-bottom: 12px; }

@media (max-width: 860px) {
  .owner-split { grid-template-columns: 1fr; gap: 32px; }
  .owner-photo { max-width: 320px; margin: 0 auto; }
  .about-portrait { margin: 0 auto; }
}

/* Founder section: image sits on the LEFT, so fade to pure black on the left, brand navy on the right */
.section.dark-hero {
  background: linear-gradient(90deg, #000000 0%, #000000 40%, #080808 52%, #0E0E0E 66%, #0E0E0E 100%);
  color: #fff;
}
.section.dark-hero .eyebrow { color: var(--gold); }
.section.dark-hero .owner-text .quote { color: #fff; }
.section.dark-hero .owner-text .quote b { color: #FF5A5A; }
.section.dark-hero .owner-text p { color: #B2B2B2; }
.section.dark-hero .owner-text .sig { color: #fff; }
.section.dark-hero .owner-text .sig span { color: #8C8C8C; }
.section.dark-hero .owner-photo { border: none; box-shadow: none; background: transparent; max-width: 400px; }
.section.dark-hero .owner-photo img {
  filter: grayscale(100%) contrast(1.05);
  -webkit-mask-image: radial-gradient(125% 118% at 45% 45%, #000 56%, transparent 100%);
  mask-image: radial-gradient(125% 118% at 45% 45%, #000 56%, transparent 100%);
}

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: #BDBDBD; padding: 64px 0 32px; border-top: 3px solid var(--gold); }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; padding-bottom: 44px; border-bottom: 1px solid #333; }
.footer-brand img { height: 42px; margin-bottom: 18px; }
.footer-brand .tag { color: #9A9A9A; font-size: 15px; margin-bottom: 18px; max-width: 30ch; }
.footer-brand .contact a { display: block; color: var(--white); font-weight: 700; margin-bottom: 6px; font-size: 16px; }
.footer-brand .contact a:hover { color: var(--gold); }
.footer-col h4 { color: var(--white); font-size: 13px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { color: #BDBDBD; font-size: 15px; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; flex-wrap: wrap; gap: 14px; }
.footer-bottom .copy { color: #8A8A8A; font-size: 14px; }
.footer-bottom .legal { display: flex; gap: 22px; }
.footer-bottom .legal a { color: #8A8A8A; font-size: 14px; }
.footer-bottom .legal a:hover { color: var(--white); }
.footer-bottom .site-credit { color: #6E6E6E; font-size: 13px; }
.footer-bottom .site-credit a { color: #9A9A9A; text-decoration: none; transition: color 0.2s ease; }
.footer-bottom .site-credit a:hover { color: var(--gold); }

/* ---------- Legal pages ---------- */
.legal-page { padding: 64px 0 80px; }
.legal-page .container { max-width: 820px; }
.legal-page h1 { font-size: 40px; margin-bottom: 10px; }
.legal-page .eff { color: var(--gray); margin-bottom: 40px; font-size: 15px; }
.legal-page h2 { font-size: 24px; margin: 36px 0 14px; }
.legal-page h3 { font-size: 19px; margin: 24px 0 10px; }
.legal-page p, .legal-page li { color: var(--ink-soft); font-size: 16px; margin-bottom: 14px; }
.legal-page ul { padding-left: 22px; margin-bottom: 14px; }
.legal-page li { margin-bottom: 8px; }
.legal-page strong { color: var(--ink); }

/* ---------- Breadcrumb ---------- */
.crumb { padding: 18px 0 0; font-size: 14px; color: var(--gray); }
.crumb a { color: var(--gray); font-weight: 600; }
.crumb a:hover { color: var(--red); }

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

/* ---------- Hero load-in stagger ---------- */
@keyframes heroUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
.hero-anim { opacity: 0; animation: heroUp 0.7s cubic-bezier(0.22,1,0.36,1) forwards; }
.hero-anim.d1 { animation-delay: 0.05s; }
.hero-anim.d2 { animation-delay: 0.16s; }
.hero-anim.d3 { animation-delay: 0.27s; }
.hero-anim.d4 { animation-delay: 0.38s; }
.hero-anim.d5 { animation-delay: 0.52s; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .tst-grid { grid-template-columns: repeat(2, 1fr); }
  .price-grid, .price-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 36px; }
  .split.alt-order .split-media { order: 0; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .nav-links, .nav-phone { display: none; }
  .nav-cta > .btn { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute; top: 84px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--line); padding: 20px 24px; gap: 6px; align-items: stretch;
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open .nav-drop-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 4px 0 4px 14px; min-width: 0; }
  .nav-links.open .nav-drop > a::after { content: ''; }
  .nav-links.open .mobile-only-cta { display: block; margin-top: 10px; }
  .mobile-only-cta .btn { width: 100%; justify-content: center; }
  .nav-toggle { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .tst-grid { grid-template-columns: 1fr; }
  .price-grid, .price-grid.cols-3 { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .stat-strip { gap: 30px; }
  .stat .num { font-size: 32px; }
  .footer-top { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
