/* ============================================================
   TUSHAR TRAINING — styles.css
   Brand: Black / Red / White | Premium Athletic Performance
   ============================================================ */

/* ── VARIABLES ── */
:root {
  --black:     #080808;
  --black-2:   #111111;
  --black-3:   #1a1a1a;
  --red:       #e02020;
  --red-dark:  #b81010;
  --red-glow:  rgba(224,32,32,0.18);
  --white:     #ffffff;
  --grey:      #9ca3af;
  --grey-lt:   #d1d5db;
  --border:    rgba(255,255,255,0.08);
  --border-r:  rgba(224,32,32,0.25);

  --display: 'Bebas Neue', 'Barlow Condensed', Impact, sans-serif;
  --sans:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --r-sm:   6px;
  --r-md:   12px;
  --r-lg:   20px;
  --r-xl:   32px;
  --r-full: 9999px;

  --sh-red: 0 8px 32px rgba(224,32,32,0.35);
  --sh-md:  0 4px 20px rgba(0,0,0,0.4);
  --sh-lg:  0 16px 48px rgba(0,0,0,0.6);

  --ease: all 0.22s ease;
  --max-w: 1160px;
  --hh: 72px;
  --pad: 5.5rem 0;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--grey-lt);
  background: var(--black);
  overflow-x: hidden;
  padding-bottom: 72px;
}
@media (min-width: 768px) { body { padding-bottom: 0; } }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button, input, textarea, select { font: inherit; border: none; outline: none; background: none; }
button { cursor: pointer; }
svg { display: block; }

.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--red); color: var(--white);
  padding: .75rem 1.5rem; border-radius: var(--r-md);
  font-weight: 600; z-index: 9999; transition: top .2s;
}
.skip-link:focus { top: 1rem; }

/* ── LAYOUT ── */
.container {
  width: 100%; max-width: var(--max-w);
  margin: 0 auto; padding: 0 2rem;
}
section { padding: var(--pad); }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--white);
  line-height: 1.05;
  letter-spacing: .02em;
  font-weight: 400; /* Bebas Neue is already bold */
}
p { line-height: 1.75; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--red); margin-bottom: 1rem;
}
.eyebrow-line {
  display: inline-block; width: 28px; height: 2px;
  background: var(--red); flex-shrink: 0;
}

.section-head { margin-bottom: 3.5rem; }
.section-head h2 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: .75rem; }
.section-head p  { font-size: 1.05rem; color: var(--grey); max-width: 560px; line-height: 1.75; }
.section-head.center { text-align: center; }
.section-head.center p { margin: 0 auto; }

/* ── GREEK KEY DIVIDER ── */
.greek-divider {
  height: 6px;
  background:
    repeating-linear-gradient(
      90deg,
      var(--red) 0px, var(--red) 6px,
      transparent 6px, transparent 10px,
      var(--red) 10px, var(--red) 16px,
      transparent 16px, transparent 22px
    );
  opacity: .35;
  margin: 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .9rem 2.25rem;
  border-radius: var(--r-full);
  font-size: .92rem; font-weight: 700; line-height: 1;
  border: 2px solid transparent;
  transition: var(--ease);
  white-space: nowrap; cursor: pointer;
  font-family: var(--sans);
  letter-spacing: .04em; text-transform: uppercase;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-lg { padding: 1.1rem 2.75rem; font-size: 1rem; }

.btn-red {
  background: var(--red); color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: var(--red-dark); border-color: var(--red-dark);
  transform: translateY(-2px); box-shadow: var(--sh-red);
}

.btn-outline {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-outline:hover {
  border-color: var(--white); background: rgba(255,255,255,.06);
  transform: translateY(-2px);
}

.btn-outline-red {
  background: transparent; color: var(--red);
  border-color: var(--red);
}
.btn-outline-red:hover {
  background: var(--red); color: var(--white);
  transform: translateY(-2px); box-shadow: var(--sh-red);
}

/* ── NAV ── */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000; height: var(--hh);
  background: transparent;
  transition: background .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(8,8,8,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border);
}

.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  height: var(--hh);
}

