﻿:root {
  --bg: #0f172a;
  --bg-soft: #111827;
  --card: #ffffff;
  --text: #111827;
  --muted: #64748b;
  --light: #f8fafc;
  --soft: #fff7ed;
  --accent: #f97316;
  --accent-dark: #c2410c;
  --border: #e5e7eb;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--light);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.site-header {
  background: rgba(15, 23, 42, 0.95);
  color: white;
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.brand {
  font-size: 1.35rem;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: white;
}

.nav-button,
.primary-button,
.secondary-button {
  display: inline-block;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.2s ease;
}

.nav-button {
  color: white !important;
  border: 1px solid rgba(255,255,255,0.25);
  padding: 10px 18px;
}

.nav-button:hover {
  background: white;
  color: var(--bg) !important;
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.35), transparent 32%),
    linear-gradient(135deg, #0f172a 0%, #111827 55%, #1e293b 100%);
  color: white;
  padding: 88px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
  font-size: 0.82rem;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
  margin: 12px 0 20px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 16px;
}

h3 {
  margin-top: 0;
}

.hero-text {
  font-size: 1.2rem;
  color: #cbd5e1;
  max-width: 680px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.primary-button {
  border: none;
  background: var(--accent);
  color: white;
  padding: 14px 24px;
  cursor: pointer;
  font-size: 1rem;
}

.primary-button:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
}

.secondary-button {
  color: white;
  border: 1px solid rgba(255,255,255,0.3);
  padding: 14px 24px;
}

.secondary-button:hover {
  background: rgba(255,255,255,0.1);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.trust-row span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  color: #e2e8f0;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
}

.product-card {
  background: white;
  color: var(--text);
  padding: 34px;
  border-radius: 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  transform: rotate(2deg);
}

.product-label {
  background: #ffedd5;
  color: var(--accent-dark);
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 900;
  margin-bottom: 18px;
}

.price {
  color: var(--accent);
  font-size: 2.5rem;
  font-weight: 900;
  margin-top: 18px;
}

.mini-note {
  color: var(--muted);
  font-weight: 800;
  margin-bottom: 0;
}

.section {
  padding: 76px 0;
}

.section-intro {
  color: var(--muted);
  line-height: 1.7;
  max-width: 760px;
  font-size: 1.08rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.card p,
.split p,
.buy-box p,
.step p,
.faq-list p {
  color: var(--muted);
  line-height: 1.7;
}

.soft-section {
  background: var(--soft);
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.business-pill {
  background: white;
  border: 1px solid #fed7aa;
  color: #9a3412;
  padding: 16px 14px;
  border-radius: 999px;
  text-align: center;
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.08);
}

.dark-section {
  background: var(--bg-soft);
  color: white;
}

.dark-section p {
  color: #cbd5e1;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  background: rgba(255,255,255,0.08);
  margin-bottom: 12px;
  padding: 16px 18px;
  border-radius: 16px;
  color: #e2e8f0;
}

.check-list li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 900;
  margin-right: 10px;
}

.steps-section {
  background: white;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 30px;
}

.step {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px;
}

.step span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: #ffedd5;
  color: var(--accent-dark);
  font-weight: 900;
  margin-bottom: 18px;
}

.faq-section {
  background: var(--light);
}

.faq-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

