:root {
  --ink: #17201b;
  --muted: #5e6a63;
  --line: #dce4df;
  --paper: #ffffff;
  --soft: #f5f8f3;
  --green: #23a640;
  --green-dark: #13762a;
  --yellow: #f0c43d;
  --blue: #276dcc;
  --charcoal: #101714;
  --shadow: 0 18px 45px rgba(24, 42, 32, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 18px 5vw;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 10;
}

.solid-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  position: static;
}

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

.brand-mark {
  align-items: center;
  background: var(--green);
  border: 2px solid var(--ink);
  border-radius: 8px;
  color: #ffffff;
  display: inline-flex;
  font-size: 1.05rem;
  height: 42px;
  justify-content: center;
  width: 48px;
}

.brand-name {
  letter-spacing: 0;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: 28px;
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  border-bottom: 2px solid transparent;
  padding: 8px 0;
}

.site-nav a:hover {
  border-color: var(--green);
}

.nav-cta {
  background: var(--charcoal);
  border-radius: 8px;
  color: #ffffff;
  font-weight: 800;
  padding: 12px 18px;
}

.hero {
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0.36) 66%, rgba(255, 255, 255, 0.1) 100%),
    url("../hero-seo-growth.png");
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0.36) 66%, rgba(255, 255, 255, 0.1) 100%),
    image-set(
      url("../hero-seo-growth.webp") type("image/webp"),
      url("../hero-seo-growth.png") type("image/png")
    );
  background-position: center;
  background-size: cover;
  display: flex;
  min-height: 82vh;
  padding: 128px 5vw 72px;
}

.hero-content {
  max-width: 640px;
}

