:root {
  --black:      #0d0d0d;
  --black-mid:  #141414;
  --black-card: #1a1a1a;
  --black-edge: #222222;
  --green:      #22c55e;
  --green-dark: #16a34a;
  --green-dim:  #166534;
  --green-glow: rgba(34,197,94,0.15);
  --white:      #ffffff;
  --gray-text:  #a1a1aa;
  --gray-muted: #52525b;
  --gray-edge:  #27272a;
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --transition: 0.2s cubic-bezier(.4,0,.2,1);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Barlow', sans-serif;
  background: var(--black); color: var(--white);
  line-height: 1.6; -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* HEADER */
.site-header {
  background: var(--black); border-bottom: 1px solid var(--gray-edge);
  position: sticky; top: 0; z-index: 100;
}
.header-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px; gap: 24px;
}
.logo { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.logo-text { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 900; color: var(--white); line-height: 1; letter-spacing: -0.5px; }
.logo-fast { color: var(--green); }
.logo-ts { color: var(--white); }
.logo-dot { color: var(--gray-muted); font-size: 18px; font-weight: 700; }
.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav a { color: var(--gray-text); font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: var(--radius-sm); transition: var(--transition); white-space: nowrap; }
.site-nav a:hover, .site-nav a.active { color: var(--white); background: var(--black-card); }
.site-nav a.active { color: var(--green); }
.nav-login { background: var(--green-glow) !important; color: var(--green) !important; border: 1px solid rgba(34,197,94,0.25); }
.nav-login:hover { background: rgba(34,197,94,0.22) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; padding: 14px 28px; border-radius: var(--radius-sm);
  font-family: 'Barlow', sans-serif; font-size: 15px; font-weight: 600;
  transition: var(--transition); cursor: pointer; border: none;
}
.btn-green { background: var(--green); color: var(--black); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(34,197,94,0.3); }
.btn-lg { font-size: 16px; padding: 16px 32px; }

/* PAGE HERO */
.page-hero {
  background: var(--black-mid); border-bottom: 1px solid var(--gray-edge);
  padding: 56px 24px 52px;
}
.page-hero-inner { max-width: 1200px; margin: 0 auto; }
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif; font-size: clamp(32px, 5vw, 56px);
  font-weight: 900; color: var(--white); line-height: 1.05; margin-bottom: 12px;
}
.page-hero p { font-size: 17px; color: var(--gray-text); line-height: 1.65; max-width: 580px; }

/* SECTION */
.section-label {
  display: inline-block; font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--green); margin-bottom: 10px;
}
.section-inner { max-width: 1200px; margin: 0 auto; }

/* MAIN CONTENT */
.main-content { padding: 56px 24px 80px; }
.content-grid { display: grid; grid-template-columns: 1fr 360px; gap: 56px; align-items: start; }
.content-body h2 {
  font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 800;
  color: var(--white); margin: 36px 0 14px;
}
.content-body h2:first-child { margin-top: 0; }
.content-body p { font-size: 15px; color: var(--gray-text); line-height: 1.75; margin-bottom: 16px; }

/* PRICE BANNER */
.price-banner {
  display: flex; gap: 16px; flex-wrap: wrap;
  background: var(--black-card); border: 1px solid var(--gray-edge);
  border-radius: var(--radius-md); padding: 16px 20px; margin-bottom: 32px;
}
.price-banner-text { display: flex; align-items: baseline; gap: 8px; }
.price-banner-label { font-size: 13px; color: var(--gray-text); }
.price-banner-amount { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 800; color: var(--green); }

/* FEATURE LIST */
.feature-list { list-style: none; margin: 14px 0 24px; display: flex; flex-direction: column; gap: 0; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--gray-edge);
  font-size: 15px; color: var(--white); line-height: 1.5;
}
.feature-list li:last-child { border-bottom: none; }
.feature-list li::before {
  content: '✓'; flex-shrink: 0;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--green); color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; margin-top: 1px;
}

/* STEPS LIST */
.steps-list { list-style: none; margin: 14px 0 24px; counter-reset: step; display: flex; flex-direction: column; gap: 0; }
.steps-list li {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 14px 0; border-bottom: 1px solid var(--gray-edge);
  font-size: 15px; color: var(--white); line-height: 1.6; counter-increment: step;
}
.steps-list li:last-child { border-bottom: none; }
.steps-list li::before {
  content: counter(step); flex-shrink: 0;
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--black-edge); color: var(--gray-text);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700;
  margin-top: 2px;
}
.steps-list li:first-child::before { background: var(--green); color: var(--black); }

/* TEXT LINK */
.text-link { color: var(--green); font-weight: 500; transition: var(--transition); }
.text-link:hover { color: var(--green-dark); text-decoration: underline; }

