/* ============================================================
   NEWAVE ACADEMY — styles.css v11
   Apple-inspired minimal dark · Mobile-first · Conversion-optimized
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; }

:root {
  --brand-black:  #14181E;
  --brand-gray:   #B7B6B6;
  --brand-orange: #FC7342;
  --brand-white:  #ffffff;

  --bg:        #080a0d;
  --bg-2:      #12161b;
  --bg-3:      #1a1f26;
  --white:     var(--brand-white);
  --muted:     var(--brand-gray);
  --subtle:    rgba(183, 182, 182, 0.4);
  --orange:    var(--brand-orange);
  --orange-h:  #d95b28;
  --border:    rgba(183, 182, 182, 0.1);
  --sans:      'Helvena', 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --mono:      'Alice Mono', 'DM Mono', monospace;
  --r:         18px;
  --r-sm:      10px;
  --max:       680px;
  --max-wide:  1020px;
  --section:   clamp(5rem, 10vw, 9rem);
}

html { scroll-behavior: smooth; font-size: 17px; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }

/* ── BRAND LIGHT THEME ── */
.theme-light {
  --bg:        var(--brand-white);
  --bg-2:      #f5f5f9;
  --bg-3:      var(--brand-white);
  --white:     var(--brand-black);
  --muted:     rgba(20, 24, 30, 0.65);
  --subtle:    rgba(20, 24, 30, 0.45);
  --border:    rgba(20, 24, 30, 0.12);
  color: var(--white);
  background: var(--bg);
}

.theme-light .btn-primary {
  background: var(--brand-black); color: var(--brand-white);
}
.theme-light .btn-primary:hover {
  background: #000; box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.theme-light .btn-pricing {
  border-color: rgba(20, 24, 30, 0.2);
  color: var(--brand-black);
}
.theme-light .btn-pricing:hover {
  background: rgba(20, 24, 30, 0.04); border-color: rgba(20, 24, 30, 0.5);
}
.theme-light .btn-pricing-featured {
  background: var(--orange); border-color: var(--orange); color: var(--brand-white);
}

/* ── ANIMATION ── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.72s cubic-bezier(0.16,1,0.3,1), transform 0.72s cubic-bezier(0.16,1,0.3,1);
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}
[data-animate][data-delay="1"] { transition-delay: 0.08s; }
[data-animate][data-delay="2"] { transition-delay: 0.16s; }
[data-animate][data-delay="3"] { transition-delay: 0.24s; }
[data-animate][data-delay="4"] { transition-delay: 0.32s; }

/* ── MONO LABEL ── */
.mono-tag {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 1.1rem;
}
.mono-tag.dark { color: var(--subtle); }

/* ── NAV ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  height: 56px;
  background: rgba(8,8,8,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
  transition: transform 0.35s ease;
}
.logo-img { height: 20px; width: auto; }
.nav-right { display: flex; align-items: center; gap: 0.75rem; }

.lang-toggle {
  font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.14em;
  background: none; border: none; color: var(--subtle);
  padding: 0.3rem 0.4rem; cursor: pointer; transition: color 0.2s;
}
.lang-toggle:hover { color: var(--white); }

.nav-cta {
  font-weight: 600; font-size: 0.82rem;
  background: var(--orange); color: #fff;
  padding: 0.45rem 1.1rem; border-radius: 20px;
  transition: background 0.2s, transform 0.15s;
}
.nav-cta:hover { background: var(--orange-h); transform: translateY(-1px); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--white); color: #000;
  font-weight: 700; font-size: 1rem; letter-spacing: -0.01em;
  padding: 0.9rem 2.2rem; border-radius: 980px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.btn-primary:hover { background: rgba(245,245,247,0.88); transform: translateY(-1px); box-shadow: 0 4px 20px rgba(255,255,255,0.12); }
.btn-large { font-size: 1.075rem; padding: 1rem 2.5rem; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 1rem; font-weight: 600; color: var(--orange);
  transition: gap 0.2s;
}
.btn-ghost:hover { gap: 0.65rem; }
.btn-ghost::after { content: '→'; }

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center; justify-content: center;
  padding: 7rem 1.5rem 5rem;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(circle at 50% 0%, var(--bg-3), var(--bg) 80%);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 10%, rgba(252,115,66,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 50% 30% at 20% 90%, rgba(252,115,66,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em;
  color: var(--orange); margin-bottom: 1.75rem;
  border: 1px solid rgba(252,115,66,0.25);
  padding: 0.35rem 0.9rem; border-radius: 20px;
  background: rgba(252,115,66,0.06);
}
.hero-corner-isotipo {
  position: absolute;
  bottom: 0;
  left: 0;
  width: clamp(200px, 28vw, 380px);
  height: auto;
  opacity: 0.08;
  z-index: 5;
  transform: translate(-45%, 45%);
  filter: brightness(0) invert(1);
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.hero-corner-isotipo.hidden { opacity: 0; }
.hero-content {
  position: relative; z-index: 10;
  max-width: 760px;
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.hero h1 {
  font-size: clamp(2rem, 5.5vw, 3.7rem);
  font-weight: 700; line-height: 1.04;
  letter-spacing: -0.04em;
  margin-bottom: 1.35rem;
}
.h1-accent { color: var(--orange); display: block; }
.hero-sub {
  color: var(--muted); font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  max-width: 800px; line-height: 1.65;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.hero-proof {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--mono); font-size: 0.82rem;
  color: var(--subtle);
}
.proof-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }

/* ── PAIN STRIP ── */
.pain-strip {
  background: var(--white);
  padding: 0.85rem 1.5rem;
  overflow: hidden;
}
.pain-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem; flex-wrap: wrap;
}
.pain-item { font-family: var(--mono); font-size: 0.75rem; font-weight: 500; letter-spacing: 0.05em; color: var(--brand-black); white-space: nowrap; }
.pain-sep  { color: rgba(0,0,0,0.15); }

