/* ===== RESET & BASE — Warm Light ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Warm light palette */
  --bg: #FFFBF5;
  --bg-warm: #FFF5EB;
  --bg-card: #ffffff;
  --bg-subtle: #FEF7F0;

  --text: #1A1A2E;
  --text-mid: #3D3D56;
  --text-muted: #7C7C96;
  --text-light: #A8A8BE;

  --coral: #FF6B35;
  --coral-dark: #E85A28;
  --coral-light: rgba(255, 107, 53, .1);
  --coral-glow: rgba(255, 107, 53, .2);

  --navy: #1A1A2E;
  --navy-light: #2D2D48;

  --mint: #10B981;
  --mint-light: rgba(16, 185, 129, .1);
  --gold: #F59E0B;
  --gold-light: rgba(245, 158, 11, .1);
  --blue: #3B82F6;
  --blue-light: rgba(59, 130, 246, .1);
  --rose: #F43F5E;
  --rose-light: rgba(244, 63, 94, .08);

  --radius: 16px;
  --radius-sm: 10px;
  --radius-xl: 24px;
  --shadow-sm: 0 2px 8px rgba(26, 26, 46, .04);
  --shadow: 0 4px 16px rgba(26, 26, 46, .06), 0 1px 4px rgba(26, 26, 46, .04);
  --shadow-lg: 0 8px 32px rgba(26, 26, 46, .08), 0 2px 8px rgba(26, 26, 46, .04);
  --shadow-warm: 0 8px 32px rgba(255, 107, 53, .08);
}

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; }

/* ===== SECTION TITLES ===== */
.section-label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--coral);
  background: var(--coral-light);
  padding: .35rem .9rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: .6rem;
  letter-spacing: -.03em;
  line-height: 1.2;
  color: var(--navy);
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 3.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .25s;
  font-size: .95rem;
  padding: .65rem 1.5rem;
  font-family: inherit;
}

.btn--primary {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
  box-shadow: 0 4px 14px var(--coral-glow);
}
.btn--primary:hover {
  background: var(--coral-dark);
  border-color: var(--coral-dark);
  box-shadow: 0 6px 24px rgba(255, 107, 53, .3);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--coral);
  border-color: var(--coral);
}
.btn--outline:hover {
  background: var(--coral-light);
}

.btn--white {
  background: var(--bg-card);
  color: var(--text);
  border-color: #E8DDD4;
  box-shadow: var(--shadow-sm);
}
.btn--white:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  border-color: var(--coral);
}

.btn--sm { padding: .45rem 1rem; font-size: .85rem; }
.btn--lg { padding: .85rem 2.2rem; font-size: 1.05rem; border-radius: var(--radius); }
.btn--full { width: 100%; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 251, 245, .88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(26, 26, 46, .06);
  transition: box-shadow .3s;
}
.nav--scrolled { box-shadow: 0 2px 16px rgba(26, 26, 46, .06); }

.nav__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav__logo {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--navy);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a:not(.btn) {
  font-size: .88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color .2s;
}
.nav__links a:not(.btn):hover { color: var(--coral); }

.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(--navy);
  position: absolute;
  left: 0;
  border-radius: 2px;
  transition: all .3s;
}
.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 ===== */
.hero {
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFF0E2 0%, var(--bg) 70%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 53, .08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, .06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__tag {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--coral);
  background: var(--coral-light);
  padding: .4rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: 4rem;
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.08;
  margin-bottom: 1.4rem;
  color: var(--navy);
}

