/* ═══════════════════════════════════════════
   CSS VARIABLES & RESET
═══════════════════════════════════════════ */
:root {
  --navy: #0f1923;
  --navy-light: #172533;
  --charcoal: #1c2a36;
  --brand: #5271ff;
  --brand-light: #6b87ff;
  --brand-glow: #8da0ff;
  --brand-dark: #3d5ae6;
  --red-therapy: #dd1d1d;
  --red-light: #e84444;
  --red-deep: #b81515;
  --amber: #e8a040;
  --cream: #f5f3f0;
  --cream-dark: #eae7e2;
  --warm-white: #faf9f7;
  --text-dark: #1a1a2e;
  --text-mid: #4a4a5a;
  --text-light: #7a7a8a;
  --green: #1a9a5c;
  --green-light: #22b86e;
  --green-glow: #34d399;
  --green-deep: #158a4e;
  --gold: #d4a853;

  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'Outfit', -apple-system, sans-serif;

  --container: 1200px;
  --gap: clamp(1rem, 3vw, 2rem);
  --section-pad: clamp(3rem, 8vw, 7rem);
  --radius: 12px;
  --radius-lg: 20px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--warm-white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ═══════════════════════════════════════════
   ANNOUNCEMENT BAR
═══════════════════════════════════════════ */
.announcement {
  background: var(--navy);
  color: #fff;
  padding: 0.65rem 1rem;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: sticky;
  top: 0;
  z-index: 101;
  overflow: hidden;
}

.announcement::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 200%; height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(82,113,255,0.08) 25%, rgba(82,113,255,0.15) 50%, rgba(82,113,255,0.08) 75%, transparent 100%);
  animation: shimmer 8s ease infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-25%); }
  100% { transform: translateX(25%); }
}

.announcement span {
  position: relative;
  z-index: 1;
}

.announcement .sep {
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--brand);
  border-radius: 50%;
  margin: 0 1rem;
  vertical-align: middle;
}

/* ═══════════════════════════════════════════
   HEADER / NAV
═══════════════════════════════════════════ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s ease;
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 0;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.logo span {
  color: var(--brand);
}

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.2s;
  position: relative;
}

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

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--brand);
  transition: width 0.3s ease;
}

.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--brand) !important;
  color: #fff !important;
  padding: 0.55rem 1.4rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.25s ease;
}

.nav-cta:hover {
  background: var(--brand-light) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ═══════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════ */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(4rem, 10vw, 8rem);
  background: var(--warm-white);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(82,113,255,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -15%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221,29,29,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(82,113,255,0.1);
  border: 1px solid rgba(82,113,255,0.2);
  padding: 0.4rem 1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease both;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--brand);
  border-radius: 50%;
  animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.5); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1.2rem;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero h1 em {
  font-style: italic;
  color: var(--brand);
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 480px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--brand);
  color: #fff;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(82,113,255,0.3);
}

.btn-primary:hover {
  background: var(--brand-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(82,113,255,0.35);
}

.btn-primary svg {
  transition: transform 0.3s;
}

.btn-primary:hover svg {
  transform: translateX(3px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-mid);
  padding: 0.9rem 1.5rem;
  border-radius: 100px;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid rgba(0,0,0,0.12);
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  border-color: var(--brand);
  color: var(--brand);
}

.hero-trust {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s 0.4s ease both;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-light);
}

.hero-trust-item svg {
  color: var(--green);
  flex-shrink: 0;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-product-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(82,113,255,0.05) 0%, rgba(221,29,29,0.03) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-product-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px dashed rgba(82,113,255,0.2);
  animation: spin-slow 60s linear infinite;
}

@keyframes spin-slow {
  to { transform: rotate(360deg); }
}

.hero-product-img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.12));
  mix-blend-mode: multiply;
}

.product-placeholder {
  width: 75%;
  height: 75%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--brand);
}

.product-placeholder svg {
  width: 120px;
  height: 120px;
  opacity: 0.4;
}

.product-placeholder span {
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.5;
}

.hero-float-card {
  position: absolute;
  background: #fff;
  border-radius: var(--radius);
  padding: 0.8rem 1.1rem;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  font-size: 0.82rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  animation: float 6s ease-in-out infinite;
  z-index: 3;
}

.hero-float-card.card-1 {
  top: 15%; right: -5%;
  animation-delay: 0s;
}

.hero-float-card.card-2 {
  bottom: 20%; left: -5%;
  animation-delay: -3s;
}

.hero-float-card .card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-float-card .card-icon.red {
  background: rgba(221,29,29,0.1);
  color: var(--red-therapy);
}

.hero-float-card .card-icon.green {
  background: rgba(26,154,92,0.1);
  color: var(--green);
}

.hero-float-card .card-text strong {
  display: block;
  font-weight: 600;
  color: var(--navy);
}

