/* ============================================================
   ATKINS PERFORMANCE — Stylesheet v2
   ============================================================ */

/* ── Custom Properties ──────────────────────────────────── */
:root {
  --navy:       #1B2A4A;
  --navy-deep:  #0f1a30;
  --black:      #090d14;
  --blue:       #2E75B6;
  --blue-light: #4a9fd4;
  --blue-dark:  #1d5a93;
  --white:      #FFFFFF;
  --off-white:  #F5F5F5;
  --grey:       #F2F2F2;
  --grey-mid:   #e0e0e0;
  --charcoal:   #333333;
  --muted:      #888888;
  --border:     #D9D9D9;
  --border-dark:#2a3a55;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  --nav-h:    72px;
  --radius:   6px;
  --radius-lg:12px;
  --max-w:    1160px;
  --ease:     cubic-bezier(.25,.46,.45,.94);
  --t:        .22s;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--t); }
a:hover { color: var(--blue-dark); }
ul { list-style: none; }

/* ── Typography ─────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.01em;
  color: var(--navy);
  text-transform: uppercase;
}
/* Display/hero headings */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.02em;
  text-transform: uppercase;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}
h3 {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
}
h4 { font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; }

p { margin-bottom: 1rem; font-family: var(--font-body); }
p:last-child { margin-bottom: 0; }
.lead { font-size: 1.1rem; color: #555; line-height: 1.7; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--blue-light); }

/* ── Layout ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}
.section { padding: 96px 0; }
.section--sm { padding: 64px 0; }
.section--lg { padding: 120px 0; }
.section--grey  { background: var(--grey); }
.section--dark  { background: var(--navy-deep); }
.section--black { background: var(--black); }

.section__header { text-align: center; margin-bottom: 60px; }
.section__header .display-md { margin-bottom: 14px; }
.section__header p  { color: #666; max-width: 540px; margin: 0 auto; }

/* Dark section text */
.section--dark h1,.section--dark h2,.section--dark h3,.section--dark h4,
.section--dark .display-xl,.section--dark .display-lg,.section--dark .display-md,
.section--black h1,.section--black h2,.section--black h3,.section--black h4,
.section--black .display-xl,.section--black .display-lg,.section--black .display-md {
  color: #fff;
}
.section--dark p,.section--dark .lead,.section--dark .section__header p,
.section--black p,.section--black .lead,.section--black .section__header p {
  color: rgba(255,255,255,.65);
}

/* Angled top edge */
.section--angled-top { clip-path: polygon(0 40px, 100% 0, 100% 100%, 0 100%); margin-top: -40px; padding-top: 136px; }
.section--angled-both {
  clip-path: polygon(0 40px, 100% 0, 100% calc(100% - 40px), 0 100%);
  margin-top: -40px; padding-top: 136px; padding-bottom: 136px;
}

/* ── Navigation ─────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.nav__logo img { height: 80px; width: auto; filter: brightness(1.25); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav__links a {
  color: rgba(255,255,255,.65);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .875rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 4px;
  transition: color var(--t), background var(--t);
}
.nav__links a:hover, .nav__links a.active {
  color: #fff;
  background: rgba(255,255,255,.07);
}
.nav__cta { margin-left: 12px; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.nav__hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: transform var(--t), opacity var(--t); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--black);
  padding: 20px 28px 36px;
  border-top: 1px solid rgba(255,255,255,.07);
  z-index: 999;
}
.nav__mobile.open { display: block; }
.nav__mobile a {
  display: block;
  color: rgba(255,255,255,.8);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.nav__mobile a:hover { color: #fff; }
.nav__mobile .btn { display: block; text-align: center; margin-top: 24px; width: 100%; }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--t), transform var(--t), box-shadow var(--t), border-color var(--t);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn--primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 18px rgba(46,117,182,.4);
}
.btn--primary:hover {
  background: var(--blue-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(46,117,182,.5);
}
.btn--outline {
  background: transparent;
  border-color: rgba(255,255,255,.4);
  color: #fff;
}
.btn--outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
  color: #fff;
  transform: translateY(-2px);
}
.btn--outline-dark {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn--outline-dark:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-2px);
}
.btn--white {
  background: #fff;
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}
.btn--white:hover {
  background: var(--off-white);
  color: var(--navy);
  transform: translateY(-2px);
}
.btn--large  { padding: 18px 40px; font-size: .9375rem; }
.btn--sm     { padding: 10px 20px; font-size: .8125rem; }
.btn--block  { width: 100%; justify-content: center; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--black);
}

/* Background gradient stands in for photo until one is provided */
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(9,13,20,.92) 0%, rgba(27,42,74,.75) 50%, rgba(9,13,20,.97) 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23n)' opacity='.07'/%3E%3C/svg%3E");
  background-size: cover;
}

