:root {
  --ink: #181713;
  --muted: #5e615a;
  --paper: #f8f6ef;
  --white: #ffffff;
  --line: #d9d6ca;
  --green: #285f50;
  --green-dark: #163f35;
  --rust: #b65a38;
  --gold: #d7a53d;
  --mist: #e9f0ee;
  --shadow: 0 18px 44px rgba(24, 23, 19, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  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;
}

button,
input,
select {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-shell {
  width: min(1160px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  background: var(--green);
  color: var(--white);
  border-radius: 7px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  color: var(--muted);
  font-weight: 650;
  font-size: 0.94rem;
}

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

.nav-cta {
  color: var(--white) !important;
  background: var(--ink);
  padding: 0.65rem 0.95rem;
  border-radius: 7px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--white);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section-band {
  padding: 5rem 0;
}

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

.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(248, 246, 239, 0.98), rgba(248, 246, 239, 0.78)),
    repeating-linear-gradient(0deg, rgba(40, 95, 80, 0.08), rgba(40, 95, 80, 0.08) 1px, transparent 1px, transparent 36px);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  align-items: center;
  gap: 4rem;
}

.hero-copy {
  max-width: 710px;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--rust);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1.2rem;
  font-size: 4rem;
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 1rem;
  font-size: 2.4rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-lede {
  max-width: 620px;
  color: #3f423c;
  font-size: 1.2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0 1.4rem;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px solid transparent;
  border-radius: 7px;
  padding: 0.78rem 1rem;
  font-weight: 800;
  cursor: pointer;
}

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

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

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  border: 1px solid rgba(40, 95, 80, 0.24);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 0.45rem 0.7rem;
  color: #33433d;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.browser-frame {
  position: absolute;
  width: 84%;
  border: 1px solid rgba(24, 23, 19, 0.16);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.browser-frame p {
  margin: 0;
  padding: 0.75rem 1rem 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.before-frame {
  top: 0;
  right: 8%;
  transform: rotate(-2deg);
}

.after-frame {
  left: 0;
  bottom: 0;
  transform: rotate(2deg);
}

.browser-bar {
  display: flex;
  gap: 0.35rem;
  padding: 0.7rem;
  border-bottom: 1px solid var(--line);
  background: #f0eee6;
}

.browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #b8b4a8;
}

.mock-site {
  height: 250px;
  padding: 1.1rem;
}

.old-site {
  background: #f2eee4;
}

.old-nav,
.old-title,
.old-line,
.old-box-grid span {
  display: block;
  background: #cfc7ba;
}

.old-nav {
  height: 18px;
  width: 64%;
  margin-bottom: 2.2rem;
}

.old-title {
  width: 78%;
  height: 34px;
  margin-bottom: 1rem;
}

.old-line {
  height: 12px;
  width: 92%;
  margin-bottom: 0.55rem;
}

.old-line.short {
  width: 52%;
}

.old-box-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
  margin-top: 1.35rem;
}

.old-box-grid span {
  height: 54px;
}

.new-site {
  background: var(--mist);
}

.new-hero {
  min-height: 145px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  background: var(--green);
  border-radius: 7px;
}

.new-pill,
.new-title,
.new-line,
.new-button,
.new-card-row span {
  display: block;
  border-radius: 6px;
}

.new-pill {
  width: 82px;
  height: 12px;
  margin-bottom: 1rem;
  background: var(--gold);
}

.new-title {
  width: 190px;
  height: 34px;
  margin-bottom: 0.75rem;
  background: var(--white);
}

.new-line {
  width: 150px;
  height: 12px;
  background: rgba(255, 255, 255, 0.62);
}

.new-button {
  width: 82px;
  height: 38px;
  background: var(--rust);
}

.new-card-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.new-card-row span {
  height: 55px;
  background: var(--white);
  border: 1px solid rgba(40, 95, 80, 0.16);
}

.lead-strip {
  padding: 3rem 0;
  background: var(--ink);
  color: var(--white);
}

.lead-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  align-items: center;
  gap: 3rem;
}

.lead-grid p {
  color: rgba(255, 255, 255, 0.78);
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  padding: 1rem;
  background: var(--white);
  border-radius: 8px;
  color: var(--ink);
}

.hp-field {
  display: none;
}