details {
  background: white;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

summary {
  cursor: pointer;
  font-weight: 900;
  font-size: 1.05rem;
}

.buy-section {
  background: #fff7ed;
}

.buy-box {
  background: white;
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 20px 70px rgba(15, 23, 42, 0.12);
}

.offer-card {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 30px;
  background: var(--bg);
  color: white;
  border-radius: 24px;
  padding: 32px;
  margin-top: 28px;
  text-align: left;
}

.offer-card ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.offer-card li {
  margin-bottom: 10px;
  color: #e2e8f0;
}

.offer-price {
  background: white;
  color: var(--text);
  border-radius: 22px;
  padding: 28px;
  text-align: center;
}

.offer-price span {
  color: var(--muted);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.offer-price strong {
  display: block;
  color: var(--accent);
  font-size: 4rem;
  line-height: 1;
  margin: 12px 0 22px;
}

.small-note {
  font-size: 0.9rem;
  margin-top: 18px;
}

.site-footer {
  background: var(--bg);
  color: #cbd5e1;
  padding: 24px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer-grid a {
  color: white;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 950px) {
  .hero-grid,
  .split,
  .offer-card {
    grid-template-columns: 1fr;
  }

  .cards,
  .steps {
    grid-template-columns: 1fr;
  }

  .business-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card {
    transform: none;
  }

  .nav {
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 64px 0;
  }

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

  .buy-box {
    padding: 30px;
  }

  .offer-card {
    padding: 22px;
  }

  .footer-grid {
    flex-direction: column;
    text-align: center;
  }

  .nav-links a:not(.nav-button) {
    display: none;
  }
}

.thank-you-hero {
  background:
    radial-gradient(circle at top right, rgba(249, 115, 22, 0.35), transparent 32%),
    linear-gradient(135deg, #0f172a 0%, #111827 55%, #1e293b 100%);
  color: white;
  padding: 88px 0;
}

.thank-you-box {
  max-width: 850px;
  text-align: center;
}

.thank-you-box .hero-text {
  margin-left: auto;
  margin-right: auto;
}

.download-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.download-card,
.download-summary {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.download-card p,
.download-summary li {
  color: var(--muted);
  line-height: 1.7;
}

.number-list {
  padding-left: 22px;
}

.number-list li {
  margin-bottom: 12px;
  font-weight: 800;
}

.notice-box {
  background: #fff7ed;
  border-left: 5px solid var(--accent);
  border-radius: 16px;
  padding: 18px;
  margin-top: 24px;
  color: var(--text);
  line-height: 1.7;
}

.download-summary ul {
  padding-left: 20px;
}

.download-summary li {
  margin-bottom: 10px;
}

@media (max-width: 950px) {
  .download-layout {
    grid-template-columns: 1fr;
  }
}

.preview-section {
  background: white;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 42px;
  align-items: center;
}

.preview-points {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.preview-points div {
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
}

.preview-points strong {
  display: block;
  color: var(--text);
  margin-bottom: 6px;
  font-size: 1.05rem;
}

.preview-points span {
  color: var(--muted);
  line-height: 1.6;
}

.preview-window {
  background: #0f172a;
  border-radius: 28px;
  padding: 14px;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.25);
  transform: rotate(-1.5deg);
}

.preview-topbar {
  display: flex;
  gap: 8px;
  padding: 10px 10px 14px;
}

.preview-topbar span {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.28);
  border-radius: 50%;
}

.preview-content {
  background: white;
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.preview-kicker {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 900;
  font-size: 0.78rem;
  margin: 0 0 8px;
}

.preview-checks {
  list-style: none;
  padding: 0;
  margin: 18px 0;
}

.preview-checks li {
  color: var(--muted);
  padding: 9px 0 9px 30px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.preview-checks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.preview-template {
  background: #fff7ed;
  border-left: 5px solid var(--accent);
  border-radius: 16px;
  padding: 16px;
}

.preview-template p {
  color: var(--muted);
  margin-bottom: 0;
}

.preview-fade {
  margin-top: 18px;
  background: linear-gradient(135deg, #0f172a, #1e293b);
  color: white;
  border-radius: 16px;
  padding: 16px;
  text-align: center;
  font-weight: 900;
}

@media (max-width: 950px) {
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .preview-window {
    transform: none;
  }
}

.policy-page {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 38px;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.08);
}

.policy-page p,
.policy-page li {
  color: var(--muted);
  line-height: 1.7;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.footer-links a {
  color: white;
  font-weight: 900;
  text-decoration: none;
}