/* Photo slot — when you add a real photo, do:
   .hero__photo { background-image: url('assets/hero-photo.jpg'); }  */
.hero__photo {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 20%;
  opacity: .35;
}
.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(9,13,20,.95) 40%, rgba(9,13,20,.3) 100%),
              linear-gradient(to top, rgba(9,13,20,.8) 0%, transparent 50%);
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 0 0 88px;
}

/* Credential badges (like Garage Strength medals) */
.hero__badges {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
.hero__badge span {
  display: flex;
  flex-direction: column;
}
.hero__badge strong {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 900;
  color: var(--blue-light);
  line-height: 1;
}
.hero__badge-divider {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,.15);
}

.hero__title {
  color: #fff;
  max-width: 820px;
  margin-bottom: 20px;
}
.hero__title em {
  font-style: normal;
  color: var(--blue-light);
}

.hero__sub {
  font-size: 1.0625rem;
  color: rgba(255,255,255,.6);
  max-width: 500px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 28px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.3);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  z-index: 2;
}
.hero__scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,.2);
  position: relative;
  overflow: hidden;
}
.hero__scroll-line::after {
  content: '';
  position: absolute;
  left: -100%;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--blue);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine { 0%{left:-100%} 100%{left:100%} }

/* ── Marquee / Ticker ───────────────────────────────────── */
.marquee {
  background: var(--blue);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.marquee__item::after {
  content: '◆';
  color: rgba(255,255,255,.4);
  font-size: .5rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Stats Strip ────────────────────────────────────────── */
.stats-strip {
  background: var(--navy-deep);
  padding: 52px 0;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}
.stats-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--navy-deep);
  padding: 32px 28px;
  text-align: center;
}
.stat-item__value {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item__label {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}

/* ── Feature Cards (dark) ───────────────────────────────── */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-card {
  background: rgba(255,255,255,.02);
  padding: 40px 32px;
  position: relative;
  transition: background var(--t);
}
.feature-card:hover { background: rgba(46,117,182,.08); }
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
  transform-origin: left;
}
.feature-card:hover::before { transform: scaleX(1); }

.feature-card__num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 900;
  color: rgba(46,117,182,.15);
  line-height: 1;
  margin-bottom: 20px;
  user-select: none;
}
.feature-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(46,117,182,.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  margin-bottom: 18px;
}
.feature-card__icon svg { width: 22px; height: 22px; }
.feature-card h3 { color: #fff; margin-bottom: 12px; font-size: 1.1rem; }
.feature-card p { color: rgba(255,255,255,.55); font-size: .9rem; line-height: 1.65; }

/* ── Who It's For (dark pills) ──────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.audience-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 18px 22px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: .9375rem;
  color: rgba(255,255,255,.75);
  transition: background var(--t), border-color var(--t);
}
.audience-pill:hover {
  background: rgba(46,117,182,.1);
  border-color: rgba(46,117,182,.3);
  color: #fff;
}
.audience-pill__dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
}

/* ── Split Section (about preview) ─────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 560px;
  background: var(--black);
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__image {
  position: relative;
  overflow: hidden;
  background: var(--navy-deep);
  min-height: 480px;
}
.split__image-inner {
  position: absolute;
  inset: 0;
  background: var(--navy-deep);
  overflow: hidden;
}
.split__image-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 62%;
  opacity: 1;
}
.split__image-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--black) 100%);
}

.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 72px 64px;
  background: var(--black);
}
.split__content .eyebrow { color: var(--blue-light); }
.split__content .display-md { color: #fff; margin-bottom: 20px; }
.split__content p { color: rgba(255,255,255,.6); line-height: 1.75; }

.split__content .btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* Credential list inside split */
.cred-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 28px 0;
}
.cred-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.cred-item__check {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  background: var(--blue);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}
.cred-item__check svg { width: 12px; height: 12px; color: #fff; }
.cred-item span { font-size: .9375rem; color: rgba(255,255,255,.7); line-height: 1.5; }

/* ── Testimonials ───────────────────────────────────────── */
.testimonials { background: var(--navy-deep); }
.testimonials-wrap {
  position: relative;
  overflow: hidden;
}
.testimonials-track {
  display: flex;
  transition: transform .45s var(--ease);
}
.testimonial {
  min-width: 100%;
  padding: 0 80px;
  text-align: center;
}
.testimonial__quote {
  font-family: var(--font-body);
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255,255,255,.8);
  max-width: 700px;
  margin: 0 auto 32px;
  font-style: italic;
}
.testimonial__quote::before { content: '\201C'; }
.testimonial__quote::after  { content: '\201D'; }
.testimonial__author { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 4px; }
.testimonial__sport  { font-size: .8125rem; color: var(--blue-light); text-transform: uppercase; letter-spacing: .1em; font-weight: 600; }

