/* ============================
   CSS Custom Properties
   ============================ */
:root {
  --black:   #0C0C0C;
  --black-2: #141414;
  --black-3: #1C1C1C;
  --black-4: #2A2A2A;
  --lime:    #C8FF00;
  --lime-dim: rgba(200, 255, 0, 0.12);
  --white:   #FFFFFF;
  --text:    #E0E0E0;
  --muted:   #888888;
  --border:  #2C2C2C;

  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Noto Sans JP', sans-serif;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  --transition: all 0.3s ease;
  --max-width: 1200px;
}

/* ============================
   Reset & Base
   ============================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--black);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
ul { list-style: none; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ============================
   Layout
   ============================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section { padding: 6rem 0; }

.tag {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--lime);
  display: block;
  margin-bottom: 1rem;
}

.section-head { margin-bottom: 4rem; }
.section-head.text-center { text-align: center; }

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}

.section-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-top: 0.875rem;
}

/* ============================
   Buttons
   ============================ */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-lime {
  background: var(--lime);
  color: var(--black);
  border-color: var(--lime);
}

.btn-lime:hover {
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200, 255, 0, 0.25);
}

.btn-outline-lime {
  border-color: var(--lime);
  color: var(--lime);
  background: transparent;
}

.btn-outline-lime:hover {
  background: var(--lime);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-outline-white {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: transparent;
}

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

.btn-block {
  display: block;
  width: 100%;
  text-align: center;
}

/* ============================
   Animations (slide-in — different from samples 1 & 2)
   ============================ */
.slide-in-left {
  opacity: 0;
  transform: translateX(-32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-in-right {
  opacity: 0;
  transform: translateX(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-in-left.visible,
.slide-in-right.visible,
.slide-in.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Stagger */
.programs-grid .program-card:nth-child(2) { transition-delay: 0.1s; }
.features-grid .feat-item:nth-child(2) { transition-delay: 0.08s; }
.features-grid .feat-item:nth-child(3) { transition-delay: 0.16s; }
.features-grid .feat-item:nth-child(4) { transition-delay: 0.24s; }
.features-grid .feat-item:nth-child(5) { transition-delay: 0.32s; }
.features-grid .feat-item:nth-child(6) { transition-delay: 0.4s; }
.test-grid .test-card:nth-child(2) { transition-delay: 0.12s; }

/* ============================
   HEADER
   ============================ */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, border-bottom 0.4s ease;
}

#header.scrolled {
  background: rgba(12, 12, 12, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-a {
  width: 36px;
  height: 36px;
  background: var(--lime);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  flex-shrink: 0;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--white);
  display: flex;
  flex-direction: column;
  line-height: 1;
  gap: 1px;
}

.logo-sub {
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  color: var(--muted);
  font-weight: 600;
}

/* Nav */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  transition: var(--transition);
}

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

.nav-trial {
  background: var(--lime) !important;
  color: var(--black) !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  font-weight: 700 !important;
}

.nav-trial:hover {
  background: var(--white) !important;
  color: var(--black) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform-origin: center;
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--black-2);
  border-top: 1px solid var(--border);
}

.mobile-menu.open { display: block; }

.mobile-menu li a {
  display: block;
  padding: 0.9rem 2rem;
  color: var(--muted);
  font-size: 0.95rem;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.mobile-menu li a:hover {
  color: var(--lime);
  padding-left: 2.5rem;
}

/* ============================
   HERO
   ============================ */
#hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 72% 50%, rgba(200, 255, 0, 0.04) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(200, 255, 0, 0.02) 0%, transparent 40%);
  pointer-events: none;
}

.hero-inner {
  flex: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-tag {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.5rem;
  display: block;
  opacity: 0;
  animation: slideFromLeft 0.8s ease 0.2s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 8.5vw, 7.5rem);
  text-transform: uppercase;
  line-height: 0.95;
  margin-bottom: 2rem;
}

.tl {
  display: block;
  color: var(--white);
  opacity: 0;
  animation: slideFromLeft 0.8s ease 0.4s forwards;
}

.tl.lime {
  color: var(--lime);
  opacity: 0;
  animation: slideFromLeft 0.8s ease 0.6s forwards;
}

.hero-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 2.5rem;
  max-width: 480px;
  opacity: 0;
  animation: slideFromLeft 0.8s ease 0.8s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: slideFromLeft 0.8s ease 1s forwards;
}

@keyframes slideFromLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Hero Visual — abstract geometric composition */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 440px;
  opacity: 0;
  animation: scaleIn 1.2s ease 0.5s forwards;
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}

