/* ============================================================
   Metre2 Vector — Landing page
   Light & precise. Extends the core m2 design tokens.
   ============================================================ */

:root {
  --m2-accent-2: #0ea5b7;          /* brighter teal for highlights */
  --m2-accent-line: rgba(21, 94, 117, 0.16);
  --m2-grid: rgba(21, 94, 117, 0.06);
  --m2-grid-strong: rgba(21, 94, 117, 0.12);
  --m2-ink-soft: #3c4a5c;
  --m2-amber: #d97706;             /* annotation / measurement accent */
  --m2-radius-lg: 20px;
  --m2-mono: ui-monospace, "SF Mono", "JetBrains Mono", "Cascadia Code", Menlo,
    Consolas, monospace;
}

/* Let the landing break out of the layout's centered container so
   sections can run full-bleed. Symmetric negative margins self-centre
   regardless of the parent container's padding (Bootstrap .container),
   and overflow:clip stops the breakout from spawning a scrollbar. */
.m2-landing {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -28px;            /* cancel .site-main top padding */
  overflow-x: clip;
}

/* The full-bleed width is 100vw, which includes the scrollbar gutter;
   clip horizontal overflow on the root so no stray scrollbar appears.
   overflow:clip (not hidden) keeps the sticky header working. */
html { overflow-x: clip; }

.m2-wrap {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 40px);
}

.m2-landing .eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--m2-accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

/* ---------- Buttons ---------- */
.m2-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 0.98rem;
  font-weight: 680;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
    border-color 0.15s ease;
}
.m2-btn svg { width: 18px; height: 18px; }

.m2-btn-primary {
  background: var(--m2-accent);
  color: #fff;
  box-shadow: 0 14px 30px rgba(21, 94, 117, 0.28);
}
.m2-btn-primary:hover {
  color: #fff;
  background: var(--m2-accent-strong);
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(21, 94, 117, 0.34);
}

.m2-btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--m2-border-strong);
  color: var(--m2-text);
}
.m2-btn-ghost:hover {
  color: var(--m2-text);
  border-color: var(--m2-accent);
  background: var(--m2-accent-soft);
  transform: translateY(-2px);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(56px, 9vw, 104px) 0 clamp(28px, 4vw, 48px);
  background:
    radial-gradient(900px 500px at 88% -8%, rgba(14, 165, 183, 0.14), transparent 60%),
    radial-gradient(700px 460px at 6% 4%, rgba(21, 94, 117, 0.10), transparent 55%),
    linear-gradient(180deg, #f7fbfd 0%, #eaf2f8 100%);
}
/* Blueprint grid overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--m2-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--m2-grid) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 78%);
  mask-image: radial-gradient(circle at 70% 30%, #000 0%, transparent 78%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  column-gap: clamp(32px, 5vw, 64px);
  row-gap: clamp(20px, 3vw, 34px);
  align-items: center;
}

.hero-visual {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.hero h1 {
  margin: 0 0 18px;
  color: var(--m2-text);
  font-size: clamp(2.4rem, 5.2vw, 4rem);
  font-weight: 780;
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--m2-accent), var(--m2-accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero .lede {
  max-width: 30rem;
  margin: 0 0 30px;
  color: var(--m2-ink-soft);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.55;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.price-note {
  display: inline-flex;
  align-items: center;
  margin: 14px 0 0;
  padding: 7px 11px;
  border: 1px solid rgba(191, 208, 221, 0.78);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--m2-muted);
  font-size: 0.86rem;
  line-height: 1.25;
}
.price-note strong {
  margin-right: 4px;
  color: var(--m2-text);
  font-weight: 780;
}

.hero-meta {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: 100%;
  margin-top: 0;
}
.hero-meta .stat {
  position: relative;
  min-height: 136px;
  padding: 18px 18px 16px;
  overflow: hidden;
  border: 1px solid rgba(191, 208, 221, 0.86);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}
.hero-meta .stat::after {
  content: none;
}
.hero-meta .stat-primary {
  border-color: rgba(191, 208, 221, 0.86);
  background: rgba(255, 255, 255, 0.88);
}
.hero-meta .stat .k {
  display: block;
  margin-bottom: 10px;
  color: var(--m2-accent);
  font-family: var(--m2-mono);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-meta .stat .n {
  display: block;
  font-size: clamp(1.42rem, 2.4vw, 1.9rem);
  font-weight: 720;
  color: var(--m2-text);
  letter-spacing: -0.025em;
  line-height: 1;
}
.hero-meta .stat .l {
  display: block;
  margin-top: 8px;
  max-width: 12rem;
  font-size: 0.78rem;
  line-height: 1.32;
  color: var(--m2-muted);
}

/* ---------- Hero takeoff visual ---------- */
.takeoff {
  position: relative;
  width: min(720px, 112%);
  max-width: none;
  border-radius: var(--m2-radius-lg);
  background: transparent;
  border: 0;
  box-shadow: none;
  overflow: visible;
  animation: floaty 7s ease-in-out infinite;
}
@keyframes floaty {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.takeoff-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--m2-border);
  background: var(--m2-surface-soft);
}
.takeoff-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--m2-border-strong); }
.takeoff-bar .file {
  margin-left: 8px;
  font-family: var(--m2-mono);
  font-size: 0.78rem;
  color: var(--m2-muted);
}
.takeoff-bar .scale {
  margin-left: auto;
  font-family: var(--m2-mono);
  font-size: 0.72rem;
  color: var(--m2-accent);
  background: var(--m2-accent-soft);
  padding: 3px 8px;
  border-radius: 6px;
}
.takeoff-canvas { display: block; width: 100%; height: auto; }
.takeoff-image,
.spec-image {
  display: block;
  width: 100%;
  height: auto;
}
.takeoff-image {
  filter: drop-shadow(0 30px 54px rgba(15, 23, 42, 0.17));
}
.spec-image {
  filter: drop-shadow(0 30px 54px rgba(15, 23, 42, 0.15));
}