/* ── SECTION BASE ── */
.section {
  padding: var(--section) clamp(1.25rem, 5vw, 2.5rem);
}

/* ── WHY ── */
.why-section {
  padding: var(--section) clamp(1.25rem, 5vw, 2.5rem);
  background: var(--bg-2);
  text-align: center;
}
.why-inner { max-width: var(--max-wide); margin: 0 auto; }
.section-label { margin-bottom: 0.75rem; }
.why-section h2 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 3.5rem;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  background: var(--border);
}
.why-card {
  background: var(--bg-3);
  padding: 2.25rem 2rem;
  text-align: left;
  transition: transform 0.3s ease;
}
.why-card:hover { transform: scale(1.02); }
.why-icon {
  width: 44px; height: 44px;
  background: rgba(252,115,66,0.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--orange); margin-bottom: 1.25rem;
}
.why-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.55rem; letter-spacing: -0.01em; }
.why-card p  { font-size: 0.9rem; color: var(--muted); line-height: 1.65; }

/* ── VIDEO ── */
.video-section {
  padding: var(--section) clamp(1.25rem, 5vw, 2.5rem);
  background: var(--bg);
  text-align: center;
}
.video-inner { max-width: 900px; margin: 0 auto; }
.video-inner h2 {
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  font-weight: 700; letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.video-sub {
  color: var(--muted); font-size: 1.05rem; margin-bottom: 2.5rem;
}
.video-wrapper {
  position: relative; width: 100%; padding-bottom: 56.25%;
  border-radius: var(--r); overflow: hidden;
  background: #000;
  box-shadow: 0 40px 80px rgba(0,0,0,0.7), 0 0 0 1px var(--border);
}
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }

/* ── METHODOLOGY ── */
.methodology {
  padding: var(--section) clamp(1.25rem, 5vw, 2.5rem);
  background-color: var(--bg);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.97)), url('images/hero-new-2.png');
  background-size: cover;
  background-position: center;
}
.method-inner { max-width: var(--max); margin: 0 auto; }
.method-inner h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -0.03em;
  margin-bottom: 2.5rem;
}
.method-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.method-list li {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 1rem; font-weight: 500;
  transition: color 0.2s;
}
.method-list li:first-child { border-top: 1px solid var(--border); }
.method-list li:hover { color: var(--orange); }
.check { color: var(--orange); font-size: 0.9rem; flex-shrink: 0; }
.method-ai { border-top: none !important; margin-top: 0.5rem; }
.method-ai .check { font-size: 1.4rem; }
.method-ai span:last-child { color: var(--orange); font-weight: 700; font-style: italic; }

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: var(--section) 0;
  background: var(--bg);
  overflow: hidden;
  text-align: center;
}
.testimonials-header {
  padding: 0 clamp(1.25rem, 5vw, 2.5rem);
  margin-bottom: 3rem;
}
.testimonials-section h2 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.1;
}