.hero-float-card .card-text span {
  color: var(--text-light);
  font-size: 0.75rem;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════════
   SOCIAL PROOF BAR
═══════════════════════════════════════════ */
.proof-bar {
  background: var(--navy);
  padding: 2.5rem 0;
  position: relative;
  overflow: hidden;
}

.proof-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
  z-index: 1;
  text-align: center;
}

.proof-item {
  color: #fff;
}

.proof-number {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--green-glow);
  display: block;
}

.proof-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  font-weight: 400;
  margin-top: 0.25rem;
}

.proof-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
}

/* ═══════════════════════════════════════════
   PROBLEM / EMPATHY SECTION
═══════════════════════════════════════════ */
.problem {
  padding: var(--section-pad) 0;
  background: var(--cream);
  position: relative;
}

.problem::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.06), transparent);
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 1rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--brand);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title em {
  font-style: italic;
  color: var(--brand);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
  margin-top: 3rem;
}

.problem-text {
  max-width: 520px;
}

.problem-text p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.problem-text p strong {
  color: var(--navy);
  font-weight: 600;
}

.pain-points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.pain-point {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.2rem 1.4rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.pain-point:hover {
  border-color: rgba(82,113,255,0.2);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
  transform: translateX(4px);
}

.pain-point-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(221,29,29,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--red-therapy);
}

.pain-point h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.pain-point p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   TRIPLE THERAPY SOLUTION
═══════════════════════════════════════════ */
.solution {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
  position: relative;
}

.solution-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.solution-header .section-sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-top: 0.5rem;
}

.therapy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.therapy-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.therapy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.06);
  border-color: transparent;
}

.therapy-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
}

.therapy-card.card-red::before {
  background: linear-gradient(90deg, var(--red-therapy), var(--red-light));
}

.therapy-card.card-heat::before {
  background: linear-gradient(90deg, var(--amber), #f0b860);
}

.therapy-card.card-massage::before {
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
}

.therapy-card-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(0,0,0,0.04);
  position: absolute;
  top: 1rem; right: 1.5rem;
  line-height: 1;
}

.therapy-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}

.card-red .therapy-card-icon {
  background: rgba(221,29,29,0.08);
  color: var(--red-therapy);
}

.card-heat .therapy-card-icon {
  background: rgba(232,160,64,0.12);
  color: var(--amber);
}

.card-massage .therapy-card-icon {
  background: rgba(82,113,255,0.08);
  color: var(--brand);
}

.therapy-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.therapy-card .card-what {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.therapy-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

.therapy-card .card-spec {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.06);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.therapy-card .card-spec strong {
  color: var(--navy);
}

.gap-theory {
  background: linear-gradient(135deg, var(--navy) 0%, var(--charcoal) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 3rem);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.gap-theory::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 30% 30%, rgba(82,113,255,0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 70%, rgba(221,29,29,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.gap-theory h3 {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 1.7rem);
  margin-bottom: 1rem;
  position: relative;
}

.gap-theory h3 em {
  color: var(--brand-glow);
}

.gap-theory p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
}

/* ═══════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════ */
.how-it-works {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

.steps-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

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

.steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 16%;
  right: 16%;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--brand-light), var(--brand));
  opacity: 0.2;
}

.step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--brand);
  position: relative;
  z-index: 2;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ═══════════════════════════════════════════
   BENEFITS SECTION
═══════════════════════════════════════════ */
.benefits {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.benefits-visual {
  position: relative;
}

.benefits-img-container {
  background: linear-gradient(145deg, var(--cream) 0%, rgba(26,154,92,0.06) 100%);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.benefits-img-container::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(26,154,92,0.1);
  pointer-events: none;
}

.benefits-placeholder {
  color: var(--brand);
  opacity: 0.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.benefits-placeholder svg {
  width: 80px; height: 80px;
}

.benefits-placeholder span {
  font-size: 0.75rem;
  font-weight: 500;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.benefit-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(26,154,92,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green);
}

.benefit-content h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.2rem;
}

.benefit-content p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.55;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testimonials {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--navy) 0%, var(--charcoal) 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(82,113,255,0.3), transparent);
}

.testimonials .section-label { color: var(--brand-glow); }
.testimonials .section-title { color: #fff; }

.testimonials-header {
  text-align: center;
  margin-bottom: 3rem;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}

.testimonial-img {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.testimonial-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.testimonial-body {
  padding: 1.5rem 1.8rem 1.8rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(82,113,255,0.2);
  transform: translateY(-3px);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
  color: var(--amber);
}

.testimonial-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  flex: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testimonial-avatar {
  display: none;
}

.testimonial-name {
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
}

.testimonial-detail {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ═══════════════════════════════════════════
   COMPARISON TABLE
═══════════════════════════════════════════ */
.comparison {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}

.comparison-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.comparison-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,0,0,0.08);
}

.comparison-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
  background: #fff;
}