/* Live measurement chips floating over the canvas */
.chip {
  position: absolute;
  font-family: var(--m2-mono);
  font-size: 0.72rem;
  font-weight: 600;
  color: #fff;
  padding: 4px 9px;
  border-radius: 7px;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.18);
  white-space: nowrap;
}
.chip-area { background: var(--m2-accent); top: 38%; left: 22%; }
.chip-len { background: var(--m2-amber); top: 70%; left: 55%; }
.chip-count {
  background: #fff; color: var(--m2-accent-strong);
  border: 1px solid var(--m2-border-strong);
  top: 20%; right: 9%;
}
.pulse { animation: pulse 2.6s ease-in-out infinite; }
@keyframes pulse {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(-4px); opacity: 0.92; }
}

/* ============================================================
   LOGO / TRUST STRIP
   ============================================================ */
.strip {
  border-top: 1px solid var(--m2-border);
  border-bottom: 1px solid var(--m2-border);
  background: rgba(255, 255, 255, 0.6);
}
.strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 36px;
  padding: 22px 0;
  text-align: center;
}
.strip-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--m2-muted);
}
.strip-items { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.strip-items span {
  font-family: var(--m2-mono);
  font-size: 0.82rem;
  color: var(--m2-ink-soft);
  padding: 6px 12px;
  border: 1px solid var(--m2-border);
  border-radius: 999px;
  background: #fff;
}

/* ============================================================
   SECTION SHELL
   ============================================================ */
.section { padding: clamp(64px, 9vw, 110px) 0; }
.section-head { max-width: 44rem; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  font-weight: 760;
  letter-spacing: -0.02em;
  color: var(--m2-text);
  line-height: 1.08;
}
.section-head p {
  margin: 0;
  color: var(--m2-ink-soft);
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.6;
}

/* ---------- Feature grid ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  position: relative;
  padding: 28px 26px 30px;
  border: 1px solid var(--m2-border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.feature:hover {
  transform: translateY(-4px);
  border-color: var(--m2-border-strong);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
}
.feature .ic {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  margin-bottom: 18px;
  background: var(--m2-accent-soft);
  color: var(--m2-accent-strong);
}
.feature .ic svg { width: 24px; height: 24px; }
.feature h3 { margin: 0 0 8px; font-size: 1.12rem; font-weight: 720; color: var(--m2-text); }
.feature p { margin: 0; color: var(--m2-muted); font-size: 0.95rem; line-height: 1.55; }

/* ---------- How it works ---------- */
.how { background: linear-gradient(180deg, #f3f8fb 0%, #eaf2f8 100%); border-top: 1px solid var(--m2-border); border-bottom: 1px solid var(--m2-border); }
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  counter-reset: step;
}
.step {
  position: relative;
  padding: 30px 26px;
  background: #fff;
  border: 1px solid var(--m2-border);
  border-radius: 16px;
}
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--m2-mono);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--m2-accent);
}
.step h3 { margin: 12px 0 8px; font-size: 1.15rem; font-weight: 720; color: var(--m2-text); }
.step p { margin: 0; color: var(--m2-muted); font-size: 0.95rem; line-height: 1.55; }
.step .arrow {
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  color: var(--m2-border-strong);
}
.step:last-child .arrow { display: none; }

