:root {
  --ink: #16211d;
  --muted: #5d675f;
  --paper: #fbfaf6;
  --line: #d9d4c8;
  --green: #256d59;
  --green-dark: #124838;
  --coral: #c84e38;
  --gold: #d9a72e;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: rgba(16, 25, 22, .72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--gold), #f0cf69);
  color: #101916;
  font-size: 16px;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 3vw, 28px);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  padding: 112px clamp(18px, 5vw, 70px) 48px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(12, 18, 16, .93) 0%, rgba(12, 18, 16, .72) 42%, rgba(12, 18, 16, .20) 100%),
    url("/assets/hero-dashboard.png") center / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(12, 18, 16, .72), transparent);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  font-size: clamp(58px, 10vw, 132px);
  line-height: .9;
  letter-spacing: 0;
}

.hero-copy {
  width: min(660px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, .86);
  font-size: clamp(18px, 2.2vw, 25px);
}

.hero-actions,
.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 13px 18px;
  background: var(--green);
  color: var(--white);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 16px 32px rgba(25, 75, 59, .26);
}

.button:hover {
  background: var(--green-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .28);
  box-shadow: none;
}

.button-secondary:hover {
  background: rgba(255, 255, 255, .20);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(760px, 100%);
  margin: 42px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .14);
}

.hero-metrics div {
  padding: 18px;
  background: rgba(12, 18, 16, .62);
}

.hero-metrics dt {
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}

.hero-metrics dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 14px;
}

.section {
  padding: clamp(56px, 9vw, 104px) 0;
}

.section-inner {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.split,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: start;
}

.section h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 66px);
  line-height: 1;
  letter-spacing: 0;
}

.section p {
  color: var(--muted);
  font-size: 18px;
}

.intro-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

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

.price-card {
  min-height: 360px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 20px 60px rgba(22, 24, 29, .08);
}

.price-card.featured {
  border-color: rgba(217, 93, 57, .42);
  box-shadow: 0 26px 72px rgba(217, 93, 57, .18);
}

.plan-label {
  margin: 0 0 12px;
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
}

.price-card h3 {
  margin: 0;
  font-size: 28px;
}

.price {
  margin: 18px 0;
  color: var(--ink) !important;
  font-size: 42px !important;
  font-weight: 900;
}

ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

li + li {
  margin-top: 10px;
}

.process-band {
  background: #16211d;
  color: var(--white);
}

.process-band p {
  color: rgba(255, 255, 255, .72);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: none;
}

.steps li {
  min-height: 250px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .06);
}

.steps span {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--gold);
  font-weight: 900;
}

.steps h3 {
  margin: 0 0 10px;
  font-size: 25px;
}

.contact-section {
  background: #fff;
}

.faq-section {
  background: #f6f4ee;
  border-bottom: 1px solid var(--line);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(0, .8fr) minmax(320px, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 14px 42px rgba(22, 24, 29, .06);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 900;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
}

.contact-note {
  margin-top: 28px;
  padding: 18px;
  border-left: 4px solid var(--gold);
  background: #faf4df;
  color: #3e3521;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f8f6f0;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 850;
}

input,
textarea {
  width: 100%;
  border: 1px solid #cfc7b8;
  border-radius: 8px;
  padding: 13px 14px;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(46, 111, 86, .18);
  border-color: var(--green);
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-size: 15px !important;
  font-weight: 800;
}

.form-status[data-state="success"] {
  color: var(--green-dark);
}

.form-status[data-state="error"] {
  color: #ad2f22;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(18px, 4vw, 56px);
  background: #101916;
  color: rgba(255, 255, 255, .78);
}

.site-footer span {
  color: #fff;
  font-weight: 900;
}

@media (max-width: 780px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  nav {
    display: none;
  }

  .hero {
    min-height: 88svh;
    padding-top: 96px;
    background-position: 62% center;
  }

  .hero-metrics,
  .pricing-grid,
  .steps,
  .split,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-metrics dt {
    font-size: 25px;
  }

  .price-card,
  .steps li {
    min-height: auto;
  }

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