/* ═══════════════════════════════════════════
   RESET & BASE
══════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:       #0B1120;
  --black-alt:   #121A2B;
  --white:       #F4F7FB;
  --white-dim:   #B7C1D6;
  --gray:        #64748b;
  --gray-light:  #94a3b8;
  --green:       #7FB8A4;
  --green-dim:   #5A9A85;
  --green-dark:  #3D6B5C;
  --green-soft:  #2A4D3F;
  --blue:        #8C7CFF;
  --blue-dim:    #7A6BE8;
  --blue-dark:   #1D2940;
  --blue-night:  #1e293b;
  --red:         #f87171;
  --red-dim:     #dc2626;
  --red-dark:    #7f1d1d;
  --red-soft:    #450a0a;
  --gold:        #E8B86D;
  --gold-dim:    #D9A652;
  --gold-dark:   #B8923D;
  --lavanda:     #8C7CFF;
  --blue-mist:   #9DB4FF;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}


/* LAYOUT HELPERS */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

.section {
  background: var(--black);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

/* GLOW RADIALS */
.glow-radial {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  filter: blur(100px);
  opacity: 0.14;
}
.glow-red    { width: 600px; height: 400px; background: radial-gradient(ellipse, #450a0a, transparent); top: -100px; left: 50%; transform: translateX(-50%); }
.glow-blue   { width: 500px; height: 300px; background: radial-gradient(ellipse, #1e3a5f, transparent); top: -80px; left: 50%; transform: translateX(-50%); opacity: 0.12; }
.glow-green { width: 500px; height: 300px; background: radial-gradient(ellipse, #064e3b, transparent); top: -60px; left: 50%; transform: translateX(-50%); opacity: 0.12; }
.glow-gold   { width: 600px; height: 400px; background: radial-gradient(ellipse, #451a03, transparent); top: -80px; left: 50%; transform: translateX(-50%); opacity: 0.14; }
.glow-green-strong { width: 700px; height: 500px; background: radial-gradient(ellipse, #064e3b 0%, transparent 70%); top: -150px; left: 50%; transform: translateX(-50%); opacity: 0.22; }
.glow-blue-strong { width: 700px; height: 500px; background: radial-gradient(ellipse, #1e3a5f 0%, rgba(30, 58, 95, 0.3) 50%, transparent 70%); top: -150px; left: 50%; transform: translateX(-50%); opacity: 0.25; }

/* SECTION ARROWS */
.section-arrow {
  text-align: center;
  font-size: 16px;
  color: #222;
  padding: 4px 0;
  background: var(--black);
  letter-spacing: 2px;
}

/* BADGES / TAGS */
.badge {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.04);
  color: var(--gray-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 2px;
  margin-bottom: 28px;
}

.section-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
  white-space: nowrap;
}
.tag-red   { border: 1px solid rgba(239,68,68,0.4);  color: #ef4444; background: rgba(239,68,68,0.06); }
.tag-blue  { border: 1px solid rgba(96,165,250,0.4); color: #60a5fa; background: rgba(96,165,250,0.06); }
.tag-green { border: 1px solid rgba(74,222,128,0.4); color: #4ade80; background: rgba(74,222,128,0.06); }
.tag-white { border: 1px solid rgba(255,255,255,0.2);color: #d0d0d0; background: rgba(255,255,255,0.04); }
.tag-gold  { border: 1px solid rgba(251,191,36,0.4); color: #fbbf24; background: rgba(251,191,36,0.06); }

/* TYPOGRAPHY */
.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.section-lead {
  font-size: 18px;
  color: var(--gray-light);
  line-height: 1.7;
  max-width: 600px;
  margin-bottom: 32px;
}


.grad-text {
  background: linear-gradient(135deg, #60a5fa 0%, #818cf8 50%, #c084fc 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(96,165,250,0.3));
}

.grad-text-red {
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(239,68,68,0.3));
}

.grad-text-green {
  background: linear-gradient(135deg, #4ade80 0%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(74,222,128,0.3));
}

.grad-text-gold {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 20px rgba(251,191,36,0.3));
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  opacity: 0.75;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.1) 0%,
    rgba(0,0,0,0.2) 30%,
    rgba(0,0,0,0.6) 60%,
    rgba(0,0,0,0.92) 80%,
    #000 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px 80px;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
}

.hero-title {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -2px;
  margin-bottom: 32px;
  text-shadow: 0 0 60px rgba(0,0,0,0.8);
  opacity: 0;
  transform: translateY(30px);
  animation: heroFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}


.hero-title-line1 {
  display: block;
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 10px;
  text-align: left !important;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

.hero-title-line1:last-of-type {
  margin-bottom: 24px;
}

.hero-title-line2 {
  display: block;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 1.15;
  margin-bottom: 32px;
  text-align: left !important;
  width: 100%;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 18px);
  color: var(--gray-light);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.2px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.hero-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,0.4), transparent);
  margin: 0 auto 20px;
  opacity: 0;
  animation: heroFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.hero_meta {
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}

.hero-meta {
  font-size: 14px;
  color: var(--gray);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.7s forwards;
}

.cta-subtext {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 12px;
  text-align: center;
}

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

/* PAIN SECTION */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.pain-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: 4px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pain-card p {
  color: var(--gray-light);
  font-size: 15px;
  line-height: 1.5;
}

.pain-icon { font-size: 22px; }

.verbatim-block {
  border-left: 3px solid rgba(239,68,68,0.5);
  padding: 24px 32px;
  background: rgba(239,68,68,0.04);
  border-radius: 0 4px 4px 0;
  position: relative;
}

.quote-mark {
  font-size: 60px;
  color: rgba(239,68,68,0.2);
  line-height: 1;
  display: block;
  margin-bottom: -20px;
  font-family: Georgia, serif;
}

.verbatim-text {
  font-size: 20px;
  font-style: italic;
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.verbatim-src {
  font-size: 12px;
  color: var(--gray);
  letter-spacing: 1px;
}

/* TRUTH SECTION */
.truth-block {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* CONTRAST / BEFORE-AFTER */
.contrast-wrap {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.contrast-arrow-center {
  display: flex;
  align-items: center;
  font-size: 28px;
  color: var(--gray);
  flex-shrink: 0;
  padding: 0 8px;
}

.contrast-card {
  flex: 1;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-wrong {
  border: 1px solid rgba(239,68,68,0.3);
  background: linear-gradient(180deg, rgba(127,29,29,0.12) 0%, rgba(0,0,0,0) 100%);
}

.card-right {
  border: 1px solid rgba(74,222,128,0.3);
  background: linear-gradient(180deg, rgba(5,46,22,0.2) 0%, rgba(0,0,0,0) 100%);
  box-shadow: 0 0 30px rgba(74,222,128,0.06);
}

.contrast-card-header {
  padding: 20px 24px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.contrast-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.label-red   { color: #ef4444; }
.label-green { color: #4ade80; }

.contrast-list {
  list-style: none;
  padding: 20px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contrast-list li {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.5;
  padding-left: 20px;
  position: relative;
}

.card-wrong .contrast-list li::before {
  content: '×';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: 700;
}

.card-right .contrast-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #4ade80;
  font-weight: 700;
}

.contrast-footer {
  padding: 14px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

.footer-red   { background: rgba(239,68,68,0.08);  color: #ef4444; border-top: 1px solid rgba(239,68,68,0.2); }
.footer-green { background: rgba(100, 130, 200, 0.08); color: #9DB4FF; border-top: 1px solid rgba(100, 130, 200, 0.2); }

/* METHOD SECTION */
.method-metaphor {
  margin-bottom: 48px;
}

.metaphor-card {
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  border-radius: 4px;
  padding: 32px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.metaphor-old, .metaphor-new {
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
  color: var(--gray-light);
}

.metaphor-divider {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--gray);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 12px;
  border-radius: 2px;
  flex-shrink: 0;
}

.method-steps {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.step-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 28px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(74,222,128,0.08);
  border-radius: 4px;
  position: relative;
}

.step-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #4ade80, transparent);
  border-radius: 2px 0 0 2px;
}

.step-num {
  font-size: 36px;
  font-weight: 900;
  color: rgba(74,222,128,0.15);
  line-height: 1;
  flex-shrink: 0;
  width: 60px;
  letter-spacing: -2px;
}

.step-content h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.step-content p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
}

/* ICONS GRID */
.icons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

.icon-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 32px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.icon-hex {
  width: 64px;
  height: 64px;
  background: rgba(74,222,128,0.06);
  border: 1px solid rgba(74,222,128,0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
  box-shadow: 0 0 20px rgba(74,222,128,0.08);
}

.icon-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
}

.icon-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
  margin-top: 4px;
}

.stack-section {
  margin-bottom: 48px;
}

.stack-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.stack-continuity {
  background: rgba(74, 222, 128, 0.05);
  border: 1px solid rgba(74, 222, 128, 0.15);
  border-radius: 4px;
  padding: 32px;
}

.continuity-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.continuity-list li {
  font-size: 14px;
  color: var(--gray-light);
}

.offer-section .section-lead {
  text-align: center;
  margin: 0 auto;
}

.price-period {
  font-size: 14px;
  color: var(--gray);
  margin-top: 8px;
}


/* TESTIMONIALS */
.testimonials-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testi-card {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(74,222,128,0.1);
  border-radius: 8px;
  padding: 28px;
}

.testi-context-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #5A8A78;
  margin-bottom: 14px;
  opacity: 0.7;
}

.testi-header {
  margin-bottom: 16px;
}

.testi-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testi-meta strong {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  display: block;
}

.testi-meta span {
  font-size: 12px;
  color: var(--gray);
  display: block;
  margin-top: 2px;
}

.testi-stars {
  font-size: 13px;
  color: #fbbf24;
  letter-spacing: 2px;
  margin-top: 6px;
}

.testi-bubble {
  background: rgba(255,255,255,0.015);
  border: 1px solid rgba(255,255,255,0.03);
  border-radius: 4px;
  padding: 18px;
  margin-bottom: 12px;
}

.testi-bubble p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.7;
}

.testi-time {
  font-size: 11px;
  color: rgba(74,222,128,0.6);
  letter-spacing: 0.3px;
}

/* FAQ SECTION */
.faq-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s ease;
}

.faq-question:hover {
  background: rgba(255,255,255,0.02);
}

.faq-question span:first-child {
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
  flex: 1;
  padding-right: 16px;
}

.faq-icon {
  font-size: 20px;
  color: var(--gray);
  transition: transform 0.3s ease, color 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--white);
}

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

.faq-item.active .faq-answer {
  max-height: 300px;
  padding: 0 24px 20px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--gray-light);
  line-height: 1.7;
}

/* ANCHOR SECTION */
.anchor-compare {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 32px;
}

.anchor-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  transition: all 0.2s ease;
}

.anchor-item:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
}

.anchor-icon { font-size: 22px; width: 32px; flex-shrink: 0; }
.anchor-name { font-size: 15px; font-weight: 600; flex: 1; color: var(--white); }
.anchor-price { font-size: 15px; font-weight: 700; color: #ef4444; flex-shrink: 0; }

.anchor-reason {
  font-size: 17px;
  color: var(--white);
  line-height: 1.8;
  text-align: center;
  font-weight: 500;
  padding: 24px;
  background: rgba(127, 184, 164, 0.08);
  border: 1px solid rgba(127, 184, 164, 0.15);
  border-radius: 8px;
}

/* FINAL TICKET */
.final-section {
  padding-bottom: 100px;
}

.final-ticket {
  position: relative;
  border: 1px solid rgba(100, 130, 200, 0.2);
  background: linear-gradient(135deg, rgba(15, 20, 40, 0.6) 0%, rgba(8, 12, 25, 0.85) 50%, rgba(5, 8, 18, 0.95) 100%);
  border-radius: 4px;
  overflow: visible;
  box-shadow:
    0 0 60px rgba(100, 130, 200, 0.06),
    0 0 120px rgba(80, 100, 180, 0.03),
    0 0 0 1px rgba(100, 130, 200, 0.08);
}

.ticket-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 10;
}
.ticket-corner.tl { top: -1px;    left: -1px;    border-top: 2px solid #9DB4FF; border-left: 2px solid #9DB4FF; }
.ticket-corner.tr { top: -1px;    right: -1px;   border-top: 2px solid #9DB4FF; border-right: 2px solid #9DB4FF; }
.ticket-corner.bl { bottom: -1px; left: -1px;    border-bottom: 2px solid #9DB4FF; border-left: 2px solid #9DB4FF; }
.ticket-corner.br { bottom: -1px; right: -1px;   border-bottom: 2px solid #9DB4FF; border-right: 2px solid #9DB4FF; }

.ticket-texture {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(100, 130, 200, 0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  z-index: 1;
}

.ticket-content {
  position: relative;
  z-index: 2;
  padding: 56px 60px;
  text-align: center;
  overflow: visible;
}

.ticket-badge {
  display: inline-block;
  border: 1px solid rgba(157, 180, 255, 0.4);
  background: rgba(157, 180, 255, 0.08);
  color: #9DB4FF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  padding: 6px 20px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.ticket-emotional {
  font-size: 16px;
  color: var(--white);
  text-align: center;
  margin-bottom: 28px;
  font-weight: 500;
  line-height: 1.5;
}


.ticket-price-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}


.price-main {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  filter: drop-shadow(0 0 30px rgba(157, 180, 255, 0.3));
  overflow: visible;
}

.price-currency {
  font-size: 28px;
  font-weight: 700;
  color: #9DB4FF;
  margin-top: 14px;
  margin-right: 4px;
}

.price-value {
  font-size: 90px;
  font-weight: 900;
  background: linear-gradient(135deg, #9DB4FF 0%, #B8C5FF 50%, #CBD5FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: 0;
  line-height: 1;
  margin-left: 5px;
  display: inline-block;
}

.price-cents {
  font-size: 36px;
  font-weight: 700;
  color: #9DB4FF;
  margin-top: 14px;
}

.ticket-benefit {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 1px;
  margin-bottom: 32px;
}

.ticket-divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(157, 180, 255, 0.15), transparent);
  margin: 32px 0;
}

/* PRODUCT LOGO */
.product-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
}

.logo-icon {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(157, 180, 255, 0.3);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(157, 180, 255, 0.05);
  box-shadow: 0 0 20px rgba(157, 180, 255, 0.1);
}

.logo-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  white-space: nowrap;
}

.logo-text-main {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 2px;
  background: linear-gradient(135deg, #9DB4FF, #CBD5FF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  white-space: nowrap;
}

.logo-text-sub {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--gray);
  white-space: nowrap;
}

/* GUARANTEE */
.guarantee-block {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 4px;
  padding: 24px 28px;
  text-align: left;
}

.guarantee-icon {
  color: #fbbf24;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(251,191,36,0.3));
}

.guarantee-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}

.guarantee-text p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* CTA BUTTON */
.cta-button {
  display: block;
  width: 80%;
  margin: 32px auto 16px;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 50%, #1e3a5f 100%);
  color: #e2e8f0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 22px 36px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid rgba(157, 180, 255, 0.35);
  transition: all 0.3s ease;
  box-shadow: 
    0 0 30px rgba(157, 180, 255, 0.12),
    0 8px 32px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.1),
    inset 0 -1px 0 rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  animation-name: pulse-blue;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes pulse-blue {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 30px rgba(157, 180, 255, 0.15);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 60px rgba(157, 180, 255, 0.3), 0 0 100px rgba(157, 180, 255, 0.15);
  }
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  transition: left 0.5s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 0 40px rgba(157, 180, 255, 0.2),
    0 12px 40px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255,255,255,0.15),
    inset 0 -1px 0 rgba(0, 0, 0, 0.15);
}

.cta-button:hover::before {
  left: 100%;
}

.cta-text.sub { 
  font-size: 12px; 
  color: rgba(255,255,255,0.4); 
  text-align: center;
  margin-top: 0;
}

/* FOOTER */
.footer {
  background: linear-gradient(to bottom, rgba(10, 20, 40, 0.4) 0%, var(--black) 30%);
  border-top: 1px solid rgba(100, 130, 200, 0.1);
  padding: 48px 24px 32px;
  text-align: center;
}

.footer p {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.footer-disclaimer {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* FOOTER EXPORT */
.footer-export {
  background: #F4F5F7;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding: 48px 24px 40px;
  text-align: center;
}

.footer-export p {
  font-size: 14px;
  color: #3D3D3D;
  margin-bottom: 12px;
  font-weight: 500;
}

.footer-export .footer-disclaimer {
  font-size: 12px;
  color: #7A7A7A;
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ANIMAÇÕES AO SCROLL */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}


/* RESPONSIVE - MOBILE REFINADO */
@media (max-width: 680px) {
  /* Layout Base */
  .section { padding: 48px 0; }
  .container { padding: 0 20px; }
  body { padding-top: 0; overflow-x: hidden; }
  
  /* Hero */
  .hero { min-height: 100vh; }
  .hero-content { padding: 0 20px 60px; }
  .hero-title { font-size: 36px; letter-spacing: -1px; line-height: 1.15; }
  .hero-sub { font-size: 16px; }
  .hero_meta { font-size: 12px; letter-spacing: 0.5px; }
  .hero-cta { width: 100%; padding: 16px 24px; font-size: 14px; }
  .cta-subtext { font-size: 11px; }
  .badge { font-size: 9px; padding: 5px 12px; margin-bottom: 20px; }
  .hero-line { width: 40px; margin: 0 auto 20px; }
  
  /* Títulos */
  .section-title { font-size: 28px; letter-spacing: -0.5px; margin-bottom: 16px; }
  .section-tag { font-size: 9px; padding: 4px 12px; margin-bottom: 16px; }
  .section-lead { font-size: 15px; line-height: 1.6; }
  
  /* Grid de Dor */
  .pain-grid { grid-template-columns: 1fr; gap: 12px; }
  .pain-card { padding: 20px 16px; }
  .pain-card p { font-size: 14px; }
  .pain-icon { font-size: 20px; }
  
  /* Verbatim */
  .verbatim-block { padding: 20px; }
  .verbatim-text { font-size: 16px; }
  .quote-mark { font-size: 48px; }
  
  /* Truth Block */
  .truth-block { gap: 24px; }
  .truth-block .section-lead { font-size: 16px; }
  
  /* Metáfora */
  .method-metaphor { margin-bottom: 32px; }
  .metaphor-card { flex-direction: column; gap: 16px; padding: 24px 20px; }
  .metaphor-old, .metaphor-new { font-size: 14px; }
  .metaphor-divider { text-align: center; }
  
  /* Steps */
  .method-steps { gap: 12px; }
  .step-item { flex-direction: column; gap: 16px; padding: 24px 20px; }
  .step-num { font-size: 32px; width: auto; }
  .step-content h3 { font-size: 15px; }
  .step-content p { font-size: 13px; }
  .step-item::before { display: none; }
  
  /* Contraste */
  .contrast-wrap { flex-direction: column; gap: 16px; }
  .contrast-arrow-center { justify-content: center; transform: rotate(90deg); padding: 8px 0; }
  .contrast-card { width: 100%; }
  .contrast-list li { font-size: 13px; padding-left: 18px; }
  .contrast-footer { padding: 12px; font-size: 10px; }
  
  /* Oferta */
  .offer-section .section-lead { font-size: 15px; }
  
  /* Stack/Icons */
  .stack-section { margin-bottom: 32px; }
  .stack-title { font-size: 13px; margin-bottom: 16px; }
  .icons-grid { grid-template-columns: 1fr !important; gap: 12px; margin-bottom: 16px; }
  .icon-card { padding: 24px 20px; gap: 12px; }
  .icon-card:last-child { margin-bottom: 0; }
  .icon-hex { width: 52px; height: 52px; }
  .icon-hex svg { width: 24px; height: 24px; }
  .icon-title { font-size: 14px; }
  .icon-desc { font-size: 12px; }
  
  /* Stack Continuity */
  .stack-continuity { padding: 24px 20px; }
  .continuity-list { gap: 10px; }
  .continuity-list li { font-size: 13px; }
  
  /* Testimonials */
  .testimonials-grid { gap: 16px; }
  .testi-card { padding: 24px 20px; }
  .testi-header { flex-wrap: wrap; gap: 12px; }
  .testi-avatar { width: 48px; height: 48px; }
  .testi-meta { flex: 1; }
  .testi-meta strong { font-size: 14px; }
  .testi-meta span { font-size: 11px; }
  .testi-bubble { padding: 16px; }
  .testi-bubble p { font-size: 13px; }
  .testi-stars { font-size: 12px; }
  .testi-time { font-size: 10px; }
  
  /* Ancoragem */
  .anchor-compare { gap: 10px; }
  .anchor-item { flex-wrap: wrap; gap: 12px; padding: 16px; }
  .anchor-icon { font-size: 20px; width: 28px; }
  .anchor-name { font-size: 13px; }
  .anchor-price { font-size: 13px; }
  .anchor-reason { font-size: 14px; }
  
  /* FAQ */
  .faq-grid { gap: 12px; }
  .faq-question { padding: 16px 20px; }
  .faq-question span:first-child { font-size: 14px; }
  .faq-answer p { font-size: 13px; }
  
  /* Ticket Final */
  .final-ticket { margin: 0 -20px; border-radius: 0; }
  .ticket-content { padding: 32px 20px; }
  .ticket-badge { font-size: 10px; padding: 5px 14px; margin-bottom: 24px; }
  .anchor-old { font-size: 12px; }
  .price-main { filter: none; }
  .price-value { font-size: 56px; }
  .price-currency { font-size: 24px; margin-top: 10px; }
  .price-cents { font-size: 28px; margin-top: 10px; }
  .price-period { font-size: 12px; }
  .ticket-benefit { font-size: 11px; letter-spacing: 0.5px; }
  .ticket-divider-line { margin: 24px 0; }
  .product-logo { flex-direction: column; gap: 12px; }
  .logo-icon { width: 40px; height: 40px; }
  .logo-text-main { font-size: 18px; }
  .logo-text-sub { font-size: 9px; }
  .guarantee-block { flex-direction: column; text-align: center; gap: 16px; padding: 20px; }
  .guarantee-icon { width: 36px; height: 36px; }
  .guarantee-icon svg { width: 28px; height: 28px; }
  .guarantee-text strong { font-size: 14px; }
  .guarantee-text p { font-size: 12px; }
  
  /* CTA */
  .cta-button { 
    width: 100%; 
    font-size: 13px; 
    padding: 16px 20px; 
    animation: none;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
  }
  .cta-button:hover { transform: none; }
  .cta-text.sub { font-size: 11px; }
  
  /* Footer */
  .footer { padding: 32px 20px 24px; }
  .footer p { font-size: 12px; }
  .footer-disclaimer { font-size: 10px; }
  
  /* Setção Arrow */
  .section-arrow { padding: 8px 0; font-size: 14px; }
  
  /* Glows */
  .glow-radial { display: none; }
  
}
