:root {
  --text: #17202a;
  --muted: #5f6f7d;
  --soft: #f6f8f7;
  --surface: #ffffff;
  --border: #d9e2df;
  --blue: #245c7c;
  --green: #2f7d61;
  --amber: #b76b2a;
  --ink: #0f2a3a;
  --shadow: 0 18px 50px rgba(23, 32, 42, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
}

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

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

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 0;
}

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

.brand-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-size: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.nav-links a {
  text-decoration: none;
}

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

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

.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 56px 0 42px;
}

.landing-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 76vh;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.landing-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 25, 35, 0.86) 0%, rgba(8, 25, 35, 0.68) 38%, rgba(8, 25, 35, 0.18) 72%, rgba(8, 25, 35, 0.04) 100%);
}

.landing-hero .page-shell {
  position: relative;
  z-index: 1;
  padding: 60px 0;
}

.landing-hero .hero-copy {
  max-width: 660px;
}

.landing-hero .eyebrow {
  color: #aee7c8;
}

.landing-hero h1 {
  margin: 0;
  max-width: 780px;
  color: #fff;
  font-size: clamp(40px, 7vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

.landing-hero .lead {
  color: #e0eaee;
}

.landing-hero .mini-note {
  color: #d7e3e8;
}

.feedback-hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 78vh;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  color: #fff;
}

.feedback-hero::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(7, 18, 25, 0.91) 0%, rgba(7, 18, 25, 0.78) 42%, rgba(7, 18, 25, 0.2) 78%, rgba(7, 18, 25, 0.08) 100%);
}

.feedback-hero .page-shell {
  position: relative;
  z-index: 1;
  padding: 68px 0 58px;
}

.feedback-hero .hero-copy {
  max-width: 750px;
}

.feedback-hero .eyebrow {
  color: #ffd39b;
}