.testimonial__placeholder {
  background: rgba(255,255,255,.03);
  border: 1px dashed rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  color: rgba(255,255,255,.3);
  max-width: 600px;
  margin: 0 auto;
}
.testimonial__placeholder p { margin: 0; font-size: .9rem; }

.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.carousel__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.2);
  cursor: pointer;
  border: none;
  transition: background var(--t), transform var(--t), width var(--t);
}
.carousel__dot.active {
  background: var(--blue);
  width: 24px;
  border-radius: 3px;
}

/* ── Pricing ────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.pricing-card {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: border-color var(--t), transform var(--t);
}
.pricing-card:hover {
  border-color: rgba(46,117,182,.4);
  transform: translateY(-4px);
}
.pricing-card--featured {
  background: rgba(46,117,182,.12);
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), 0 16px 48px rgba(46,117,182,.2);
}
.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: #fff;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-card__name {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-light);
  margin-bottom: 16px;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 4px;
}
.pricing-card__price .currency { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; color: #fff; }
.pricing-card__price .amount   { font-family: var(--font-display); font-size: 3.5rem; font-weight: 900; color: #fff; line-height: 1; }
.pricing-card__price .period   { font-size: .875rem; color: rgba(255,255,255,.4); margin-left: 4px; }
.pricing-card__sub { font-size: .8125rem; color: rgba(255,255,255,.4); margin-bottom: 24px; }
.pricing-card__divider { height: 1px; background: rgba(255,255,255,.07); margin: 20px 0; }
.pricing-card__features { display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; flex: 1; }
.pricing-card__feature { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; color: rgba(255,255,255,.7); }
.pricing-card__feature svg { flex-shrink: 0; margin-top: 2px; color: var(--blue-light); }
.pricing-card__tag { font-size: .8rem; color: rgba(255,255,255,.35); font-style: italic; margin-bottom: 24px; line-height: 1.5; }

/* ── CTA Banner ─────────────────────────────────────────── */
.cta-banner {
  position: relative;
  background: var(--blue);
  padding: 88px 0;
  text-align: center;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-banner__inner { position: relative; z-index: 1; }
.cta-banner .display-md { color: #fff; margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,.75); max-width: 480px; margin: 0 auto 36px; }

/* ── How It Works ───────────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2px;
  background: var(--border-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.step {
  background: rgba(255,255,255,.02);
  padding: 36px 28px;
  text-align: center;
  transition: background var(--t);
}
.step:hover { background: rgba(46,117,182,.07); }
.step__num {
  font-family: var(--font-display);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.step h3 { color: #fff; margin-bottom: 10px; font-size: 1rem; }
.step p { color: rgba(255,255,255,.5); font-size: .875rem; line-height: 1.6; }

/* ── Includes ───────────────────────────────────────────── */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 16px;
}
.include-item {
  display: flex;
  gap: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--radius);
  padding: 22px;
  transition: border-color var(--t);
}
.include-item:hover { border-color: rgba(46,117,182,.3); }
.include-item__icon {
  flex-shrink: 0;
  width: 42px; height: 42px;
  background: rgba(46,117,182,.12);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
}
.include-item__icon svg { width: 20px; height: 20px; }
.include-item h4 { color: #fff; margin-bottom: 5px; font-size: .875rem; }
.include-item p  { color: rgba(255,255,255,.5); font-size: .875rem; margin: 0; line-height: 1.55; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq { max-width: 760px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid rgba(255,255,255,.07); }
.faq__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: rgba(255,255,255,.85);
  gap: 16px;
  transition: color var(--t);
}
.faq__question:hover { color: #fff; }
.faq__icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border: 2px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
  transition: transform var(--t), background var(--t), border-color var(--t);
}
.faq__icon svg { width: 12px; height: 12px; transition: transform var(--t); }
.faq__item.open .faq__icon { background: var(--blue); border-color: var(--blue); }
.faq__item.open .faq__icon svg { transform: rotate(45deg); }
.faq__answer { overflow: hidden; max-height: 0; transition: max-height .3s ease; }
.faq__answer p { padding: 0 0 22px; color: rgba(255,255,255,.55); font-size: .9375rem; line-height: 1.7; }

/* ── About Page ─────────────────────────────────────────── */
.page-hero {
  background: var(--black);
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--border-dark);
}
.page-hero h1 { color: #fff; margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,.55); max-width: 560px; font-size: 1.0625rem; line-height: 1.65; }
.page-hero--center { text-align: center; }
.page-hero--center p { margin-left: auto; margin-right: auto; }

.about-grid {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 72px;
  align-items: start;
}
.about-photo-sticky { position: sticky; top: calc(var(--nav-h) + 24px); }
.about-photo__frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-dark);
  position: relative;
}
.about-photo__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
}
.about-photo__caption { margin-top: 12px; font-size: .8125rem; color: rgba(255,255,255,.3); text-align: center; text-transform: uppercase; letter-spacing: .08em; }

