* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:        #001f4f;
  --navy-mid:    #0a2d6a;
  --navy-light:  #e8ecf4;
  --red:         #c41e3a;
  --red-light:   #f7e8eb;
  --red-dark:    #a1182e;
  --teal:        #1a8471;
  --teal-light:  #e4f4f2;
  --teal-dark:   #136b5e;
  --white:       #ffffff;
  --off-white:   #f7f8fc;
  --border:      #dde2ee;
  --ink:         #001f4f;
  --ink-mid:     #3a4a6b;
  --muted:       #7a85a0;
  --radius:      14px;
  --shadow:      0 4px 24px rgba(0,31,79,0.08);
  --shadow-lg:   0 12px 48px rgba(0,31,79,0.13);
}

html { scroll-behavior: smooth; }
body {
  background: var(--off-white);
  color: var(--ink);
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 14px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0,31,79,0.07);
}
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-cta {
  background: var(--red);
  color: white;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.01em;
}
.nav-cta:hover { background: var(--red-dark); color: white; transform: translateY(-1px); box-shadow: 0 4px 16px rgba(196,30,58,0.35); }

/* CONTAINERS */
.container    { max-width: 1000px; margin: 0 auto; padding: 0 28px; }
.container-sm { max-width: 700px;  margin: 0 auto; padding: 0 28px; }

/* HERO */
.hero {
  background: var(--white);
  padding: 80px 28px 76px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, #f7e8eb 0%, transparent 68%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -100px; left: -100px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, #e4f4f2 0%, transparent 68%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; }

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-light);
  color: var(--teal);
  font-size: 13px; font-weight: 700;
  padding: 7px 16px; border-radius: 50px;
  margin-bottom: 28px; letter-spacing: 0.03em;
  border: 1px solid rgba(26,132,113,0.2);
}
.hero-eyebrow::before {
  content: ''; width: 7px; height: 7px;
  background: var(--teal); border-radius: 50%;
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.35; transform: scale(0.75); }
}

.hero h1 {
  font-size: clamp(34px, 5.5vw, 60px);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -1px; color: var(--navy);
  margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--red); }

.hero-sub {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--ink-mid); max-width: 580px;
  margin: 0 auto 40px; font-weight: 400; line-height: 1.75;
}

.hero-price-wrap {
  display: inline-flex; align-items: center; gap: 24px;
  background: var(--off-white);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 36px; margin-bottom: 32px;
  flex-wrap: wrap; justify-content: center;
}
.price-was { font-size: 17px; color: var(--muted); text-decoration: line-through; font-weight: 500; }
.price-divider { width: 1px; height: 40px; background: var(--border); }
.price-now-wrap { text-align: left; }
.price-now { font-size: 56px; font-weight: 800; color: var(--red); line-height: 1; display: block; }
.price-note { font-size: 12px; color: var(--muted); font-weight: 500; margin-top: 3px; }

.hero-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--navy); color: white;
  font-size: 17px; font-weight: 700;
  padding: 18px 44px; border-radius: 10px;
  border: none; cursor: pointer; transition: all 0.2s;
  box-shadow: 0 6px 28px rgba(0,31,79,0.25);
  letter-spacing: 0.01em;
}
.hero-btn:hover { background: var(--navy-mid); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(0,31,79,0.32); }
.hero-btn svg { width: 20px; height: 20px; }

.hero-trust {
  margin-top: 22px;
  display: flex; justify-content: center; align-items: center;
  gap: 24px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: var(--muted); font-weight: 500;
}
.trust-item svg { width: 15px; height: 15px; color: var(--teal); }

