/*
Theme Name: Comeback Awareness
Theme URI: https://example.com/comeback-awareness
Author: Vivek Vashistha
Author URI: https://example.com
Description: A premium, high-end landing page for Nervous System Coaching.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: comeback-awareness
*/

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #0D0D0D;
  --bg2: #141414;
  --bg3: #1A1A1A;
  --teal: #2DD4BF;
  --teal-dim: rgba(45, 212, 191, 0.12);
  --teal-glow: rgba(45, 212, 191, 0.06);
  --white: #F5F5F5;
  --mid: #999;
  --muted: #555;
  --border: rgba(255, 255, 255, 0.07);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
}

/* Animated scan line */
body::after {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--teal), transparent);
  opacity: 0;
  z-index: 999;
  animation: scanPulse 6s 2s forwards;
}

@keyframes scanPulse {
  0% {
    opacity: 0;
    top: 0;
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.3;
  }

  100% {
    opacity: 0;
    top: 100%;
  }
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid transparent;
  transition: all 0.4s;
}

nav.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-brand-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 12px var(--teal);
}

.nav-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 3px;
  color: var(--white);
}

.nav-brand-sub {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-cta {
  border: 1px solid var(--teal) !important;
  color: var(--teal) !important;
  padding: 10px 24px !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--teal-dim) !important;
}

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  z-index: 300;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(20px);
  z-index: 250;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 10vw, 56px);
  letter-spacing: 4px;
  color: var(--mid);
  text-decoration: none;
  transition: color 0.25s, transform 0.25s;
  transform: translateY(12px);
  opacity: 0;
}

.mobile-menu.open a {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu.open a:nth-child(1) {
  transition-delay: 0.05s;
}

.mobile-menu.open a:nth-child(2) {
  transition-delay: 0.1s;
}

.mobile-menu.open a:nth-child(3) {
  transition-delay: 0.15s;
}

.mobile-menu.open a:nth-child(4) {
  transition-delay: 0.2s;
}

.mobile-menu a:hover {
  color: var(--teal);
}

.mobile-menu .mob-cta {
  margin-top: 16px;
  border: 1px solid var(--teal) !important;
  color: var(--teal) !important;
  padding: 16px 48px !important;
  font-size: clamp(20px, 5vw, 28px) !important;
  transition-delay: 0.25s !important;
}

.mobile-menu-line {
  width: 40px;
  height: 1px;
  background: var(--border);
  margin: 8px 0;
  opacity: 0;
  transition: opacity 0.3s 0.3s;
}

.mobile-menu.open .mobile-menu-line {
  opacity: 1;
}

.mobile-menu-social {
  display: flex;
  gap: 24px;
  margin-top: 8px;
  opacity: 0;
  transition: opacity 0.3s 0.3s;
}

.mobile-menu.open .mobile-menu-social {
  opacity: 1;
}

.mobile-menu-social a {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
}

/* HERO */
.hero {
  min-height: 100vh;
  padding: 120px 60px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Grid lines background */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.08), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}

.hero-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 2px;
  margin-bottom: 48px;
  opacity: 0;
  animation: fromLeft 0.8s 0.1s forwards;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  animation: livePulse 2s infinite;
}

@keyframes livePulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(45, 212, 191, 0.4);
  }

  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 6px rgba(45, 212, 191, 0);
  }
}

.live-text {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
}

.hero-h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(72px, 10vw, 160px);
  line-height: 0.92;
  letter-spacing: 2px;
  color: var(--white);
  opacity: 0;
  animation: fromLeft 0.8s 0.25s forwards;
}

.hero-h1 .teal {
  color: var(--teal);
  text-shadow: 0 0 40px rgba(45, 212, 191, 0.3);
}

.hero-h1 .outline {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
  color: transparent;
}

.hero-h1-sub {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: clamp(16px, 2vw, 24px);
  font-weight: 300;
  color: var(--mid);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-top: 20px;
  opacity: 0.8;
}

