﻿/* ===== RESET & VARIABLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* 줄바꿈 어색함 방지: heading은 양 줄 균형, p는 마지막 줄 orphan 방지 */
h1, h2, h3, h4, h5, h6 { text-wrap: balance; }
p, li, span { text-wrap: pretty; }

:root {
  --bg: #FFFBF5;
  --bg-warm: #FFF5EB;
  --bg-dark: #0a0a0a;
  --bg-dark-2: #111;
  --bg-card: #ffffff;

  --text: #1A1A2E;
  --text-mid: #3D3D56;
  --text-muted: #7C7C96;
  --text-light: #A8A8BE;

  --coral: #7C3AED;
  --coral-dark: #6D28D9;
  --coral-light: rgba(124, 58, 237, .08);
  --coral-glow: rgba(124, 58, 237, .25);
  --accent-pink: #EC4899;
  --accent-pink-dark: #DB2777;

  --navy: #1A1A2E;
  --mint: #10B981;
  --gold: #F59E0B;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-xl: 24px;

  --shadow: 0 4px 24px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.1);

  --section-pad: 140px 0;
  --section-pad-mobile: 80px 0;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== TYPOGRAPHY ===== */
.label {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--coral);
  margin-bottom: 1rem;
}
.label--light { color: rgba(255,255,255,.6); }

.heading {
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: var(--navy);
}
.heading--lg { font-size: clamp(2.2rem, 5vw, 3.4rem); margin-bottom: .8rem; }
.heading--md { font-size: clamp(1.6rem, 3.5vw, 2.2rem); margin-bottom: .8rem; }
.heading--light { color: #fff; }

.subtext {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 540px;
  margin-bottom: 3rem;
}
.subtext strong { color: var(--text); }
.subtext--light { color: rgba(255,255,255,.5); }
.subtext--light strong { color: #fff; }

/* center headings by default in sections */
.gap, .compare, .results, .testimonials, .pricing, .faq { text-align: center; }
.gap .subtext, .compare .subtext, .results .subtext,
.testimonials .subtext, .pricing .subtext, .faq .subtext,
.method__header .subtext { margin-left: auto; margin-right: auto; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: .9rem;
  font-family: inherit;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  padding: .7rem 1.6rem;
}

.btn--primary {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
}
.btn--primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--coral-glow);
}

.btn--outline {
  background: transparent;
  color: var(--coral);
  border-color: var(--coral);
}
.btn--outline:hover {
  background: var(--coral);
  color: #fff;
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255, 255, 255, .6);
  color: #1A1A2E;
  border-color: rgba(26, 26, 46, .15);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  background: #fff;
  border-color: var(--coral);
  color: var(--coral);
  transform: translateY(-2px);
}

.btn--nav {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
  padding: .45rem 1.2rem;
  font-size: .82rem;
  border-radius: 8px;
}
.btn--nav:hover { background: var(--coral-dark); border-color: var(--coral-dark); }

.btn--lg { padding: .9rem 2.4rem; font-size: 1rem; border-radius: var(--radius); }
.btn--full { width: 100%; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0;
  transition: all .4s;
}