.comparison-table thead th {
  padding: 1.2rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  border-bottom: 2px solid rgba(0,0,0,0.06);
  color: var(--text-mid);
}

.comparison-table thead th:first-child {
  text-align: left;
  width: 200px;
}

.comparison-table thead th.highlight {
  background: rgba(82,113,255,0.06);
  color: var(--brand);
  position: relative;
  padding-top: 2.2rem;
}

.comparison-table thead th.highlight::before {
  content: 'BEST VALUE';
  position: absolute;
  top: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  font-size: 0.65rem;
  padding: 0.2rem 0.7rem;
  border-radius: 100px;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.comparison-table tbody td {
  padding: 1rem;
  text-align: center;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(0,0,0,0.04);
  color: var(--text-mid);
}

.comparison-table tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--navy);
}

.comparison-table tbody td.highlight {
  background: rgba(82,113,255,0.03);
  font-weight: 600;
  color: var(--navy);
}

.check-yes {
  color: var(--green);
  font-weight: 700;
  font-size: 1.1rem;
}

.check-no {
  color: #ccc;
  font-weight: 700;
  font-size: 1.1rem;
}

.comparison-table tbody tr:last-child td {
  border-bottom: none;
}

/* ═══════════════════════════════════════════
   TRUST / GUARANTEE SECTION
═══════════════════════════════════════════ */
.trust-section {
  padding: var(--section-pad) 0;
  background: var(--cream);
}

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

.trust-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
}

.trust-card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(26,154,92,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--green);
}

.trust-card h4 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}

.trust-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════ */
.faq {
  padding: var(--section-pad) 0;
  background: var(--warm-white);
}

.faq-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: rgba(82,113,255,0.2);
  box-shadow: 0 4px 15px rgba(0,0,0,0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  transition: color 0.2s;
}

.faq-item.active .faq-question {
  color: var(--brand);
}

.faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(82,113,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
}

.faq-item.active .faq-toggle {
  background: var(--brand);
  color: #fff;
  transform: rotate(45deg);
}

.faq-toggle svg {
  transition: all 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════
   FINAL CTA
═══════════════════════════════════════════ */
.final-cta {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, var(--navy) 0%, #1a2940 50%, var(--charcoal) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(221,29,29,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(82,113,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.final-cta-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.final-cta h2 em {
  color: var(--brand-glow);
  font-style: italic;
}

.final-cta p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 2rem;
}

.final-cta .btn-primary {
  font-size: 1.1rem;
  padding: 1rem 2.5rem;
}