/* CTA CENTER */
.cta-center { text-align: center; margin: 28px 0 36px; }

/* FINE PRINT */
.fine-print { font-size: 12px; color: var(--gray-muted); line-height: 1.6; margin-top: 32px; padding-top: 16px; border-top: 1px solid var(--gray-edge); }

/* SIDEBAR */
.price-box {
  background: var(--black-card); border: 1px solid var(--green-dim);
  border-radius: var(--radius-lg); padding: 28px 24px; text-align: center;
  position: sticky; top: 80px; box-shadow: 0 0 48px rgba(34,197,94,0.06);
  margin-bottom: 20px;
}
.ca-img { width: 72px; height: 72px; margin: 0 auto 14px; object-fit: contain; }
.strike { font-size: 13px; color: var(--gray-muted); text-decoration: line-through; margin-bottom: 4px; }
.big-price { font-family: 'Barlow Condensed', sans-serif; font-size: 64px; font-weight: 900; color: var(--green); line-height: 1; margin-bottom: 4px; }
.big-price .asterisk { font-size: 32px; }
.price-note { font-size: 12px; color: var(--gray-text); margin-bottom: 20px; line-height: 1.5; }
.guarantee { display: flex; align-items: center; gap: 8px; justify-content: center; font-size: 13px; color: var(--green); font-weight: 600; margin-top: 14px; }
.cert-row { display: flex; align-items: center; gap: 12px; margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--gray-edge); text-align: left; }
.cert-row img { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.cert-row p { font-size: 12px; color: var(--gray-text); line-height: 1.5; }

.sidebar-card {
  background: var(--black-card); border: 1px solid var(--gray-edge);
  border-radius: var(--radius-md); padding: 20px 20px; margin-bottom: 16px;
}
.sidebar-card h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.drop-list { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.drop-list li { font-size: 14px; color: var(--gray-text); display: flex; align-items: center; gap: 8px; }
.drop-list li::before { content: '→'; color: var(--green); font-size: 12px; flex-shrink: 0; }

/* TEEN PHOTO */
.teen-photo-wrap { margin: 0 0 28px; border-radius: var(--radius-md); overflow: hidden; }
.teen-photo { width: 100%; max-width: 475px; height: auto; }

/* CONTACT PAGE */
.contact-grid { display: flex; flex-direction: column; gap: 24px; margin-bottom: 40px; }
.contact-card-full {
  background: var(--black-card); border: 1px solid var(--gray-edge);
  border-radius: var(--radius-lg); padding: 32px 28px;
}
.contact-card-full h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 12px; }
.contact-card-full p { font-size: 15px; color: var(--gray-text); line-height: 1.7; }
.contact-row { display: flex; flex-direction: column; gap: 14px; }
.contact-item { display: flex; align-items: flex-start; gap: 12px; }
.contact-item .icon { flex-shrink: 0; width: 30px; height: 30px; background: var(--black-edge); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 13px; }
.contact-item .info strong { display: block; font-size: 11px; color: var(--gray-muted); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-item .info a { color: var(--white); font-size: 14px; font-weight: 500; transition: var(--transition); }
.contact-item .info a:hover { color: var(--green); }
.about-box { background: var(--black-mid); border: 1px solid var(--gray-edge); border-radius: var(--radius-lg); padding: 36px 32px; }
.about-box h2 { font-family: 'Barlow Condensed', sans-serif; font-size: 26px; font-weight: 800; color: var(--white); margin-bottom: 14px; }
.about-box p { font-size: 15px; color: var(--gray-text); line-height: 1.75; margin-bottom: 12px; }
.tagline { font-style: italic; color: var(--green) !important; }

/* FOOTER */
.site-footer { background: var(--black-mid); border-top: 1px solid var(--gray-edge); padding: 36px 24px; }
.footer-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.footer-links { display: flex; flex-wrap: wrap; gap: 8px 16px; justify-content: center; margin-bottom: 16px; }
.footer-links a { font-size: 13px; color: var(--gray-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--green); }
.footer-copy { font-size: 13px; color: var(--gray-muted); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .content-grid { grid-template-columns: 1fr; }
  .price-box { position: static; }
}
@media (max-width: 768px) {
  .main-content { padding: 40px 20px 60px; }
  .page-hero { padding: 40px 20px; }
  .site-nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--black-mid); border-bottom: 1px solid var(--gray-edge); flex-direction: column; padding: 12px; gap: 2px; }
  .site-nav.open { display: flex; }
  .site-nav a { width: 100%; }
  .nav-toggle { display: flex; }
  .price-banner { flex-direction: column; gap: 10px; }
}

/* ── HOMEPAGE STYLES ─────────────────────────────────────────── */