/* CHANNEL STRIP */
.channels-strip { background: var(--navy); padding: 26px 28px; }
.channels-inner {
  max-width: 1000px; margin: 0 auto;
  display: flex; align-items: center; gap: 10px;
  flex-wrap: wrap; justify-content: center;
}
.channels-label {
  font-size: 11px; font-weight: 700; color: #5a6a8a;
  letter-spacing: 0.12em; text-transform: uppercase; margin-right: 8px;
}
.channel-pill {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: #c8d0e0; font-size: 13px; font-weight: 500;
  padding: 7px 14px; border-radius: 50px;
}
.channel-pill span { font-size: 15px; }

/* SECTIONS */
section { padding: 80px 0; }

.section-tag {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--teal); margin-bottom: 14px;
}
.section-tag::before {
  content: ''; display: block; width: 20px; height: 2px;
  background: var(--teal); border-radius: 2px;
}

h2.section-title {
  font-size: clamp(26px, 3.8vw, 42px);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.5px; color: var(--navy); margin-bottom: 12px;
}
h2.section-title em { font-style: normal; color: var(--red); }

.section-sub {
  font-size: 17px; color: var(--ink-mid);
  max-width: 540px; line-height: 1.75; margin-bottom: 48px;
}

/* INCLUDED CARDS */
.included-bg { background: var(--white); }
.included-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }

.included-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: all 0.2s;
  border-top: 3px solid var(--border);
}
.included-card:hover { border-color: var(--red); border-top-color: var(--red); box-shadow: var(--shadow); transform: translateY(-2px); }
.included-card.social { background: var(--teal-light); border-top-color: var(--teal); border-color: rgba(26,132,113,0.25); }
.included-card.social:hover { border-color: var(--teal); }

.card-icon {
  width: 46px; height: 46px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 16px;
  background: var(--red-light);
}
.card-icon.teal { background: var(--teal-light); }
.card-icon.navy { background: var(--navy-light); }

.included-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 7px; line-height: 1.3; }
.included-card p  { font-size: 14px; color: var(--ink-mid); line-height: 1.6; }

.card-value {
  display: inline-block; margin-top: 14px;
  font-size: 12px; font-weight: 700; color: var(--teal);
  background: var(--teal-light); padding: 3px 10px; border-radius: 50px;
  border: 1px solid rgba(26,132,113,0.2);
}

/* SOCIAL SPOTLIGHT */
.social-spotlight {
  background: linear-gradient(135deg, var(--teal-light) 0%, #e8ecf4 100%);
  border: 1px solid rgba(26,132,113,0.25);
  border-radius: 20px; padding: 40px; margin-top: 40px;
  position: relative; overflow: hidden;
}
.social-spotlight::before {
  content: '📱'; position: absolute; right: -10px; top: -10px;
  font-size: 120px; opacity: 0.06; pointer-events: none;
}
.social-spotlight-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--teal); color: white;
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; padding: 5px 14px;
  border-radius: 50px; margin-bottom: 18px;
}
.social-spotlight h3 {
  font-size: 26px; font-weight: 800; color: var(--navy);
  margin-bottom: 10px; letter-spacing: -0.3px;
}
.social-spotlight p { font-size: 15px; color: var(--ink-mid); line-height: 1.75; max-width: 580px; margin-bottom: 24px; }

.social-checks { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; }
.social-check { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--ink-mid); font-weight: 500; }
.check-icon {
  width: 20px; height: 20px; background: var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px;
}
.check-icon svg { width: 11px; height: 11px; color: white; }