.nav--scrolled {
  background: rgba(10, 10, 10, .85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
  transition: color .3s;
}
.nav--scrolled .nav__logo { color: #fff; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a:not(.btn) {
  font-size: .85rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color .2s;
}
.nav__links a:not(.btn):hover { color: var(--coral); }
.nav--scrolled .nav__links a:not(.btn) { color: rgba(255,255,255,.7); }
.nav--scrolled .nav__links a:not(.btn):hover { color: #fff; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 20px;
  position: relative;
}
.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text);
  position: absolute;
  left: 0;
  border-radius: 2px;
  transition: all .3s;
}
.nav--scrolled .nav__toggle span { background: #fff; }
.nav__toggle span:nth-child(1) { top: 0; }
.nav__toggle span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.nav__toggle span:nth-child(3) { bottom: 0; }
.nav__toggle.active span:nth-child(1) { top: 50%; transform: translateY(-50%) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { bottom: 50%; transform: translateY(50%) rotate(-45deg); }

/* ===== HERO, logo reveal video on top, text below ===== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  background: linear-gradient(135deg, #FFFBF5 0%, #FFF5EC 50%, #FFE9D6 100%);
  padding: 88px 0 4rem;
  gap: 2rem;
}

.hero__video-wrap {
  position: relative;
  width: 100%;
  max-width: none;
  height: 62vh;
  min-height: 360px;
  border-radius: 0;
  overflow: hidden;
  background: #fff;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.28);
}

.hero__overlay { display: none; }

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
}

.hero__tag {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--coral);
  border: 1px solid rgba(124, 58, 237, .3);
  padding: .4rem 1.2rem;
  border-radius: 30px;
  margin-bottom: 2rem;
}

.hero__title {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: 1.05;
  color: #1A1A2E;
  margin-bottom: 1.5rem;
}

.hero__accent {
  background: linear-gradient(90deg, var(--coral), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.15rem;
  color: rgba(26, 26, 46, .65);
  max-width: 540px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.hero__sub strong { color: #1A1A2E; }

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 880px) {
  .hero {
    min-height: auto;
    padding: 88px 20px 3rem;
    gap: 1.25rem;
  }
  .hero__video-wrap {
    height: 26vh;
    min-height: 170px;
    max-height: 220px;
    border-radius: 14px;
    width: calc(100% - 32px);
    margin: 0 auto;
  }
  .hero__video { transform: scale(1.3); }
  .hero__tag { margin-bottom: 1rem; }
  .hero__title { margin-bottom: 1rem; }
  .hero__sub { margin-bottom: 1.5rem; font-size: 1rem; }
}

/* ===== STATS BAR ===== */
.stats {
  background: var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.stats__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 3rem 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.stats__item {
  text-align: center;
}

.stats__number {
  font-size: 3rem;
  font-weight: 900;
  letter-spacing: -.04em;
  color: #fff;
  line-height: 1;
}

.stats__suffix {
  font-size: 2rem;
  font-weight: 900;
  color: var(--coral);
}

.stats__label {
  display: block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
  margin-top: .4rem;
}

.stats__divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,.1);
}

/* ===== THE GAP ===== */
.gap {
  padding: var(--section-pad);
}

.gap__content { margin-bottom: 3rem; }

.gap__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: left;
}

.gap__card {
  background: var(--bg-card);
  border: 1px solid rgba(26,26,46,.06);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: all .3s;
}

.gap__card:hover {
  border-color: var(--coral);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.gap__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--coral-light);
  color: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
}

.gap__card p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.gap__bottom {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.gap__bottom strong { color: var(--coral); }

/* ===== METHOD (dark section with video bg) ===== */
.method {
  position: relative;
  padding: var(--section-pad);
  overflow: hidden;
}

.method__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.method__video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #0a0a0a 0%, #1a1a2e 50%, #151520 100%);
}

.method__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.6);
}

.method .container {
  position: relative;
  z-index: 1;
}

.method__header {
  text-align: center;
  margin-bottom: 3rem;
}

/* ===== TABS ===== */
.tabs__nav {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tabs__btn {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5);
  padding: .7rem 1.5rem;
  border-radius: 30px;
  font-size: .85rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all .3s;
}

.tabs__btn:hover {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
}

.tabs__btn--active {
  background: var(--coral);
  border-color: var(--coral);
  color: #fff;
}

.tabs__panel { display: none; }
.tabs__panel--active { display: block; animation: fadeUp .4s ease; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.tabs__panel-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.tabs__panel-inner .tabs__text {
  flex: 0 1 400px;
}

.tabs__panel-inner .tabs__visual {
  flex: 0 0 auto;
}

.tabs__text h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: .8rem;
}

