:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #1a1a1a;
  --text: #ffffff;
  --muted: #a1a1aa;
  --line: #2a2a2a;
  --green: #6ee001;
  --green-glow: #84ff00;
  --amber: #f97316;
  --gold: #b8902a;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: radial-gradient(circle at 10% 10%, #171717 0%, var(--bg) 35%, #060606 100%);
  color: var(--text);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.5;
  opacity: 0;
  animation: fadeIn 0.6s ease-out forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0.02em;
  font-family: "Bebas Neue", Impact, sans-serif;
  line-height: 0.95;
}

h1 { font-size: clamp(46px, 8vw, 82px); }
h2 { font-size: clamp(36px, 4.5vw, 64px); }
h3 { font-size: 28px; }

p, li, a, label, span, legend, input, select, textarea, button {
  font-family: "Inter", system-ui, sans-serif;
}

a { color: inherit; text-decoration: none; }

button, a { user-select: none; }

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

/* ── Toast ── */
.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--bg3);
  border: 1px solid var(--line);
  border-left: 4px solid var(--green);
  border-radius: 12px;
  padding: 16px 22px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
  transform: translateX(calc(100% + 40px));
  opacity: 0;
  transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1), opacity 400ms ease;
  pointer-events: none;
}

.toast.show {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-icon { font-size: 20px; }

/* ── Booking modal ── */
.booking-modal[hidden] { display: none; }
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px) saturate(120%);
}
.booking-modal-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 760px;
  max-height: 92vh;
  background: var(--bg2);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(110, 224, 1, 0.08);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: modalIn 320ms cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.booking-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--bg2);
}
.booking-modal-eyebrow {
  margin: 0 0 4px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 700;
}
.booking-modal-header h3 {
  margin: 0;
  font-family: "Bebas Neue", Impact, sans-serif;
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--text);
}
.booking-modal-close {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
  transition: color 150ms ease, border-color 150ms ease, background 150ms ease;
}
.booking-modal-close:hover {
  color: var(--text);
  border-color: var(--green);
  background: rgba(110, 224, 1, 0.06);
}
.booking-modal-body {
  flex: 1;
  background: #ffffff;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
.booking-modal-body iframe {
  display: block;
  width: 100%;
  min-height: 720px;
  border: 0;
  overflow: hidden;
}
.booking-modal-footer {
  padding: 12px 22px;
  border-top: 1px solid var(--line);
  background: var(--bg2);
  text-align: center;
}
.link-skip {
  background: none;
  border: 0;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
  padding: 6px 12px;
  font-family: "Inter", system-ui, sans-serif;
  transition: color 150ms ease;
}
.link-skip:hover { color: var(--text); }

@media (max-width: 640px) {
  .booking-modal { padding: 0; }
  .booking-modal-card { max-height: 100vh; max-width: 100%; border-radius: 0; }
  .booking-modal-body iframe { min-height: calc(100vh - 140px); }
  .booking-modal-header h3 { font-size: 24px; }
}

/* ── Header ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.56);
  backdrop-filter: blur(12px) saturate(120%);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
}

.logo img {
  display: block;
  height: 40px;
  width: auto;
}

.nav-links {
  position: relative;
  display: flex;
  gap: 26px;
}

.nav-links a {
  color: var(--muted);
  font-weight: 600;
  position: relative;
  z-index: 1;
}

.nav-links a.active { color: #fff; }

.nav-indicator {
  position: absolute;
  left: 0;
  bottom: -18px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-glow));
  border-radius: 999px;
  transition: transform 180ms ease, width 180ms ease;
  width: 0;
}

.menu-btn, .close-btn {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.menu-btn { display: none; }

.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.97);
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 22px;
  transform: translateX(100%);
  transition: transform 250ms ease;
  overflow: hidden;
}

.mobile-overlay.open { transform: translateX(0); }

.mobile-overlay a {
  color: #fff;
  font-size: 2rem;
  font-family: "Bebas Neue", Impact, sans-serif;
  letter-spacing: 0.08em;
}

.mobile-overlay .close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
}

/* ── Buttons ── */
.btn {
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  display: inline-block;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn.primary {
  color: #081006;
  background: linear-gradient(135deg, var(--green), var(--green-glow));
  box-shadow: 0 10px 30px rgba(110, 224, 1, 0.22);
}

.btn.ghost {
  color: var(--text);
  border-color: #3f3f3f;
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 76vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 70px 0 56px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.72), rgba(10, 10, 10, 0.95)),
    radial-gradient(circle at 20% 25%, rgba(110, 224, 1, 0.25), transparent 55%),
    radial-gradient(circle at 85% 20%, rgba(133, 255, 0, 0.2), transparent 52%),
    url('/images/hero-training-floor.webp') center/cover no-repeat;
  filter: saturate(0.95);
}

