:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #586272;
  --line: #d9e1e7;
  --paper: #f6f8f7;
  --white: #ffffff;
  --teal: #0f766e;
  --teal-dark: #134e4a;
  --amber: #c47a2c;
  --charcoal: #172026;
}

* {
  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;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 12px clamp(20px, 5vw, 64px);
  background: rgba(246, 248, 247, 0.92);
  border-bottom: 1px solid rgba(23, 32, 38, 0.12);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--charcoal);
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  background: var(--charcoal);
  color: white;
  border-radius: 8px;
  font-size: 14px;
  letter-spacing: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 9px 13px;
  background: var(--teal);
  color: white;
  border-radius: 8px;
}

.hero {
  position: relative;
  min-height: 680px;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 18, 22, 0.9), rgba(12, 18, 22, 0.58) 42%, rgba(12, 18, 22, 0.18)),
    linear-gradient(0deg, rgba(12, 18, 22, 0.64), transparent 34%);
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 40px));
  margin-left: clamp(20px, 7vw, 88px);
  padding: 88px 0;
  color: white;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--amber);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.hero-copy {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.primary {
  background: var(--teal);
  color: white;
}

.secondary {
  border-color: rgba(255, 255, 255, 0.35);
  color: white;
}

.full {
  width: 100%;
}

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

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 44px;
  align-items: center;
}

.split p,
.process p,
.policies p {
  color: var(--muted);
  font-size: 17px;
}

.price-panel {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(23, 32, 38, 0.08);
}

.price {
  display: block;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}

.price-note {
  display: block;
  margin: 8px 0 22px;
  color: var(--muted);
}

.deliverables {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  padding-top: 0;
}

@media (max-width: 1080px) {
  .deliverables {
    grid-template-columns: repeat(2, 1fr);
  }
}

.deliverables article,
.steps > div,
.trust-grid article {
  min-height: 176px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.deliverables p,
.steps p,
.trust-grid p {
  color: var(--muted);
  font-size: 15px;
}

.process {
  border-top: 1px solid var(--line);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.trust {
  border-top: 1px solid var(--line);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.testimonial-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.testimonial-card h3 {
  margin-bottom: 2px;
}

.trust-grid .testimonial-card {
  background: #effaf3;
  border-color: #c7ead2;
}

.stars {
  flex: 0 0 auto;
  color: var(--amber);
  font-size: 15px;
  letter-spacing: 0;
  line-height: 1.4;
}

.testimonial-role {
  display: block;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
}

.steps span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
}

.intake {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.intake-copy p {
  color: var(--muted);
  font-size: 17px;
}

.form-note {
  padding: 14px 16px;
  background: #fff8eb;
  border: 1px solid #efd9aa;
  border-radius: 8px;
}

.intake-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(23, 32, 38, 0.08);
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

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

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfcfc;
  color: var(--ink);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(15, 118, 110, 0.18);
  border-color: var(--teal);
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.policies {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  border-top: 1px solid var(--line);
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px clamp(20px, 5vw, 64px);
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 620px;
  }

  .hero-content {
    margin-left: 20px;
  }

  .split,
  .deliverables,
  .steps,
  .intake,
  .field-row,
  .trust-grid,
  .policies {
    grid-template-columns: 1fr;
  }
}
