:root {
  color-scheme: light;
  --ink: #0b0d10;
  --muted: #706a60;
  --line: #dfcfad;
  --paper: #f6f0e4;
  --soft: #f3e3bd;
  --brand: #c99a3a;
  --brand-dark: #6f4b12;
  --accent: #e5c16a;
  --charcoal: #07080a;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: #fffaf0;
}

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

.site-header {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6vw;
  border-bottom: 1px solid rgba(201, 154, 58, 0.32);
  background: rgba(255, 250, 240, 0.94);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.1rem;
}

.brand img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-cta {
  color: #8d661c;
  font-weight: 700;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 56px;
  align-items: center;
  padding: 64px 6vw 40px;
  background: linear-gradient(135deg, #fffaf0 0%, #f6f0e4 48%, #f3e3bd 100%);
}

.eyebrow {
  color: #8d661c;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.9rem);
  line-height: 0.98;
  max-width: 860px;
  margin-bottom: 24px;
}

.lead {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 640px;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 14px;
}

.actions.center {
  justify-content: center;
}

.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 800;
}

.primary {
  background: linear-gradient(135deg, #e5c16a, #b98324 52%, #6f4b12);
  color: #11100c;
  box-shadow: 0 14px 30px rgba(201, 154, 58, 0.28);
}

.secondary {
  border: 1px solid var(--line);
  background: white;
}

.microcopy {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffaf0;
  box-shadow: 0 26px 78px rgba(11, 13, 16, 0.18);
  overflow: hidden;
}

.lead-form {
  align-self: center;
}

.panel-top {
  height: 58px;
  display: grid;
  grid-template-columns: 18px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  background: linear-gradient(135deg, #07080a, #17130c 60%, #3a2911);
  border-bottom: 1px solid var(--line);
}

.panel-top span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
}

.panel-top small {
  color: var(--accent);
  font-weight: 700;
}

.panel-top strong {
  color: #fff;
}

.schedule {
  padding: 22px;
}

.lead-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 22px;
}

.lead-fields label {
  display: grid;
  gap: 6px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.plan-choice {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.plan-choice legend {
  grid-column: 1 / -1;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.plan-choice label {
  cursor: pointer;
}

.lead-fields .plan-choice input {
  position: absolute;
  width: 1px !important;
  min-height: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  opacity: 0;
  pointer-events: none;
}

.plan-choice span {
  display: grid;
  gap: 3px;
  min-height: 66px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffefa;
}

.plan-choice strong {
  color: var(--ink);
}

.plan-choice small {
  color: var(--muted);
  font-weight: 800;
}

.plan-choice input:checked + span {
  border-color: var(--brand);
  background: var(--soft);
  box-shadow: 0 12px 26px rgba(201, 154, 58, 0.18);
}

.lead-fields input,
.lead-fields select {
  min-height: 44px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fffefa;
  color: var(--ink);
  padding: 0 12px;
  font: inherit;
  font-weight: 500;
}

.lead-fields .primary,
.form-note {
  grid-column: 1 / -1;
}

.lead-fields .primary {
  border: 0;
  cursor: pointer;
  font-size: 0.98rem;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.slot {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-bottom: 14px;
}

.slot time {
  color: var(--brand-dark);
  font-weight: 800;
}

.slot strong {
  display: block;
  margin-bottom: 5px;
}

.slot span {
  color: var(--muted);
}

.slot.active {
  border-color: var(--brand);
  background: #f3e3bd;
}

.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 20px 6vw 56px;
}

.trust span {
  border: 1px solid var(--line);
  background: #fffaf0;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  font-weight: 700;
}

.features,
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.features,
.pricing,
.final-cta {
  padding: 72px 6vw;
}

.features article,
.plans article {
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 28px;
}

.features h2,
.pricing h2,
.final-cta h2 {
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1.08;
}

.features p,
.plans p,
.final-cta p {
  color: var(--muted);
  line-height: 1.55;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 30px;
}

.price {
  color: var(--ink) !important;
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.price span {
  font-size: 1rem;
  color: var(--muted);
}

ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.featured {
  border-color: var(--brand) !important;
  box-shadow: 0 20px 56px rgba(201, 154, 58, 0.18);
}

.final-cta {
  text-align: center;
  background: var(--soft);
}

.final-cta p {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 28px 6vw;
  border-top: 1px solid var(--line);
  background: #fffaf0;
  color: var(--muted);
}

.site-footer strong {
  color: var(--ink);
}

.site-footer nav {
  display: flex;
  gap: 18px;
  font-size: 0.92rem;
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 72px 6vw;
}

.legal-page h1 {
  font-size: 2.6rem;
  line-height: 1.05;
}

.legal-page section {
  margin-top: 28px;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  line-height: 1.7;
}

@media (max-width: 860px) {
  .site-header {
    height: auto;
    min-height: 68px;
    align-items: flex-start;
    flex-direction: column;
    padding-top: 16px;
    padding-bottom: 16px;
    gap: 12px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.86rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 42px;
    gap: 32px;
  }

  .lead-fields {
    grid-template-columns: 1fr;
    padding: 18px;
  }

  .plan-choice {
    grid-template-columns: 1fr;
  }

  .features,
  .plans {
    grid-template-columns: 1fr;
  }

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