.hero-bg::after, .hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-bg::after {
  background: url('https://www.transparenttextures.com/patterns/asfalt-light.png');
  opacity: 0.06;
  mix-blend-mode: screen;
}

.hero > * { position: relative; z-index: 2; }

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 32px;
}

.noise, .orb {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.noise {
  background: url('https://www.transparenttextures.com/patterns/noise-pattern-with-subtle-cross-lines.png');
  opacity: 0.17;
  mix-blend-mode: soft-light;
}

.orb {
  width: 380px;
  height: 380px;
  border-radius: 999px;
  margin: auto;
  background: radial-gradient(circle, rgba(110, 224, 1, 0.38), rgba(110, 224, 1, 0) 64%);
  filter: blur(4px);
  transform: translate(45%, -20%);
}

.eyebrow {
  margin: 0;
  color: var(--green);
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 12px;
}

.subline {
  margin: 2px 0 12px;
  color: var(--amber);
  font-weight: 700;
}

.lead {
  color: var(--muted);
  max-width: 58ch;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 16px;
}

.featured-strip {
  display: inline-block;
  margin-top: 8px;
  color: #d9ffd1;
  border: 1px solid rgba(110, 224, 1, 0.4);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 13px;
  text-decoration: none;
  transition: color 200ms ease, border-color 200ms ease, background-color 200ms ease;
}

.featured-strip:hover {
  color: #fff;
  border-color: rgba(110, 224, 1, 0.8);
  background-color: rgba(110, 224, 1, 0.08);
}

.hero-support {
  color: var(--muted);
  max-width: 58ch;
  margin: 12px 0 10px;
  font-size: 15px;
  line-height: 1.7;
}

.hero-benefit {
  color: #f4f4f5;
  font-weight: 600;
  margin: 0 0 8px;
}

.cta-sublabel {
  margin: -6px 0 14px;
  color: var(--muted);
  font-size: 13px;
  letter-spacing: 0.02em;
}

/* ── Sections ── */
.section {
  padding: 74px 0;
  position: relative;
  overflow: hidden;
}

.section h2 {
  margin-bottom: 10px;
  font-size: clamp(38px, 6vw, 62px);
}

.section-sub {
  color: var(--muted);
  margin: 0;
}

/* ── Reveal + Stagger Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.show .stagger > *,
.stagger.show > * {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger delays for children */
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 120ms; }
.stagger > *:nth-child(3) { transition-delay: 240ms; }
.stagger > *:nth-child(4) { transition-delay: 360ms; }

/* ── Cards ── */
.cards {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.services-grid { grid-template-columns: repeat(2, 1fr); }

.card {
  background: linear-gradient(160deg, rgba(29, 29, 29, 0.84), rgba(15, 15, 15, 0.5));
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  color: #f4f4f5;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.card p, .card span { color: var(--muted); }

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(110, 224, 1, 0.25);
}

.card.glass, .soft .card {
  backdrop-filter: blur(6px);
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.7), rgba(10, 10, 10, 0.7));
}

.card.featured {
  position: relative;
  border: 1px solid rgba(110, 224, 1, 0.6);
  overflow: hidden;
}

.card.featured::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1px;
  background: conic-gradient(from 180deg, var(--green), var(--green-glow), #2a2a2a 45%, var(--green));
  z-index: 0;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.card.featured > * { position: relative; z-index: 1; }

.soft {
  background: linear-gradient(90deg, rgba(17, 17, 17, 0.85), rgba(13, 13, 13, 0.85));
}

/* ── Founder / Meet Matthew ── */
.founder-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: start;
}