.nav-logo {
  display: flex; align-items: center; gap: .85rem;
  z-index: 1001; flex-shrink: 0;
}
.nav-logo-mark {
  width: 44px; height: 44px; flex-shrink: 0;
  border-radius: 50%;
  object-fit: cover;
  background: #080808;
}
.nav-logo-text { display: flex; flex-direction: column; line-height: 1; }
.nav-name {
  font-family: var(--display);
  font-size: 1.15rem; color: var(--white);
  letter-spacing: .08em;
}
.nav-sub {
  font-size: .58rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--red); margin-top: 2px;
}

.nav-links { display: none; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: .82rem; font-weight: 600;
  color: rgba(255,255,255,.65); letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .2s;
}
.nav-links a:hover { color: var(--white); }

.nav-cta { display: none; align-items: center; gap: .75rem; }

.nav-toggle {
  display: flex; flex-direction: column;
  justify-content: center; gap: 5px;
  width: 32px; height: 32px;
  cursor: pointer; z-index: 1001; flex-shrink: 0;
}
.nav-toggle span {
  display: block; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  position: fixed; inset: 0;
  background: var(--black);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: .5rem;
  z-index: 999;
  opacity: 0; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease;
}
.nav-mobile.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-mobile-link {
  font-family: var(--display);
  font-size: 2.2rem; letter-spacing: .06em;
  color: rgba(255,255,255,.75); padding: .4rem 1rem;
  transition: color .2s;
}
.nav-mobile-link:hover { color: var(--red); }
.nav-mobile-actions {
  display: flex; gap: 1rem;
  margin-top: 2rem; flex-wrap: wrap; justify-content: center;
}

@media (min-width: 768px) {
  .nav-toggle { display: none; }
  .nav-links   { display: flex; }
  .nav-cta     { display: flex; }
}


/* ── HERO ── */
.hero {
  min-height: 100svh;
  background-color: var(--black);
  background-image:
    linear-gradient(135deg, rgba(8,8,8,.88) 0%, rgba(8,8,8,.65) 45%, rgba(8,8,8,.85) 100%),
    url('images/tushar-cycling.png');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: var(--hh) 0 4rem;
}
.hero-red-line {
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--red);
  box-shadow: 0 0 24px rgba(224,32,32,.6);
}
.hero-glow {
  position: absolute; top: -200px; right: -100px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(224,32,32,.12) 0%, transparent 65%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: 820px; padding: 3rem 0 2rem;
}
.hero h1 {
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: .95; letter-spacing: .03em;
  margin-bottom: 1.5rem; color: var(--white);
}
.hero h1 span { color: var(--red); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.65);
  max-width: 540px; margin-bottom: 2.5rem;
  line-height: 1.75;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 3rem; }
.mobile-br { display: none; }
.hero-proof {
  display: flex; flex-wrap: wrap; gap: 1.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-proof-item {
  display: flex; align-items: center; gap: .5rem;
  font-size: .82rem; color: rgba(255,255,255,.45);
  font-weight: 600; letter-spacing: .04em; text-transform: uppercase;
}
.hero-proof-item svg { width: 14px; height: 14px; color: var(--red); }


/* ── TRUST STRIP ── */
.trust-strip {
  background: var(--red);
  padding: 1.1rem 0;
}
.trust-inner {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap; gap: 0;
}
.trust-item {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--display);
  font-size: 1rem; letter-spacing: .1em;
  color: var(--white); padding: .3rem 2rem;
  position: relative;
}
.trust-item:not(:last-child)::after {
  content: '';
  position: absolute; right: 0; top: 20%; bottom: 20%;
  width: 1px; background: rgba(255,255,255,.35);
}
.trust-item svg { width: 16px; height: 16px; flex-shrink: 0; }


/* ── PROBLEM ── */
.problem-section { background: var(--black-2); }
.problem-grid {
  display: grid; gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .problem-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .problem-grid { grid-template-columns: repeat(3, 1fr); } }