/* VALUE STACK */
.value-bg { background: var(--off-white); }
.value-table {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 18px; overflow: hidden; box-shadow: var(--shadow);
}
.value-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 28px; border-bottom: 1px solid var(--border);
  gap: 16px; transition: background 0.15s;
}
.value-row:hover { background: #f7f8fc; }
.value-row:last-child { border-bottom: none; }
.value-row.bonus-row { background: var(--red-light); }
.value-row.bonus-row:hover { background: #f2dfe3; }
.value-row.social-row { background: var(--teal-light); }
.value-row.social-row:hover { background: #d4eeeb; }

.value-row-left { flex: 1; }
.value-row-tag { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted); margin-bottom: 3px; }
.value-row.bonus-row  .value-row-tag { color: var(--red-dark); }
.value-row.social-row .value-row-tag { color: var(--teal-dark); }
.value-row-name { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 3px; }
.value-row-desc { font-size: 13px; color: var(--muted); line-height: 1.5; }
.value-row-price { font-size: 22px; font-weight: 800; color: var(--red); white-space: nowrap; font-variant-numeric: tabular-nums; }
.value-row.bonus-row .value-row-price { color: var(--red-dark); }

.value-subtotal {
  padding: 22px 28px; background: var(--navy-light);
  display: flex; justify-content: space-between; align-items: center;
  border-top: 2px dashed var(--border);
}
.subtotal-label { font-size: 14px; font-weight: 600; color: var(--ink-mid); }
.subtotal-amount { font-size: 30px; font-weight: 800; color: var(--navy); }
.subtotal-amount s { font-size: 18px; color: var(--muted); font-weight: 400; margin-right: 10px; }

.value-final-row {
  padding: 26px 28px; background: var(--navy);
  display: flex; justify-content: space-between; align-items: center;
}
.final-label { font-size: 16px; font-weight: 700; color: white; }
.final-label small { display: block; font-size: 12px; font-weight: 400; opacity: 0.6; margin-top: 3px; }
.final-price { font-size: 46px; font-weight: 800; color: var(--white); }

/* BONUSES */
.bonuses-bg { background: var(--white); }
.bonuses-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; }
.bonus-card {
  border: 2px dashed var(--border); border-radius: var(--radius);
  padding: 28px 24px; background: var(--off-white); transition: all 0.2s;
}
.bonus-card:hover { border-color: var(--red); background: var(--red-light); }
.bonus-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: var(--red-dark);
  background: white; border: 1px solid var(--border);
  padding: 4px 10px; border-radius: 50px; margin-bottom: 14px;
}
.bonus-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 8px; line-height: 1.3; }
.bonus-card p  { font-size: 14px; color: var(--ink-mid); line-height: 1.6; }
.bonus-value   { margin-top: 14px; font-size: 13px; font-weight: 700; color: var(--teal); }

/* HOW IT WORKS */
.how-bg { background: var(--off-white); }
.steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0; position: relative;
}
.steps::before {
  content: ''; position: absolute;
  top: 28px; left: 0; right: 0; height: 2px;
  background: var(--border); z-index: 0;
}
.step { text-align: center; padding: 0 20px; position: relative; z-index: 1; }
.step-num {
  width: 56px; height: 56px; background: var(--navy);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 20px;
  font-size: 20px; font-weight: 800; color: var(--white);
}
.step h3 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step p   { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* FAQ */
/* Social Proof */
.proof-bg { background: var(--navy); }
.proof-bg .section-tag { background: rgba(196,30,58,0.15); color: var(--red); border-color: rgba(196,30,58,0.3); }
.proof-bg .section-title { color: var(--white); }
.proof-bg .section-sub { color: rgba(255,255,255,0.6); }
.proof-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
@media(max-width:800px){ .proof-grid { grid-template-columns: 1fr; } }
.proof-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px;
}
.proof-stars { color: var(--red); font-size: 18px; margin-bottom: 14px; letter-spacing: 2px; }
.proof-quote { color: rgba(255,255,255,0.85); font-size: 14.5px; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.proof-author { display: flex; align-items: center; gap: 12px; }
.proof-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--red); color: white; font-weight: 700; font-size: 13px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.proof-name { font-weight: 700; color: var(--white); font-size: 14px; }
.proof-role { font-size: 12px; color: rgba(255,255,255,0.5); margin-top: 2px; }
.proof-bar { display: flex; align-items: center; justify-content: center; gap: 0; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 24px; margin-top: 8px; }
.proof-stat { text-align: center; flex: 1; }
.proof-num { display: block; font-size: 28px; font-weight: 800; color: var(--red); letter-spacing: -0.5px; }
.proof-label { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 4px; display: block; }
.proof-divider { width: 1px; height: 50px; background: rgba(255,255,255,0.12); flex-shrink: 0; }