.vr {
  position: absolute;
  border-radius: 50%;
}

.ring-outer {
  width: 360px;
  height: 360px;
  border: 1px solid rgba(200, 255, 0, 0.12);
  border-top-color: rgba(200, 255, 0, 0.55);
  border-right-color: rgba(200, 255, 0, 0.3);
  animation: ringCW 18s linear infinite;
}

.ring-mid {
  width: 258px;
  height: 258px;
  border: 1px dashed rgba(200, 255, 0, 0.08);
  border-bottom-color: rgba(200, 255, 0, 0.45);
  animation: ringCCW 11s linear infinite;
}

@keyframes ringCW  { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes ringCCW { from { transform: rotate(0deg); } to { transform: rotate(-360deg); } }

.visual-center {
  position: relative;
  z-index: 1;
  width: 156px;
  height: 156px;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.vc-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--lime);
  line-height: 1;
}

.vc-unit {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
}

.vc-label {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* Accent decorations */
.va { position: absolute; }

.va-1 {
  width: 4px;
  height: 60px;
  background: var(--lime);
  top: 28px;
  right: 78px;
  border-radius: 2px;
  opacity: 0.65;
  animation: vaPulse 3s ease-in-out infinite;
}

.va-2 {
  width: 60px;
  height: 4px;
  background: var(--lime);
  bottom: 58px;
  left: 56px;
  border-radius: 2px;
  opacity: 0.45;
  animation: vaPulse 3.5s ease-in-out infinite;
  animation-delay: -1.5s;
}

.va-3 {
  width: 28px;
  height: 28px;
  border: 2px solid var(--lime);
  top: 78px;
  left: 76px;
  opacity: 0.25;
  transform: rotate(45deg);
  animation: vaPulse 4s ease-in-out infinite;
  animation-delay: -0.8s;
}

.va-4 {
  width: 8px;
  height: 8px;
  background: var(--lime);
  border-radius: 50%;
  bottom: 100px;
  right: 56px;
  opacity: 0.6;
  animation: vaPulse 2.5s ease-in-out infinite;
  animation-delay: -1s;
}

@keyframes vaPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 0.85; }
}

/* Hero stats bar */
.hero-stats {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hs-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  padding: 0 3.5rem;
}

.hs-val {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.hs-val em {
  font-style: normal;
  font-size: 1.1rem;
}

.hs-lbl {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.hs-div {
  width: 1px;
  height: 40px;
  background: var(--border);
  flex-shrink: 0;
}

/* ============================
   PROGRAMS
   ============================ */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.program-card {
  background: var(--black-2);
  border: 1px solid var(--border);
  padding: 2.5rem 2rem;
  border-radius: var(--radius-lg);
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.program-card:hover {
  border-color: rgba(200, 255, 0, 0.4);
  transform: translateY(-4px);
}

.program-card.featured {
  border-color: var(--lime);
  background: var(--black-3);
}

.feat-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  padding: 0.3rem 1rem;
  white-space: nowrap;
}

.prog-num {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(200, 255, 0, 0.1);
  line-height: 1;
  pointer-events: none;
}

.prog-icon {
  width: 48px;
  height: 48px;
  color: var(--lime);
}

.prog-icon svg { width: 100%; height: 100%; }

.program-card h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.2;
}

.program-card h3 span {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--muted);
  text-transform: none;
  display: block;
  margin-top: 2px;
}

.program-card > p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
}

.prog-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
  margin-bottom: 0.5rem;
}