.tabs__text p {
  color: rgba(255,255,255,.55);
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.tabs__features {
  list-style: none;
}
.tabs__features li {
  padding: .4rem 0;
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  padding-left: 1.4rem;
  position: relative;
}
.tabs__features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--coral);
  font-weight: 700;
}

/* Tab visuals */
.tabs__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tabs__stat-ring {
  position: relative;
  width: 180px;
  height: 180px;
}
.tabs__stat-ring svg { width: 100%; height: 100%; }
.tabs__stat-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tabs__stat-num { font-size: 2rem; font-weight: 900; color: #fff; }
.tabs__stat-label { font-size: .7rem; color: rgba(255,255,255,.4); text-transform: uppercase; letter-spacing: .08em; }

.tabs__roadmap {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  width: 100%;
}
.tabs__phase {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: all .3s;
}
.tabs__phase--active {
  background: rgba(255, 107, 53, .12);
  border-color: rgba(255, 107, 53, .3);
}
.tabs__phase-num {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--coral);
  letter-spacing: .06em;
  min-width: 60px;
}
.tabs__phase-name {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex: 1;
}
.tabs__phase-desc {
  font-size: .8rem;
  color: rgba(255,255,255,.35);
}

.tabs__brain {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.tabs__brain-box {
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius-sm);
  text-align: center;
}
.tabs__brain-box span {
  display: block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .5rem;
}
.tabs__brain-box code {
  font-size: 1.1rem;
  font-weight: 700;
  font-family: inherit;
}
.tabs__brain-box--en {
  background: rgba(59,130,246,.12);
  border: 1px solid rgba(59,130,246,.25);
  color: #93c5fd;
}
.tabs__brain-box--en span { color: #60a5fa; }
.tabs__brain-box--kr {
  background: rgba(255, 107, 53, .12);
  border: 1px solid rgba(255, 107, 53, .25);
  color: #FFB088;
}
.tabs__brain-box--kr span { color: var(--coral); }
.tabs__brain-arrow {
  font-size: 1.5rem;
  color: rgba(255,255,255,.3);
}

.tabs__checklist {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  width: 100%;
}
.tabs__check {
  padding: .7rem 1rem;
  border-radius: 8px;
  font-size: .9rem;
  background: rgba(255,255,255,.03);
  color: rgba(255,255,255,.35);
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: line-through;
}
.tabs__check--yes {
  background: rgba(255, 107, 53, .08);
  color: rgba(255,255,255,.8);
  text-decoration: none;
}
.tabs__check-x { color: #666; font-size: 1.1rem; }
.tabs__check-ok { color: var(--coral); font-size: 1.1rem; font-weight: 700; }

/* ===== COMPARISON ===== */
.compare {
  padding: var(--section-pad);
  background: var(--bg);
}

.compare__table-wrap {
  overflow-x: auto;
  margin: 0 auto;
  max-width: 800px;
}

.compare__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: .85rem;
  text-align: left;
}

.compare__table thead th {
  padding: 1rem 1.2rem;
  font-weight: 700;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-muted);
  border-bottom: 2px solid rgba(26,26,46,.06);
}

.compare__table thead th.compare__hl {
  color: var(--coral);
  background: var(--coral-light);
  border-radius: var(--radius) var(--radius) 0 0;
}

.compare__table tbody td {
  padding: .85rem 1.2rem;
  border-bottom: 1px solid rgba(26,26,46,.04);
  color: var(--text-muted);
  line-height: 1.5;
}

.compare__table tbody td.compare__hl {
  background: var(--coral-light);
  color: var(--navy);
  font-weight: 600;
}

.compare__table tbody tr:last-child td.compare__hl {
  border-radius: 0 0 var(--radius) var(--radius);
}

.compare__label {
  font-weight: 600;
  color: var(--navy) !important;
  white-space: nowrap;
}

/* ===== RESULTS ===== */
.results {
  padding: var(--section-pad);
  background: var(--bg-warm);
}

.results__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 760px;
  margin: 0 auto;
}