.faq-bg { background: var(--white); }
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 700px; }
.faq-item {
  background: var(--off-white); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; transition: border-color 0.2s;
}
.faq-item:hover { border-color: var(--teal); }
.faq-q {
  padding: 20px 24px; font-size: 15px; font-weight: 600; color: var(--navy);
  cursor: pointer; display: flex; justify-content: space-between;
  align-items: center; gap: 12px; user-select: none;
}
.faq-q::after { content: '+'; font-size: 22px; font-weight: 300; color: var(--muted); flex-shrink: 0; transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.open .faq-a { max-height: 200px; }
.faq-a-inner {
  padding: 0 24px 20px; padding-top: 16px;
  font-size: 14px; color: var(--ink-mid); line-height: 1.75;
  border-top: 1px solid var(--border);
}

/* GUARANTEE */
.guarantee-bg { background: var(--off-white); }
.guarantee-box {
  background: var(--white); border: 2px solid var(--teal);
  border-radius: 20px; padding: 52px 44px; text-align: center;
  max-width: 660px; margin: 0 auto;
  box-shadow: 0 8px 40px rgba(26,132,113,0.1);
}
.guarantee-icon {
  width: 72px; height: 72px; background: var(--teal-light);
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-size: 32px; margin: 0 auto 24px;
}
.guarantee-box h3 { font-size: 26px; font-weight: 800; color: var(--navy); margin-bottom: 14px; letter-spacing: -0.3px; }
.guarantee-box p  { font-size: 16px; color: var(--ink-mid); line-height: 1.8; }
.guarantee-box strong { color: var(--teal); }

/* CTA SECTION */
.cta-section {
  background: var(--navy); padding: 100px 28px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,30,58,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section::after {
  content: ''; position: absolute; bottom: -120px; left: -120px;
  width: 440px; height: 440px;
  background: radial-gradient(circle, rgba(26,132,113,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.cta-section h2 {
  font-size: clamp(30px, 5vw, 52px); font-weight: 800;
  color: white; letter-spacing: -0.5px; margin-bottom: 16px;
  line-height: 1.15; position: relative; z-index: 1;
}
.cta-section h2 em { font-style: normal; color: var(--red); }
.cta-section p {
  font-size: 17px; color: #8a96b8; margin-bottom: 40px;
  max-width: 480px; margin-left: auto; margin-right: auto;
  line-height: 1.75; position: relative; z-index: 1;
}
.cta-main-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--red); color: white;
  font-size: 18px; font-weight: 800;
  padding: 20px 52px; border-radius: 10px;
  border: none; cursor: pointer; transition: all 0.2s;
  box-shadow: 0 8px 32px rgba(196,30,58,0.35);
  position: relative; z-index: 1; letter-spacing: 0.01em;
}
.cta-main-btn:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(196,30,58,0.45); }
.cta-reassurance {
  margin-top: 22px;
  display: flex; justify-content: center; gap: 24px;
  flex-wrap: wrap; position: relative; z-index: 1;
}
.reassurance-item {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; color: #5a6a8a; font-weight: 500;
}
.reassurance-item svg { width: 14px; height: 14px; color: var(--teal); }

/* FOOTER */
footer { background: #080f20; padding: 32px 28px; text-align: center; }
footer p { font-size: 13px; color: #3a4a6b; }
footer a { color: #5a6a8a; text-decoration: none; }
footer a:hover { color: var(--red); }
.footer-logo { margin-bottom: 16px; }
.footer-logo img { height: 36px; opacity: 0.7; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-inner > * { animation: fadeUp 0.6s ease both; }
.hero-eyebrow       { animation-delay: 0.05s; }
.hero h1            { animation-delay: 0.15s; }
.hero-sub           { animation-delay: 0.25s; }
.hero-price-wrap    { animation-delay: 0.35s; }
.hero-btn           { animation-delay: 0.43s; }
.hero-trust         { animation-delay: 0.50s; }

/* POLICY PAGES STYLES */
.policy-hero {
  background: var(--white);
  padding: 80px 28px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.policy-hero h1 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.policy-intro {
  font-size: 17px;
  color: var(--ink-mid);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}

.policy-content {
  background: var(--off-white);
  padding: 80px 28px;
}

.policy-section {
  background: var(--white);
  padding: 32px;
  margin-bottom: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.policy-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.3;
}

.policy-section h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-top: 20px;
  margin-bottom: 12px;
}

.policy-section p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 12px;
}

.policy-section ul {
  margin-left: 24px;
  margin-bottom: 16px;
}

.policy-section li {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 8px;
  list-style-type: disc;
}

.policy-section a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}

.policy-section a:hover {
  text-decoration: underline;
}

.policy-note {
  font-size: 13px;
  color: var(--red);
  font-style: italic;
  margin-top: 16px;
  padding: 12px;
  background: #f7e8eb;
  border-left: 3px solid var(--red);
  border-radius: 4px;
}

/* REFUND POLICY STYLES */
.terms-list {
  margin-top: 24px;
}

.term-item {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  padding: 20px;
  background: var(--off-white);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.term-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--red);
  color: white;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 14px;
}

.term-content {
  flex: 1;
}

.term-content p {
  margin-bottom: 12px;
}

.term-content ul {
  margin-left: 24px;
  margin-bottom: 0;
}

.refund-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 24px;
}

.step-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: all 0.2s;
}

.step-box:hover {
  border-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--red);
  color: white;
  font-weight: 700;
  border-radius: 50%;
  flex-shrink: 0;
  font-size: 13px;
}