.prog-list li {
  font-size: 0.84rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ck {
  color: var(--lime);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================
   FEATURES
   ============================ */
.features-section {
  padding: 6rem 0;
  background: var(--black-2);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.feat-item {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.feat-item:hover {
  border-color: rgba(200, 255, 0, 0.3);
  background: rgba(200, 255, 0, 0.02);
}

.feat-icon {
  width: 44px;
  height: 44px;
  color: var(--lime);
  margin-bottom: 1.25rem;
}

.feat-icon svg { width: 100%; height: 100%; }

.feat-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.feat-item p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ============================
   PRICING
   ============================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.price-card {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.price-card:hover {
  border-color: rgba(200, 255, 0, 0.4);
  transform: translateY(-4px);
}

.price-card.featured {
  border-color: var(--lime);
  background: linear-gradient(165deg, rgba(200, 255, 0, 0.06) 0%, var(--black-2) 45%);
}

.price-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--lime);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  padding: 0.3rem 1rem;
  white-space: nowrap;
}

.price-tier {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  color: var(--muted);
  margin-bottom: 1.25rem;
}

.price-card.featured .price-tier { color: var(--lime); }

.price-amount {
  display: flex;
  align-items: baseline;
  gap: 0.2rem;
  margin-bottom: 1rem;
}

.py {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--muted);
  line-height: 1;
}

.pn {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}

.price-card.featured .pn { color: var(--lime); }

.pp {
  font-size: 0.85rem;
  color: var(--muted);
}

.price-desc {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  margin-bottom: 2rem;
}

.price-list li {
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.price-list li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.price-list li.ok { color: var(--text); }
.price-list li.ok::before { background: var(--lime); }
.price-list li.no { color: var(--black-4); text-decoration: line-through; }
.price-list li.no::before { background: var(--black-4); }

/* ============================
   SCHEDULE
   ============================ */
.schedule-section {
  padding: 6rem 0;
  background: var(--black-2);
}

.sch-wrap { overflow-x: auto; }

.sch-table {
  min-width: 680px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.sch-hdr {
  display: grid;
  grid-template-columns: 76px repeat(6, 1fr);
  background: var(--black-3);
  border-bottom: 1px solid var(--border);
}

.sch-hdr > div {
  padding: 0.9rem 0.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.sch-tc { font-size: 0.68rem !important; letter-spacing: 0.25em !important; }

.sch-dc { border-left: 1px solid var(--border); }

.sch-row {
  display: grid;
  grid-template-columns: 76px repeat(6, 1fr);
  border-bottom: 1px solid var(--border);
}

.sch-row:last-child { border-bottom: none; }

.sch-t {
  padding: 0.75rem 0.5rem;
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
}

.sch-c {
  border-left: 1px solid var(--border);
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 0;
}

.sch-c.hiit   { background: rgba(200,255,0,0.09); color: var(--lime); outline: 1px solid rgba(200,255,0,0.18); outline-offset: -4px; border-radius: var(--radius-sm); }
.sch-c.str    { background: rgba(255,120,0,0.09); color: #FF8040;     outline: 1px solid rgba(255,120,0,0.2);  outline-offset: -4px; border-radius: var(--radius-sm); }
.sch-c.yoga   { background: rgba(120,120,255,0.09); color: #9090FF;   outline: 1px solid rgba(120,120,255,0.2); outline-offset: -4px; border-radius: var(--radius-sm); }
.sch-c.stch   { background: rgba(0,210,160,0.09); color: #40C890;     outline: 1px solid rgba(0,210,160,0.2);  outline-offset: -4px; border-radius: var(--radius-sm); }

.sch-legend {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
}

.leg {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.28rem 0.8rem;
  border-radius: var(--radius-sm);
}

.leg.hiit  { background: rgba(200,255,0,0.09); color: var(--lime); border: 1px solid rgba(200,255,0,0.2); }
.leg.str   { background: rgba(255,120,0,0.09); color: #FF8040;     border: 1px solid rgba(255,120,0,0.2); }
.leg.yoga  { background: rgba(120,120,255,0.09); color: #9090FF;   border: 1px solid rgba(120,120,255,0.2); }
.leg.stch  { background: rgba(0,210,160,0.09); color: #40C890;     border: 1px solid rgba(0,210,160,0.2); }

/* ============================
   TESTIMONIALS
   ============================ */
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.test-card {
  background: var(--black-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}

.test-card:hover {
  border-color: rgba(200, 255, 0, 0.3);
  transform: translateY(-4px);
}

/* Before / After */
.ba-block {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--black-3);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  margin-bottom: 1.5rem;
  position: relative;
}

.ba-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.ba-lbl {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  color: var(--muted);
}

.ba-val {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.ba-val small { font-size: 0.9rem; }

.ba-val.lime { color: var(--lime); }

.ba-arr {
  font-size: 1.1rem;
  color: var(--muted);
  flex-shrink: 0;
  margin: 0 0.25rem;
}

.ba-dur {
  position: absolute;
  top: -10px;
  right: 12px;
  background: var(--lime);
  color: var(--black);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 0.2rem 0.6rem;
  letter-spacing: 0.04em;
}

.test-body {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ta-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}

.ta-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
}

.ta-prog {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 2px;
}

/* ============================
   FREE TRIAL CTA
   ============================ */
.trial-section {
  background: var(--black-2);
  border-top: 1px solid var(--border);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.trial-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(200, 255, 0, 0.04) 0%, transparent 65%);
  pointer-events: none;
}

.trial-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
  position: relative;
  z-index: 1;
}

.trial-tag {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--lime);
  display: block;
  margin-bottom: 1rem;
}

.trial-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.trial-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 3rem;
}

.tf-row {
  display: flex;
  gap: 0.75rem;
  max-width: 820px;
  margin: 0 auto;
}

.tf-field { flex: 1; }

.tf-field input {
  width: 100%;
  background: var(--black-3);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  color: var(--white);
  font-size: 0.9rem;
  transition: var(--transition);
}

.tf-field input::placeholder { color: rgba(255, 255, 255, 0.25); }

.tf-field input:focus {
  outline: none;
  border-color: var(--lime);
}

.trial-note {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.28);
}

/* ============================
   FOOTER
   ============================ */
footer {
  background: #080808;
  border-top: 1px solid var(--border);
  padding: 4rem 0 2rem;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.85;
  margin-top: 1rem;
}

.footer-logo { display: inline-flex; }

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.fc h4 {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 1.25rem;
  font-weight: 700;
}

.fc li { margin-bottom: 0.625rem; }

.fc a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.32);
  transition: var(--transition);
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.22);
}

.fp {
  display: flex;
  gap: 1.5rem;
}

.fp a {
  color: rgba(255, 255, 255, 0.22);
  transition: var(--transition);
}

.fp a:hover { color: rgba(255, 255, 255, 0.6); }

/* ============================
   RESPONSIVE — Tablet
   ============================ */
@media (max-width: 1024px) {
  .programs-grid { grid-template-columns: 1fr 1fr; }
  .programs-grid .program-card:nth-child(3) { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .test-grid { grid-template-columns: 1fr 1fr; }
  .test-grid .test-card:nth-child(3) { grid-column: 1 / -1; max-width: 480px; margin: 0 auto; }
  .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
  .hs-item { padding: 0 2rem; }
}

/* ============================
   RESPONSIVE — Mobile
   ============================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 96px;
    padding-bottom: 3rem;
  }

  .hero-desc { margin: 0 auto 2.5rem; }
  .hero-actions { justify-content: center; }
  .hero-visual { display: none; }

  .hero-stats { flex-wrap: wrap; padding: 1.25rem; }
  .hs-item { padding: 0.5rem 1.5rem; }
  .hs-div { display: none; }

  .programs-grid { grid-template-columns: 1fr; }
  .programs-grid .program-card:nth-child(3) { max-width: 100%; }

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

  .pricing-grid { max-width: 100%; }

  .test-grid { grid-template-columns: 1fr; }
  .test-grid .test-card:nth-child(3) { max-width: 100%; }

  .tf-row { flex-direction: column; }

  .footer-links { grid-template-columns: 1fr 1fr; }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .footer-links { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { text-align: center; }
  .ba-block { flex-wrap: wrap; }
}