.hero-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-top: 60px;
  opacity: 0;
  animation: fromLeft 0.8s 0.45s forwards;
}

.hero-sub {
  font-size: 17px;
  line-height: 1.85;
  color: var(--mid);
  font-weight: 300;
  max-width: 500px;
}

.hero-sub strong {
  color: var(--white);
  font-weight: 500;
}

.hero-right-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-end;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
}

.btn-teal {
  background: var(--teal);
  color: var(--bg);
  padding: 18px 40px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-teal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  transform: translateX(-100%);
  transition: transform 0.3s;
}

.btn-teal:hover::before {
  transform: translateX(0);
}

.btn-ghost2 {
  border: 1px solid var(--muted);
  color: var(--mid);
  padding: 18px 32px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-ghost2:hover {
  border-color: var(--white);
  color: var(--white);
}

.hero-stats-row {
  display: flex;
  gap: 40px;
}

.hstat {
  text-align: right;
}

.hstat-n {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  color: var(--teal);
  letter-spacing: 1px;
  line-height: 1;
}

.hstat-l {
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}

/* MARQUEE */
.marquee-wrap {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  overflow: hidden;
  background: var(--bg2);
  position: relative;
  z-index: 1;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee 20s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 3px;
  color: var(--muted);
}

.marquee-item span {
  color: var(--teal);
  font-size: 14px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes fromLeft {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* ABOUT */
.about {
  padding: 120px 60px;
  background: var(--bg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about::before {
  content: 'VIVEK';
  position: absolute;
  bottom: -60px;
  right: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 220px;
  color: rgba(255, 255, 255, 0.02);
  letter-spacing: 10px;
  pointer-events: none;
}


.about-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px;
  color: var(--teal);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -20px;
  display: block;
}

.about-tag {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.about-name {
  font-size: 24px;
  color: var(--white);
  margin-bottom: 12px;
  font-weight: 400;
  letter-spacing: 1px;
}

.about-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--white);
}

.about-h2 em {
  font-style: normal;
  color: rgba(255, 255, 255, 0.6);
}

.about-divider {
  width: 60px;
  height: 1px;
  background: var(--teal);
  margin: 32px 0;
}

.about-text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--mid);
  font-weight: 300;
}

.about-text p {
  margin-bottom: 16px;
}



.about-insight-box {
  background: var(--bg2);
  border: 1px solid var(--border);
  border-left: 2px solid var(--teal);
  padding: 36px 32px;
  margin-bottom: 24px;
}

.insight-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.insight-text {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--white);
  font-weight: 300;
}

.about-tags-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-pill {
  border: 1px solid rgba(45, 212, 191, 0.2);
  background: rgba(45, 212, 191, 0.03);
  padding: 10px 20px;
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tag-pill::before {
  content: '✦';
  font-size: 10px;
  color: var(--teal);
  text-shadow: 0 0 10px var(--teal);
}

.tag-pill:hover {
  border-color: var(--teal);
  background: rgba(45, 212, 191, 0.08);
  transform: translateY(-2px);
  color: var(--white);
}

/* PROBLEMS */
.problems {
  padding: 100px 60px;
  background: var(--bg2);
  position: relative;
  z-index: 1;
}

.problems-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
}

.prob-cell {
  background: var(--bg2);
  padding: 40px 32px;
  transition: background 0.3s;
}

.prob-cell:hover {
  background: var(--bg3);
}

.prob-icon {
  font-size: 32px;
  margin-bottom: 20px;
  display: block;
}

.prob-title {
  font-family: 'Outfit', sans-serif;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 10px;
  font-weight: 500;
}

.prob-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
}

