@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --bg-dark: #1a1a1a;
  --bg-darker: #111111;
  --bg-card: #1e1e2a;
  --purple: #2d1b4e;
  --purple-light: #4a2d7a;
  --purple-glow: #6b3fa0;
  --gold: #C9A84C;
  --gold-light: #e0c76e;
  --gold-dark: #a08636;
  --white: #ffffff;
  --white-soft: #e0e0e0;
  --gray: #999999;
  --red-urgent: #e74c3c;
  --green: #2ecc71;
  --font-display: 'Cinzel', serif;
  --font-body: 'Inter', sans-serif;
}

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

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

body {
  background: var(--bg-dark);
  background-image: url('images/mystical_bg.png');
  background-size: 600px;
  background-repeat: repeat;
  background-attachment: fixed;
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-padding {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

.text-gold {
  color: var(--gold);
}

.text-red {
  color: var(--red-urgent);
}

/* ===== SVG ICON UTILITIES ===== */
.icon-inline {
  display: inline-block;
  vertical-align: -2px;
  flex-shrink: 0;
}

.icon-inline-sm {
  display: inline-block;
  vertical-align: -2px;
  flex-shrink: 0;
}

.icon-btn {
  display: inline-block;
  vertical-align: -3px;
  flex-shrink: 0;
}

.problem-card .icon svg {
  display: block;
  margin-bottom: 4px;
  filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.3));
}

.benefit-box .check {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 0;
}

.benefit-box .check::after {
  content: '';
  display: block;
  width: 10px;
  height: 16px;
  border: solid var(--bg-darker);
  border-width: 0 3px 3px 0;
  transform: rotate(45deg) translate(-1px, -1px);
}

/* ===== LOGO BANNER ===== */
.logo-banner {
  background: var(--bg-darker);
  overflow: hidden;
  position: relative;
}

.logo-banner-img {
  width: 100%;
  max-width: 900px;
  display: block;
  margin: 0 auto;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: linear-gradient(90deg, var(--red-urgent), #c0392b, var(--red-urgent));
  background-size: 200% 100%;
  animation: shimmer-bar 3s ease infinite;
  padding: 10px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 0.85rem;
  position: sticky;
  top: 0;
  z-index: 1000;
  letter-spacing: 0.5px;
}

@keyframes shimmer-bar {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--bg-darker) 0%, var(--purple) 50%, var(--bg-dark) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(45, 27, 78, 0.6) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(201, 168, 76, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  padding: 40px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.15);
  border: 1px solid var(--gold-dark);
  border-radius: 50px;
  padding: 6px 16px;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--white-soft);
  margin-bottom: 28px;
  font-weight: 300;
}

.hero-bullets {
  list-style: none;
  margin-bottom: 24px;
}