/* Hero */
.hero { background: var(--black); border-bottom: 1px solid var(--gray-edge); overflow: hidden; }
.hero-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; min-height: 560px; }
.hero-content { padding: 72px 48px 64px 24px; display: flex; flex-direction: column; justify-content: center; position: relative; z-index: 1; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 8px; background: var(--green-glow); border: 1px solid rgba(34,197,94,0.25); border-radius: 100px; padding: 5px 14px; font-size: 12px; font-weight: 600; color: var(--green); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 20px; width: fit-content; }
.hero h1 { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(40px, 5vw, 66px); font-weight: 900; color: var(--white); line-height: 1.0; letter-spacing: -0.5px; margin-bottom: 18px; }
.hero h1 em { color: var(--green); font-style: normal; }
.hero-desc { font-size: 17px; color: var(--gray-text); line-height: 1.7; margin-bottom: 28px; max-width: 440px; }
.hero-prices { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.price-pill { background: var(--black-card); border: 1px solid var(--gray-edge); border-radius: var(--radius-sm); padding: 9px 14px; text-align: center; }
.price-pill .amt { font-family: 'Barlow Condensed', sans-serif; font-size: 24px; font-weight: 800; color: var(--green); line-height: 1; }
.price-pill .lbl { font-size: 11px; color: var(--gray-text); white-space: nowrap; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-image { position: relative; overflow: hidden; background: var(--black-mid); }
.hero-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.hero-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to right, var(--black) 0%, transparent 20%); pointer-events: none; }

/* Trust bar */
.trust-bar { background: var(--black-mid); border-bottom: 1px solid var(--gray-edge); padding: 18px 24px; }
.trust-bar-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 500; color: var(--gray-text); }
.trust-item img { width: 36px; height: 36px; object-fit: contain; opacity: 0.9; border-radius: 4px; }
.trust-item .tick { width: 20px; height: 20px; border-radius: 50%; background: var(--green); color: var(--black); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }

/* Lifestyle band */
.lifestyle-band { background: var(--black-mid); border-top: 1px solid var(--gray-edge); border-bottom: 1px solid var(--gray-edge); padding: 72px 24px; }
.lifestyle-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.lifestyle-photo { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.lifestyle-photo img { width: 100%; height: 420px; object-fit: cover; object-position: top center; display: block; }
.lifestyle-photo .photo-badge { position: absolute; bottom: 20px; left: 20px; background: rgba(13,13,13,0.9); border: 1px solid var(--green-dim); border-radius: var(--radius-md); padding: 14px 18px; display: flex; align-items: center; gap: 12px; }
.photo-badge img { width: 40px; height: 40px; object-fit: contain; border-radius: 4px; }
.photo-badge .badge-text strong { display: block; color: var(--white); font-size: 14px; }
.photo-badge .badge-text span { font-size: 12px; color: var(--gray-text); }
.lifestyle-list { list-style: none; margin: 24px 0 36px; }
.lifestyle-list li { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--gray-edge); font-size: 15px; color: var(--white); line-height: 1.5; }
.lifestyle-list li:last-child { border-bottom: none; }
.lifestyle-list li .check { flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%; background: var(--green); color: var(--black); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; margin-top: 1px; }

/* Advantages */
.advantages { background: var(--black); }
.advantages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.advantage-card { background: var(--black-card); border: 1px solid var(--gray-edge); border-radius: var(--radius-lg); padding: 28px; transition: var(--transition); }
.advantage-card:hover { border-color: var(--green-dim); transform: translateY(-2px); }
.adv-top { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; }
.adv-img { width: 64px; height: 64px; flex-shrink: 0; border-radius: var(--radius-md); overflow: hidden; background: var(--black-edge); }
.adv-img img { width: 100%; height: 100%; object-fit: cover; }
.adv-icon-box { width: 64px; height: 64px; flex-shrink: 0; border-radius: var(--radius-md); background: var(--green-glow); border: 1px solid rgba(34,197,94,0.2); display: flex; align-items: center; justify-content: center; font-size: 26px; }
.advantage-card h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.advantage-card p { font-size: 14px; color: var(--gray-text); line-height: 1.6; }