.step-box h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
}

.step-box p {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.7;
  margin-bottom: 0;
}

.contact-section {
  background: var(--navy-light);
  border: 2px solid var(--border);
  color: var(--navy);
}

.contact-info {
  margin-top: 24px;
}

.contact-info h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.contact-info p {
  font-size: 14px;
  color: var(--ink-mid);
  margin-bottom: 0;
}

/* THANK YOU PAGE STYLES */
.thankyou-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 120px 28px;
  text-align: center;
  color: white;
}

.success-icon {
  margin-bottom: 40px;
  animation: scaleUp 0.8s ease-out;
}

.success-icon svg {
  display: inline-block;
  filter: drop-shadow(0 4px 12px rgba(26,132,113,0.3));
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.thankyou-hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: white;
}

.thankyou-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.confirmation-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.confirmation-item {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 16px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.2s;
}

.confirmation-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

.check-icon {
  width: 24px;
  height: 24px;
  color: #1a8471;
  flex-shrink: 0;
}

.confirmation-item p {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: white;
}

.whatsnext-section {
  background: var(--off-white);
  padding: 80px 28px;
}

.whatsnext-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.section-description {
  font-size: 16px;
  color: var(--ink-mid);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  margin-bottom: 40px;
  align-items: flex-start;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 40px;
  top: 100px;
  width: 2px;
  height: 100%;
  background: linear-gradient(180deg, var(--red) 0%, transparent 100%);
}

.timeline-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--red) 0%, #e63946 100%);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(196,30,58,0.3);
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.timeline-content h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}

.timeline-content p:first-of-type {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.6;
  margin: 0 !important;
}

.email-notification {
  background: white;
  padding: 60px 28px;
}

.notification-box {
  background: linear-gradient(135deg, var(--teal-light) 0%, #e8ecf4 100%);
  border: 2px solid var(--teal);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
}

.notification-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: white;
  border-radius: 50%;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(26,132,113,0.1);
}