.founder-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.founder-grid img {
  width: 100%;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.press-callout {
  display: block;
  margin: 12px 0 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  border-left: 3px solid var(--gold);
  padding-left: 12px;
  transition: color 200ms ease;
}

.press-callout:hover { color: var(--amber); }

.nspa-badge {
  display: inline-block;
  margin: 6px 0 10px;
  padding: 4px 12px;
  border: 1px solid var(--green);
  border-radius: 999px;
  color: var(--green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.credential-detail {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 12px;
  line-height: 1.6;
}

.coach-subtitle {
  color: var(--green);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  margin: 0 0 14px;
}

.coach-body {
  color: var(--muted);
  line-height: 1.75;
  margin: 10px 0;
  font-size: 15px;
}

.coach-manifesto {
  margin: 20px 0 18px;
  padding: 18px 20px;
  border-left: 3px solid var(--green);
  background: rgba(110, 224, 1, 0.06);
  border-radius: 8px;
}

.coach-manifesto p {
  color: #e4e4e5;
  line-height: 1.75;
  margin: 0 0 10px;
  font-size: 15px;
}

.coach-close {
  color: #fff !important;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 0 !important;
}

/* ── System (Longevity Strength System) ── */
.system-result {
  margin-top: 24px;
  padding: 28px 32px;
  background: linear-gradient(140deg, rgba(110, 224, 1, 0.12), rgba(15, 15, 15, 0.6));
  border: 1px solid rgba(110, 224, 1, 0.35);
  border-radius: 16px;
}

.system-result h3 {
  color: var(--green);
  margin: 0 0 10px;
  font-size: 20px;
  letter-spacing: 0.02em;
}

.system-result p {
  color: #e4e4e5;
  line-height: 1.75;
  margin: 0 0 10px;
}

.system-close {
  color: #fff !important;
  font-weight: 600;
  font-style: italic;
}

.system-lead {
  color: #fff !important;
  font-weight: 600;
  font-size: 17px !important;
  margin-bottom: 14px !important;
}

.system-result-list {
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
}

.system-result-list li {
  position: relative;
  padding: 6px 0 6px 26px;
  color: #e4e4e5;
  line-height: 1.6;
  font-size: 15px;
}

.system-result-list li::before {
  content: "\2192";
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--green);
  font-weight: 700;
  font-size: 16px;
}

/* ── Training (How to Train) ── */
.training-feature {
  padding: 28px 32px;
  margin-top: 20px;
}

.training-feature > h3 {
  font-size: 22px;
  letter-spacing: 0.01em;
}

.training-feature > p {
  color: var(--muted);
  line-height: 1.75;
  margin: 10px 0 18px;
}

.training-subhead {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 22px 0 10px;
}

.training-callout {
  margin: 18px 0;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--green);
  border-radius: 8px;
  color: var(--muted);
  line-height: 1.7;
}

.training-callout strong {
  color: #fff;
  display: block;
  margin-bottom: 4px;
}

.training-cta {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.training-cta h4 {
  color: #fff;
  margin: 0 0 6px;
  font-size: 18px;
}

.training-cta p {
  color: var(--muted);
  margin: 0 0 14px;
}

.service-area {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin-top: 24px;
  font-style: italic;
}

/* ── Training Environment ── */
.env-points {
  list-style: none;
  padding: 0;
  margin: 14px 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
}

.env-points li {
  color: #e4e4e5;
  font-weight: 600;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  font-size: 14px;
}

.env-points li::before {
  content: "\2713";
  color: var(--green);
  margin-right: 8px;
  font-weight: 700;
}

.env-subhead {
  margin: 22px 0 8px;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.01em;
}

.env-body {
  color: var(--muted);
  line-height: 1.75;
  max-width: 72ch;
  margin: 0 0 22px;
}

/* ── How It Works / Steps ── */
.steps {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 22px;
  position: relative;
}

.steps article {
  background: rgba(20, 20, 20, 0.7);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  position: relative;
  z-index: 1;
}

.steps strong {
  color: var(--green);
  font-size: 44px;
  line-height: 1;
  font-family: "Bebas Neue", Impact, sans-serif;
  display: block;
}

.steps h3 { margin-top: 8px; }

/* ── Stats ── */
#results .stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.stats div {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  background: #0f0f0f;
}

.stats strong {
  display: block;
  color: var(--green);
  font-size: 36px;
  font-family: "Bebas Neue", Impact, sans-serif;
}

.stats span { color: var(--muted); }

/* ── Testimonials ── */
.row-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.stars {
  color: #facc15;
  font-size: 18px;
  margin-bottom: 8px;
}

blockquote.card {
  font-style: normal;
  margin: 0;
  line-height: 1.6;
}

blockquote.card span {
  display: block;
  margin-top: 10px;
  font-size: 13px;
}

/* ── Gallery ── */
.masonry {
  column-count: 3;
  column-gap: 16px;
  margin-top: 20px;
}

.gallery-item {
  position: relative;
  margin-bottom: 16px;
  break-inside: avoid;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: block;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 400ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(110, 224, 1, 0.12);
  opacity: 0;
  transition: opacity 300ms ease;
  pointer-events: none;
}

.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover::after { opacity: 1; }

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 300ms ease, transform 300ms ease;
  z-index: 2;
}

.gallery-item--ig:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

