:root {
  --blush: #E8B4B8;
  --dusty: #C9929A;
  --deep: #9E5A63;
  --deep-dark: #7A3F48;
  --charcoal: #2D2926;
  --warm-gray: #6B5E5A;
  --light-gray: #B8ADA9;
  --cream: #FDF8F5;
  --warm-white: #FFFBF8;
  --sage: #8FA68E;
  --sage-light: #E8F0E7;
  --amber: #D4A853;
  --amber-light: #FFF3D6;
  --coral: #E07B6C;
  --coral-light: #FDE8E4;
  --soft-blue: #7EA8BE;
  --blue-light: #E4EFF5;
  --shadow-sm: 0 2px 8px rgba(45,41,38,0.06);
  --shadow-md: 0 8px 30px rgba(45,41,38,0.1);
  --shadow-lg: 0 20px 60px rgba(45,41,38,0.12);
  --shadow-xl: 0 30px 80px rgba(158,90,99,0.15);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--charcoal);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* UTILITY */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.sr-only { position:absolute;width:1px;height:1px;overflow:hidden;clip:rect(0,0,0,0); }

/* TYPOGRAPHY */
h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--charcoal); }

/* ANIMATED REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(165deg, var(--cream) 0%, #F5E6E8 40%, var(--blush) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(158,90,99,0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -15%; left: -8%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(143,166,142,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 60px;
}

.hero-text { max-width: 540px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--amber);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 28px;
  text-transform: uppercase;
  animation: fadeSlideDown 0.8s ease both;
}

@keyframes fadeSlideDown {
  from { opacity:0; transform:translateY(-15px); }
  to { opacity:1; transform:translateY(0); }
}

.hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeSlideUp 0.8s ease 0.15s both;
}

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

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

.hero-sub {
  font-size: 1.15rem;
  color: var(--warm-gray);
  line-height: 1.75;
  margin-bottom: 32px;
  font-weight: 300;
  animation: fadeSlideUp 0.8s ease 0.3s both;
}

.hero-sub strong { color: var(--charcoal); font-weight: 500; }

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 14px;
  animation: fadeSlideUp 0.8s ease 0.45s both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--deep);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  padding: 18px 40px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(158,90,99,0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255,255,255,0.1));
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(158,90,99,0.4);
  background: var(--deep-dark);
}
.btn-primary:hover::after { opacity: 1; }

.hero-guarantee {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--warm-gray);
  font-weight: 400;
}

.hero-guarantee svg { flex-shrink: 0; }

.hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  animation: fadeSlideUp 0.8s ease 0.6s both;
}

.stars { color: var(--amber); font-size: 1.1rem; letter-spacing: 2px; }
.social-text { font-size: 0.85rem; color: var(--warm-gray); }
.social-text strong { color: var(--charcoal); font-weight: 600; }

/* HERO MOCKUP */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  animation: floatIn 1s ease 0.4s both;
}

@keyframes floatIn {
  from { opacity:0; transform:translateY(40px) rotate(2deg); }
  to { opacity:1; transform:translateY(0) rotate(0deg); }
}

.mockup-wrapper {
  position: relative;
  width: 340px;
}

.mockup-cover {
  width: 100%;
  aspect-ratio: 210/297;
  background: linear-gradient(170deg, var(--deep) 55%, #F5E6E8 55%);
  border-radius: 8px;
  box-shadow: var(--shadow-xl), -20px 20px 0 -3px var(--blush);
  position: relative;
  overflow: hidden;
  transform: perspective(1000px) rotateY(-5deg);
  transition: transform 0.5s ease;
}

.mockup-cover:hover {
  transform: perspective(1000px) rotateY(0deg);
}

.mockup-cover::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(255,255,255,0.06), transparent);
  border-radius: 50%;
}

.mockup-badge {
  position: absolute;
  top: 28px; left: 24px;
  background: var(--amber);
  color: white;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 14px;
  border-radius: 20px;
  text-transform: uppercase;
}

.mockup-title {
  position: absolute;
  top: 55px; left: 24px;
  font-family: 'Playfair Display', serif;
  color: white;
  font-size: 2rem;
  line-height: 1.15;
}

.mockup-subtitle {
  position: absolute;
  top: 145px; left: 24px;
  color: rgba(255,255,255,0.7);
  font-size: 0.7rem;
  font-weight: 300;
}

.mockup-features {
  position: absolute;
  bottom: 40px; left: 24px; right: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mockup-feat {
  background: white;
  border-radius: 6px;
  padding: 10px 8px;
  text-align: center;
}

.mockup-feat strong {
  display: block;
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--deep);
}

.mockup-feat span {
  font-size: 0.5rem;
  color: var(--warm-gray);
}

.mockup-pages {
  position: absolute;
  top: 60px; right: -50px;
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: floatIn 1s ease 0.7s both;
}

.mockup-page {
  background: white;
  border-radius: 6px;
  padding: 14px;
  box-shadow: var(--shadow-md);
  transform: rotate(3deg);
}

