:root {
  --ink: #172026;
  --muted: #58656d;
  --paper: #fbfaf7;
  --surface: #ffffff;
  --line: #dce4e3;
  --teal: #087f7a;
  --teal-dark: #065f5b;
  --coral: #e25d4f;
  --gold: #f6bd3b;
  --shadow: 0 22px 60px rgba(23, 32, 38, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 64px);
  background: rgba(251, 250, 247, 0.92);
  border-bottom: 1px solid rgba(220, 228, 227, 0.8);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 30px);
  color: var(--muted);
  font-weight: 700;
  font-size: 0.94rem;
}

.nav a {
  text-decoration: none;
}

.nav a:hover {
  color: var(--teal);
}

.hero,
.audit-band,
.problems,
.pricing,
.final-cta {
  padding: clamp(54px, 8vw, 104px) clamp(18px, 5vw, 64px);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 6vw, 72px);
  min-height: calc(100vh - 75px);
  padding-top: clamp(38px, 6vw, 72px);
}

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

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.35rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4.4vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.2;
}

.hero-text,
.section-heading p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.45vw, 1.25rem);
}

.hero-text {
  margin: 24px 0 0;
}

.hero-actions,
.final-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.hero-actions {
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
  font: inherit;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button:disabled,
.button[aria-busy="true"],
.button[aria-disabled="true"] {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

.button[aria-disabled="true"] {
  cursor: not-allowed;
}

.button-primary {
  color: #fff;
  background: var(--teal);
  box-shadow: 0 12px 24px rgba(8, 127, 122, 0.2);
}

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

.button-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.button-secondary:hover {
  box-shadow: 0 10px 24px rgba(23, 32, 38, 0.1);
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 620px;
  margin: 42px 0 0;
}

.proof-points div {
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.proof-points dt {
  font-size: 1.45rem;
  font-weight: 900;
}

.proof-points dd {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media {
  position: relative;
}

.hero-media::before {
  position: absolute;
  inset: -18px;
  z-index: -1;
  content: "";
  background:
    linear-gradient(135deg, rgba(8, 127, 122, 0.2), transparent 46%),
    linear-gradient(315deg, rgba(246, 189, 59, 0.22), transparent 38%);
  border: 1px solid rgba(8, 127, 122, 0.14);
  border-radius: 8px;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 16 / 11;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.audit-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 6vw, 72px);
  background: #fff;
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 780px;
}

.audit-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 3vw, 32px);
  background: #f4f7f6;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

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

textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(8, 127, 122, 0.18);
}

.problem-grid,
.price-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

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

.price-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.problem-grid article,
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.problem-grid article {
  padding: 24px;
}

.problem-grid p,
.price-card p,
.price-card li {
  color: var(--muted);
}

.problem-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 18px;
  color: var(--teal-dark);
  background: #e4f3f1;
  border-radius: 8px;
  font-weight: 900;
  font-size: 0.82rem;
}

.price-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 26px;
}

.price-card.featured {
  border-color: rgba(226, 93, 79, 0.45);
  box-shadow: var(--shadow);
}

.plan {
  margin: 0;
  color: var(--coral);
  font-weight: 900;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.price-card h3 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.price-card p {
  margin: 0;
}

.price-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
}

.price-card .button {
  align-self: end;
  margin-top: 6px;
}

.final-cta {
  flex-direction: column;
  justify-content: center;
  min-height: 390px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(rgba(23, 32, 38, 0.88), rgba(23, 32, 38, 0.88)),
    url("assets/website-audit-dashboard.png") center / cover;
}

.final-cta h2 {
  max-width: 780px;
}

.final-cta .eyebrow {
  color: var(--gold);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 64px);
  color: var(--muted);
  background: #fff;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  font-weight: 800;
  text-decoration: none;
}

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

  .hero {
    min-height: auto;
  }

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

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

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  h1 {
    font-size: clamp(2.7rem, 16vw, 4rem);
  }

  .proof-points,
  .problem-grid,
  .price-grid {
    grid-template-columns: 1fr;
  }

  .hero-media::before {
    inset: -10px;
  }

  .site-footer {
    flex-direction: column;
  }
}