.hero-bullets li {
  padding: 6px 0;
  font-size: 1rem;
  color: var(--white-soft);
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-bullets li::before {
  content: '';
  width: 20px;
  height: 20px;
  min-width: 20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.hero-warning {
  background: rgba(201, 168, 76, 0.08);
  border-left: 3px solid var(--gold);
  padding: 16px 20px;
  margin-bottom: 28px;
  border-radius: 0 8px 8px 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-warning strong {
  color: var(--gold);
  font-size: 1.15rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--gray);
}

.hero-trust .yt-icon {
  font-size: 1.4rem;
}

.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrap img {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.2), 0 0 120px rgba(45, 27, 78, 0.4);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

/* ===== CTA BUTTON ===== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #d4af37, var(--gold), #f0d060, var(--gold));
  background-size: 300% 100%;
  animation: btn-shimmer 4s ease infinite;
  color: var(--bg-darker);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  padding: 20px 40px;
  border-radius: 12px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  min-height: 60px;
  min-width: 280px;
  transition: all 0.3s ease;
  box-shadow:
    0 4px 20px rgba(201, 168, 76, 0.4),
    0 0 40px rgba(201, 168, 76, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

@keyframes btn-shimmer {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.cta-btn::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transform: rotate(45deg) translateX(-100%);
  transition: transform 0.6s;
}

.cta-btn:hover::after {
  transform: rotate(45deg) translateX(100%);
}

.cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 8px 30px rgba(201, 168, 76, 0.6),
    0 0 60px rgba(201, 168, 76, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-btn:active {
  transform: translateY(-1px) scale(0.99);
}

.cta-subtext {
  font-size: 0.82rem;
  color: var(--gold);
  margin-top: 10px;
  font-weight: 500;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  background: var(--bg-darker);
}

.social-proof .section-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.8;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 40px;
  font-weight: 400;
}

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

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  padding: 28px 24px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.1);
}

.testimonial-card .stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card .quote {
  font-size: 0.95rem;
  color: var(--white-soft);
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 16px;
}

.testimonial-card .author img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-dark);
}

.testimonial-card .author-info .name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold);
}

.testimonial-card .author-info .location {
  font-size: 0.78rem;
  color: var(--gray);
}

.testimonial-highlight {
  background: rgba(201, 168, 76, 0.08);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 0.85rem;
  color: var(--gold-light);
  margin-top: 10px;
  font-weight: 500;
}

/* ===== PROBLEM SECTION ===== */
.problems {
  background: linear-gradient(180deg, var(--bg-dark), var(--bg-darker));
  position: relative;
}

.problems-image {
  width: 100%;
  max-width: 600px;
  margin: 0 auto 40px;
  display: block;
  border-radius: 16px;
  opacity: 0.7;
  mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
}

.problems-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.problem-card {
  background: rgba(30, 30, 42, 0.8);
  border-left: 4px solid var(--gold);
  border-radius: 0 10px 10px 0;
  padding: 20px 22px;
  transition: all 0.3s ease;
  cursor: default;
}

.problem-card:hover {
  background: rgba(45, 27, 78, 0.3);
  transform: translateX(4px);
}

.problem-card .icon {
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.problem-card .title {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--gold);
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.problem-card .desc {
  font-size: 0.88rem;
  color: var(--white-soft);
  line-height: 1.5;
}

.problems-bottom-text {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.8;
}

.problems-bottom-text strong {
  color: var(--gold);
}

/* ===== TRANSFORMATION ===== */
.transformation {
  background: var(--bg-dark);
}

.transformation-image {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 40px;
  display: block;
  border-radius: 16px;
  box-shadow: 0 0 40px rgba(201, 168, 76, 0.15);
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: stretch;
  max-width: 800px;
  margin: 0 auto 40px;
}

.ba-column {
  padding: 24px;
  border-radius: 12px;
}

.ba-column.before {
  background: rgba(30, 30, 42, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.ba-column.after {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.ba-column h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ba-column.before h3 {
  color: var(--gray);
}

.ba-column.after h3 {
  color: var(--gold);
}

.ba-column ul {
  list-style: none;
}

.ba-column ul li {
  padding: 8px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ba-column.before ul li {
  color: var(--gray);
}

.ba-column.before ul li::before {
  content: '✗';
  color: var(--red-urgent);
  font-weight: 700;
}

.ba-column.after ul li {
  color: var(--white);
}

.ba-column.after ul li::before {
  content: '✓';
  color: var(--green);
  font-weight: 700;
}

.ba-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--gold);
  animation: pulse-arrow 2s ease-in-out infinite;
}

@keyframes pulse-arrow {

  0%,
  100% {
    opacity: 0.5;
    transform: scale(1);
  }

  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.transformation-note {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

/* ===== WHAT'S INCLUDED ===== */
.included {
  background: linear-gradient(180deg, var(--bg-darker), var(--bg-dark));
}

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

.benefit-box {
  background: var(--bg-card);
  border: 1px solid rgba(201, 168, 76, 0.1);
  border-radius: 12px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--purple-light));
}

.benefit-box:hover {
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.08);
}

/* benefit-box .check styled in SVG utilities section above */

.benefit-box h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.benefit-box p {
  font-size: 0.88rem;
  color: var(--white-soft);
  line-height: 1.6;
}

/* ===== EBOOK SHOWCASE ===== */
.ebook-showcase {
  background: linear-gradient(180deg, var(--bg-dark), var(--purple), var(--bg-dark));
  text-align: center;
}

.ebook-img {
  max-width: 360px;
  margin: 0 auto 30px;
  display: block;
  border-radius: 12px;
  box-shadow: 0 0 80px rgba(201, 168, 76, 0.25), 0 20px 60px rgba(0, 0, 0, 0.5);
  animation: float 6s ease-in-out infinite;
}

/* ===== GUARANTEE ===== */
.guarantee {
  background: var(--bg-darker);
}

.guarantee-box {
  max-width: 700px;
  margin: 0 auto;
  background: rgba(201, 168, 76, 0.05);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
}

.guarantee-box .shield {
  font-size: 3.5rem;
  margin-bottom: 16px;
}

.guarantee-box h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.guarantee-box p {
  font-size: 1rem;
  color: var(--white-soft);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

/* ===== PRICING ===== */
.pricing {
  background: linear-gradient(180deg, var(--bg-dark), var(--purple), var(--bg-darker));
}

.price-card {
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 2px solid var(--gold);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(201, 168, 76, 0.15);
}

.price-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
}

.price-tag-badge {
  display: inline-block;
  background: var(--red-urgent);
  color: white;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-old {
  font-size: 1.2rem;
  color: var(--gray);
  text-decoration: line-through;
  margin-bottom: 4px;
}

.price-current {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 4px;
}

.price-installment {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}

.price-features li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--white-soft);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.price-features li::before {
  content: '';
  width: 18px;
  height: 18px;
  min-width: 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23111111' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
}

/* ===== FAQ ===== */
.faq {
  background: var(--bg-dark);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 20px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question:hover {
  color: var(--gold);
}

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

.faq-item.active .faq-question .arrow {
  transform: rotate(180deg);
}

.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 p {
  padding: 0 0 20px;
  font-size: 0.92rem;
  color: var(--white-soft);
  line-height: 1.7;
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(180deg, var(--bg-darker), var(--purple), var(--bg-darker));
  text-align: center;
  position: relative;
}

.final-cta-img {
  max-width: 400px;
  margin: 0 auto 30px;
  display: block;
  border-radius: 16px;
  box-shadow: 0 0 60px rgba(201, 168, 76, 0.2);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--bg-darker);
  padding: 30px 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer p {
  font-size: 0.78rem;
  color: var(--gray);
  line-height: 1.8;
}

.footer a {
  color: var(--gold-dark);
  text-decoration: none;
}

/* ===== COUNTDOWN STRIP ===== */
.countdown-strip {
  background: rgba(45, 27, 78, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 10px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin: 20px auto 0;
  max-width: 400px;
}

.countdown-strip .cd-block {
  text-align: center;
}

.countdown-strip .cd-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}

.countdown-strip .cd-label {
  font-size: 0.65rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.countdown-strip .cd-sep {
  font-size: 1.4rem;
  color: var(--gold-dark);
  font-weight: 700;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ===== RESPONSIVE ===== */

/* Tablet */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image-wrap {
    order: -1;
  }

  .hero-image-wrap img {
    max-width: 320px;
  }

  .hero-bullets {
    display: inline-block;
    text-align: left;
  }

  .hero-warning {
    text-align: left;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .problems-grid {
    grid-template-columns: 1fr;
  }

  .included-grid {
    grid-template-columns: 1fr;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
  }

  .ba-arrow {
    transform: rotate(90deg);
    padding: 8px 0;
    font-size: 2rem;
  }

  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Mobile */
@media (max-width: 600px) {
  html {
    font-size: 15px;
  }

  .section-padding {
    padding: 48px 0;
  }

  .container {
    padding: 0 16px;
  }

  /* Announcement bar */
  .announcement-bar {
    font-size: 0.75rem;
    padding: 8px 12px;
    line-height: 1.5;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .hero-content {
    padding: 16px 0;
  }

  .hero-badge {
    font-size: 0.7rem;
    padding: 5px 12px;
  }

  .hero h1 {
    font-size: 1.75rem;
    margin-bottom: 8px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }

  .hero-bullets li {
    font-size: 0.92rem;
    padding: 5px 0;
  }

  .hero-warning {
    font-size: 0.95rem;
    padding: 14px 16px;
    margin-bottom: 20px;
  }

  .hero-warning strong {
    font-size: 1.05rem;
  }

  .hero-image-wrap img {
    max-width: 280px;
    border-radius: 12px;
  }

  .hero-trust {
    font-size: 0.78rem;
    gap: 8px;
    margin-top: 16px;
  }

  /* CTA buttons — touch optimized */
  .cta-btn {
    width: 100%;
    min-width: unset;
    font-size: 0.88rem;
    padding: 18px 20px;
    min-height: 56px;
    border-radius: 10px;
    gap: 8px;
    letter-spacing: 0.5px;
    -webkit-tap-highlight-color: transparent;
  }

  .cta-subtext {
    font-size: 0.76rem;
    margin-top: 8px;
  }

  /* Section titles */
  .section-title {
    font-size: 1.4rem;
    margin-bottom: 6px;
  }

  .section-subtitle {
    font-size: 0.92rem;
    margin-bottom: 28px;
  }

  /* Testimonials */
  .testimonial-card {
    padding: 20px 16px;
  }

  .testimonial-card .quote {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 12px;
  }

  .testimonial-card .author-info .name {
    font-size: 0.85rem;
  }

  .testimonial-highlight {
    font-size: 0.8rem;
    padding: 8px 12px;
  }

  .social-proof .section-intro {
    font-size: 0.85rem;
    margin-bottom: 28px;
  }

  /* Problems */
  .problems-image {
    max-width: 100%;
    margin-bottom: 28px;
  }

  .problem-card {
    padding: 16px 18px;
  }

  .problem-card .icon svg {
    width: 24px;
    height: 24px;
  }

  .problem-card .title {
    font-size: 0.82rem;
  }

  .problem-card .desc {
    font-size: 0.82rem;
  }

  .problems-bottom-text {
    font-size: 0.95rem;
  }

  /* Before/After */
  .ba-column {
    padding: 18px 16px;
  }

  .ba-column h3 {
    font-size: 0.95rem;
    margin-bottom: 12px;
  }

  .ba-column ul li {
    font-size: 0.88rem;
    padding: 6px 0;
  }

  .transformation-image {
    border-radius: 12px;
    margin-bottom: 28px;
  }

  .transformation-note {
    font-size: 0.88rem;
  }

  /* Benefits */
  .benefit-box {
    padding: 18px 16px;
  }

  .benefit-box .check {
    width: 28px;
    height: 28px;
    margin-bottom: 10px;
  }

  .benefit-box .check::after {
    width: 8px;
    height: 14px;
    border-width: 0 2.5px 2.5px 0;
  }

  .benefit-box h4 {
    font-size: 0.85rem;
  }

  .benefit-box p {
    font-size: 0.82rem;
  }

  /* Ebook */
  .ebook-img {
    max-width: 240px;
    border-radius: 10px;
  }

  /* Guarantee */
  .guarantee-box {
    padding: 24px 18px;
    border-radius: 12px;
  }

  .guarantee-box .shield svg {
    width: 44px;
    height: 44px;
  }

  .guarantee-box h3 {
    font-size: 1.2rem;
  }

  .guarantee-box p {
    font-size: 0.9rem;
  }

  /* Pricing */
  .price-card {
    padding: 24px 18px;
    border-radius: 16px;
  }

  .price-current {
    font-size: 2.6rem;
  }

  .price-old {
    font-size: 1rem;
  }

  .price-installment {
    font-size: 0.82rem;
    margin-bottom: 20px;
  }

  .price-features li {
    font-size: 0.85rem;
    padding: 6px 0;
  }

  /* FAQ */
  .faq-question {
    font-size: 0.92rem;
    padding: 16px 0;
    gap: 12px;
  }

  .faq-answer p {
    font-size: 0.85rem;
    padding-bottom: 16px;
  }

  /* Final CTA */
  .final-cta-img {
    max-width: 280px;
    border-radius: 12px;
  }

  /* Countdown */
  .countdown-strip {
    gap: 14px;
    padding: 12px 16px;
  }

  .countdown-strip .cd-num {
    font-size: 1.3rem;
  }

  .countdown-strip .cd-label {
    font-size: 0.58rem;
  }

  /* Footer */
  .footer {
    padding: 24px 16px;
  }

  .footer p {
    font-size: 0.72rem;
  }
}

/* Small phones */
@media (max-width: 380px) {
  html {
    font-size: 14px;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .cta-btn {
    font-size: 0.82rem;
    padding: 16px 16px;
  }

  .price-current {
    font-size: 2.2rem;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .hero-image-wrap img {
    max-width: 240px;
  }
}