.kicker,
.section-kicker {
  color: var(--green-dark);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.hero h1 {
  color: var(--charcoal);
  font-size: 4.25rem;
  line-height: 0.96;
  margin-bottom: 22px;
}

.hero-copy {
  color: #3f4a43;
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 580px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.button {
  align-items: center;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 900;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  text-align: center;
}

.button-primary {
  background: var(--green);
  border-color: var(--green);
  color: #ffffff;
}

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

.button-light,
.button-plan {
  background: #ffffff;
  border-color: var(--ink);
  color: var(--ink);
}

.button-light:hover,
.button-plan:hover {
  background: var(--yellow);
}

.hero-stats {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  max-width: 580px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.hero-stats dt {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.hero-stats dd {
  font-size: 1rem;
  font-weight: 900;
  margin: 0;
}

.trust-band {
  background: var(--charcoal);
  color: #ffffff;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  font-weight: 800;
  gap: 12px;
  min-height: 86px;
  padding: 20px 5vw;
}

.trust-icon {
  align-items: center;
  background: var(--yellow);
  border-radius: 50%;
  color: var(--charcoal);
  display: inline-flex;
  flex: 0 0 32px;
  font-weight: 900;
  height: 32px;
  justify-content: center;
  width: 32px;
}

.section {
  padding: 92px 5vw;
}

.section-copy {
  max-width: 650px;
}

.section-copy.centered {
  margin: 0 auto 42px;
  max-width: 760px;
  text-align: center;
}

.section h2,
.final-cta h2 {
  color: var(--charcoal);
  font-size: 2.55rem;
  line-height: 1.05;
  margin-bottom: 18px;
}

.section p {
  color: var(--muted);
  font-size: 1.05rem;
}

.intro-section {
  background: var(--soft);
}

.intro-grid,
.steps-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 38px;
}

.feature,
.step,
.plan-card,
details,
.checkout-summary,
.checkout-panel,
.onboarding-form {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.feature {
  min-height: 190px;
  padding: 28px;
}

.feature h3,
.step h3,
.plan-card h3,
.checkout-panel h3 {
  color: var(--charcoal);
  font-size: 1.22rem;
  margin-bottom: 10px;
}

.plans-section {
  background: #ffffff;
}

.plan-finder {
  align-items: stretch;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1.3fr) minmax(260px, 0.78fr);
  margin: 0 auto 34px;
  max-width: 1180px;
  padding: 24px;
}

.finder-copy,
.finder-result {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.finder-copy h3,
.finder-result h3 {
  color: var(--charcoal);
  font-size: 1.45rem;
  line-height: 1.1;
  margin-bottom: 10px;
}

.finder-copy p,
.finder-result p {
  color: var(--muted);
  font-size: 0.98rem;
  margin-bottom: 0;
}

.finder-controls {
  display: grid;
  gap: 14px;
}

.finder-controls fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

.finder-controls legend {
  color: var(--charcoal);
  font-size: 0.88rem;
  font-weight: 900;
  margin-bottom: 8px;
}

.finder-controls fieldset {
  display: grid;
  gap: 8px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.finder-controls legend {
  grid-column: 1 / -1;
}

.finder-controls label {
  cursor: pointer;
  display: block;
}

.finder-controls input {
  opacity: 0;
  position: absolute;
}

.finder-controls span {
  align-items: center;
  background: #ffffff;
  border: 1px solid #bfd0c5;
  border-radius: 8px;
  color: var(--charcoal);
  display: flex;
  font-size: 0.92rem;
  font-weight: 800;
  justify-content: center;
  min-height: 52px;
  padding: 10px 12px;
  text-align: center;
}

.finder-controls input:checked + span {
  background: var(--charcoal);
  border-color: var(--charcoal);
  color: #ffffff;
}

.finder-controls input:focus + span {
  outline: 3px solid rgba(35, 166, 64, 0.2);
}

.finder-result {
  border: 2px solid var(--green);
  display: flex;
  flex-direction: column;
}

.result-label {
  color: var(--green-dark);
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.finder-price {
  color: var(--charcoal);
  font-size: 1.55rem;
  font-weight: 900;
  margin: 18px 0;
}

.finder-result .button {
  margin-top: auto;
  width: 100%;
}

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

.plan-card {
  box-shadow: 0 10px 30px rgba(22, 34, 26, 0.07);
  display: flex;
  flex-direction: column;
  min-height: 640px;
  padding: 28px;
  position: relative;
}

.featured-plan {
  border: 2px solid var(--green);
  box-shadow: var(--shadow);
}

.popular-tag {
  background: var(--yellow);
  border-radius: 999px;
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 7px 12px;
  position: absolute;
  right: 18px;
  top: 18px;
}

.plan-topline {
  min-height: 58px;
  padding-right: 96px;
}

.plan-label {
  color: var(--green-dark);
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 2px;
  text-transform: uppercase;
}

.plan-fit {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.price {
  color: var(--charcoal);
  font-size: 1.05rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.price span {
  font-size: 2.9rem;
  line-height: 1;
}

.plan-summary {
  min-height: 76px;
}

.check-list {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 18px 0 28px;
  padding: 0;
}

.check-list li {
  color: #344138;
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  background: var(--green);
  border-radius: 50%;
  color: #ffffff;
  content: "\2713";
  font-size: 0.72rem;
  font-weight: 900;
  height: 18px;
  left: 0;
  line-height: 18px;
  position: absolute;
  text-align: center;
  top: 3px;
  width: 18px;
}

.plan-card .button {
  margin-top: auto;
  width: 100%;
}

.work-section {
  background: var(--soft);
}

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

.step {
  min-height: 218px;
  padding: 26px;
}

.step span {
  color: var(--blue);
  display: block;
  font-size: 1.55rem;
  font-weight: 900;
  margin-bottom: 42px;
}

.split-section {
  align-items: start;
  display: grid;
  gap: 54px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
}

.plain-list {
  border-left: 5px solid var(--yellow);
  color: var(--charcoal);
  display: grid;
  font-size: 1.05rem;
  font-weight: 800;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 10px 0 10px 28px;
}

.faq-section {
  background: var(--soft);
}

.faq-list {
  display: grid;
  gap: 14px;
  margin: 0 auto;
  max-width: 860px;
}

details {
  padding: 20px 24px;
}

summary {
  color: var(--charcoal);
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 14px 0 0;
}

.final-cta {
  align-items: center;
  background: var(--charcoal);
  color: #ffffff;
  display: flex;
  gap: 28px;
  justify-content: space-between;
  padding: 54px 5vw;
}

.final-cta h2,
.final-cta .section-kicker {
  color: #ffffff;
}

.final-cta .section-kicker {
  color: var(--yellow);
}

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

.site-footer p {
  margin: 0;
}

.site-footer p:first-child {
  color: var(--charcoal);
  font-weight: 900;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
}

.footer-links a {
  color: var(--charcoal);
  font-size: 0.9rem;
  font-weight: 800;
}

.checkout-main,
.form-main,
.status-main,
.policy-main {
  background: var(--soft);
  min-height: 72vh;
  padding: 62px 5vw 86px;
}

.checkout-shell,
.onboarding-shell {
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  margin: 0 auto;
  max-width: 1120px;
}

.checkout-summary,
.checkout-panel,
.onboarding-form {
  padding: 30px;
}

.checkout-summary h1,
.form-intro h1 {
  color: var(--charcoal);
  font-size: 2.55rem;
  line-height: 1.06;
}

.checkout-price {
  color: var(--green-dark);
  font-size: 2.4rem;
  font-weight: 900;
  margin-bottom: 12px;
}

.compact-list {
  margin-bottom: 0;
}

.checkout-panel h2 {
  font-size: 2rem;
  line-height: 1.1;
}

.payment-buttons {
  display: grid;
  gap: 14px;
  margin: 26px 0 16px;
}

.checkout-note,
.form-status {
  background: #fff9df;
  border: 1px solid #ead36d;
  border-radius: 8px;
  color: #5f4b00;
  font-size: 0.92rem;
  padding: 12px;
}

.checkout-afterpay {
  border-top: 1px solid var(--line);
  margin-top: 28px;
  padding-top: 24px;
}

.text-link {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
}

.onboarding-shell {
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
}

.form-intro {
  padding: 22px 0;
}

.form-intro p {
  color: var(--muted);
  font-size: 1.06rem;
}

.onboarding-form {
  display: grid;
  gap: 18px;
}

.honeypot-field {
  height: 0;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.onboarding-form label {
  color: var(--charcoal);
  display: grid;
  font-size: 0.94rem;
  font-weight: 900;
  gap: 8px;
}

.onboarding-form input,
.onboarding-form textarea {
  border: 1px solid #b8c6bd;
  border-radius: 8px;
  color: var(--charcoal);
  font: inherit;
  padding: 13px 14px;
  width: 100%;
}

.onboarding-form textarea {
  resize: vertical;
}

.onboarding-form input:focus,
.onboarding-form textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(35, 166, 64, 0.15);
}

.status-shell,
.policy-shell {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 850px;
  padding: 42px;
}

.status-shell h1,
.policy-shell h1 {
  color: var(--charcoal);
  font-size: 2.8rem;
  line-height: 1.05;
  margin-bottom: 18px;
}

.status-shell p,
.policy-shell p {
  color: var(--muted);
  font-size: 1.04rem;
}

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

.small-note {
  background: #f8fbf6;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0;
  padding: 13px 14px;
}

.policy-shell h2 {
  color: var(--charcoal);
  font-size: 1.35rem;
  margin: 30px 0 8px;
}

.policy-shell a,
.contact-panel a {
  color: var(--green-dark);
  font-weight: 900;
  text-decoration: underline;
}

.contact-panel {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 28px 0;
  padding: 22px;
}

.contact-panel p {
  margin-bottom: 10px;
}

.contact-panel p:last-child {
  margin-bottom: 0;
}

.consent-banner {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  bottom: 18px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  left: 18px;
  max-width: 760px;
  padding: 16px;
  position: fixed;
  right: 18px;
  z-index: 30;
}

.consent-copy {
  flex: 1;
}

.consent-title {
  color: var(--charcoal);
  font-weight: 900;
  margin-bottom: 4px;
}

.consent-copy p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

.consent-actions {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.consent-actions .button {
  min-height: 42px;
  padding: 10px 14px;
}

@media (max-width: 980px) {
  .site-header {
    gap: 16px;
  }

  .site-nav {
    display: none;
  }

  .hero {
    background-image:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 58%, rgba(255, 255, 255, 0.38) 100%),
      url("../hero-seo-growth.png");
    background-image:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.86) 58%, rgba(255, 255, 255, 0.38) 100%),
      image-set(
        url("../hero-seo-growth.webp") type("image/webp"),
        url("../hero-seo-growth.png") type("image/png")
      );
    min-height: 78vh;
  }

  .hero h1 {
    font-size: 3.2rem;
  }

  .trust-band,
  .intro-grid,
  .plan-finder,
  .plans-grid,
  .steps-grid,
  .split-section,
  .checkout-shell,
  .onboarding-shell {
    grid-template-columns: 1fr;
  }

  .plan-card {
    min-height: auto;
  }

  .plan-summary {
    min-height: auto;
  }

  .finder-controls fieldset {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand {
    min-width: auto;
  }

  .brand-name {
    font-size: 0.9rem;
  }

  .brand-mark {
    height: 38px;
    width: 44px;
  }

  .nav-cta {
    padding: 10px 12px;
  }

  .hero {
    background-position: 64% center;
    min-height: 86vh;
    padding: 112px 18px 46px;
  }

  .hero h1 {
    font-size: 2.55rem;
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .trust-item {
    padding: 18px;
  }

  .section,
  .checkout-main,
  .form-main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section h2,
  .final-cta h2 {
    font-size: 2rem;
  }

  .price span {
    font-size: 2.35rem;
  }

  .plan-topline {
    padding-right: 0;
  }

  .popular-tag {
    display: inline-block;
    margin-bottom: 14px;
    position: static;
    width: max-content;
  }

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

  .footer-links {
    justify-content: flex-start;
  }

  .checkout-summary,
  .checkout-panel,
  .onboarding-form,
  .status-shell,
  .policy-shell {
    padding: 22px;
  }

  .consent-banner {
    align-items: stretch;
    flex-direction: column;
  }

  .consent-actions {
    justify-content: stretch;
  }

  .consent-actions .button {
    flex: 1 1 160px;
  }

  .checkout-summary h1,
  .form-intro h1,
  .status-shell h1,
  .policy-shell h1 {
    font-size: 2.1rem;
  }
}