/* Desktop grid / Mobile carousel */
.testimonials-grid {
  display: flex; gap: 1.25rem;
  padding: 0 clamp(1.25rem, 5vw, 2.5rem); margin-bottom: 2.5rem;
  overflow-x: auto; scroll-snap-type: x mandatory;
  background: transparent; border: none; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.testimonials-grid::-webkit-scrollbar { display: none; }

.tcard {
  background: var(--bg);
  padding: 1.75rem 1.5rem;
  text-align: left;
  display: flex; flex-direction: column; gap: 0.875rem;
  width: 85vw; min-width: 320px; max-width: 400px; flex-shrink: 0;
  scroll-snap-align: center; border: 1px solid var(--border); border-radius: var(--r);
}
.tcard-quote { font-size: 2rem; line-height: 1; color: var(--orange); font-family: Georgia, serif; opacity: 0.5; }
.tcard p { font-size: 0.875rem; color: var(--muted); line-height: 1.7; flex: 1; }
.tcard-author { display: flex; align-items: center; gap: 0.7rem; margin-top: auto; padding-top: 0.5rem; border-top: 1px solid var(--border); }
.tcard-author div:last-child { display: flex; flex-direction: column; }
.tcard-author strong { font-size: 0.82rem; font-weight: 600; color: var(--white); }
.tcard-author span  { font-size: 0.72rem; color: var(--subtle); }
.avatar-photo { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 1.5px solid rgba(255,255,255,0.1); }

.testimonials-footer { font-size: 0.925rem; color: var(--subtle); }
.testimonials-footer strong { color: var(--white); font-weight: 600; }

/* ── HOW TO JOIN ── */
.how-section {
  padding: var(--section) clamp(1.25rem, 5vw, 2.5rem);
  background-color: var(--bg);
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.90), rgba(255, 255, 255, 0.98)), url('images/hero-new-2.png');
  background-size: cover; background-position: center;
}
.how-inner { max-width: 560px; margin: 0 auto; }
.how-section h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700; letter-spacing: -0.03em; line-height: 1.1;
  margin-bottom: 0.6rem;
}
.how-sub {
  font-family: var(--mono); font-size: 0.75rem;
  color: var(--subtle); margin-bottom: 3rem;
  letter-spacing: 0.06em;
}
.how-steps { display: flex; flex-direction: column; }
.how-step { display: flex; gap: 1.5rem; }