.notification-icon svg {
  width: 32px;
  height: 32px;
  color: var(--teal);
  stroke-width: 2;
}

.notification-box h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.notification-box p {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 1.7;
  margin: 0;
}

.deliverables-section {
  background: var(--off-white);
  padding: 80px 28px;
}

.deliverables-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 40px;
}

.deliverable-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  transition: all 0.2s;
  border-top: 3px solid var(--border);
}

.deliverable-card:hover {
  border-color: var(--red);
  border-top-color: var(--red);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.deliverable-card.bonus-card {
  background: linear-gradient(135deg, var(--red-light) 0%, white 100%);
  border-top-color: var(--red);
  border-color: var(--red-light);
}

.deliverable-icon {
  font-size: 36px;
  margin-bottom: 12px;
}

.deliverable-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
}

.deliverable-card p {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 1.6;
  margin-bottom: 12px;
}

.deliverable-value {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal);
  background: var(--teal-light);
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid rgba(26,132,113,0.2);
}

.deliverable-card.bonus-card .deliverable-value {
  color: var(--red);
  background: white;
  border-color: var(--red-light);
}

.bonus-value {
  color: var(--red) !important;
}

.total-value {
  background: white;
  border: 2px solid var(--red);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
}

.total-value p {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.strikethrough {
  display: block;
  font-size: 20px;
  color: var(--muted);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.your-price {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--red);
  letter-spacing: -0.5px;
}

.support-section {
  background: white;
  padding: 80px 28px;
}

.support-section h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: var(--navy);
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}

.support-section > p {
  font-size: 16px;
  color: var(--ink-mid);
  text-align: center;
  margin-bottom: 40px;
}

.support-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.support-box {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  transition: all 0.2s;
}

.support-box:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.support-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.support-box p {
  font-size: 15px;
  margin-bottom: 12px;
}

.support-box a {
  color: var(--red);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
}

.support-box a:hover {
  color: var(--red-dark);
  text-decoration: underline;
}

.support-time {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 500;
  margin-top: 8px;
}

.thankyou-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  padding: 80px 28px;
  text-align: center;
  color: white;
}

.thankyou-cta h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
  color: white;
}

.thankyou-cta p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--red);
  color: white;
  font-size: 17px;
  font-weight: 700;
  padding: 18px 44px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 6px 28px rgba(196,30,58,0.25);
  letter-spacing: 0.01em;
}

.cta-button:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 36px rgba(196,30,58,0.32);
}

/* RESPONSIVE */
@media (max-width: 600px) {
  nav { padding: 12px 16px; }
  .hero { padding: 52px 16px 48px; }
  .steps::before { display: none; }
  .step { padding: 0 8px; }
  .guarantee-box { padding: 36px 20px; }
  .value-row { flex-direction: column; align-items: flex-start; gap: 8px; }
  .cta-section { padding: 72px 20px; }
  
  /* Policy Pages Responsive */
  .policy-hero { padding: 64px 16px; }
  .policy-hero h1 { font-size: 24px; }
  .policy-content { padding: 60px 16px; }
  .policy-section { padding: 20px 16px; margin-bottom: 16px; }
  
  /* Thank You Page Responsive */
  .thankyou-hero { padding: 60px 16px; }
  .thankyou-hero h1 { font-size: 28px; }
  .confirmation-box { grid-template-columns: 1fr; }
  .whatsnext-section { padding: 60px 16px; }
  .timeline-item { grid-template-columns: 60px 1fr; gap: 16px; }
  .timeline-marker { width: 60px; height: 60px; font-size: 18px; }
  .timeline-item:not(:last-child)::after { left: 30px; }
  .notification-box { padding: 24px 16px; }
  .deliverables-grid { grid-template-columns: 1fr; }
  .support-options { grid-template-columns: 1fr; }
  .thankyou-cta { padding: 60px 16px; }
}