/* How it works */
.how-it-works { background: var(--black-mid); border-top: 1px solid var(--gray-edge); border-bottom: 1px solid var(--gray-edge); }
.hiw-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.hiw-photo { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.hiw-photo img { width: 100%; height: 480px; object-fit: cover; object-position: center top; display: block; }
.overlay-tag { position: absolute; top: 20px; left: 20px; background: var(--green); color: var(--black); border-radius: var(--radius-sm); padding: 8px 16px; font-size: 13px; font-weight: 700; letter-spacing: 0.03em; }
.steps { display: flex; flex-direction: column; gap: 0; }
.step { display: flex; gap: 20px; align-items: flex-start; padding: 22px 0; border-bottom: 1px solid var(--gray-edge); }
.step:last-child { border-bottom: none; }
.step-num { width: 44px; height: 44px; flex-shrink: 0; border-radius: 50%; background: var(--green); color: var(--black); font-family: 'Barlow Condensed', sans-serif; font-size: 22px; font-weight: 900; display: flex; align-items: center; justify-content: center; }
.step:not(:first-child) .step-num { background: var(--black-edge); color: var(--gray-text); }
.step-body h3 { font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.step-body p { font-size: 14px; color: var(--gray-text); line-height: 1.55; }

/* CA section */
.ca-section { background: var(--black); }
.ca-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
.ca-features { list-style: none; margin: 24px 0 32px; }
.ca-features li { display: flex; align-items: flex-start; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--gray-edge); font-size: 15px; color: var(--white); line-height: 1.5; }
.ca-features li:last-child { border-bottom: none; }
.ca-features li .check { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--green); color: var(--black); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; margin-top: 2px; }

/* States section */
.states-section { background: var(--black-mid); border-top: 1px solid var(--gray-edge); border-bottom: 1px solid var(--gray-edge); }
.states-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.state-card { background: var(--black-card); border: 1px solid var(--gray-edge); border-radius: var(--radius-lg); padding: 32px 28px; transition: var(--transition); position: relative; overflow: hidden; }
.state-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--green); transform: scaleX(0); transition: var(--transition); }
.state-card:hover { border-color: var(--green-dim); transform: translateY(-3px); }
.state-card:hover::before { transform: scaleX(1); }
.state-name { font-family: 'Barlow Condensed', sans-serif; font-size: 28px; font-weight: 900; color: var(--white); margin-bottom: 2px; }
.state-course { font-size: 13px; color: var(--gray-text); margin-bottom: 16px; }
.state-price { font-family: 'Barlow Condensed', sans-serif; font-size: 44px; font-weight: 900; color: var(--green); margin-bottom: 4px; }
.state-detail { font-size: 13px; color: var(--gray-text); line-height: 1.5; margin-bottom: 22px; }

/* Anywhere photo band */
.anywhere-band { background: var(--black); }
.anywhere-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.anywhere-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; height: 300px; cursor: pointer; }
.anywhere-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; display: block; }
.anywhere-card:hover img { transform: scale(1.04); }
.card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,13,13,0.85) 0%, transparent 55%); }
.card-label { position: absolute; bottom: 20px; left: 20px; right: 20px; }
.card-label strong { display: block; font-family: 'Barlow Condensed', sans-serif; font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 2px; }
.card-label span { font-size: 13px; color: var(--gray-text); }

/* Promise section */
.promise-section { background: var(--black-mid); border-top: 1px solid var(--gray-edge); border-bottom: 1px solid var(--gray-edge); padding: 64px 24px; }
.promise-inner { max-width: 960px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.promise-text { font-size: 16px; color: var(--gray-text); line-height: 1.7; margin-bottom: 28px; }
.promise-badge { display: flex; align-items: center; gap: 16px; background: var(--black-card); border: 1px solid rgba(34,197,94,0.25); border-radius: var(--radius-md); padding: 24px; }
.promise-badge .icon { font-size: 36px; flex-shrink: 0; }
.promise-badge strong { display: block; color: var(--green); font-size: 17px; margin-bottom: 4px; }
.promise-badge span { font-size: 13px; color: var(--gray-text); line-height: 1.5; }

/* Responsive additions for homepage */
@media (max-width: 1024px) {
  .advantages-grid { grid-template-columns: repeat(2, 1fr); }
  .states-grid { grid-template-columns: repeat(2, 1fr); }
  .anywhere-inner { grid-template-columns: 1fr 1fr; }
  .anywhere-card:last-child { display: none; }
}
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { height: 260px; }
  .hero-image::after { background: linear-gradient(to bottom, var(--black) 0%, transparent 30%); }
  .hero-content { padding: 48px 20px 40px; }
  .lifestyle-inner { grid-template-columns: 1fr; gap: 36px; }
  .hiw-inner { grid-template-columns: 1fr; }
  .hiw-photo { order: -1; }
  .hiw-photo img { height: 280px; }
  .ca-grid { grid-template-columns: 1fr; }
  .anywhere-inner { grid-template-columns: 1fr; }
  .anywhere-card:last-child { display: block; }
  .promise-inner { grid-template-columns: 1fr; gap: 32px; }
  .advantages-grid { grid-template-columns: 1fr; }
  .states-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 36px; }
  .hero-ctas { flex-direction: column; }
}