.step-indicator { display: flex; flex-direction: column; align-items: center; }
.step-num {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--orange); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 0.875rem;
  box-shadow: 0 0 0 5px rgba(252,115,66,0.1);
}
.step-line { width: 1px; flex: 1; min-height: 20px; background: var(--border); margin: 8px 0; }
.step-content { padding-bottom: 2.5rem; flex: 1; }
.how-step-last .step-content { padding-bottom: 0; }
.step-content h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 0.4rem; }
.step-content p  { font-size: 0.925rem; color: var(--muted); line-height: 1.65; margin-bottom: 0.75rem; }
.step-note { font-family: var(--mono); font-size: 0.7rem; color: var(--orange); letter-spacing: 0.05em; }
.step-note-time { color: var(--subtle); }
.step-note-check { color: #34d399; }

.skool-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 1rem 1.1rem; margin-top: 1rem;
}
.skool-header { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 0.8rem; }
.skool-header span { font-size: 0.8rem; font-weight: 600; color: var(--muted); }
.skool-features { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.skool-features li {
  font-size: 0.85rem; color: var(--muted);
  display: flex; align-items: center; gap: 0.4rem;
}
.skool-features li::before { content: '✓'; color: var(--orange); font-size: 0.75rem; flex-shrink: 0; }

/* ── PRICING ── */
.pricing-section {
  padding: var(--section) clamp(1.25rem, 5vw, 2.5rem);
  background-color: var(--bg);
  text-align: center;
}
.pricing-inner { max-width: 640px; margin: 0 auto; }
.pricing-section h2 {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700; letter-spacing: -0.03em; margin-bottom: 0.75rem;
}
.pricing-sub { color: var(--muted); font-size: 1rem; margin-bottom: 3rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; align-items: stretch; }

.pricing-card {
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2rem 1.75rem;
  text-align: left;
  position: relative;
  transition: border-color 0.25s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.pricing-card .btn-pricing,
.pricing-card .btn-pricing-featured { margin-top: auto; }
.pricing-card:hover { transform: translateY(-3px); }
.pricing-featured {
  border-color: rgba(252,115,66,0.4);
  background: rgba(252,115,66,0.04);
  box-shadow: 0 0 0 1px rgba(252,115,66,0.15), 0 32px 64px rgba(0,0,0,0.4);
}
.pricing-featured:hover { border-color: rgba(252,115,66,0.6); }
.pricing-badge {
  display: block; font-family: var(--mono);
  font-size: 0.6rem; letter-spacing: 0.12em;
  background: var(--orange); color: #fff;
  padding: 0.2rem 0.65rem; border-radius: 4px; margin-bottom: 1.25rem;
  width: fit-content; margin-left: auto; margin-right: auto;
  text-align: center;
}
.pricing-header { margin-bottom: 1.75rem; }
.pricing-header h3  { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.015em; margin-bottom: 0.6rem; }
.price-wrap { display: flex; align-items: baseline; gap: 0.2rem; }
.price-amount { font-size: 2.75rem; font-weight: 700; letter-spacing: -0.04em; }
.price-period { font-size: 0.9rem; color: var(--subtle); }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 2rem; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.65rem; font-size: 0.9rem; color: var(--muted); line-height: 1.5; }
.pcheck   { color: var(--subtle); flex-shrink: 0; font-size: 0.8rem; margin-top: 2px; }
.pcheck-o { color: var(--orange); }

.btn-pricing {
  display: block; width: 100%; text-align: center;
  font-weight: 700; font-size: 0.95rem; letter-spacing: -0.01em;
  padding: 0.875rem 1.5rem; border-radius: 980px;
  border: 1px solid var(--border);
  color: var(--white); background: transparent;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
}
.btn-pricing:hover { background: var(--border); border-color: var(--subtle); transform: translateY(-1px); }
.btn-pricing-featured {
  background: var(--orange); border-color: var(--orange); color: #fff;
  box-shadow: 0 4px 16px rgba(252,115,66,0.3);
}
.btn-pricing-featured:hover { background: var(--orange-h); border-color: var(--orange-h); box-shadow: 0 6px 24px rgba(252,115,66,0.5); }

/* ── CTA SECTION ── */
.cta-section {
  padding: var(--section) clamp(1.25rem, 5vw, 2.5rem);
  background: var(--bg-2);
  text-align: center;
}
.cta-inner { max-width: var(--max); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.cta-section h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; }
.cta-section p { font-size: 1rem; color: var(--muted); max-width: 440px; line-height: 1.75; }
.cta-note { font-family: var(--mono); font-size: 0.68rem; color: var(--subtle); letter-spacing: 0.06em; }

/* ── FOOTER ── */
.footer { background: var(--bg); border-top: 1px solid var(--border); }
.footer-inner { max-width: 1100px; margin: 0 auto; padding: 3.5rem clamp(1.25rem, 5vw, 2.5rem) 2rem; }
.footer-top {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
  padding-bottom: 2rem; border-bottom: 1px solid var(--border);
}
.footer-brand { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-logo-img { height: 17px; width: auto; }
.footer-tag { font-size: 0.82rem; color: var(--subtle); }
.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 0.65rem; }
.footer-col-label { font-family: var(--mono); font-size: 0.65rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--subtle); }
.footer-email { color: var(--orange); font-size: 0.875rem; font-weight: 600; transition: opacity 0.2s; }
.footer-email:hover { opacity: 0.7; }
.footer-social-icons { display: flex; gap: 0.75rem; align-items: center; }
.footer-social-icon { color: var(--orange); display: flex; align-items: center; transition: opacity 0.2s; }
.footer-social-icon:hover { opacity: 0.7; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 1.75rem; flex-wrap: wrap; gap: 1rem; }
.copyright { font-family: var(--mono); font-size: 0.68rem; color: var(--subtle); }
.footer-isotipo { width: 32px; height: 32px; color: var(--border); }
.footer-isotipo-img { width: 34px; height: 34px; object-fit: contain; opacity: 0.4; mix-blend-mode: screen; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section: 4rem; }

  /* iOS safe area */
  body { padding-bottom: env(safe-area-inset-bottom); }

  /* Nav */
  .nav { padding: 0 1.1rem; height: 52px; }
  .nav-cta { min-height: 44px; display: flex; align-items: center; }

  /* Hero */
  .hero { padding: 5.5rem 1.25rem 3.5rem; text-align: center; }
  .hero h1 { font-size: 8vw;letter-spacing: -0.05em; }
  .hero-sub { font-size: 1rem; }
  .hero-eyebrow { font-size: 0.65rem; }
  .hero-actions {
    flex-direction: column; gap: 0.75rem;
    align-items: stretch; width: 100%;
  }
  .hero-actions .btn-primary {
    width: 100%; padding: 0.65rem; font-size: 0.85rem;
    border-radius: 14px;
  }
  .btn-ghost { justify-content: center; font-size: 0.95rem; }
  .hero-proof { justify-content: center; font-size: 0.68rem; }
  .hero-corner-isotipo { display: none; }

  /* Pain strip */
  .pain-strip { padding: 0.75rem 1rem; }
  .pain-inner { gap: 0.6rem; }
  .pain-sep { display: inline; color: rgba(0,0,0,0.3); }
  .pain-item { font-size: 0.7rem; }

  /* Why */
  .why-section { padding: 3.5rem 1.25rem; }
  .why-section h2 { font-size: clamp(1.9rem, 7vw, 2.5rem); margin-bottom: 2rem; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-card { padding: 1.5rem 1.25rem; }
  .why-card h3 { font-size: 0.95rem; }
  .why-card p { font-size: 0.82rem; }
  .why-icon { width: 36px; height: 36px; margin-bottom: 0.9rem; }

  /* Video */
  .video-section { padding: 3.5rem 1.25rem; }
  .video-inner h2 { font-size: 1.5rem; }
  .video-sub { font-size: 0.9rem; }

  /* Methodology */
  .methodology { padding: 3.5rem 1.25rem; }
  .method-inner h2 { font-size: clamp(1.7rem, 6vw, 2.2rem); margin-bottom: 1.75rem; }
  .method-list li { font-size: 0.95rem; padding: 0.95rem 0; }

  /* Testimonials — swipeable carousel */
  .testimonials-section { padding-bottom: 2.5rem; }
  .testimonials-header { padding: 3.5rem 1.25rem 2rem; }
  .testimonials-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.875rem;
    padding: 0.5rem 1.25rem 1.5rem;
    background: transparent;
    border: none;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .tcard {
    scroll-snap-align: start;
    flex: 0 0 82vw;
    border: 1px solid var(--border);
    border-radius: var(--r);
    background: var(--bg-2);
  }
  .testimonials-footer { padding: 0 1.25rem; font-size: 0.85rem; }

  /* How to join */
  .how-section { padding: 3.5rem 1.25rem; }
  .how-inner { max-width: 100%; }
  .how-inner h2 { font-size: 1.75rem; }
  .how-sub { font-size: 0.9rem; }

  /* Pricing */
  .pricing-section { padding: 3.5rem 1.25rem; }
  .pricing-inner { max-width: 100%; padding: 0; }
  .pricing-grid { grid-template-columns: 1fr; gap: 1rem; }
  .pricing-card { padding: 1.75rem 1.5rem; }
  .pricing-section h2 { font-size: 1.75rem; }
  .price-amount { font-size: 2.75rem; }
  .btn-pricing, .btn-pricing-featured {
    padding: 0.9rem; font-size: 1rem;
    border-radius: 12px;
  }

  /* CTA */
  .cta-section { padding: 4rem 1.25rem; }
  .cta-section h2 { font-size: clamp(1.7rem, 7vw, 2.25rem); }
  .cta-section p { font-size: 0.95rem; }
  .btn-large { width: 100%; padding: 1rem; font-size: 1.05rem; border-radius: 14px; }

  /* Footer */
  .footer-inner { padding: 2.5rem 1.25rem 2rem; }
  .footer-top { flex-direction: column; gap: 1.75rem; align-items: center; text-align: center; }
  .footer-brand { align-items: center; }
  .footer-links { gap: 1.75rem; justify-content: center; }
  .footer-col { align-items: center; }
  .footer-social-icons { justify-content: center; }
  .footer-bottom { flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; }
}

@media (max-width: 420px) {
  .hero h1 { font-size: 8vw;}
  .logo-img { height: 18px; }
  .why-grid { grid-template-columns: 1fr; }
  .tcard { flex: 0 0 88vw; }
  .pricing-card { padding: 1.5rem 1.25rem; }
}