.about-content h2 { margin-bottom: 18px; color: #fff; }
.about-content p { color: rgba(255,255,255,.6); line-height: 1.8; }

.story-block {
  background: rgba(46,117,182,.07);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  padding: 32px 36px;
  margin: 36px 0;
}
.story-block p { color: rgba(255,255,255,.7); line-height: 1.8; font-size: 1rem; }

.credentials-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.credential {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: .9375rem;
}
.credential__icon {
  flex-shrink: 0;
  width: 36px; height: 36px;
  background: rgba(46,117,182,.12);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-light);
}
.credential__icon svg { width: 16px; height: 16px; }
.credential strong { color: #fff; display: block; margin-bottom: 2px; }
.credential span { color: rgba(255,255,255,.5); font-size: .875rem; }

/* ── Sign Up Form ───────────────────────────────────────── */
.signup-hero {
  background: var(--black);
  padding: 80px 0 64px;
  text-align: center;
  border-bottom: 1px solid var(--border-dark);
}
.signup-hero h1 { color: #fff; margin-bottom: 12px; }
.signup-hero p { color: rgba(255,255,255,.55); max-width: 520px; margin: 0 auto; font-size: 1.0625rem; }

.form-wrap { max-width: 760px; margin: 0 auto; }
.form-section {
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 20px;
}
.form-section__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-section__title svg { color: var(--blue-light); }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 24px;
}
.form-grid--full { grid-column: 1 / -1; }
.form-group { display: flex; flex-direction: column; gap: 6px; }

label {
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
}
label .req { color: var(--blue-light); margin-left: 2px; }
.form-hint { font-size: .775rem; color: rgba(255,255,255,.3); margin-top: 3px; }

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
  padding: 12px 14px;
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: .9375rem;
  color: #fff;
  background: rgba(255,255,255,.05);
  transition: border-color var(--t), box-shadow var(--t), background var(--t);
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
}
input::placeholder, textarea::placeholder { color: rgba(255,255,255,.25); }
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(46,117,182,.18);
  background: rgba(46,117,182,.06);
}
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(255,255,255,0.4)' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
select option { background: var(--navy-deep); color: #fff; }
textarea { resize: vertical; min-height: 100px; }

.checkbox-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 10px; }
.checkbox-label {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,.7);
}
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px;
  flex-shrink: 0;
  accent-color: var(--blue);
  cursor: pointer;
}
.radio-group { display: flex; gap: 20px; flex-wrap: wrap; }
.radio-label {
  display: flex; align-items: center; gap: 8px;
  cursor: pointer;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: rgba(255,255,255,.7);
}
.radio-label input[type="radio"] { width: 18px; height: 18px; accent-color: var(--blue); cursor: pointer; }

