/* ===== Reset & Tokens ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #1a2e6e;
  --primary-dark: #12204f;
  --primary-light: #2a4590;
  --accent: #c49a2a;
  --accent-hover: #a88220;
  --cta: #7a1f3a;
  --cta-hover: #5e1730;
  --bg: #ffffff;
  --bg-alt: #f6f4ef;
  --bg-dark: #1a2e6e;
  --bg-footer: #15201a;
  --text: #1a2e6e;
  --text-light: #5a6278;
  --text-muted: #8a8f9f;
  --border: #e0ddd6;
  --radius: 8px;
  --radius-lg: 12px;
  --shadow: 0 2px 12px rgba(26,46,110,.08);
  --shadow-lg: 0 8px 32px rgba(26,46,110,.12);
  --max-w: 1120px;
  --transition: .2s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}

img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 14px 0;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo { font-size: 1.2rem; font-weight: 700; color: var(--primary); display: flex; align-items: center; }
.logo-svg { height: 32px; width: auto; }

.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a { color: var(--text-light); font-size: .9rem; font-weight: 500; transition: color var(--transition); }
.nav-links a:hover { color: var(--primary); }

.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--text); margin: 5px 0; transition: .3s;
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, background var(--transition);
  border: none;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-sm { padding: 8px 18px; font-size: .85rem; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; width: 100%; }

.btn-primary { background: var(--cta); color: #fff; }
.btn-primary:hover { background: var(--cta-hover); color: #fff; }

.btn-accent { background: var(--accent); color: #fff; font-weight: 700; }
.btn-accent:hover { background: var(--accent-hover); color: #fff; }

.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--border);
}
.btn-ghost:hover { border-color: var(--primary); }

/* ===== Section generics ===== */
section { padding: 72px 0; }

.section-title {
  text-align: center;
  font-size: 1.75rem;
  margin-bottom: 12px;
  color: var(--text);
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto 48px;
}

/* ===== Hero ===== */
.hero {
  padding: 64px 0 48px;
  background: linear-gradient(170deg, var(--bg-alt) 0%, var(--bg) 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
}

.hero-tag {
  display: inline-block;
  background: rgba(196,154,42,.12);
  color: var(--accent);
  font-size: .8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--text);
}

.hero h1 span { color: var(--accent); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 28px;
  line-height: 1.7;
}

.hero-sub strong { color: var(--text); }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 28px; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .85rem;
  color: var(--text-light);
}

.trust-avatars { display: flex; }
.avatar-img {
  width: 32px; height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  margin-right: -8px;
}

.hero-photo { display: flex; justify-content: center; }

/* ===== About Image ===== */
.about-img {
  width: 280px;
  height: 280px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
}

/* ===== Hero Screenshot ===== */
.hero-screenshot {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* ===== Scarcity banner ===== */
.scarcity-banner {
  background: var(--cta);
  color: #fff;
  text-align: center;
  padding: 14px 0;
  font-size: .9rem;
  font-weight: 500;
}
.scarcity-banner strong { color: var(--accent); }

/* ===== Logos bar ===== */
.logos-bar {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}

.logos-label {
  text-align: center;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.logos-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.logo-placeholder {
  padding: 8px 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: .85rem;
  font-weight: 500;
}

.logo-img {
  height: 40px;
  width: auto;
  object-fit: contain;
}

/* ===== Problems ===== */
.problems { background: var(--bg); padding: 72px 0; }

.problems .section-title { margin-bottom: 40px; }

.problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.problem-card {
  background: #eef0f7;
  border-radius: var(--radius-lg);
  padding: 28px;
  border-left: 4px solid var(--accent);
}

.problem-icon { font-size: 1.5rem; margin-bottom: 12px; }
.problem-card h3 { font-size: 1.05rem; margin-bottom: 8px; color: var(--text); }
.problem-card p { color: var(--text-light); font-size: .9rem; }

/* ===== Stats ===== */
.stats {
  background: var(--primary);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: #fff;
}

.stat-number.accent { color: var(--accent); }

.stat-label {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
  margin-top: 4px;
}

/* ===== Offer / Value Stack ===== */
.offer {
  background: var(--bg);
  padding: 80px 0;
}

.offer .section-title { margin-bottom: 8px; }

.offer-name {
  text-align: center;
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.value-stack {
  max-width: 680px;
  margin: 0 auto;
}

.value-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.value-item:last-child { border-bottom: none; }

.value-item-content {
  flex: 1;
}

.value-item-content h3 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--text);
}

.value-item-content p {
  color: var(--text-light);
  font-size: .85rem;
}

.value-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-left: 24px;
  white-space: nowrap;
}