.results__card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid rgba(26,26,46,.06);
  box-shadow: var(--shadow);
  transition: all .3s;
  text-align: left;
}
.results__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.results__video { position: relative; }

.results__placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #1a1a2e, #2d1f3d);
  display: flex;
  align-items: center;
  justify-content: center;
}

.results__play {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #fff;
  transition: all .3s;
  cursor: pointer;
}
.results__play:hover {
  background: var(--coral);
  border-color: var(--coral);
  transform: scale(1.1);
}

.results__badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: .68rem;
  font-weight: 700;
  color: #fff;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  padding: .3rem .7rem;
  border-radius: 6px;
  letter-spacing: .02em;
}

.results__info {
  padding: 1.4rem 1.5rem;
}
.results__info strong { font-size: 1.05rem; color: var(--navy); }
.results__flag { font-size: .8rem; color: var(--text-muted); margin-left: .4rem; }
.results__info p { font-size: .85rem; color: var(--text-muted); margin-top: .3rem; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: var(--section-pad);
}

.testimonials__swiper {
  max-width: 900px;
  margin: 0 auto;
  overflow: visible;
  padding-bottom: 3rem;
}

.testi__card {
  background: var(--bg-card);
  border: 1px solid rgba(26,26,46,.06);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  position: relative;
  text-align: left;
}

.testi__card::before {
  content: '\201C';
  font-size: 4.5rem;
  font-weight: 800;
  color: var(--coral-light);
  position: absolute;
  top: 6px;
  left: 18px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testi__stars {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: 3px;
  margin-bottom: 1rem;
}

.testi__text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-mid);
  position: relative;
}

.testi__author {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.testi__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
}
.testi__avatar--1 { background: var(--coral); }
.testi__avatar--2 { background: var(--gold); }
.testi__avatar--3 { background: var(--mint); }

.testi__author strong { font-size: .9rem; color: var(--navy); }
.testi__author span { color: var(--text-light); font-size: .8rem; margin-left: .3rem; }

.swiper-pagination { bottom: 0 !important; }
.swiper-pagination-bullet { background: var(--text-light); opacity: .3; width: 8px; height: 8px; }
.swiper-pagination-bullet-active { background: var(--coral); opacity: 1; width: 24px; border-radius: 4px; }

/* ===== PRICING ===== */
.pricing {
  padding: var(--section-pad);
  background: var(--bg-warm);
}

.pricing__phase {
  font-size: .88rem;
  color: var(--text-mid);
  background: var(--bg-card);
  border: 1px solid rgba(26,26,46,.06);
  border-radius: var(--radius);
  padding: .8rem 1.5rem;
  max-width: 480px;
  margin: -1rem auto 3rem;
  box-shadow: 0 2px 8px rgba(0,0,0,.03);
}
.pricing__phase strong { color: var(--coral); }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.pricing__card {
  background: var(--bg-card);
  border: 1px solid rgba(26,26,46,.06);
  border-radius: var(--radius-xl);
  padding: 2.5rem 1.8rem;
  text-align: center;
  position: relative;
  transition: all .3s;
  display: flex;
  flex-direction: column;
}

.pricing__card > .btn {
  margin-top: auto;
}
.pricing__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing__card--pop {
  border: 2px solid var(--coral);
  box-shadow: 0 8px 40px rgba(255, 107, 53, .1);
  transform: scale(1.04);
}
.pricing__card--pop:hover {
  transform: scale(1.04) translateY(-4px);
}

.pricing__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .3rem 1.2rem;
  border-radius: 20px;
  white-space: nowrap;
}
.pricing__badge--value { background: var(--mint); }

.pricing__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: .5rem;
}

.pricing__price {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--navy);
  margin-bottom: .1rem;
  line-height: 1;
}