.agreement-block {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  padding: 20px;
  margin-bottom: 24px;
}
.agreement-toggle {
  display: flex; align-items: center; justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .9375rem;
  color: rgba(255,255,255,.8);
  user-select: none;
  gap: 12px;
  text-transform: none;
  letter-spacing: 0;
}
.agreement-toggle svg { flex-shrink: 0; transition: transform var(--t); color: var(--blue-light); }
.agreement-block.open .agreement-toggle svg { transform: rotate(180deg); }
.agreement-text { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.agreement-block.open .agreement-text { max-height: 2000px; }
.agreement-text__inner {
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.07);
  margin-top: 16px;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  line-height: 1.7;
}
.agreement-text__inner h4 { margin: 16px 0 6px; color: rgba(255,255,255,.75); text-transform: none; letter-spacing: 0; font-family: var(--font-body); }
.agreement-text__inner h4:first-child { margin-top: 0; }

.agree-checkbox {
  display: flex; align-items: flex-start; gap: 12px;
  margin-bottom: 28px;
  font-size: .9375rem;
  color: rgba(255,255,255,.75);
}
.agree-checkbox input[type="checkbox"] { width: 20px; height: 20px; flex-shrink: 0; margin-top: 2px; accent-color: var(--blue); cursor: pointer; }

.form-submit { text-align: center; }
.form-confirm {
  display: none;
  text-align: center;
  padding: 56px 32px;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius-lg);
}
.form-confirm__icon {
  width: 64px; height: 64px;
  background: rgba(46,117,182,.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  color: var(--blue-light);
}
.form-confirm h3 { color: #fff; margin-bottom: 10px; }
.form-confirm p  { color: rgba(255,255,255,.55); }

/* ── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--black);
  padding: 64px 0 32px;
  border-top: 1px solid var(--border-dark);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer__brand img { height: 84px; width: auto; margin-bottom: 18px; filter: brightness(1.25); }
.footer__brand p { font-size: .875rem; color: rgba(255,255,255,.4); line-height: 1.65; max-width: 260px; }
.footer__col h5 {
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  margin-bottom: 18px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 10px; }
.footer__col ul a { font-size: .9rem; color: rgba(255,255,255,.55); transition: color var(--t); }
.footer__col ul a:hover { color: #fff; }
.footer__social { display: flex; gap: 10px; margin-top: 10px; }
.footer__social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.05);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5);
  transition: background var(--t), color var(--t);
}
.footer__social a:hover { background: var(--blue); color: #fff; }
.footer__bottom {
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8125rem;
  color: rgba(255,255,255,.25);
  flex-wrap: wrap;
  gap: 12px;
}
.footer__bottom a { color: rgba(255,255,255,.35); }
.footer__bottom a:hover { color: rgba(255,255,255,.7); }

/* ── Utility ────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-blue   { color: var(--blue-light); }
.text-white  { color: #fff; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mb-0  { margin-bottom: 0 !important; }

/* Price lock note */
.info-box {
  background: rgba(46,117,182,.08);
  border: 1px solid rgba(46,117,182,.2);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.info-box p { color: rgba(255,255,255,.65); font-size: .9rem; margin: 0; line-height: 1.6; }
.info-box strong { color: #fff; }

/* ── Fade-in on scroll ───────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s var(--ease), transform .55s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .feature-cards { grid-template-columns: 1fr; }
  .pricing-grid  { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .split         { grid-template-columns: 1fr; }
  .split__image  { min-height: 320px; }
  .split__content{ padding: 52px 36px; }
}

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__hamburger { display: flex; }

  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; }
  .about-photo-sticky { position: static; max-width: 280px; margin: 0 auto; }

  .footer__grid { grid-template-columns: 1fr 1fr; }

  .steps { grid-template-columns: 1fr; }

  .testimonial { padding: 0 24px; }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .section--lg { padding: 80px 0; }

  .hero { min-height: 100svh; }
  .hero__badges { gap: 16px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
  .hero__scroll { display: none; }
  .hero__content { padding-bottom: 60px; }

  .testimonial { padding: 0 8px; }
  .testimonial__quote { font-size: 1rem; }

  .form-grid { grid-template-columns: 1fr; }
  .form-section { padding: 24px 18px; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .stats-strip__grid { grid-template-columns: repeat(2, 1fr); }

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

  .section--angled-top { clip-path: none; margin-top: 0; padding-top: 64px; }
  .section--angled-both { clip-path: none; margin-top: 0; padding: 64px 0; }

  .cta-banner { padding: 64px 0; }
  .split__content { padding: 40px 24px; }
}