.hero__title .line2 {
  background: linear-gradient(135deg, var(--coral), #FF8F65);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero__sub strong { color: var(--text); }

.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

/* Hero Photo */
.hero__photo-wrapper {
  max-width: 700px;
  margin: 0 auto 4rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(26, 26, 46, .06);
}

.hero__photo {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  display: block;
}

/* Hero Cards */
.hero__cards {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.hero-card {
  background: var(--bg-card);
  border: 1px solid rgba(26, 26, 46, .06);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 220px;
}

.hero-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.hero-card__icon--coral { background: var(--coral-light); color: var(--coral); }
.hero-card__icon--gold { background: var(--gold-light); color: var(--gold); }
.hero-card__icon--mint { background: var(--mint-light); color: var(--mint); }

.hero-card__icon svg,
.problem__icon svg,
.diff__icon svg {
  width: 22px;
  height: 22px;
}

.hero-card__text { text-align: left; }
.hero-card__number {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.02em;
  line-height: 1.2;
}
.hero-card__label {
  font-size: .78rem;
  color: var(--text-light);
  font-weight: 500;
}

/* ===== THE GAP ===== */
.gap {
  padding: 100px 0;
}

.gap__inner {
  max-width: 760px;
  margin: 0 auto;
}

.gap__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
}

.gap__card {
  background: var(--bg-card);
  border: 1px solid rgba(26, 26, 46, .06);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  transition: all .25s;
}

.gap__card:hover {
  border-color: var(--coral);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.gap__card svg {
  width: 20px;
  height: 20px;
  color: var(--coral);
  flex-shrink: 0;
  margin-top: 2px;
}

.gap__card p {
  font-size: .9rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.gap__bottom {
  text-align: center;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.gap__bottom strong {
  color: var(--coral);
}

@media (max-width: 768px) {
  .gap__grid { grid-template-columns: 1fr; }
}

/* ===== PROBLEM ===== */
.problem {
  padding: 100px 0;
}

.problem__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 760px;
  margin: 0 auto;
}

.problem__card {
  background: var(--bg-card);
  border: 1px solid rgba(26, 26, 46, .06);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.5rem 1.2rem;
  display: flex;
  gap: .8rem;
  align-items: flex-start;
  transition: all .25s;
}

.problem__card:hover {
  border-color: var(--rose);
  background: var(--rose-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.problem__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--rose-light);
  color: var(--rose);
  display: flex;
  align-items: center;
  justify-content: center;
}

.problem__card p {
  font-size: .92rem;
  color: var(--text-mid);
  font-style: italic;
  line-height: 1.6;
}

/* ===== HOW / CORE SYSTEM ===== */
.how {
  padding: 100px 0;
  background: var(--bg-warm);
}

.core__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.core__card {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all .3s;
  border: 1px solid rgba(26, 26, 46, .04);
}

.core__card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}

.core__card:nth-child(1)::before { background: linear-gradient(90deg, var(--coral), #FF8F65); }
.core__card:nth-child(2)::before { background: linear-gradient(90deg, var(--gold), #FBBF24); }
.core__card:nth-child(3)::before { background: linear-gradient(90deg, var(--mint), #34D399); }

.core__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.core__badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: .3rem .8rem;
  border-radius: 20px;
  margin-bottom: .8rem;
}

.core__card:nth-child(1) .core__badge { background: var(--coral-light); color: var(--coral); }
.core__card:nth-child(2) .core__badge { background: var(--gold-light); color: var(--gold); }
.core__card:nth-child(3) .core__badge { background: var(--mint-light); color: var(--mint); }

.core__label {
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  letter-spacing: -.02em;
  color: var(--navy);
}

.core__example { margin-bottom: 1rem; }

.kr {
  display: block;
  font-family: 'Noto Sans KR', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .25rem;
}

.en {
  display: block;
  font-size: .82rem;
  color: var(--text-light);
}

.core__desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Sentence Set */
.sentence-set {
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid rgba(26, 26, 46, .04);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.sentence-set__badge {
  display: inline-block;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--coral);
  background: var(--coral-light);
  padding: .3rem .8rem;
  border-radius: 20px;
  margin-bottom: .8rem;
}

.sentence-set h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: .5rem;
  letter-spacing: -.02em;
  color: var(--navy);
}

.sentence-set > p {
  color: var(--text-muted);
  margin-bottom: 1.8rem;
  font-size: .92rem;
}

.sentence-set__demo {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.ss__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  font-family: 'Noto Sans KR', 'Inter', sans-serif;
  font-size: .92rem;
  font-weight: 600;
  transition: transform .15s;
}

.ss__item:hover { transform: translateX(4px); }

.ss__pos { background: #ECFDF5; color: #065F46; border-left: 3px solid #059669; }
.ss__neg { background: #FEF2F2; color: #991B1B; border-left: 3px solid #DC2626; }
.ss__que { background: #EFF6FF; color: #1E40AF; border-left: 3px solid #2563EB; }
.ss__ans { background: #FFF7ED; color: #92400E; border-left: 3px solid var(--coral); }

.ss__item span {
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  opacity: .5;
}

/* ===== HOOK (First Lesson) ===== */
.hook {
  padding: 100px 0;
  background: var(--bg-warm);
}

.hook__grid {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hook__item {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  background: var(--bg-card);
  border: 1px solid rgba(26, 26, 46, .06);
  border-radius: var(--radius);
  padding: 1.5rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: all .25s;
}

.hook__item:hover {
  box-shadow: var(--shadow);
  transform: translateX(4px);
  border-color: var(--coral);
}

.hook__number {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--coral), #FF8F65);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
}

.hook__text strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: .3rem;
}

.hook__text p {
  font-size: .9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===== COMPARISON TABLE ===== */
.compare {
  padding: 100px 0;
}

.compare__table-wrap {
  overflow-x: auto;
  margin: 0 -12px;
  padding: 0 12px;
}

.compare__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-size: .88rem;
  min-width: 640px;
}

.compare__table thead th {
  padding: 1rem 1.2rem;
  font-weight: 700;
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  border-bottom: 2px solid rgba(26, 26, 46, .06);
  text-align: left;
}

.compare__table thead th.compare__highlight {
  color: var(--coral);
  background: var(--coral-light);
  border-radius: var(--radius) var(--radius) 0 0;
}

.compare__table tbody td {
  padding: .9rem 1.2rem;
  border-bottom: 1px solid rgba(26, 26, 46, .04);
  color: var(--text-mid);
  vertical-align: top;
  line-height: 1.5;
}

.compare__table tbody td.compare__highlight {
  background: var(--coral-light);
  color: var(--navy);
  font-weight: 600;
}

.compare__table tbody tr:last-child td {
  border-bottom: none;
}

.compare__table tbody tr:last-child td.compare__highlight {
  border-radius: 0 0 var(--radius) var(--radius);
}

.compare__label {
  font-weight: 600;
  color: var(--navy) !important;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .compare__table { font-size: .8rem; }
  .compare__table thead th,
  .compare__table tbody td { padding: .7rem .8rem; }
  .hook__item { padding: 1.2rem; }
}

/* ===== DIFFERENCE ===== */
.difference {
  padding: 100px 0;
}

.diff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.diff__card {
  padding: 2rem 1.5rem;
  border-radius: var(--radius);
  background: var(--bg-card);
  border: 1px solid rgba(26, 26, 46, .06);
  transition: all .25s;
  position: relative;
  overflow: hidden;
}

.diff__card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform .3s;
}

.diff__card:hover {
  border-color: var(--coral);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.diff__card:hover::after { transform: scaleX(1); }

.diff__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--coral-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

.diff__card:nth-child(2) .diff__icon { background: var(--gold-light); }
.diff__card:nth-child(3) .diff__icon { background: var(--blue-light); }
.diff__card:nth-child(4) .diff__icon { background: var(--mint-light); }
.diff__card:nth-child(5) .diff__icon { background: var(--rose-light); }
.diff__card:nth-child(6) .diff__icon { background: rgba(245, 158, 11, .1); }

.diff__card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: var(--navy);
}
.diff__card p { font-size: .88rem; color: var(--text-muted); line-height: 1.65; }

/* ===== RESULTS ===== */
.results {
  padding: 100px 0;
  background: var(--bg-warm);
}

.results__grid {
  display: grid;
  grid-template-columns: repeat(2, 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;
}

.results__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.results__placeholder {
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #FFF0E2, #FFE4CC);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  position: relative;
  border-bottom: 1px solid rgba(26, 26, 46, .04);
}

.results__placeholder::after {
  content: '▶';
  width: 48px;
  height: 48px;
  background: rgba(255,255,255,.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--coral);
  box-shadow: var(--shadow);
  position: absolute;
}

.results__placeholder span {
  position: absolute;
  bottom: 12px;
  font-size: .72rem;
  color: var(--coral);
  font-weight: 600;
  background: rgba(255,255,255,.85);
  padding: .25rem .6rem;
  border-radius: 6px;
}

.results__info {
  padding: 1.4rem 1.5rem;
}
.results__info strong { font-size: 1rem; color: var(--navy); }
.results__info p { font-size: .85rem; color: var(--text-muted); margin-top: .3rem; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial__card {
  background: var(--bg-card);
  border: 1px solid rgba(26, 26, 46, .06);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
  transition: all .3s;
}

.testimonial__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.testimonial__card::before {
  content: '\201C';
  font-size: 4rem;
  font-weight: 800;
  color: var(--coral-light);
  position: absolute;
  top: 8px;
  left: 18px;
  line-height: 1;
  font-family: Georgia, serif;
}

.testimonial__stars {
  color: var(--gold);
  font-size: .85rem;
  letter-spacing: 2px;
  margin-bottom: .8rem;
}

.testimonial__text {
  font-size: .95rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--text-mid);
  position: relative;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: .6rem;
}

.testimonial__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
}

.testimonial__card:nth-child(1) .testimonial__avatar { background: var(--coral); }
.testimonial__card:nth-child(2) .testimonial__avatar { background: var(--gold); }
.testimonial__card:nth-child(3) .testimonial__avatar { background: var(--mint); }

.testimonial__author strong { font-size: .88rem; color: var(--navy); }
.testimonial__author span { color: var(--text-light); font-size: .82rem; }

/* ===== PRICING ===== */
.pricing {
  padding: 100px 0;
  background: var(--bg-warm);
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

.pricing__badge--limited {
  background: linear-gradient(135deg, var(--rose), #FB7185) !important;
}

.pricing__card {
  background: var(--bg-card);
  border: 1px solid rgba(26, 26, 46, .06);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: all .3s;
}

.pricing__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.pricing__card--pop {
  border: 2px solid var(--coral);
  box-shadow: var(--shadow-warm);
  transform: scale(1.04);
}

.pricing__card--pop:hover {
  transform: scale(1.04) translateY(-3px);
  box-shadow: 0 0 40px rgba(255, 107, 53, .12), var(--shadow-lg);
}

.pricing__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--coral), #FF8F65);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: .35rem 1.2rem;
  border-radius: 20px;
  letter-spacing: .03em;
  white-space: nowrap;
}

.pricing__name {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .6rem;
  color: var(--text-muted);
}

.pricing__price {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: .1rem;
  color: var(--navy);
}

.pricing__detail {
  font-size: .82rem;
  color: var(--text-light);
  margin-bottom: 1.8rem;
}

.pricing__features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.pricing__features li {
  font-size: .88rem;
  padding: .45rem 0;
  color: var(--text-mid);
  position: relative;
  padding-left: 1.6rem;
}

.pricing__features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--mint);
  font-weight: 700;
  font-size: .9rem;
}

.pricing__methods {
  text-align: center;
  margin-top: 2.5rem;
}

.pricing__logos {
  display: flex;
  justify-content: center;
  gap: .8rem;
  flex-wrap: wrap;
  margin: .8rem 0;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  padding: .4rem 1rem;
  border-radius: 8px;
  font-size: .8rem;
  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); }

.pricing__note {
  text-align: center;
  color: var(--text-light);
  font-size: .82rem;
  margin-top: .5rem;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
}

.about__inner {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  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 rgba(255, 107, 53, .15);
  box-shadow: var(--shadow-lg);
}

.about__text h2 {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 1rem;
  letter-spacing: -.02em;
  color: var(--navy);
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: .8rem;
  line-height: 1.8;
  font-size: .95rem;
}

.about__text strong { color: var(--text); }

/* ===== FAQ ===== */
.faq {
  padding: 100px 0;
  background: var(--bg-warm);
}

.faq__list {
  max-width: 660px;
  margin: 2rem auto 0;
}

.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 / BOOKING ===== */
.cta {
  padding: 100px 0;
  text-align: center;
  background: linear-gradient(160deg, #FFF0E2 0%, #FFE4CC 50%, #FFF5EB 100%);
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -25%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 107, 53, .06) 0%, transparent 70%);
  border-radius: 50%;
}

.cta h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: .6rem;
  letter-spacing: -.03em;
  color: var(--navy);
  position: relative;
}

.cta > .container > p {
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
  position: relative;
}

.cta__form {
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  position: relative;
}

.cta__form input,
.cta__form select,
.cta__form textarea {
  width: 100%;
  padding: .85rem 1.1rem;
  border: 1px solid #E8DDD4;
  border-radius: var(--radius-sm);
  font-size: .92rem;
  font-family: inherit;
  background: var(--bg-card);
  color: var(--text);
  transition: all .2s;
  box-shadow: var(--shadow-sm);
}

.cta__form input:focus,
.cta__form select:focus,
.cta__form textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px var(--coral-light);
}

.cta__form textarea { resize: vertical; }

.cta__note {
  font-size: .78rem;
  color: var(--text-light);
  margin-top: .8rem;
  position: relative;
}

/* ===== 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: .78rem;
  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: .72rem;
  color: var(--text-light);
  text-align: center;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .nav__toggle { display: block; }
  .nav__links {
    position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
    background: rgba(255, 251, 245, .98); backdrop-filter: blur(16px);
    flex-direction: column; align-items: center; justify-content: center;
    gap: 2.5rem; opacity: 0; pointer-events: none; transition: opacity .3s;
  }
  .nav__links.open { opacity: 1; pointer-events: all; }
  .nav__links a:not(.btn) { font-size: 1.1rem; }

  .hero { padding: 120px 0 70px; }
  .hero__title { font-size: 2.6rem; }
  .hero__sub { font-size: 1rem; }
  .hero__cards { gap: .8rem; }
  .hero-card { min-width: 0; flex: 1; padding: 1rem 1.2rem; }
  .hero-card__number { font-size: 1.2rem; }
  .hero__photo-wrapper { margin: 0 auto 3rem; }

  .section-title { font-size: 1.8rem; }
  .section-sub { font-size: .92rem; margin-bottom: 2.5rem; }
  .problem__grid, .core__grid, .diff__grid, .results__grid, .testimonials__grid { grid-template-columns: 1fr; }
  .pricing__grid, .pricing__grid--4 { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .pricing__card--pop { transform: none; }
  .pricing__card--pop:hover { transform: translateY(-3px); }
  .about__inner { flex-direction: column; text-align: center; }
  .about__img { width: 140px; height: 140px; }
  .footer__inner { flex-direction: column; gap: 1rem; text-align: center; }
  .sentence-set { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.1rem; }
  .hero__cards { flex-direction: column; align-items: center; }
  .hero-card { width: 100%; max-width: 280px; }
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-card:nth-child(1) { animation: float 5s ease-in-out infinite; }
.hero-card:nth-child(2) { animation: float 5s ease-in-out .5s infinite; }
.hero-card:nth-child(3) { animation: float 5s ease-in-out 1s infinite; }