.problem-card {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem;
  position: relative; overflow: hidden;
  transition: var(--ease);
}
.problem-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--red); transform: scaleX(0);
  transform-origin: left; transition: transform .3s ease;
}
.problem-card:hover::before { transform: scaleX(1); }
.problem-card:hover { border-color: var(--border-r); }

.problem-icon {
  width: 44px; height: 44px;
  background: rgba(224,32,32,.12);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
}
.problem-icon svg { width: 22px; height: 22px; color: var(--red); }
.problem-card h3 { font-size: 1.1rem; margin-bottom: .6rem; font-family: var(--sans); font-weight: 700; }
.problem-card p  { font-size: .9rem; color: var(--grey); line-height: 1.7; }


/* ── SOLUTION ── */
.solution-section { background: var(--black); }
.solution-wrap {
  display: grid; gap: 5rem; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) { .solution-wrap { grid-template-columns: 1fr 1fr; } }

.solution-photo {
  position: relative;
  border-radius: var(--r-xl); overflow: hidden;
}
.solution-photo img {
  width: 100%; height: 520px; object-fit: cover;
  border-radius: var(--r-xl);
  filter: brightness(.85) contrast(1.05);
}
.solution-photo-badge {
  position: absolute; bottom: 1.5rem; left: 1.5rem;
  background: var(--red);
  border-radius: var(--r-lg);
  padding: 1rem 1.5rem;
}
.solution-photo-badge .num {
  font-family: var(--display); font-size: 2.2rem;
  color: var(--white); line-height: 1;
}
.solution-photo-badge .label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(255,255,255,.8); margin-top: 2px;
}
.solution-photo-frame {
  position: absolute; inset: 12px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: calc(var(--r-xl) - 6px);
  pointer-events: none;
}

.solution-text h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 1.25rem; }
.solution-text > p { color: var(--grey); margin-bottom: 2rem; }

.solution-pillars {
  display: flex; flex-direction: column; gap: .75rem;
  margin-bottom: 2.5rem;
}
.pillar {
  display: flex; align-items: center; gap: 1rem;
  padding: .9rem 1.25rem;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  font-size: .9rem; font-weight: 600; color: var(--grey-lt);
  transition: border-color .2s;
}
.pillar:hover { border-color: var(--border-r); }
.pillar-num {
  font-family: var(--display); font-size: 1.3rem;
  color: var(--red); min-width: 28px;
}
.pillar svg { width: 16px; height: 16px; color: var(--red); margin-left: auto; flex-shrink: 0; }


/* ── FREE REPORT CTA ── */
.report-section {
  background:
    linear-gradient(135deg, rgba(224,32,32,.08) 0%, transparent 60%),
    var(--black-2);
  border-top: 1px solid var(--border-r);
  border-bottom: 1px solid var(--border-r);
  padding: 4.5rem 0;
}
.report-inner {
  display: grid; gap: 3rem; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .report-inner { grid-template-columns: 1fr 1fr; } }

.report-text h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 1rem; }
.report-text h2 span { color: var(--red); }
.report-text p { color: var(--grey); margin-bottom: 2rem; }
.report-items {
  display: flex; flex-direction: column; gap: .6rem;
  margin-bottom: 2.5rem;
}
.ri {
  display: flex; align-items: center; gap: .75rem;
  font-size: .9rem; color: var(--grey-lt); font-weight: 500;
}
.ri svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; }

.report-form-card {
  background: var(--black-3);
  border: 1px solid var(--border-r);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--sh-lg);
}
.report-form-card h3 {
  font-family: var(--display); font-size: 1.6rem;
  letter-spacing: .04em; margin-bottom: .35rem;
}
.report-form-card > p { font-size: .88rem; color: var(--grey); margin-bottom: 1.75rem; }