.feedback-hero h1 {
  margin: 0;
  max-width: 820px;
  color: #fff;
  font-size: clamp(40px, 7vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

.feedback-hero .lead {
  color: #eef3f4;
}

.feedback-hero .mini-note {
  color: #d8e1e4;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.proof-pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #f2f7f8;
  font-size: 13px;
  font-weight: 700;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.simple-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(40px, 7vw, 72px);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  margin: 22px 0 0;
  color: #405363;
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  background: #276a52;
}

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

.button.secondary:hover {
  background: #f5fbff;
}

.mini-note {
  max-width: 500px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 500px;
  border-radius: 8px;
  background: #dfe8e4;
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.media-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(330px, calc(100% - 36px));
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.media-badge strong {
  display: block;
  margin-bottom: 4px;
}

.section {
  padding: 62px 0;
}

.section.alt {
  margin-inline: calc((100vw - 100%) / -2);
  padding-inline: calc((100vw - 100%) / 2);
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section h2,
.simple-hero h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p,
.story-card p,
.benefit-card p,
.step p,
.legal-copy p,
.legal-copy li {
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: stretch;
}

.story-card,
.quote-panel,
.benefit-card,
.step,
.variant-card,
.legal-copy,
.insight-card,
.feedback-card,
.check-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
}

.story-card,
.quote-panel,
.legal-copy {
  padding: 28px;
}

.story-card h3,
.quote-panel h3,
.benefit-card h3,
.step h3,
.variant-card h3 {
  margin: 0 0 10px;
  color: var(--ink);
}

.quote-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #f7fbf8;
}

.quote-panel .number {
  color: var(--amber);
  font-size: 44px;
  font-weight: 900;
  line-height: 1;
}

.feedback-intro {
  padding-bottom: 42px;
}

.insight-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.insight-card {
  padding: 22px;
  background: #fbf8f2;
}

.insight-kicker,
.feedback-label {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--amber);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.feedback-source-note {
  max-width: 760px;
  color: #405363;
  font-weight: 700;
}

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

.feedback-card {
  min-height: 170px;
  padding: 20px;
  border-left: 4px solid var(--green);
}

.feedback-card:nth-child(3n + 2) {
  border-left-color: var(--blue);
}

.feedback-card:nth-child(3n) {
  border-left-color: var(--amber);
}

.feedback-card p {
  margin: 0;
  color: #293b48;
  font-size: 17px;
  line-height: 1.48;
}

.review-checklist {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.check-item {
  padding: 22px;
}

.check-mark {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  place-items: center;
  border-radius: 8px;
  background: #102f3f;
  color: #fff;
  font-weight: 900;
}

.check-item h3,
.insight-card h3 {
  margin: 0 0 8px;
  color: var(--ink);
}

.check-item p,
.insight-card p {
  margin: 0;
  color: var(--muted);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.benefit-card {
  padding: 22px;
}

.icon {
  display: inline-grid;
  width: 40px;
  height: 40px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 8px;
  background: #eaf5ef;
  color: var(--green);
  font-weight: 900;
}

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

.step {
  padding: 24px;
}

.step-index {
  display: inline-grid;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  margin: 30px 0 0;
  padding: 28px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
}

.cta-band h2,
.cta-band p {
  margin: 0;
}

.cta-band p {
  color: #c9d7df;
}

.variant-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.variant-card {
  overflow: hidden;
  text-decoration: none;
}

.variant-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.variant-card-body {
  padding: 22px;
}

.simple-hero {
  padding: 70px 0 36px;
}

.legal-copy {
  margin: 0 0 64px;
  max-width: 840px;
}

.legal-copy h2 {
  margin-top: 34px;
}

.footer {
  border-top: 1px solid var(--border);
  background: #fff;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  color: var(--muted);
  font-size: 13px;
}

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

.footer-links a {
  color: var(--blue);
  text-decoration: none;
}

.tone-amber .eyebrow,
.tone-amber .icon {
  color: var(--amber);
}

.tone-amber .icon {
  background: #fff3e7;
}

.tone-amber .button:not(.secondary) {
  background: var(--amber);
}

.tone-amber .button:not(.secondary):hover {
  background: #975721;
}

.tone-blue .eyebrow,
.tone-blue .icon {
  color: var(--blue);
}

.tone-blue .icon {
  background: #e9f3f8;
}

.tone-blue .button:not(.secondary) {
  background: var(--blue);
}

.tone-blue .button:not(.secondary):hover {
  background: #1d4c68;
}

.tone-feedback .brand-mark,
.tone-feedback .button:not(.secondary) {
  background: #102f3f;
}

.tone-feedback .button:not(.secondary):hover {
  background: #0b2430;
}

.tone-feedback .eyebrow,
.tone-feedback .icon {
  color: var(--amber);
}

.feedback-cta {
  background: #102f3f;
}

@media (max-width: 900px) {
  .hero,
  .story-grid,
  .cta-band,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .variant-grid,
  .insight-row,
  .feedback-grid,
  .review-checklist {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .page-shell,
  .nav,
  .footer-inner {
    width: min(100% - 28px, 1120px);
  }

  .hero {
    min-height: auto;
    padding: 36px 0 28px;
  }

  .landing-hero {
    min-height: 72vh;
    background-position: 62% center;
  }

  .feedback-hero {
    min-height: 72vh;
    background-position: 58% center;
  }

  .landing-hero::before {
    background:
      linear-gradient(90deg, rgba(8, 25, 35, 0.88) 0%, rgba(8, 25, 35, 0.76) 54%, rgba(8, 25, 35, 0.28) 100%);
  }

  .feedback-hero::before {
    background:
      linear-gradient(90deg, rgba(7, 18, 25, 0.92) 0%, rgba(7, 18, 25, 0.8) 60%, rgba(7, 18, 25, 0.3) 100%);
  }

  .hero h1,
  .simple-hero h1 {
    font-size: 36px;
  }

  .landing-hero h1,
  .feedback-hero h1 {
    font-size: 34px;
  }

  .lead {
    font-size: 16px;
  }

  .landing-hero .page-shell,
  .feedback-hero .page-shell {
    padding: 34px 0 28px;
  }

  .landing-hero .hero-actions,
  .feedback-hero .hero-actions {
    margin-top: 22px;
  }

  .landing-hero .button.secondary {
    display: none;
  }

  .hero-proof {
    margin-top: 18px;
  }

  .hero-media,
  .hero-media img {
    min-height: 320px;
  }

  .benefit-grid,
  .steps,
  .variant-grid,
  .insight-row,
  .feedback-grid,
  .review-checklist {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 22px;
  }

  .button {
    width: 100%;
  }
}