/* ── Contact ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-copy p, .contact-copy li { color: var(--muted); }

.map-card {
  margin-top: 16px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.map-card iframe {
  display: block;
  width: 100%;
}

.contact-form {
  display: grid;
  gap: 12px;
  background: rgba(8, 8, 8, 0.7);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
}

.contact-form label, .chips-field {
  display: grid;
  gap: 6px;
  color: var(--text);
  font-weight: 600;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

input, select, textarea {
  width: 100%;
  border: 1px solid #3a3a3a;
  border-radius: 10px;
  padding: 11px 12px;
  background: #121212;
  color: #fff;
}

textarea { resize: vertical; }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(110, 224, 1, 0.65);
  outline-offset: 1px;
}

/* ── Chip Goal Selectors ── */
.chips-field {
  border: 0;
  padding: 0;
  margin: 0;
}

.chips-field legend {
  font-weight: 600;
  margin-bottom: 6px;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  position: relative;
  cursor: pointer;
  font-weight: 500 !important;
}

.chip input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.chip span {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid #3a3a3a;
  border-radius: 999px;
  font-size: 14px;
  color: var(--muted);
  background: #121212;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.chip input:checked + span {
  background: var(--green);
  color: #0a0a0a;
  border-color: var(--green);
  box-shadow: 0 0 16px rgba(110, 224, 1, 0.3);
  font-weight: 600;
}

.chip input:focus-visible + span {
  outline: 2px solid rgba(110, 224, 1, 0.65);
  outline-offset: 2px;
}

.form-feedback {
  min-height: 1.2em;
  margin: 0;
  color: var(--green);
  font-weight: 700;
}

.form-feedback.error { color: #ff7d7d; }

/* ── Service Includes ── */
.service-includes {
  list-style: none;
  padding: 0;
  margin: 14px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
}

.service-includes li {
  color: var(--muted);
  font-size: 13px;
  padding-left: 20px;
  position: relative;
}

.service-includes li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

/* ── Pricing ── */
.pricing-grid .card {
  display: flex;
  flex-direction: column;
}

.pricing-grid .card .btn {
  margin-top: auto;
  text-align: center;
}

.price-label {
  color: var(--green) !important;
  font-weight: 600;
  font-size: 14px;
  margin: 4px 0 12px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
}

.pricing-features li {
  color: var(--muted);
  font-size: 14px;
  padding: 6px 0 6px 22px;
  position: relative;
  border-bottom: 1px solid rgba(42, 42, 42, 0.5);
}

.pricing-features li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.popular-tag {
  display: inline-block;
  background: var(--green);
  color: #0a0a0a;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 8px;
}

.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin-top: 18px;
}

/* ── FAQ ── */
.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.faq-item {
  background: linear-gradient(160deg, rgba(29, 29, 29, 0.84), rgba(15, 15, 15, 0.5));
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 200ms ease;
}

.faq-item[open] {
  border-color: rgba(110, 224, 1, 0.3);
}

.faq-item summary {
  padding: 16px 20px;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: "+";
  font-size: 22px;
  color: var(--green);
  font-weight: 300;
  transition: transform 200ms ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 20px 16px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px;
}

/* ── Footer ── */
.site-footer {
  background: var(--bg3);
  border-top: 1px solid var(--line);
  padding: 22px 0 28px;
}

.foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
}

.foot p {
  margin: 0 0 8px;
  color: var(--muted);
}

.foot-links {
  display: grid;
  gap: 8px;
  text-align: right;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-icons a {
  color: var(--muted);
  transition: color 200ms ease;
}

.social-icons a:hover { color: var(--green); }

.copyright {
  text-align: center;
  color: #7f7f80;
  margin-top: 12px;
  font-size: 13px;
}

/* ── Floating CTA ── */
.floating-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 45;
  background: linear-gradient(135deg, var(--green), var(--green-glow));
  color: #041000;
  font-weight: 800;
  border-radius: 999px;
  padding: 12px 16px;
  box-shadow: 0 12px 28px rgba(110, 224, 1, 0.32);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .masonry { column-count: 2; }
}

@media (max-width: 480px) {
  .masonry { column-count: 1; }
}

@media (max-width: 1020px) {
  .hero-grid,
  .steps,
  #results .stats,
  .contact-grid,
  .services-grid,
  .cards.three,
  .cards.two,
  .founder-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .service-includes {
    grid-template-columns: 1fr;
  }

  .nav-links { display: none; }
  .menu-btn { display: inline-block; }
  .hero { min-height: 74vh; }

  .foot { flex-direction: column; }
  .foot-links { text-align: left; }

  .row-head { flex-direction: column; align-items: flex-start; }

  .toast {
    left: 16px;
    right: 16px;
    top: auto;
    bottom: 80px;
    transform: translateY(calc(100% + 40px));
  }

  .toast.show { transform: translateY(0); }
}