.fg { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.fg label { font-size: .8rem; font-weight: 700; color: var(--grey-lt); letter-spacing: .04em; }
.fg input, .fg select, .fg textarea {
  width: 100%;
  padding: .8rem 1rem;
  background: var(--black-2);
  border: 1.5px solid rgba(255,255,255,.1);
  border-radius: var(--r-md);
  font-size: .92rem; color: var(--white);
  transition: border-color .15s, box-shadow .15s;
  -webkit-appearance: none; appearance: none;
}
.fg input::placeholder, .fg textarea::placeholder { color: rgba(255,255,255,.25); }
.fg input:focus, .fg select:focus, .fg textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(224,32,32,.15);
  outline: none;
}
.fg textarea { resize: vertical; min-height: 90px; }
.sel-wrap { position: relative; }
.sel-wrap::after {
  content: ''; position: absolute; right: 1rem; top: 50%;
  transform: translateY(-50%);
  width: 0; height: 0;
  border-left: 5px solid transparent; border-right: 5px solid transparent;
  border-top: 5px solid var(--grey); pointer-events: none;
}
.sel-wrap select { padding-right: 2.5rem; color: var(--white); }
.sel-wrap select option { background: var(--black-3); }
.form-submit {
  width: 100%; justify-content: center;
  padding: 1rem; border-radius: var(--r-md);
  font-size: 1rem; margin-top: .5rem;
}
.form-success {
  display: none; text-align: center; padding: 2.5rem 1rem;
}
.form-success svg { width: 48px; height: 48px; color: var(--red); margin: 0 auto 1rem; }
.form-success h3 { color: var(--white); margin-bottom: .5rem; font-family: var(--display); font-size: 1.8rem; }
.form-success p  { color: var(--grey); font-size: .9rem; }
.honeypot { display: none; }


/* ── COACHING TIERS ── */
.tiers-section { background: var(--black); }
.tiers-grid {
  display: grid; gap: 2rem; grid-template-columns: 1fr;
}
@media (min-width: 900px) { .tiers-grid { grid-template-columns: 1fr 1fr; } }

.tier-card {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
  transition: var(--ease);
}
.tier-card:hover { border-color: var(--border-r); transform: translateY(-4px); box-shadow: var(--sh-lg); }

.tier-card.tier-elite {
  background: linear-gradient(145deg, #1a0505 0%, var(--black-2) 60%);
  border-color: var(--border-r);
}
.tier-card.tier-elite::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red-dark), var(--red), var(--red-dark));
}

.tier-badge {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: var(--red); color: var(--white);
  font-size: .65rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .1em;
  padding: .25rem .75rem; border-radius: var(--r-full);
}

.tier-label {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--red); margin-bottom: .75rem;
}
.tier-card h3 {
  font-family: var(--display); font-size: 1.8rem;
  letter-spacing: .04em; margin-bottom: .5rem; line-height: 1.1;
}
.tier-card > p { font-size: .88rem; color: var(--grey); margin-bottom: 1.75rem; line-height: 1.7; }

.tier-price {
  display: flex; align-items: flex-start; gap: .15rem;
  margin-bottom: .4rem; line-height: 1;
}
.tier-sym { font-family: var(--display); font-size: 1.6rem; color: var(--white); margin-top: 4px; }
.tier-num { font-family: var(--display); font-size: 4rem; color: var(--white); letter-spacing: -.02em; }
.tier-per { font-size: .82rem; color: var(--grey); align-self: flex-end; padding-bottom: .5rem; }
.tier-commit { font-size: .78rem; color: var(--grey); margin-bottom: 1.75rem; }
.tier-commit strong { color: var(--red); }

hr.tier-rule { border: none; border-top: 1px solid var(--border); margin-bottom: 1.5rem; }

.tier-items {
  display: flex; flex-direction: column; gap: .7rem; flex: 1; margin-bottom: 2rem;
}
.tier-item {
  display: flex; align-items: flex-start; gap: .75rem;
  font-size: .88rem; color: var(--grey-lt); line-height: 1.55;
}
.tier-item svg { width: 16px; height: 16px; color: var(--red); flex-shrink: 0; margin-top: 3px; }