.mockup-page:nth-child(2) { transform: rotate(-2deg); }

.mp-label {
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--deep);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.mp-lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mp-line {
  height: 3px;
  border-radius: 2px;
  background: var(--cream);
}

.mp-line.accent { background: var(--blush); width: 60%; }
.mp-line.short { width: 45%; }

/* FLOATING PRICE TAG */
.price-float {
  position: absolute;
  bottom: 30px; left: -30px;
  background: white;
  border-radius: 16px;
  padding: 14px 22px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  animation: bounce 3s ease-in-out infinite;
  z-index: 3;
}

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

.price-float .price-old {
  font-size: 0.75rem;
  color: var(--light-gray);
  text-decoration: line-through;
}

.price-float .price-now {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--deep);
  display: block;
  line-height: 1.2;
}

.price-float .price-label {
  font-size: 0.6rem;
  color: var(--warm-gray);
}

/* ===================== PROBLEM SECTION ===================== */
.problems {
  padding: 100px 0;
  background: white;
  position: relative;
}

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

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dusty);
  margin-bottom: 12px;
}

.problems h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  line-height: 1.25;
  margin-bottom: 50px;
  max-width: 600px;
}

.problems h2 em { font-style: italic; color: var(--deep); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.problem-card {
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(232,180,184,0.3);
  background: var(--cream);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--blush);
  border-radius: 4px 0 0 4px;
  transition: background 0.3s;
}

.problem-card:hover {
  border-color: var(--dusty);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.problem-card:hover::before { background: var(--deep); }

.problem-icon {
  margin-bottom: 14px;
}

.p-dot {
  display: block;
  width: 10px; height: 10px;
  border-radius: 50%;
}

.problem-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.65;
}

/* ===================== WHAT'S INSIDE ===================== */
.inside {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

.inside .section-header {
  text-align: center;
  margin-bottom: 60px;
}

.inside h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
}

.inside h2 em { color: var(--deep); }

.inside .section-desc {
  font-size: 1.05rem;
  color: var(--warm-gray);
  max-width: 550px;
  margin: 0 auto;
  font-weight: 300;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.benefit-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  background: white;
  border-radius: 14px;
  border: 1px solid rgba(232,180,184,0.2);
  transition: all 0.3s ease;
}

.benefit-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.benefit-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.benefit-icon.rose { background: var(--coral-light); }
.benefit-icon.sage { background: var(--sage-light); }
.benefit-icon.amber { background: var(--amber-light); }
.benefit-icon.blue { background: var(--blue-light); }

.benefit-text h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.benefit-text p {
  font-size: 0.85rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

.benefit-text .money { color: var(--deep); font-weight: 600; }

/* ===================== PREVIEW ===================== */
.preview {
  padding: 100px 0;
  background: white;
}

.preview .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.preview h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 12px; }

.preview-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 20px 0;
  scrollbar-width: none;
}
.preview-scroll::-webkit-scrollbar { display:none; }

.preview-page {
  flex-shrink: 0;
  width: 280px;
  aspect-ratio: 210/297;
  background: var(--cream);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  scroll-snap-align: center;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.preview-page:hover { transform: scale(1.03); }

.pp-tag {
  font-size: 0.55rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 20px;
  color: white;
  align-self: flex-start;
  margin-bottom: 12px;
}

.pp-tag.t1 { background: var(--coral); }
.pp-tag.t2 { background: var(--amber); }
.pp-tag.t3 { background: var(--sage); }
.pp-tag.t4 { background: var(--soft-blue); }
.pp-tag.t5 { background: var(--deep); }

.pp-title {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.pp-lines { flex: 1; display: flex; flex-direction: column; gap: 5px; margin-top: 8px; }
.pp-line { height: 3px; border-radius: 2px; background: var(--blush); opacity: 0.5; }
.pp-line.w80 { width: 80%; }
.pp-line.w60 { width: 60%; }
.pp-line.w90 { width: 90%; }
.pp-line.w50 { width: 50%; }

.pp-box {
  margin-top: auto;
  padding: 10px;
  border-radius: 8px;
  border-left: 3px solid;
  font-size: 0.65rem;
  line-height: 1.5;
  color: var(--warm-gray);
}

.pp-box.tip { background: var(--sage-light); border-color: var(--sage); }
.pp-box.warn { background: var(--coral-light); border-color: var(--coral); }
.pp-box.info { background: var(--blue-light); border-color: var(--soft-blue); }
.pp-box.high { background: var(--amber-light); border-color: var(--amber); }

/* ===================== COMPARISON ===================== */
.comparison {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, white 100%);
}

.comparison .section-header { text-align: center; margin-bottom: 50px; }
.comparison h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 12px; }

.comp-table {
  max-width: 750px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.comp-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: white;
  border-bottom: 1px solid var(--cream);
}

.comp-row.header {
  background: var(--charcoal);
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
}