.final-cta-trust {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.final-cta-trust span {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.final-cta-trust svg {
  color: var(--green-glow);
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
.footer {
  background: var(--navy);
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .logo {
  color: #fff;
  font-size: 1.4rem;
  margin-bottom: 0.8rem;
  display: block;
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  max-width: 280px;
}

.footer-col h5 {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1rem;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--brand-glow);
}

.footer-disclaimer {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-disclaimer p {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  max-width: 800px;
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-payments {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}

.payment-icon {
  width: 38px; height: 24px;
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
}

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
/* ─── TABLET (≤968px) ─── */
@media (max-width: 968px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-content { max-width: 100%; margin: 0 auto; }
  .hero-sub { max-width: 100%; margin: 0 auto 2rem; }
  .hero-actions { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { margin-top: 2rem; }
  .hero-product-frame { max-width: 340px; margin: 0 auto; }
  .hero-float-card { display: none; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .problem-grid { grid-template-columns: 1fr; }
  .therapy-cards { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto 3rem; }
  .steps { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps::before { display: none; }
  .benefits-grid { grid-template-columns: 1fr; }
  .benefits-visual { order: -1; }
  .testimonial-cards { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .trust-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

/* ─── MOBILE (≤640px) — 85% of traffic ─── */
@media (max-width: 640px) {
  /* ── Global mobile overrides ── */
  :root {
    --section-pad: clamp(2rem, 6vw, 3.5rem);
  }

  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .announcement .desktop-only { display: none; }

  /* ── Announcement bar ── */
  .announcement {
    font-size: 0.7rem;
    padding: 0.5rem 0.75rem;
  }
  .announcement .sep {
    margin: 0 0.5rem;
  }

  /* ── Header ── */
  .header-inner {
    padding: 0.65rem 0;
  }
  .logo {
    font-size: 1.35rem;
  }
  .mobile-menu-btn {
    padding: 10px;
    min-height: 44px;
    min-width: 44px;
    justify-content: center;
    align-items: center;
  }

  /* ── Hero ── */
  .hero {
    padding: 1.5rem 0 2.5rem;
  }
  .hero h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    line-height: 1.2;
    margin-bottom: 1rem;
  }
  .hero-badge {
    font-size: 0.7rem;
    padding: 0.35rem 0.8rem;
    margin-bottom: 1rem;
  }
  .hero-sub {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.5rem;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    margin-bottom: 1.5rem;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
    padding: 1rem 2rem;
    min-height: 48px;
  }
  .hero-trust {
    gap: 0.75rem;
    flex-direction: column;
    align-items: center;
  }
  .hero-trust-item {
    font-size: 0.78rem;
  }
  .hero-product-frame {
    max-width: 280px;
  }

  /* ── Proof bar ── */
  .proof-bar {
    padding: 1.5rem 0;
  }
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
  .proof-number {
    font-size: clamp(1.4rem, 5vw, 1.8rem);
  }
  .proof-label {
    font-size: 0.72rem;
  }

  /* ── Section titles global ── */
  .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .section-label {
    font-size: 0.7rem;
  }

  /* ── Problem section ── */
  .problem-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  .pain-point {
    padding: 1rem;
    gap: 0.75rem;
  }
  .pain-point-icon {
    width: 36px;
    height: 36px;
  }
  .pain-point h4 {
    font-size: 0.88rem;
  }
  .pain-point p {
    font-size: 0.8rem;
  }

  /* ── Solution / therapy cards ── */
  .solution-header {
    margin-bottom: 2rem;
  }
  .solution-header .section-sub {
    font-size: 0.92rem;
  }
  .therapy-card {
    padding: 1.5rem 1.2rem;
  }
  .therapy-card-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 1rem;
  }
  .therapy-card h3 {
    font-size: 1.15rem;
  }
  .therapy-card p {
    font-size: 0.85rem;
  }
  .gap-theory {
    padding: 1.5rem;
  }
  .gap-theory h3 {
    font-size: 1.15rem;
  }
  .gap-theory p {
    font-size: 0.85rem;
  }

  /* ── How it works / steps ── */
  .steps-header {
    margin-bottom: 2rem;
  }
  .step-number {
    width: 56px;
    height: 56px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  .step h3 {
    font-size: 1.05rem;
  }
  .step p {
    font-size: 0.85rem;
  }

  /* ── Benefits ── */
  .benefit-icon {
    width: 38px;
    height: 38px;
  }
  .benefit-content h4 {
    font-size: 0.92rem;
  }
  .benefit-content p {
    font-size: 0.82rem;
  }

  /* ── Testimonials ── */
  .testimonials-header {
    margin-bottom: 2rem;
  }
  .testimonial-cards {
    display: flex;
    grid-template-columns: none;
    max-width: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
  }
  .testimonial-cards::-webkit-scrollbar {
    display: none;
  }
  .testimonial-card {
    flex: 0 0 78vw;
    min-width: 270px;
    scroll-snap-align: start;
  }
  .testimonial-body {
    padding: 1.2rem 1.3rem 1.4rem;
  }
  .testimonial-text {
    font-size: 0.88rem;
    margin-bottom: 1rem;
  }
  .testimonial-name {
    font-size: 0.85rem;
  }

  /* ── Comparison table ── */
  .comparison-header {
    margin-bottom: 2rem;
  }
  .comparison-table {
    min-width: 560px;
  }

  /* ── Trust / guarantee ── */
  .trust-card {
    padding: 1.5rem;
  }
  .trust-card-icon {
    width: 48px;
    height: 48px;
  }
  .trust-card h4 {
    font-size: 1.05rem;
  }
  .trust-card p {
    font-size: 0.82rem;
  }

  /* ── FAQ ── */
  .faq-header {
    margin-bottom: 2rem;
  }
  .faq-question {
    padding: 1rem 1.2rem;
    font-size: 0.88rem;
    gap: 0.75rem;
    min-height: 48px;
  }
  .faq-toggle {
    width: 32px;
    height: 32px;
  }
  .faq-answer-inner {
    padding: 0 1.2rem 1.2rem;
    font-size: 0.85rem;
  }

  /* ── Final CTA ── */
  .final-cta h2 {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }
  .final-cta p {
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
  }
  .final-cta .btn-primary {
    width: 100%;
    font-size: 1rem;
    padding: 1rem 2rem;
  }
  .final-cta-trust {
    gap: 1rem;
    flex-direction: column;
    align-items: center;
  }

  /* ── Footer ── */
  .footer {
    padding: 2rem 0 1.5rem;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .footer-brand p {
    max-width: 100%;
  }
  .footer-col h5 {
    margin-bottom: 0.5rem;
  }
  .footer-col ul li a {
    font-size: 0.85rem;
    display: inline-block;
    padding: 0.25rem 0;
    min-height: 32px;
    line-height: 2;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1rem;
  }
}