/* ── APPLICATION PROCESS ── */
.apply-section { background: var(--black-2); }
.apply-steps {
  display: grid; gap: 2rem; grid-template-columns: 1fr;
  position: relative;
}
@media (min-width: 768px) {
  .apply-steps { grid-template-columns: repeat(3, 1fr); }
}

.apply-step {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.75rem;
  position: relative;
}
.apply-num {
  font-family: var(--display); font-size: 4rem;
  color: rgba(224,32,32,.2); line-height: 1;
  margin-bottom: .75rem; letter-spacing: -.02em;
}
.apply-step h3 {
  font-family: var(--sans); font-weight: 700;
  font-size: 1.05rem; margin-bottom: .6rem;
}
.apply-step p { font-size: .88rem; color: var(--grey); line-height: 1.7; }

.apply-cta-wrap { text-align: center; margin-top: 3.5rem; }
.apply-cta-wrap p { font-size: .88rem; color: var(--grey); margin-top: 1rem; }
.apply-cta-wrap strong { color: var(--red); }


/* ── ABOUT ── */
.about-section { background: var(--black); }
.about-wrap {
  display: grid; gap: 5rem; align-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 960px) { .about-wrap { grid-template-columns: 1fr 1fr; } }

.about-photo-stack { position: relative; }
.about-main-photo {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--r-xl);
  filter: brightness(.9) contrast(1.05);
}
.about-accent-photo {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 45%; aspect-ratio: 1/1;
  object-fit: cover; object-position: top;
  border-radius: var(--r-lg);
  border: 3px solid var(--black);
  filter: brightness(.85);
}
.about-red-bar {
  position: absolute; top: 2rem; left: -8px;
  width: 4px; height: 80px;
  background: var(--red);
  box-shadow: 0 0 16px rgba(224,32,32,.5);
}

.about-text h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); margin-bottom: 1rem; }
.about-text > p { color: var(--grey); margin-bottom: 1.5rem; line-height: 1.8; }

.credentials {
  display: grid; gap: 1rem;
  grid-template-columns: 1fr 1fr;
  margin: 2rem 0 2.5rem;
}
.cred {
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--r-md); padding: 1.25rem;
}
.cred-icon { font-size: 1.4rem; margin-bottom: .4rem; }
.cred h4 { font-family: var(--sans); font-size: .82rem; font-weight: 800; color: var(--white); margin-bottom: .2rem; }
.cred p   { font-size: .75rem; color: var(--grey); line-height: 1.5; }


/* ── PROOF / RESULTS ── */
.proof-section {
  background-color: var(--black-2);
  background-image:
    linear-gradient(135deg, rgba(8,8,8,.9) 0%, rgba(8,8,8,.75) 50%, rgba(8,8,8,.9) 100%),
    url('images/tushar-finish-2.png');
  background-size: cover; background-position: center;
  background-attachment: fixed;
  padding: 6rem 0;
}
.proof-inner { text-align: center; }
.proof-inner h2 { font-size: clamp(2.5rem, 6vw, 5rem); margin-bottom: 1rem; }
.proof-inner h2 span { color: var(--red); }
.proof-inner > p { color: var(--grey); max-width: 540px; margin: 0 auto 3.5rem; }
.proof-stats {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 3rem;
}
.proof-stat { text-align: center; }
.proof-stat-num {
  font-family: var(--display); font-size: 4rem;
  color: var(--red); line-height: 1; letter-spacing: -.02em;
}
.proof-stat-label {
  font-size: .8rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.45);
  margin-top: .25rem;
}