.comp-row.highlight {
  background: linear-gradient(135deg, #FDF0F1, #FCE8EA);
  position: relative;
}

.comp-row.highlight::before {
  content: 'BEST VALUE';
  position: absolute;
  top: -1px; right: 16px;
  background: var(--deep);
  color: white;
  font-size: 0.55rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 0 0 8px 8px;
  letter-spacing: 0.05em;
}

.comp-cell {
  padding: 18px 24px;
  font-size: 0.9rem;
}

.comp-cell.label { font-weight: 500; }
.comp-cell.price { font-weight: 700; color: var(--deep); font-size: 1.3rem; }
.comp-cell.price-old { color: var(--light-gray); }
.comp-cell.muted { color: var(--warm-gray); font-size: 0.8rem; }

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  padding: 100px 0;
  background: white;
}

.testimonials .section-header { text-align: center; margin-bottom: 50px; }
.testimonials h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }

.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.test-card {
  background: var(--cream);
  border-radius: 16px;
  padding: 30px;
  position: relative;
}

.test-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: var(--blush);
  position: absolute;
  top: 10px; left: 24px;
  line-height: 1;
}

.test-text {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.7;
  margin-bottom: 20px;
  padding-top: 30px;
  font-style: italic;
}

.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.test-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
}

.test-name {
  font-weight: 600;
  font-size: 0.85rem;
}

.test-detail {
  font-size: 0.75rem;
  color: var(--light-gray);
}

/* ===================== FAQ ===================== */
.faq {
  padding: 100px 0;
  background: var(--cream);
}

.faq .section-header { text-align: center; margin-bottom: 50px; }
.faq h2 { font-size: clamp(1.8rem, 3.5vw, 2.5rem); }

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(232,180,184,0.2);
  transition: border-color 0.3s;
}

.faq-item:hover { border-color: var(--dusty); }

.faq-q {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.95rem;
  user-select: none;
  transition: color 0.3s;
}

.faq-q:hover { color: var(--deep); }

.faq-q .arrow {
  font-size: 1.2rem;
  transition: transform 0.3s;
  color: var(--dusty);
}

.faq-item.open .faq-q .arrow { transform: rotate(180deg); }

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

.faq-item.open .faq-a { max-height: 300px; }

.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.7;
}

/* ===================== FINAL CTA ===================== */
.final-cta {
  padding: 100px 0;
  background: linear-gradient(165deg, var(--deep) 0%, var(--deep-dark) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.04), transparent);
  border-radius: 50%;
}

.final-cta h2 {
  color: white;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 16px;
}

.final-cta .sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--deep);
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  padding: 20px 48px;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

.final-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.final-feat {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
}

/* ===================== FOOTER ===================== */
.gs-footer {
  padding: 40px 0 80px;
  background: var(--charcoal);
  text-align: center;
}

.gs-footer p {
  color: rgba(255,255,255,0.4);
  font-size: 0.8rem;
}

.gs-footer a { color: rgba(255,255,255,0.5); text-decoration: none; }
.gs-footer a:hover { color: var(--blush); }

.refund-wall {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.refund-wall .refund-title {
  font-size: 0.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.2);
  margin-bottom: 10px;
}

.refund-wall p {
  font-size: 0.55rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.12);
  margin-bottom: 8px;
  text-align: justify;
}

/* ===================== STICKY BAR ===================== */
.sticky-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: white;
  border-top: 1px solid var(--blush);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 100;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

.sticky-bar.visible { transform: translateY(0); }

.sticky-text {
  font-size: 0.9rem;
  font-weight: 500;
}

.sticky-text .price {
  color: var(--deep);
  font-weight: 700;
  font-size: 1.1rem;
}

.btn-sticky {
  background: var(--deep);
  color: white;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 28px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-sticky:hover { background: var(--deep-dark); }

/* ===================== PLACEHOLDER PAGES ===================== */
.gs-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.gs-page-header {
  background: linear-gradient(165deg, var(--cream) 0%, #F5E6E8 100%);
  padding: 80px 0 50px;
  text-align: center;
}

.gs-page-header h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  margin-bottom: 8px;
}

.gs-page-header p {
  color: var(--warm-gray);
  font-size: 1rem;
}

.gs-page-body {
  flex: 1;
  padding: 60px 0;
}

.gs-page-body .container {
  max-width: 700px;
}

.gs-page-body p {
  color: var(--warm-gray);
  margin-bottom: 16px;
  line-height: 1.8;
}

.gs-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--deep);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  margin-top: 24px;
  transition: color 0.3s;
}

.gs-back-link:hover { color: var(--deep-dark); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 60px;
  }
  .hero-visual { order: -1; }
  .mockup-wrapper { width: 240px; }
  .mockup-pages { display: none; }
  .price-float { left: auto; right: -10px; bottom: 10px; }
  .problem-grid { grid-template-columns: 1fr; }
  .benefit-grid { grid-template-columns: 1fr; }
  .test-grid { grid-template-columns: 1fr; }
  .comp-cell { padding: 12px 14px; font-size: 0.8rem; }
  .comp-cell.price { font-size: 1rem; }
  .preview-page { width: 230px; }
  .final-features { gap: 16px; }
}