/* ---------- Precision split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.split .eyebrow { margin-bottom: 14px; }
.split h2 {
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 760;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--m2-text);
}
.split p { color: var(--m2-ink-soft); font-size: 1.05rem; line-height: 1.6; margin: 0 0 22px; }
.checklist { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; color: var(--m2-text); font-size: 1rem; line-height: 1.45; }
.checklist .tick {
  flex: none;
  display: grid; place-items: center;
  width: 24px; height: 24px; margin-top: 1px;
  border-radius: 7px;
  background: var(--m2-accent-soft);
  color: var(--m2-accent-strong);
}
.checklist .tick svg { width: 14px; height: 14px; }

.spec-card {
  border-radius: var(--m2-radius-lg);
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}
.spec-card svg { display: block; width: 100%; height: auto; }

/* ============================================================
   COMPARISON
   ============================================================ */
.compare { background: linear-gradient(180deg, #fbfdfe 0%, #f1f7fa 100%); border-top: 1px solid var(--m2-border); border-bottom: 1px solid var(--m2-border); }
.cmp-wrap {
  max-width: 980px;
  margin: 0 auto;
  border: 1px solid var(--m2-border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}
.cmp-table { width: 100%; border-collapse: collapse; }
.cmp-table th, .cmp-table td { text-align: left; padding: 16px clamp(14px, 2.4vw, 26px); border-bottom: 1px solid var(--m2-border); }
.cmp-table thead th { font-size: 0.95rem; font-weight: 720; color: var(--m2-text); vertical-align: bottom; }
.cmp-table thead th span.sub { display: block; font-size: 0.74rem; font-weight: 600; color: var(--m2-muted); margin-top: 3px; }
.cmp-table tbody tr:last-child td { border-bottom: none; }
.cmp-table tbody tr:hover { background: var(--m2-surface-soft); }
.cmp-feat { font-weight: 600; color: var(--m2-text); font-size: 0.95rem; width: 46%; }
.cmp-feat small { display: block; font-weight: 500; color: var(--m2-muted); font-size: 0.8rem; margin-top: 2px; }

/* highlighted Vector column */
.cmp-col-v { width: 27%; }
.cmp-col-l { width: 27%; }
.cmp-table th.cmp-col-v, .cmp-table td.cmp-col-v {
  background: linear-gradient(180deg, rgba(21,94,117,0.06), rgba(21,94,117,0.03));
  text-align: center;
  border-left: 1px solid var(--m2-accent-line);
  border-right: 1px solid var(--m2-accent-line);
}
.cmp-table th.cmp-col-v { color: var(--m2-accent-strong); }
.cmp-table td.cmp-col-l { text-align: center; }
.cmp-brand { display: inline-flex; align-items: center; gap: 8px; justify-content: center; }
.cmp-brand .brand-mark { width: 26px; height: 26px; border-radius: 7px; background: var(--m2-accent); color: #fff; display: grid; place-items: center; font-size: 0.62rem; font-weight: 800; text-transform: uppercase; }

/* cell marks */
.mk { display: inline-flex; align-items: center; justify-content: center; }
.mk-yes { color: var(--m2-accent); }
.mk-yes svg { width: 22px; height: 22px; }
.mk-no { color: var(--m2-border-strong); font-size: 1.2rem; line-height: 1; }
.mk-soon {
  font-family: var(--m2-mono); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.04em;
  color: var(--m2-amber); background: rgba(217, 119, 6, 0.1);
  padding: 3px 9px; border-radius: 999px; text-transform: uppercase;
}
.mk-partial { color: var(--m2-muted); font-size: 0.85rem; font-weight: 600; }
.cmp-legend { display: flex; flex-wrap: wrap; gap: 18px; justify-content: center; margin-top: 22px; font-size: 0.82rem; color: var(--m2-muted); }
.cmp-legend span { display: inline-flex; align-items: center; gap: 7px; }

@media (max-width: 620px) {
  .cmp-table th, .cmp-table td { padding: 12px 10px; }
  .cmp-feat { font-size: 0.85rem; width: 44%; }
  .cmp-feat small { display: none; }
  .cmp-table thead th { font-size: 0.8rem; }
  .mk-yes svg { width: 18px; height: 18px; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  background:
    radial-gradient(680px 320px at 18% 4%, rgba(14, 165, 183, 0.12), transparent 62%),
    #ffffff;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.quote {
  display: grid;
  align-content: space-between;
  gap: 14px;
  min-height: 230px;
  padding: 22px 26px;
  border: 1px solid rgba(191, 208, 221, 0.86);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 249, 252, 0.78));
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.07);
}

.stars {
  color: var(--m2-amber);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
}

.quote p {
  margin: 0;
  color: var(--m2-text);
  font-size: 1rem;
  line-height: 1.55;
}

.who {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--m2-muted);
  font-size: 0.86rem;
}

.who > span:last-child {
  display: grid;
  gap: 2px;
}

.who b {
  color: var(--m2-text);
  font-weight: 740;
}

.avatar {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--m2-accent);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  box-shadow: 0 12px 24px rgba(21, 94, 117, 0.22);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-band {
  border-top: 1px solid var(--m2-border);
  border-bottom: 1px solid var(--m2-border);
  background:
    radial-gradient(760px 420px at 82% 8%, rgba(14, 165, 183, 0.14), transparent 62%),
    linear-gradient(180deg, #f6fbfd 0%, #edf5f9 100%);
}

.pricing {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 4vw, 42px);
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}

.price-card {
  border: 1px solid rgba(191, 208, 221, 0.9);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 38px);
  background:
    radial-gradient(360px 240px at 82% 10%, rgba(14, 165, 183, 0.25), transparent 65%),
    linear-gradient(145deg, rgba(225, 247, 250, 0.78), rgba(255, 255, 255, 0.92) 58%);
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--m2-accent), var(--m2-accent-2));
}