/* ── FINAL CTA ── */
.final-cta {
  background: var(--red);
  padding: 5rem 0;
  position: relative; overflow: hidden;
}
.final-cta::before {
  content: 'APPLY';
  position: absolute; right: -40px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--display); font-size: 18rem;
  color: rgba(255,255,255,.05); line-height: 1;
  pointer-events: none; white-space: nowrap;
}
.final-cta-inner { text-align: center; position: relative; z-index: 1; }
.final-cta h2 { font-size: clamp(2.5rem, 6vw, 5rem); color: var(--white); margin-bottom: 1rem; }
.final-cta p  { color: rgba(255,255,255,.8); max-width: 500px; margin: 0 auto 2.5rem; font-size: 1.05rem; }
.final-cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

.btn-white {
  background: var(--white); color: var(--red);
  border-color: var(--white);
}
.btn-white:hover {
  background: rgba(255,255,255,.9); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.btn-white-ghost {
  background: transparent; color: var(--white);
  border-color: rgba(255,255,255,.6);
}
.btn-white-ghost:hover { border-color: var(--white); background: rgba(255,255,255,.1); }


/* ── FOOTER ── */
.site-footer {
  background: #040404;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; gap: 2.5rem;
  grid-template-columns: 1fr;
  margin-bottom: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-brand-name {
  font-family: var(--display); font-size: 1.4rem;
  color: var(--white); letter-spacing: .08em; margin-bottom: .25rem;
}
.footer-brand-sub { font-size: .7rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--red); }
.footer-about p { font-size: .85rem; color: rgba(255,255,255,.3); line-height: 1.7; margin-top: 1rem; }

.footer-col-title {
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: rgba(255,255,255,.25); margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: .6rem; }
.footer-links a { font-size: .85rem; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-links a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  padding-top: 1.5rem;
  display: flex; flex-direction: column; gap: .75rem;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.18); }
.footer-legal { display: flex; gap: 1.5rem; }
.footer-legal a { font-size: .78rem; color: rgba(255,255,255,.2); transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.5); }


/* ── MOBILE STICKY BAR ── */
.mob-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 890; display: flex;
  padding: .75rem 1rem; gap: .5rem;
  background: rgba(8,8,8,.97);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--border);
}
.mob-bar .btn { flex: 1; justify-content: center; }
@media (min-width: 768px) { .mob-bar { display: none; } }

/* ── SOCIAL LINKS (About section) ── */
.social-links {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-top: 1.5rem;
}
.social-link {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .55rem 1.1rem;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  font-size: .8rem; font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em; text-transform: uppercase;
  transition: var(--ease);
}
.social-link svg { width: 15px; height: 15px; flex-shrink: 0; }
.social-link:hover {
  border-color: var(--red); color: var(--white);
  background: rgba(224,32,32,.08);
}

/* ── FOOTER SOCIAL LINKS ── */
.footer-social-link {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .85rem; color: rgba(255,255,255,.4);
  transition: color .2s;
}
.footer-social-link:hover { color: var(--red); }
.footer-social-link svg { flex-shrink: 0; }

/* ── FLOATING WHATSAPP ── */
.wa-float {
  position: fixed; bottom: calc(1.5rem + 62px + 54px); right: 1.5rem;
  z-index: 900; width: 50px; height: 50px;
  background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 4px 16px rgba(37,211,102,.45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float svg { width: 26px; height: 26px; }
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,.6);
}
@media (min-width: 768px) {
  .wa-float { bottom: 1.5rem; right: 5.5rem; }
}

/* ── FLOATING BTT ── */
.btt {
  position: fixed; bottom: calc(1.5rem + 62px); right: 1.5rem;
  z-index: 900; width: 42px; height: 42px;
  background: var(--black-3);
  border: 1px solid rgba(255,255,255,.1);
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--ease);
  opacity: 0; pointer-events: none; transform: translateY(10px);
}
.btt.on { opacity: 1; pointer-events: auto; transform: translateY(0); }
.btt:hover { background: var(--red); border-color: var(--red); }
.btt svg { width: 18px; height: 18px; }


