:root {
  --bg: #fffaf3;
  --surface: #ffffff;
  --surface-soft: #fff2df;
  --text: #1b1a17;
  --muted: #5f5b52;
  --brand: #ff5f2e;
  --brand-2: #ffba37;
  --line: #eadfce;
  --shadow: 0 18px 38px rgba(31, 24, 15, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 186, 55, 0.2), transparent 35%),
    radial-gradient(circle at 5% 15%, rgba(255, 95, 46, 0.2), transparent 28%),
    var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(255, 250, 243, 0.8);
  border-bottom: 1px solid rgba(234, 223, 206, 0.7);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Syne", sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
}

.brand-glow {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(140deg, var(--brand), var(--brand-2));
  box-shadow: 0 0 16px rgba(255, 95, 46, 0.55);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 10px;
  padding: 0.5rem 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 0.72rem 1rem;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-solid {
  background: linear-gradient(120deg, var(--brand), #ff8a2c);
  color: #fff;
  box-shadow: 0 10px 20px rgba(255, 95, 46, 0.28);
}

.btn-outline {
  border-color: var(--line);
  background: var(--surface);
}

.hero {
  padding: 4.3rem 0 3.2rem;
}

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

.eyebrow {
  margin: 0 0 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.74rem;
  color: #9a4f2b;
}

h1,
h2,
h3 {
  font-family: "Syne", sans-serif;
  line-height: 1.12;
  margin-top: 0;
}

h1 {
  margin-bottom: 1rem;
  font-size: clamp(2rem, 5.7vw, 3.45rem);
}

h2 {
  font-size: clamp(1.6rem, 3.6vw, 2.4rem);
  margin-bottom: 0.8rem;
}

.hero-copy {
  color: var(--muted);
  font-size: 1.04rem;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.35rem;
}

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

.hero-stats article {
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
}

.hero-stats strong {
  display: block;
  font-size: 1.18rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.84rem;
}

.hero-card {
  background: linear-gradient(165deg, #fff5e4, #ffe0af);
  border: 1px solid #f0cf99;
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: var(--shadow);
}

.hero-card ul {
  list-style: none;
  margin: 1rem 0;
  padding: 0;
}

.hero-card li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(152, 99, 42, 0.2);
  font-weight: 600;
}

.hero-card li:last-child {
  border-bottom: 0;
}

.card-note {
  margin: 0.8rem 0 0;
  color: #784324;
  font-size: 0.9rem;
}

.section {
  padding: 3.4rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(255, 242, 223, 0.65), rgba(255, 250, 243, 0.35));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-head {
  margin-bottom: 1.6rem;
}

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

.service-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: var(--surface);
  box-shadow: 0 6px 20px rgba(32, 25, 15, 0.06);
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 1.2rem;
  align-items: start;
}

.check-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.check-list li {
  margin-bottom: 0.35rem;
}

.code-card {
  background: #181817;
  color: #f1ece3;
  border-radius: 14px;
  padding: 1rem;
  border: 1px solid #272523;
  box-shadow: var(--shadow);
}

.code-card p {
  margin-top: 0;
  color: #f6bf62;
  font-weight: 700;
}

pre {
  margin: 0;
  overflow-x: auto;
  font-size: 0.88rem;
}

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

.steps article {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--surface);
  padding: 1rem;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: #ffe2b4;
  font-weight: 800;
  font-family: "Syne", sans-serif;
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  padding: 0.85rem 1rem;
}

.faq-list details + details {
  margin-top: 0.7rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
}

.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-box {
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(255, 95, 46, 0.1), rgba(255, 186, 55, 0.1)),
    var(--surface);
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
}

.cta-box p {
  margin: 0 auto 1.1rem;
  color: var(--muted);
  max-width: 62ch;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 1.4rem 0;
}

.footer-wrap {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  color: var(--muted);
}

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

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

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

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

@media (max-width: 760px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    padding: 0.9rem 1rem 1.1rem;
    background: #fff7ed;
    border-bottom: 1px solid var(--line);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.18s ease;
  }

  .site-nav.open {
    transform: scaleY(1);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

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

  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }
}