.lead-form label {
  grid-column: span 1;
  margin-bottom: -0.55rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select {
  width: 100%;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 7px;
  padding: 0 0.8rem;
  background: var(--white);
  color: var(--ink);
}

.lead-form label[for="website"],
.lead-form #website,
.lead-form label[for="issue"],
.lead-form #issue,
.form-button,
.form-status {
  grid-column: 1 / -1;
}

.form-status {
  min-height: 1.3rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.plain {
  background: var(--white);
}

.contrast {
  background: var(--green);
  color: var(--white);
}

.contrast p {
  color: rgba(255, 255, 255, 0.76);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 2.4rem;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading p {
  color: var(--muted);
}

.contrast .section-heading p,
.contrast .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

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

.feature-card,
.price-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.3rem;
  background: var(--white);
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 32px;
  margin-bottom: 1.1rem;
  border-radius: 7px;
  background: var(--mist);
  color: var(--green);
  font-weight: 900;
}

.feature-card p,
.price-card p,
.fit-list p,
.faq-list p {
  color: var(--muted);
}

.process-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 4rem;
}

.process-list {
  display: grid;
  gap: 1rem;
}

.process-step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 1rem;
  padding: 1.1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.process-step span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--gold);
  color: var(--ink);
  font-weight: 900;
}

.process-step p {
  margin-bottom: 0;
}

.pricing-block {
  margin-top: 2.4rem;
}

.pricing-block + .pricing-block {
  margin-top: 3rem;
  padding-top: 2.4rem;
  border-top: 1px solid var(--line);
}

.pricing-block-heading {
  max-width: 820px;
  margin-bottom: 1.2rem;
}

.pricing-block-heading h3 {
  margin-bottom: 0.65rem;
  font-size: 1.55rem;
}

.pricing-block-heading p {
  color: var(--muted);
}

.rebuild-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(310px, 0.72fr);
  align-items: stretch;
  gap: 1rem;
}

.monthly-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.price-card h3 {
  margin-bottom: 0.7rem;
  font-size: 2.4rem;
}

.plan-label {
  margin-bottom: 0.5rem;
  color: var(--rust) !important;
  font-weight: 850;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.price-card ul {
  display: grid;
  gap: 0.6rem;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  position: relative;
  padding-left: 1.35rem;
  color: #343832;
}

.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
}

.price-card.highlighted {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.seo-card {
  border-color: rgba(182, 90, 56, 0.36);
}

.price-card .button {
  width: 100%;
  margin-top: 1.5rem;
}

.price-ladder {
  display: grid;
  align-content: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--white);
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 62px;
  padding: 0.85rem 1.05rem;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-weight: 750;
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row strong {
  color: var(--ink);
  white-space: nowrap;
}

.price-row.featured {
  background: var(--green);
  color: var(--white);
}

.price-row.featured strong {
  color: var(--white);
}

.split {
  background: var(--paper);
}

.comparison-grid,
.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: 3rem;
}

.fit-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.fit-list > div,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.2rem;
  background: var(--white);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

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

.faq-list p {
  margin: 0.8rem 0 0;
}

.final-cta {
  padding: 4rem 0;
  background: var(--rust);
  color: var(--white);
  text-align: center;
}

.final-cta .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta .button {
  background: var(--white);
  color: var(--ink);
}

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

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-inner p {
  margin: 0.6rem 0 0;
  color: var(--muted);
}

.footer-brand .brand-mark {
  background: var(--ink);
}

.footer-links {
  display: flex;
  gap: 1rem;
  color: var(--muted);
  font-weight: 750;
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.7rem;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 0.85rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .lead-grid,
  .process-layout,
  .comparison-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 470px;
  }

  .feature-grid,
  .rebuild-panel,
  .monthly-pricing-grid,
  .fit-list {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }
}

@media (max-width: 620px) {
  .section-band {
    padding: 3.5rem 0;
  }

  .hero {
    padding-top: 3.5rem;
  }

  h1 {
    font-size: 2.45rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-lede {
    font-size: 1.05rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 400px;
  }

  .browser-frame {
    width: 92%;
  }

  .before-frame {
    right: 0;
  }

  .mock-site {
    height: 210px;
  }

  .lead-form {
    grid-template-columns: 1fr;
  }

  .lead-form label,
  .lead-form input,
  .lead-form select {
    grid-column: 1 / -1;
  }

  .footer-inner,
  .footer-links {
    flex-direction: column;
    align-items: flex-start;
  }
}