.value-total {
  max-width: 680px;
  margin: 32px auto 0;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: center;
}

.value-total-line {
  font-size: .95rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.value-total-line .strikethrough {
  text-decoration: line-through;
  color: var(--text-muted);
}

.value-total-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin: 8px 0;
}

.value-total-price .currency {
  font-size: 1rem;
  font-weight: 600;
}

.value-total-note {
  font-size: .8rem;
  color: var(--text-muted);
}

.offer-cta {
  text-align: center;
  margin-top: 32px;
}

/* ===== Guarantee ===== */
.guarantee {
  background: var(--bg-alt);
  padding: 64px 0;
}

.guarantee-box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
}

.guarantee-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.guarantee-box h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--text);
}

.guarantee-box p {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto;
}

.guarantee-box p strong {
  color: var(--text);
}

/* ===== Method / Steps ===== */
.method { background: var(--bg-alt); }

.steps { max-width: 720px; margin: 0 auto; }

.step {
  display: flex;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step:last-child { border-bottom: none; }

.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}

.step-content h3 { font-size: 1.05rem; margin-bottom: 6px; }
.step-time {
  font-size: .75rem;
  font-weight: 500;
  background: rgba(26,46,110,.1);
  color: var(--primary);
  padding: 2px 10px;
  border-radius: 10px;
  margin-left: 8px;
}

.step-content p { color: var(--text-light); font-size: .9rem; }

.method-cta { text-align: center; margin-top: 40px; }

/* ===== Testimonials ===== */
.testimonials { background: var(--bg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.stars { color: var(--accent); font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }

.testimonial-card blockquote {
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.7;
  font-size: .95rem;
}

.testimonial-author { display: flex; gap: 12px; align-items: center; }
.author-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--border);
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: .9rem; }
.author-role { color: var(--text-light); font-size: .8rem; }

/* ===== Result highlight (before/after) ===== */
.result-highlight blockquote {
  font-size: 1.05rem;
}

.result-metric {
  display: inline-block;
  background: rgba(196,154,42,.12);
  color: var(--primary);
  font-weight: 700;
  font-style: normal;
  padding: 2px 8px;
  border-radius: 4px;
}