/* TRANSFORMATION ROW */
.transform-section {
  padding: 80px 60px;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.transform-row {
  display: flex;
  align-items: center;
  gap: 0;
}

.trans-item {
  flex: 1;
  padding: 48px 40px;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
}

.trans-item:last-child {
  border-right: none;
}

.trans-item:hover {
  background: var(--bg2);
}

.trans-icon {
  font-size: 28px;
  display: block;
  margin-bottom: 16px;
  opacity: 0.6;
}

.trans-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mid);
  font-weight: 300;
}

.trans-arrow {
  padding: 0 24px;
  color: var(--teal);
  font-size: 24px;
  flex-shrink: 0;
}

/* TRANSFORMATION REDESIGN */
.transformation-v2 {
  padding: 120px 60px;
  background: var(--bg2);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.transformation-v2-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}

.tv2-tag {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.tv2-h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.2;
  color: var(--white);
  font-weight: 600;
}

.tv2-h2 em {
  font-style: normal;
  color: var(--teal);
}

.tv2-list {
  list-style: none;
  margin-top: 48px;
}

.tv2-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  color: var(--mid);
  margin-bottom: 24px;
  font-weight: 300;
}

.tv2-list li span {
  color: var(--teal);
  font-size: 14px;
}

.tv2-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.tv2-insight {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 2px solid var(--teal);
  padding: 40px 36px;
}

.tv2-insight-label {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}

.tv2-insight-text {
  font-family: 'Outfit', sans-serif;
  font-size: 19px;
  line-height: 1.5;
  color: var(--white);
  font-weight: 300;
}

.tv2-truth-row {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  background: rgba(45, 212, 191, 0.03);
  border: 1px solid var(--border);
}

.tv2-truth-icon {
  font-size: 20px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 4px;
}

.tv2-truth-content {
  font-size: 14px;
  line-height: 1.7;
  color: var(--mid);
  font-weight: 300;
}

.tv2-truth-content strong {
  color: var(--teal);
  font-weight: 500;
}

.tv2-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  margin-top: 12px;
  border-bottom: 1px solid rgba(45, 212, 191, 0.2);
  padding-bottom: 6px;
  transition: all 0.3s;
  width: fit-content;
  font-weight: 500;
}

.tv2-cta:hover {
  gap: 20px;
  border-bottom-color: var(--teal);
  color: var(--white);
}

/* PROGRAMS */
.programs {
  padding: 120px 60px;
  background: var(--bg);
}

.programs-top {
  margin-bottom: 64px;
}

.prog-tag {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.prog-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 80px);
  letter-spacing: 2px;
  line-height: 0.95;
  color: var(--white);
}

.prog-h2 .teal {
  color: var(--teal);
}

.programs-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 24px;
}

.prog-card {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 52px 44px;
  position: relative;
  transition: border-color 0.4s;
}

.prog-card:hover {
  border-color: rgba(45, 212, 191, 0.3);
}

.prog-card.hot {
  border-color: var(--teal);
  background: var(--bg3);
}

.hot-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--teal);
  color: var(--bg);
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 14px;
  font-weight: 500;
}

.pc-tag {
  font-size: 10px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 24px;
}

.pc-name {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 12px;
}

.pc-desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--mid);
  font-weight: 300;
  margin-bottom: 36px;
}

.pc-line {
  width: 40px;
  height: 1px;
  background: var(--teal);
  margin-bottom: 32px;
}

.pc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 44px;
}

.pc-list li {
  font-size: 13px;
  color: var(--mid);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-weight: 300;
  line-height: 1.5;
}

.pc-list li::before {
  content: '→';
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 1px;
}

.pc-cta {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal);
  text-decoration: none;
  border-bottom: 1px solid rgba(45, 212, 191, 0.3);
  padding-bottom: 4px;
  transition: gap 0.3s;
}

.pc-cta:hover {
  gap: 24px;
}

.programs-grid.single-program {
  grid-template-columns: 1fr;
  max-width: 800px;
  margin: 0 auto;
}