/* ── ANIMATIONS ── */
.reveal       { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.on    { opacity: 1; transform: translateY(0); }
.reveal-l     { opacity: 0; transform: translateX(-24px); transition: opacity .6s ease, transform .6s ease; }
.reveal-l.on  { opacity: 1; transform: translateX(0); }
.reveal-r     { opacity: 0; transform: translateX(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal-r.on  { opacity: 1; transform: translateX(0); }
.stagger > *:nth-child(1) { transition-delay: 0ms; }
.stagger > *:nth-child(2) { transition-delay: 80ms; }
.stagger > *:nth-child(3) { transition-delay: 160ms; }
.stagger > *:nth-child(4) { transition-delay: 240ms; }
.stagger > *:nth-child(5) { transition-delay: 320ms; }
.stagger > *:nth-child(6) { transition-delay: 400ms; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-l, .reveal-r { opacity: 1; transform: none; transition: none; }
}

/* ── iOS / MOBILE ANIMATION OVERRIDE — ALWAYS VISIBLE ── */
@media (max-width: 768px) {
  .reveal, .reveal-l, .reveal-r {
    opacity: 1 !important; transform: none !important; transition: none !important;
  }
}


/* ============================================================
   RESPONSIVE — TABLET
   ============================================================ */
@media (max-width: 1024px) {
  .hero { background-attachment: scroll; }
  .proof-section { background-attachment: scroll; }
}

/* ============================================================
   RESPONSIVE — MOBILE
   ============================================================ */
@media (max-width: 640px) {
  :root { --pad: 2.75rem 0; --hh: 62px; }

  html, body { overflow-x: hidden; max-width: 100%; }
  .container { padding: 0 1.25rem; }

  .section-head { margin-bottom: 1.75rem; }
  .section-head h2 { font-size: 2.2rem; }

  .nav-name { font-size: 1rem; }
  .nav-sub  { font-size: .52rem; }
  .site-header.scrolled { background: rgba(8,8,8,1) !important; }

  .hero {
    min-height: auto; background-attachment: scroll;
    padding-top: calc(var(--hh) + 2rem); padding-bottom: 3rem;
  }
  .hero-inner { padding: 0; }
  .hero h1 { font-size: clamp(2.8rem, 12vw, 4.5rem); }
  .hero-sub { font-size: .95rem; }
  .mobile-br { display: inline; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn {
    display: block !important;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
    white-space: normal !important;
    overflow-wrap: break-word;
    word-break: break-word;
    font-size: .82rem;
    padding: .9rem 1.25rem;
    line-height: 1.4;
  }
  .hero-btns .btn svg {
    display: inline-block;
    vertical-align: middle;
    width: 15px; height: 15px;
    margin-right: .25rem;
  }
  .hero-btns .btn span { vertical-align: middle; }
  .hero-proof { flex-direction: column; gap: .6rem; }

  .trust-inner { flex-direction: column; gap: 0; }
  .trust-item { padding: .5rem 1.5rem; font-size: .85rem; }
  .trust-item:not(:last-child)::after { display: none; }
  .trust-item:not(:last-child) { border-bottom: 1px solid rgba(255,255,255,.2); }

  .solution-photo img { height: 300px; }
  .about-accent-photo { display: none; }
  .credentials { grid-template-columns: 1fr; }

  .tier-card { padding: 1.75rem; }
  .tier-num  { font-size: 3rem; }

  .proof-stats { gap: 2rem; }
  .proof-stat-num { font-size: 3rem; }

  .final-cta { padding: 3.5rem 0; }
  .final-cta-btns { flex-direction: column; }
  .final-cta-btns .btn { width: 100%; justify-content: center; }
  .final-cta::before { display: none; }

  .report-form-card { padding: 1.5rem; }
  .apply-step { padding: 1.5rem; }

  .btt      { bottom: calc(72px + .75rem + 54px); right: 1rem; }
  .mob-bar .btn { font-size: .82rem; padding: .75rem .75rem; }
}

/* -- SMALL PHONES -- */
@media (max-width: 380px) {
  .hero h1 { font-size: 2.4rem; }
  .container { padding: 0 1rem; }
  .nav-name { font-size: .9rem; }
}