/* ===== Lead Magnet ===== */
.lead-magnet {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.lead-magnet-grid {
  display: grid;
  grid-template-columns: .4fr .6fr;
  gap: 48px;
  align-items: center;
}

.lm-mockup {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.lm-mockup-title {
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 8px;
}

.lm-mockup-sub { font-size: 1.3rem; font-weight: 700; margin-bottom: 12px; }
.lm-mockup-detail { font-size: .85rem; opacity: .8; }

.lm-tag {
  display: inline-block;
  background: rgba(196,154,42,.12);
  color: #8a6c10;
  font-size: .75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.lm-content h2 { font-size: 1.4rem; margin-bottom: 16px; text-align: left; }

.check-list { list-style: none; margin-bottom: 24px; }
.check-list li {
  padding: 5px 0 5px 24px;
  position: relative;
  color: var(--text-light);
  font-size: .9rem;
}
.check-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.lm-form { display: flex; gap: 10px; flex-wrap: wrap; }

.lm-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: .95rem;
  font-family: inherit;
}

.lm-form input:focus { outline: none; border-color: var(--primary); }

.lm-note { font-size: .75rem; color: var(--text-muted); margin-top: 10px; }

/* ===== About ===== */
.about { background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: .35fr .65fr;
  gap: 48px;
  align-items: center;
}

.about-photo {
  display: flex;
  justify-content: center;
}

.about-text h2 { font-size: 1.5rem; margin-bottom: 16px; text-align: left; }
.about-text p { color: var(--text-light); margin-bottom: 12px; }
.about-text p strong { color: var(--text); }
.about-text .btn { margin-top: 8px; }

/* ===== FAQ ===== */
.faq { background: var(--bg-alt); }

.faq-list { max-width: 720px; margin: 0 auto; }

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.faq-item summary {
  padding: 20px 0;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text);
  transition: color var(--transition);
}

.faq-item summary:hover { color: var(--primary); }

.faq-item summary::after {
  content: "+";
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  content: "\2212";
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item p {
  padding: 0 0 20px;
  color: var(--text-light);
  font-size: .9rem;
  line-height: 1.7;
}

/* ===== Contact ===== */
.contact {
  background: var(--bg-dark);
  color: #fff;
  padding: 72px 0;
}

.contact .section-title { color: #fff; }
.contact .section-subtitle { color: rgba(255,255,255,.6); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 14px; }

.form-group label {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: rgba(255,255,255,.8);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  background: rgba(255,255,255,.07);
  color: #fff;
  font-size: .9rem;
  font-family: inherit;
  transition: border-color var(--transition);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,.3); }

.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--accent); }

.form-group textarea { resize: vertical; min-height: 80px; }

.form-note {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  text-align: center;
  margin-top: 4px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px;
}

.success-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(196,154,42,.2);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.form-success p { color: rgba(255,255,255,.8); font-size: 1rem; }
.form-success strong { color: #fff; }

.contact-info h3 { font-size: 1.1rem; margin-bottom: 12px; }
.contact-info p { color: rgba(255,255,255,.6); margin-bottom: 20px; font-size: .9rem; }

.calendly-placeholder {
  background: rgba(255,255,255,.05);
  border: 2px dashed rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 40px 20px;
  text-align: center;
  color: rgba(255,255,255,.3);
  font-size: .85rem;
  margin-bottom: 24px;
}

.calendly-placeholder code {
  display: block;
  margin-top: 8px;
  font-size: .7rem;
  word-break: break-all;
}

.contact-reassurance { display: flex; flex-direction: column; gap: 10px; }

.contact-reassurance-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.reassurance-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.7);
  font-size: .85rem;
}
.reassurance-item span { color: var(--accent); font-weight: 700; }

/* ===== Footer ===== */
.footer {
  background: var(--bg-footer);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 48px 0 32px;
  color: rgba(255,255,255,.5);
  font-size: .85rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}

.footer .logo { color: #fff; margin-bottom: 8px; display: block; }
.footer-desc { color: rgba(255,255,255,.4); font-size: .85rem; }

.footer-heading {
  font-weight: 600;
  color: rgba(255,255,255,.8);
  margin-bottom: 12px;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,.5); transition: color var(--transition); }
.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal { display: flex; gap: 20px; list-style: none; }
.footer-legal a { color: rgba(255,255,255,.4); }
.footer-legal a:hover { color: rgba(255,255,255,.7); }

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 24px;
    box-shadow: var(--shadow);
    gap: 12px;
  }
  .nav-toggle { display: block; }

  .hero { padding: 40px 0 32px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-photo { order: -1; }

  .problems-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .value-item { flex-direction: column; gap: 4px; align-items: flex-start; }
  .value-price { margin-left: 0; }

  .guarantee-box { padding: 32px 20px; }

  .testimonials-grid { grid-template-columns: 1fr; }

  .lead-magnet-grid { grid-template-columns: 1fr; }
  .lm-visual { display: flex; justify-content: center; }
  .lm-mockup { max-width: 260px; }
  .lm-content h2 { text-align: center; }
  .lm-form { flex-direction: column; }

  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-text h2 { text-align: center; }
  .about-img { width: 200px; height: 200px; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