.pricing__prices {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .15rem;
  margin-bottom: .9rem;
}
.pricing__prices .pricing__price { margin-bottom: 0; }
.pricing__price-row {
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.pricing__price-row--alt {
  opacity: .55;
}
.pricing__price-alt {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-mid);
  letter-spacing: -.02em;
}
.pricing__price-tag {
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--text-light);
  padding: .15rem .45rem;
  border: 1px solid rgba(26,26,46,.12);
  border-radius: 6px;
  background: var(--bg-warm);
}
.pricing__price-row .pricing__price ~ .pricing__price-tag {
  color: #163300;
  background: #E8F8DA;
  border-color: #C7E6A8;
}

.pricing__ctas {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.pricing__after-pay {
  font-size: .72rem;
  color: var(--text-light);
  text-align: center;
  margin-top: .7rem;
  line-height: 1.4;
}
.pricing__after-pay a {
  color: var(--coral);
  font-weight: 600;
  text-decoration: underline;
}

.pricing__detail {
  font-size: .8rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.pricing__save { color: var(--mint); font-weight: 700; }

.pricing__timeline {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  margin-bottom: 1.2rem;
  padding: .5rem .8rem;
  background: var(--bg-warm);
  border-radius: 8px;
  font-size: .75rem;
  color: var(--text-muted);
}

.pricing__features {
  list-style: none;
  text-align: left;
  margin-bottom: 1.8rem;
}
.pricing__features li {
  font-size: .85rem;
  padding: .4rem 0;
  color: var(--text-mid);
  padding-left: 1.4rem;
  position: relative;
}
.pricing__features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 700;
}

.pricing__methods {
  text-align: center;
  margin-top: 2.5rem;
}
.pricing__note--small {
  font-size: .8rem;
  margin-top: 1rem;
  max-width: 560px;
  line-height: 1.7;
  color: var(--text-muted);
}
.pricing__note--small strong { color: var(--text); font-weight: 700; }
.pricing__note--small a { color: var(--coral); font-weight: 600; text-decoration: underline; }
.pricing__note {
  color: var(--text-light);
  font-size: .8rem;
}

.pricing__logos {
  display: flex;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
  margin-top: .8rem;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  padding: .4rem 1rem;
  border-radius: 8px;
  font-size: .78rem;
  font-weight: 600;
  border: 1px solid rgba(26,26,46,.08);
  background: var(--bg-card);
}
.pay-badge--paypal { color: #003087; }
.pay-badge--wise { color: #9FE870; background: #163300; border-color: #163300; }
.pay-badge--card { color: var(--text-muted); }

/* ===== ABOUT ===== */
.about {
  padding: var(--section-pad);
}

.about__inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 800px;
  margin: 0 auto;
}

.about__photo { flex-shrink: 0; }

.about__img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--coral-light);
  box-shadow: var(--shadow-lg);
}

.about__text { text-align: left; }
.about__text .heading { color: var(--navy); }
.about__text p {
  color: var(--text-muted);
  margin-bottom: .8rem;
  line-height: 1.8;
  font-size: .95rem;
  text-wrap: pretty;
}
.about__text strong { color: var(--text); }

/* ===== FAQ ===== */
.faq {
  padding: var(--section-pad);
  background: var(--bg-warm);
}

.faq__list {
  max-width: 660px;
  margin: 2rem auto 0;
  text-align: left;
}

.faq__item {
  border: 1px solid rgba(26,26,46,.06);
  border-radius: var(--radius);
  margin-bottom: .6rem;
  background: var(--bg-card);
  overflow: hidden;
  transition: all .2s;
}

.faq__item[open] {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px var(--coral-light);
}

.faq__item summary {
  padding: 1.1rem 1.4rem;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--navy);
}
.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--text-light);
  transition: transform .25s;
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq__item[open] summary::after { transform: rotate(45deg); color: var(--coral); }

.faq__item p {
  padding: 0 1.4rem 1.2rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-size: .9rem;
}

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: var(--section-pad);
  text-align: center;
  overflow: hidden;
}

.cta__video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta__video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #1a1a2e 0%, #2d1f3d 50%, #0a0a0a 100%);
  background-size: 300% 300%;
  animation: heroGradient 10s ease infinite;
}