.price-eyebrow {
  margin-bottom: 14px !important;
}

.amt {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

.amt b {
  color: var(--m2-text);
  font-size: clamp(2.35rem, 4.4vw, 3.75rem);
  font-weight: 720;
  letter-spacing: -0.04em;
  line-height: 0.95;
}

.amt span,
.vat {
  color: var(--m2-muted);
  font-size: 0.95rem;
}

.price-card ul {
  display: grid;
  gap: 13px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  color: var(--m2-text);
  font-size: 0.96rem;
  line-height: 1.45;
}

.price-tick {
  flex: none;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  border-radius: 0;
  background: transparent;
  color: var(--m2-accent);
}

.price-tick svg {
  width: 17px;
  height: 17px;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  border: 1px solid rgba(191, 208, 221, 0.9);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.055);
  overflow: hidden;
}

.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 18px;
  color: var(--m2-text);
  font-weight: 720;
  cursor: pointer;
  list-style: none;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  content: "+";
  color: var(--m2-accent);
  font-size: 1.1rem;
  font-weight: 760;
}

.faq details[open] summary::after {
  content: "-";
}

.faq p {
  margin: -4px 18px 18px;
  color: var(--m2-muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-section {
  padding: clamp(56px, 8vw, 96px) clamp(20px, 5vw, 40px);
}

.cta {
  position: relative;
  margin: 0 auto;
  max-width: 1160px;
  border-radius: 26px;
  padding: clamp(44px, 7vw, 80px) clamp(28px, 6vw, 72px);
  text-align: center;
  color: #eafaff;
  background:
    radial-gradient(700px 360px at 80% -20%, rgba(14,165,183,0.45), transparent 60%),
    linear-gradient(135deg, #0f5268 0%, #155e75 55%, #103f51 100%);
  box-shadow: 0 40px 90px rgba(15, 60, 75, 0.4);
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  -webkit-mask-image: radial-gradient(circle at 50% 0%, #000, transparent 75%);
  mask-image: radial-gradient(circle at 50% 0%, #000, transparent 75%);
}
.cta-inner { position: relative; }
.cta h2 {
  margin: 0 0 14px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 780;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.05;
}
.cta p { margin: 0 auto 30px; max-width: 34rem; color: rgba(234, 250, 255, 0.82); font-size: 1.1rem; line-height: 1.55; }
.cta .hero-cta { justify-content: center; }
.cta .m2-btn-primary { background: #fff; color: var(--m2-accent-strong); box-shadow: 0 16px 36px rgba(0,0,0,0.25); }
.cta .m2-btn-primary:hover { background: #eafaff; color: var(--m2-accent-strong); }
.cta .m2-btn-ghost { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); color: #fff; }
.cta .m2-btn-ghost:hover { background: rgba(255,255,255,0.16); border-color: #fff; color: #fff; }
.cta .fine { margin-top: 18px; margin-bottom: 0; font-size: 0.85rem; color: rgba(234,250,255,0.7); }
.payment-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 12px;
}
.payment-mark > span:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  margin-left: 12px;
  border-radius: 999px;
  background: currentColor;
  vertical-align: middle;
  opacity: 0.7;
}
.stripe-pill {
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 2px 8px 3px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.92);
  color: #635bff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .takeoff, .pulse { animation: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .takeoff { max-width: 560px; }
  .hero-meta { grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
  .features { grid-template-columns: 1fr 1fr; }
  .quotes { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .step .arrow { display: none; }
  .split { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .features { grid-template-columns: 1fr; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta .stat { min-height: 96px; }
}
