:root {
  --bg: #f7efe7;
  --surface: #fffdf9;
  --ink: #21130b;
  --muted: #6f5647;
  --line: #e8ccb8;
  --primary: #ee5a24;
  --primary-deep: #b53a10;
  --accent: #135d66;
  --success: #1f8f5f;
  --shadow: 0 18px 40px rgba(92, 47, 22, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(238, 90, 36, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(19, 93, 102, 0.1), transparent 24%),
    linear-gradient(180deg, #fff9f4 0%, var(--bg) 100%);
}

a { color: inherit; text-decoration: none; }
.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(12px);
  background: rgba(255, 249, 244, 0.82);
  border-bottom: 1px solid rgba(232, 204, 184, 0.7);
}

.header-inner, .section-head, .cta-banner, .footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.header-inner { min-height: 72px; }
.brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; }
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  box-shadow: 0 10px 20px rgba(238, 90, 36, 0.28);
}

.nav, .header-actions, .hero-actions, .hero-meta, .footer-nav, .actions-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nav { color: var(--muted); font-size: 14px; }

.button,
.ghost-button,
.chip {
  border: none;
  cursor: pointer;
  font: inherit;
}

.button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
}

.button {
  color: #fff;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-deep) 100%);
  box-shadow: 0 12px 22px rgba(238, 90, 36, 0.24);
}

.button.alt {
  background: linear-gradient(135deg, var(--accent) 0%, #0d4349 100%);
  box-shadow: 0 12px 22px rgba(19, 93, 102, 0.22);
}

.ghost-button {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.hero { padding: 56px 0 28px; }
.hero-grid, .cards-3, .cards-4, .steps, .pricing-wrap, .form-grid {
  display: grid;
  gap: 16px;
}

.hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 28px; align-items: start; }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.steps { grid-template-columns: repeat(4, 1fr); }
.pricing-wrap { grid-template-columns: repeat(3, 1fr); gap: 18px; }
.form-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }

.eyebrow {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--primary-deep);
  background: rgba(238, 90, 36, 0.1);
  font-size: 13px;
  font-weight: 700;
}

.hero-copy h1, .section-head h2, .form-shell h2, .policy-shell h1 {
  margin: 16px 0 14px;
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.hero-copy h1 { font-size: clamp(40px, 6vw, 68px); }
.section-head h2, .form-shell h2, .policy-shell h1 { font-size: clamp(28px, 4vw, 40px); }

.hero-copy p, .section-head p, .card p, .card li, .form-shell p, .policy-shell p, .policy-shell li {
  color: var(--muted);
  line-height: 1.75;
}

.hero-card,
.card,
.form-shell,
.policy-shell {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(232, 204, 184, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero-card, .card, .form-shell, .policy-shell { padding: 24px; }
.section { padding: 24px 0 8px; }
.section-head { align-items: end; margin-bottom: 18px; }

.mock-shell {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(232, 204, 184, 0.95);
  background: linear-gradient(180deg, #fff7ef 0%, #ffffff 100%);
}

.mock-topbar {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
}

.mock-dots { display: flex; gap: 8px; }
.mock-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #f1bca0;
}

.mock-main { display: grid; gap: 14px; padding: 16px; }
.mock-banner {
  min-height: 84px;
  border-radius: 18px;
  background: linear-gradient(135deg, #2c140a 0%, #9e350d 55%, #ee5a24 100%);
}

.mock-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.mock-panel, .mock-output, .mock-bar {
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--line);
}
.mock-panel { min-height: 108px; }
.mock-output { min-height: 220px; padding: 18px; }
.mock-output p { margin-top: 10px; }
.mock-bar { min-height: 54px; }

.number {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  margin-bottom: 14px;
  color: var(--primary-deep);
  background: rgba(238, 90, 36, 0.12);
  font-weight: 800;
}

.price { display: flex; align-items: baseline; gap: 10px; margin: 10px 0 12px; }
.price strong { font-size: 42px; letter-spacing: -0.03em; }
.price span { color: var(--muted); }
.list { margin: 14px 0 0; padding-left: 18px; }
.price-card.featured { background: linear-gradient(180deg, #fff4ea 0%, #fffdf9 100%); }

.field { display: grid; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 700; font-size: 14px; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fffdfa;
  color: var(--ink);
  font: inherit;
}
.field textarea { min-height: 120px; resize: vertical; }
.helper { color: var(--muted); font-size: 13px; }

.status-box {
  display: none;
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  font-weight: 600;
}
.status-box.success { display: block; color: #0f5c38; background: rgba(31, 143, 95, 0.12); border: 1px solid rgba(31, 143, 95, 0.24); }
.status-box.error { display: block; color: #8e2919; background: rgba(181, 58, 16, 0.1); border: 1px solid rgba(181, 58, 16, 0.22); }

.faq { display: grid; gap: 12px; }
.faq-item { padding: 18px 20px; }

.cta-banner {
  padding: 24px;
  margin: 24px 0 42px;
  color: #fff;
  background: linear-gradient(135deg, #17313a 0%, #135d66 50%, #2b8791 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 38px rgba(19, 93, 102, 0.2);
}
.cta-banner p { color: rgba(255, 255, 255, 0.82); }

.footer { padding: 26px 0 40px; color: var(--muted); }
.footer-grid { border-top: 1px solid rgba(232, 204, 184, 0.9); padding-top: 18px; }

.policy-page { padding: 48px 0; }
.policy-shell { width: min(860px, calc(100% - 32px)); margin: 0 auto; }
.policy-shell h2 { margin: 28px 0 10px; }

.thanks-shell {
  min-height: calc(100vh - 72px);
  display: grid;
  place-items: center;
  padding: 28px 0 48px;
}

.thanks-card { width: min(720px, calc(100% - 32px)); text-align: center; }

@media (max-width: 960px) {
  .hero-grid, .cards-3, .cards-4, .steps, .pricing-wrap, .form-grid, .mock-grid {
    grid-template-columns: 1fr;
  }
  .header-inner, .section-head, .cta-banner, .footer-grid { flex-direction: column; align-items: stretch; }
  .nav, .header-actions, .footer-nav, .actions-row { justify-content: center; }
}

@media (max-width: 640px) {
  .hero { padding-top: 34px; }
  .button, .ghost-button { width: 100%; }
}
