/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --orange: #E07A2F;
  --orange-hover: #c96a25;
  --dark: #1a1a1a;
  --gray: #666;
  --light-gray: #f7f7f7;
  --border: #e0e0e0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--orange);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 80px 0;
}

/* CTA Button */
.cta {
  display: inline-block;
  background: var(--orange);
  color: #fff;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.cta:hover {
  background: var(--orange-hover);
  text-decoration: none;
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  padding: 100px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero .subheadline {
  font-size: 1.25rem;
  color: var(--gray);
  max-width: 540px;
  margin: 0 auto 32px;
}

.hero .cta {
  margin-bottom: 16px;
}

.hero-screenshot {
  max-width: 360px;
  margin: 40px auto 0;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--light-gray);
  aspect-ratio: 9/16;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 0.875rem;
}

.hero-screenshot img {
  border-radius: 16px;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  background: var(--light-gray);
}

.section-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 48px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  text-align: center;
}

.step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-weight: 700;
  font-size: 1.25rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.step p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.feature {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.feature-icon {
  font-size: 1.75rem;
  margin-bottom: 12px;
}

.feature h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.feature p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ===== SCREENSHOTS ===== */
.screenshots {
  background: var(--light-gray);
}

.screenshot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.screenshot-slot {
  border-radius: 16px;
  overflow: hidden;
}

.screenshot-slot img {
  border-radius: 16px;
  width: 100%;
  height: auto;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 24px 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--border);
}

.faq-item h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.faq-item p {
  color: var(--gray);
  font-size: 0.95rem;
}

/* ===== PRICING ===== */
.pricing {
  background: var(--light-gray);
  text-align: center;
}

.pricing-context {
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto 32px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.price-card {
  max-width: 400px;
  margin: 0 auto;
  background: #fff;
  border: 2px solid var(--orange);
  border-radius: 16px;
  padding: 40px 32px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 800;
}

.price-amount span {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--gray);
}

.price-trial {
  color: var(--orange);
  font-weight: 600;
  font-size: 1.125rem;
  margin: 8px 0 4px;
}

.price-cancel {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 24px;
}

.price-features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
}

.price-features li {
  padding: 8px 0;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-features li::before {
  content: "\2713";
  color: var(--orange);
  font-weight: 700;
}

/* ===== FOOTER ===== */
footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.875rem;
  color: var(--gray);
}

footer .footer-links {
  margin-bottom: 12px;
}

footer .footer-links a {
  margin: 0 12px;
}

footer .crisis-note {
  margin-top: 12px;
  font-size: 0.8rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.25rem;
  }

  .hero .subheadline {
    font-size: 1.1rem;
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 320px;
    margin: 0 auto;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .screenshot-grid {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
  }

  section {
    padding: 56px 0;
  }

  .hero {
    padding: 72px 0 56px;
  }

  .cta {
    padding: 14px 32px;
    font-size: 1rem;
  }
}