.pc-quote {
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: var(--white);
  border-top: 1px solid var(--border);
  padding-top: 32px;
  margin-bottom: 40px;
  opacity: 0.8;
  font-weight: 300;
}

/* TESTIMONIALS */
.testimonials {
  padding: 120px 60px;
  background: var(--bg2);
  overflow: hidden;
  position: relative;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: -80px;
  left: 40px;
  font-family: 'Instrument Serif', serif;
  font-size: 400px;
  color: rgba(45, 212, 191, 0.04);
  line-height: 1;
  pointer-events: none;
}

.testi-top {
  margin-bottom: 64px;
}

.testi-tag {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 20px;
}

.testi-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(48px, 5vw, 80px);
  letter-spacing: 2px;
  color: var(--white);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.tcard {
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 40px 32px;
  transition: border-color 0.3s, transform 0.3s;
}

.tcard:hover {
  border-color: rgba(45, 212, 191, 0.25);
  transform: translateY(-4px);
}

.tcard-stars {
  color: var(--teal);
  font-size: 13px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.tcard-text {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 300;
}

.tcard-person {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.tcard-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-dim);
  border: 1px solid rgba(45, 212, 191, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--teal);
}

.tcard-name {
  font-weight: 500;
  font-size: 13px;
  color: var(--white);
}

.tcard-role {
  font-size: 11px;
  color: var(--muted);
  margin-top: 2px;
}

/* CTA */
.cta-section {
  padding: 160px 60px;
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(45, 212, 191, 0.06), transparent 70%);
  pointer-events: none;
}

.cta-tag {
  font-size: 10px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 28px;
}

.cta-h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 8vw, 130px);
  line-height: 0.92;
  letter-spacing: 2px;
  color: var(--white);
  max-width: 900px;
  margin: 0 auto 16px;
}

.cta-h2 .teal {
  color: var(--teal);
}

.cta-h2 .outline {
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
  color: transparent;
}

.cta-sub {
  font-size: 15px;
  color: var(--mid);
  font-weight: 300;
  max-width: 440px;
  margin: 24px auto 56px;
  line-height: 1.8;
}

.cta-btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.cta-note {
  margin-top: 28px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 2px;
}

/* FOOTER */
footer {
  padding: 48px 60px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fl-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.fl-brand-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 3px;
  color: var(--white);
}

.fl-copy {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 1px;
}

.fl-links {
  display: flex;
  gap: 28px;
}

.fl-links a {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.3s;
}

.fl-links a:hover {
  color: var(--teal);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.d1 {
  transition-delay: 0.1s;
}

.d2 {
  transition-delay: 0.2s;
}

.d3 {
  transition-delay: 0.3s;
}

.d4 {
  transition-delay: 0.4s;
}

@media(max-width:900px) {
  nav {
    padding: 20px 24px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding: 110px 24px 60px;
  }

  .hero-h1 {
    font-size: clamp(60px, 15vw, 90px);
  }

  .hero-bottom {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-right-block {
    align-items: flex-start;
  }

  .about {
    grid-template-columns: 1fr;
    padding: 80px 24px;
    gap: 48px;
  }

  .problems {
    padding: 80px 24px;
  }

  .problems-header {
    grid-template-columns: 1fr;
  }

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

  .transform-row {
    flex-wrap: wrap;
  }

  .trans-arrow {
    display: none;
  }

  .trans-item {
    border: 1px solid var(--border);
    margin-bottom: 8px;
    flex: none;
    width: 100%;
  }

  .transformation-v2 {
    padding: 80px 24px;
  }

  .transformation-v2-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .programs {
    padding: 80px 24px;
  }

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

  .testimonials {
    padding: 80px 24px;
  }

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

  .cta-section {
    padding: 100px 24px;
  }

  footer {
    flex-direction: column;
    gap: 20px;
    padding: 40px 24px;
    text-align: center;
  }

  .fl-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .marquee-wrap {
    display: none;
  }
}