.cta__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.55);
}

.cta__content {
  position: relative;
  z-index: 1;
}

.cta h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.03em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: .8rem;
}

.cta p {
  color: rgba(255,255,255,.55);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.cta__note {
  display: block;
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  margin-top: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  padding: 2.5rem 0;
  border-top: 1px solid rgba(26,26,46,.06);
  background: var(--bg);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.footer__logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--navy);
}

.footer__brand p {
  font-size: .75rem;
  color: var(--text-light);
  margin-top: .2rem;
}

.footer__links {
  display: flex;
  gap: 1.5rem;
}
.footer__links a {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 500;
  transition: color .2s;
}
.footer__links a:hover { color: var(--coral); }

.footer__copy {
  font-size: .7rem;
  color: var(--text-light);
  text-align: center;
}

/* ===== GSAP reveal defaults ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  :root { --section-pad: 80px 0; }

  .nav__toggle { display: none !important; }
  .nav__links { gap: 1rem; }
  .nav__links li:nth-child(1),
  .nav__links li:nth-child(2) { display: none; }
  .btn--nav { padding: .5rem 1rem; font-size: .8rem; }

  .hero__title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero__scroll-hint { display: none; }

  .stats__inner { flex-wrap: wrap; gap: 1.5rem; }
  .stats__divider { display: none; }
  .stats__number { font-size: 2.2rem; }

  .gap__grid { grid-template-columns: 1fr; }

  .tabs__btn { font-size: .78rem; padding: .5rem 1rem; }
  .tabs__panel-inner { flex-direction: column; gap: 2rem; }
  .tabs__panel-inner .tabs__text { flex: 0 0 auto; }
  .tabs__visual { order: -1; }
  .tabs__brain { flex-direction: column; }

  .compare__table { font-size: .78rem; min-width: 580px; }

  .results__grid { grid-template-columns: 1fr; max-width: 400px; }

  .pricing__grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .pricing__card--pop { transform: none; }
  .pricing__card--pop:hover { transform: translateY(-4px); }

  .about__inner { flex-direction: column; text-align: center; }
  .about__img { width: 140px; height: 140px; }
  .about__text { text-align: center; }

  .footer__inner { flex-direction: column; gap: 1rem; text-align: center; }
}

@media (max-width: 480px) {
  .hero__cta { flex-direction: column; align-items: center; }
  .hero__cta .btn { width: 100%; max-width: 280px; }
  .stats__item { min-width: 40%; }
  .pricing__guarantee { padding: 1.5rem 1.25rem; }
  .pricing__guarantee p { font-size: 1rem; }
}

/* ===== RESULT GUARANTEE ===== */
.hero__guarantee {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.75rem;
  padding: .55rem 1.1rem;
  background: rgba(124, 58, 237, .08);
  border: 1px solid rgba(124, 58, 237, .22);
  border-radius: 999px;
  font-size: .85rem;
  font-weight: 600;
  color: var(--coral);
}
.hero__guarantee-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--coral);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
}

.pricing__guarantee {
  max-width: 720px;
  margin: 0 auto 3.5rem;
  padding: 2.25rem 2.5rem;
  background: linear-gradient(135deg, rgba(124, 58, 237, .06), rgba(236, 72, 153, .06));
  border: 1px solid rgba(124, 58, 237, .2);
  border-radius: var(--radius);
  text-align: center;
}
.pricing__guarantee-badge {
  display: inline-block;
  padding: .35rem 1rem;
  background: linear-gradient(90deg, var(--coral), var(--accent-pink));
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  border-radius: 999px;
  margin-bottom: 1rem;
}
.pricing__guarantee p {
  font-size: 1.15rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.55;
  margin-bottom: .75rem;
}
.pricing__guarantee p strong {
  background: linear-gradient(90deg, var(--coral), var(--accent-pink));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}
.pricing__guarantee-note {
  display: block;
  font-size: .85rem;
  color: var(--text-muted);
  font-style: italic;
}
