:root {
  --bg: #f6f4ef;
  --surface: #ffffff;
  --surface-muted: #f0ece4;
  --ink: #1d1a17;
  --ink-soft: #4b433d;
  --brand: #e85d04;
  --brand-dark: #bf4300;
  --accent: #0f8b8d;
  --line: #d7d0c6;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 12px 40px rgba(29, 26, 23, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at 10% 0%, #fffdf8, var(--bg) 52%);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  border-radius: var(--radius-sm);
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(246, 244, 239, 0.86);
  border-bottom: 1px solid rgba(215, 208, 198, 0.7);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), #ffbe0b);
  box-shadow: 0 6px 16px rgba(232, 93, 4, 0.34);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.main-nav a {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-weight: 600;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--surface);
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  padding: 0.8rem 1.2rem;
  background: var(--brand);
  color: #fff;
  box-shadow: 0 10px 20px rgba(232, 93, 4, 0.25);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-secondary {
  padding: 0.72rem 1.1rem;
  background: var(--surface);
  border: 1px solid var(--line);
}

.menu-toggle {
  display: none;
}

.hero {
  padding: 4.2rem 0 2.8rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 2rem;
  align-items: center;
}

.kicker {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
  text-transform: uppercase;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0;
  font-family: "Space Grotesk", "Manrope", sans-serif;
}

h1 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

h2 {
  font-size: clamp(1.5rem, 2.7vw, 2.4rem);
}

.lead {
  max-width: 62ch;
  color: var(--ink-soft);
  font-size: 1.07rem;
}

.hero-card {
  background: linear-gradient(160deg, #fff 0%, #fff 55%, #fff6ec 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.hero-stat {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
  margin-top: 1rem;
}

.stat {
  background: var(--surface-muted);
  border-radius: 10px;
  padding: 0.9rem;
}

.stat strong {
  display: block;
  font-size: 1.4rem;
}

.section {
  padding: 3rem 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  box-shadow: 0 4px 14px rgba(29, 26, 23, 0.06);
}

.timeline {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  border-left: 2px solid var(--line);
}

.timeline li {
  padding: 0.2rem 0 1rem 1rem;
  position: relative;
}

.timeline li::before {
  content: "";
  width: 11px;
  height: 11px;
  background: var(--brand);
  border-radius: 999px;
  position: absolute;
  left: -6px;
  top: 0.35rem;
}

.cta-band {
  background: linear-gradient(120deg, #201812, #3f2d22);
  color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
}

.faq-q {
  width: 100%;
  border: 0;
  background: none;
  padding: 1rem;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease;
  padding: 0 1rem;
  color: var(--ink-soft);
}

.faq-item.open .faq-a {
  max-height: 220px;
  padding-bottom: 1rem;
}

form {
  display: grid;
  gap: 0.8rem;
}

label {
  font-weight: 700;
  font-size: 0.93rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.72rem 0.78rem;
  font: inherit;
  background: #fff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  outline: 2px solid rgba(15, 139, 141, 0.15);
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  padding: 1.2rem 0 2rem;
  color: var(--ink-soft);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 0.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 0.45s ease forwards;
}

.reveal:nth-child(2) {
  animation-delay: 0.05s;
}

.reveal:nth-child(3) {
  animation-delay: 0.1s;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 920px) {
  .hero-grid,
  .cards,
  .two-col {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 72px;
    right: 1rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 12px;
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
    padding: 0.4rem;
    box-shadow: var(--shadow);
  }

  .main-nav.open {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
    padding: 0.62rem 0.88rem;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 10px;
    font-weight: 700;
  }
}
