/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* ── Base ── */
html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: #0F0F0F;
  color: #E5E5E5;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: #FF6B35; text-decoration: none; }
a:hover { text-decoration: underline; }

img { display: block; max-width: 100%; }

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
header {
  position: sticky;
  top: 0;
  background: rgba(15, 15, 15, 0.95);
  border-bottom: 1px solid #2A2A2A;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.logo-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo {
  border-radius: 8px;
}

.logo-text {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
}

.header-cta {
  font-size: 14px;
  font-weight: 600;
  color: #FF6B35;
}

/* ── Hero ── */
.hero {
  padding: 80px 0 64px;
}

.hero h1 {
  font-size: 36px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero-sub {
  font-size: 17px;
  color: #9CA3AF;
  max-width: 540px;
  margin-bottom: 32px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: default;
  text-decoration: none;
}

.btn-primary {
  background: #FF6B35;
  color: #FFFFFF;
}

.btn-secondary {
  background: #1A1A1A;
  color: #E5E5E5;
  border: 1px solid #2A2A2A;
}

/* ── Sections ── */
section {
  padding: 64px 0;
}

section + section {
  border-top: 1px solid #1A1A1A;
}

h2 {
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 32px;
}

/* ── Problem ── */
.problem-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.problem-list li {
  font-size: 16px;
  color: #E5E5E5;
  padding-left: 20px;
  position: relative;
}

.problem-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #FF6B35;
  border-radius: 50%;
}

/* ── How it works ── */
.steps {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: #FF6B35;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 700;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  font-size: 17px;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 4px;
}

.step p {
  font-size: 15px;
  color: #9CA3AF;
}

/* ── Benefits ── */
.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.benefits-list li {
  font-size: 16px;
  color: #E5E5E5;
  padding-left: 20px;
  position: relative;
}

.benefits-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  background: #FF6B35;
  border-radius: 50%;
}

/* ── Pricing ── */
.pricing-headline {
  font-size: 40px;
  font-weight: 800;
  color: #FF6B35;
  margin-bottom: 8px;
}

.pricing-unit {
  font-size: 18px;
  font-weight: 500;
  color: #9CA3AF;
}

.pricing-subtext {
  font-size: 16px;
  color: #9CA3AF;
  margin-bottom: 32px;
}

.pricing-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-card {
  background: #1A1A1A;
  border: 1px solid #2A2A2A;
  border-radius: 12px;
  padding: 24px;
}

.pricing-card-label {
  font-size: 12px;
  font-weight: 700;
  color: #FF6B35;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.pricing-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.pricing-card-desc {
  font-size: 14px;
  color: #9CA3AF;
  margin-bottom: 16px;
}

.pricing-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pricing-details li {
  font-size: 14px;
  color: #D1D5DB;
  padding-left: 18px;
  position: relative;
}

.pricing-details li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: #6B7280;
}

/* ── Final CTA ── */
.final-cta {
  text-align: center;
}

.final-cta h2 {
  margin-bottom: 16px;
}

.cta-message {
  font-size: 17px;
  color: #9CA3AF;
  margin-bottom: 28px;
}

.final-cta .cta-row {
  justify-content: center;
  margin-bottom: 24px;
}

.cta-contact {
  font-size: 14px;
  color: #6B7280;
}

.cta-subtext {
  font-size: 13px;
  color: #6B7280;
  margin-top: 12px;
}

/* ── Footer ── */
footer {
  border-top: 1px solid #1A1A1A;
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  color: #6B7280;
}

/* ── Responsive ── */
@media (max-width: 480px) {
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 28px; }
  .pricing-headline { font-size: 32px; }
  .cta-row { flex-direction: column; }
  .btn { text-align: center; }
  .footer-inner { flex-direction: column; gap: 8px; text-align: center; }
}
main h1 {
  font-size: 36px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 16px;
}

main h3 {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
  margin: 24px 0 8px;
}

main p {
  margin-bottom: 16px;
  color: #D1D5DB;
}

main ul {
  margin: 0 0 16px 20px;
}

main li {
  margin-bottom: 8px;
  color: #D1D5DB;
}
