:root {
  --ink: #142238;
  --muted: #5f6876;
  --cream: #f5f2eb;
  --white: #ffffff;
  --green: #b28a43;
  --green-dark: #14243a;
  --gold: #c9a65b;
  --line: #d9d7d0;
  --shadow: 0 20px 60px rgba(20, 36, 58, 0.16);
  --radius: 20px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Inter", sans-serif;
  line-height: 1.65;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(20, 36, 58, 0.10);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.header-logo {
  display: block;
  width: 230px;
  max-height: 68px;
  object-fit: contain;
  object-position: left center;
  border-radius: 8px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.main-nav a {
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 600;
}

.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--green);
  color: white;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  font-size: 1.7rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    radial-gradient(circle at 85% 25%, rgba(200, 155, 73, 0.23), transparent 28%),
    linear-gradient(135deg, #edf0f4, #fbfaf6);
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -190px;
  width: 440px;
  height: 440px;
  border: 70px solid rgba(201, 166, 91, 0.12);
  border-radius: 50%;
}

.hero-grid,
.split,
.contact-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #d9b96f;
}

h1,
h2 {
  margin: 0 0 22px;
  font-family: "Libre Baskerville", serif;
  line-height: 1.16;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.75rem, 7vw, 5.55rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  margin-top: 0;
  line-height: 1.25;
}

.hero-text,
.lead {
  color: var(--muted);
  font-size: 1.16rem;
}

.hero-text {
  max-width: 660px;
}

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

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 13px 21px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

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

.button-secondary {
  border: 1px solid var(--line);
  background: white;
}

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.92rem;
}

.trust-list li::before {
  content: "✓";
  margin-right: 8px;
  color: var(--green);
  font-weight: 800;
}

.hero-card {
  position: relative;
  z-index: 1;
  padding: 42px;
  border: 1px solid rgba(255,255,255,0.6);
  border-radius: 28px;
  background: rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
}

.card-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-card h2 {
  margin-top: 12px;
  font-size: 2rem;
}

.text-link {
  color: var(--green);
  font-weight: 800;
  text-decoration: none;
}

.proof-strip {
  background: var(--green-dark);
  color: white;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid div {
  padding: 28px 22px;
  border-right: 1px solid rgba(255,255,255,0.14);
}

.proof-grid div:last-child {
  border-right: 0;
}

.proof-grid strong,
.proof-grid span {
  display: block;
}

.proof-grid span {
  margin-top: 4px;
  color: rgba(255,255,255,0.72);
  font-size: 0.8rem;
}

.section {
  padding: 100px 0;
}

.section-tint {
  background: var(--cream);
}

.section-heading {
  max-width: 770px;
  margin-bottom: 48px;
}

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

.cards {
  display: grid;
  gap: 24px;
}

.three-col {
  grid-template-columns: repeat(3, 1fr);
}

.service-card {
  position: relative;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}

.service-card.featured {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.service-label {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--green);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.service-number {
  display: block;
  margin-bottom: 26px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
}

.service-card p,
.service-card li {
  color: var(--muted);
}

.service-card ul {
  padding-left: 20px;
}

.benefit-list {
  display: grid;
  gap: 18px;
}

.benefit-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 22px;
  border-radius: 16px;
  background: white;
}

.benefit-list article > span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f2ead8;
  color: var(--green);
  font-weight: 800;
}

.benefit-list h3 {
  margin-bottom: 5px;
}

.benefit-list p {
  margin: 0;
  color: var(--muted);
}

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

.steps article {
  padding-top: 24px;
  border-top: 2px solid var(--line);
}

.steps span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  font-weight: 800;
}

.steps p,
.small-note {
  color: var(--muted);
}

.area-panel {
  padding: 36px;
  border-radius: 24px;
  background: var(--green-dark);
  color: white;
}

.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag-cloud span {
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-size: 0.86rem;
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
  align-items: start;
}

.accordion details {
  border-bottom: 1px solid #cfd8d4;
}

.accordion summary {
  padding: 22px 0;
  cursor: pointer;
  font-weight: 800;
}

.accordion p {
  margin-top: 0;
  padding-bottom: 20px;
  color: var(--muted);
}

.contact-section {
  background: var(--green-dark);
  color: white;
}

.contact-grid {
  align-items: start;
}

.contact-section h2 {
  color: white;
}

.contact-section p {
  color: rgba(255,255,255,0.76);
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 30px;
}

.contact-details a,
.contact-details span {
  color: white;
  font-weight: 700;
  text-decoration: none;
}

.quote-form {
  padding: 32px;
  border-radius: 22px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.15);
}

.quote-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 17px;
  font-size: 0.88rem;
  font-weight: 700;
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  background: white;
  padding: 12px 13px;
  color: var(--ink);
  font: inherit;
}

.form-note {
  margin: 14px 0 0;
  font-size: 0.74rem;
}

.site-footer {
  padding: 58px 0 24px;
  background: #0b1814;
  color: white;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 0.7fr;
  gap: 45px;
}

.site-footer p,
.site-footer a {
  color: rgba(255,255,255,0.62);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.48);
  font-size: 0.78rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 900px) {
  .menu-button {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    padding: 22px;
    border-radius: 16px;
    background: white;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }

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

  .hero-grid,
  .split,
  .contact-grid,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .three-col,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .proof-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero,
  .section {
    padding: 72px 0;
  }

  h1 {
    font-size: 2.7rem;
  }

  .three-col,
  .steps,
  .proof-grid,
  .field-row,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,0.14);
  }

  .hero-card,
  .service-card,
  .quote-form {
    padding: 26px;
  }

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


.hero-logo {
  display: block;
  width: min(100%, 390px);
  margin: 0 auto 28px;
  border-radius: 14px;
  box-shadow: 0 14px 36px rgba(20, 36, 58, 0.18);
}

.footer-logo {
  display: block;
  width: min(100%, 300px);
  margin-bottom: 16px;
  border-radius: 10px;
}

@media (max-width: 620px) {
  .header-logo {
    width: 178px;
    max-height: 58px;
  }

  .header-inner {
    min-height: 72px;
  }

  .main-nav {
    top: 72px;
  }
}


.service-link {
  display: inline-block;
  margin-top: 12px;
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: none;
}

.compact-button {
  min-height: 44px;
  padding: 10px 17px;
}

.sample-hero {
  padding: 88px 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(201, 166, 91, 0.24), transparent 30%),
    var(--green-dark);
  color: white;
}

.sample-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.sample-hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.sample-intro {
  max-width: 720px;
  color: rgba(255,255,255,0.76);
  font-size: 1.08rem;
}

.button-outline-light {
  border: 1px solid rgba(255,255,255,0.45);
  color: white;
}

.sample-stat-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 22px;
  background: rgba(255,255,255,0.12);
}

.sample-stat-panel div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px;
  background: rgba(20,36,58,0.48);
}

.sample-stat-panel strong {
  color: var(--gold);
  font-size: 2.2rem;
}

.sample-stat-panel span {
  color: rgba(255,255,255,0.78);
}

.finding-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.finding-tab {
  padding: 11px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.finding-tab.active {
  border-color: var(--green-dark);
  background: var(--green-dark);
  color: white;
}

.finding-display {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: white;
  box-shadow: var(--shadow);
}

.finding-display > div:first-child {
  padding: 44px;
}

.finding-kicker {
  display: block;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.finding-display h3 {
  max-width: 650px;
  font-family: "Libre Baskerville", serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.finding-display p {
  color: var(--muted);
}

.finding-action {
  padding-top: 17px;
  border-top: 1px solid var(--line);
  font-weight: 700;
}

.finding-visual {
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(201,166,91,0.95), rgba(178,138,67,0.74)),
    var(--gold);
}

.finding-visual span {
  color: white;
  font-size: clamp(7rem, 18vw, 13rem);
  line-height: 1;
}

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

.inclusion-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: white;
}

.inclusion-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.viewer-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 26px;
}

.viewer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pdf-shell {
  overflow: hidden;
  height: min(82vh, 900px);
  min-height: 620px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #30343b;
  box-shadow: var(--shadow);
}

.pdf-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.viewer-note {
  color: var(--muted);
  font-size: 0.86rem;
}

.sample-cta {
  background: var(--green-dark);
  color: white;
}

.sample-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.sample-cta-inner > div {
  max-width: 760px;
}

.sample-cta p {
  color: rgba(255,255,255,0.74);
}

.simple-footer {
  margin-top: 0;
}

.simple-footer a {
  color: rgba(255,255,255,0.72);
}

@media (max-width: 900px) {
  .sample-hero-grid,
  .finding-display {
    grid-template-columns: 1fr;
  }

  .inclusion-grid {
    grid-template-columns: 1fr 1fr;
  }

  .finding-visual {
    min-height: 220px;
  }

  .sample-cta-inner,
  .viewer-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .inclusion-grid {
    grid-template-columns: 1fr;
  }

  .finding-display > div:first-child {
    padding: 28px;
  }

  .pdf-shell {
    min-height: 520px;
    height: 72vh;
  }
}


.credential-card {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 34px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  box-shadow: 0 14px 38px rgba(20, 36, 58, 0.08);
}

.credential-preview {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: white;
}

.credential-preview img {
  display: block;
  width: 100%;
  height: 188px;
  object-fit: cover;
  object-position: top center;
  transition: transform 180ms ease;
}

.credential-preview:hover img {
  transform: scale(1.025);
}

.credential-kicker {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.credential-copy h3 {
  margin-bottom: 8px;
}

.credential-copy p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 620px) {
  .credential-card {
    grid-template-columns: 1fr;
  }

  .credential-preview {
    max-width: 240px;
  }

  .credential-preview img {
    height: auto;
  }
}


.member-logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.member-logo-strip img {
  display: block;
  width: auto;
  height: 62px;
  padding: 6px 10px;
  border-radius: 14px;
  background: white;
  box-shadow: 0 8px 24px rgba(20, 36, 58, 0.10);
}

.hero-member-strip {
  margin-top: 22px;
}

.member-strip-note {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.credential-card {
  margin-top: 30px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: white;
  box-shadow: var(--shadow);
}

.credential-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 18px;
}

.credential-logos img {
  display: block;
  height: 62px;
  width: auto;
  padding: 6px 10px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--line);
}

.credential-preview img {
  display: block;
  width: 100%;
  max-width: 300px;
  border-radius: 14px;
}

.footer-member-strip {
  margin-top: 18px;
}

.footer-member-strip img {
  height: 52px;
}

.sample-member-strip {
  margin-top: 22px;
}

.sample-member-strip img {
  background: rgba(255,255,255,0.98);
}

.inline-trust-copy {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  margin: 0 0 28px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: white;
}

.inline-trust-copy strong {
  color: var(--green-dark);
}

.inline-trust-copy span {
  color: var(--muted);
}

.simple-footer .member-logo-strip.compact {
  margin-right: auto;
}

.simple-footer .member-logo-strip.compact img {
  height: 42px;
}

@media (max-width: 620px) {
  .member-logo-strip img,
  .credential-logos img {
    height: 52px;
  }

  .footer-member-strip img,
  .simple-footer .member-logo-strip.compact img {
    height: 40px;
  }
}


.header-membership-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.header-membership-badges img {
  display: block;
  height: 48px;
  width: auto;
  padding: 5px 8px;
  border-radius: 12px;
  background: white;
  border: 1px solid rgba(20, 36, 58, 0.08);
  box-shadow: 0 8px 20px rgba(20, 36, 58, 0.10);
}

.top-trust-bar {
  border-bottom: 1px solid rgba(20, 36, 58, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f8f6f1 100%);
}

.top-trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}

.top-trust-bar-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.top-trust-bar-logos img {
  display: block;
  height: 60px;
  width: auto;
  padding: 6px 10px;
  border-radius: 14px;
  background: white;
  box-shadow: 0 10px 26px rgba(20, 36, 58, 0.08);
}

.top-trust-bar-copy {
  display: grid;
  gap: 3px;
  text-align: right;
}

.top-trust-bar-copy strong {
  color: var(--green-dark);
  font-size: 0.98rem;
}

.top-trust-bar-copy span {
  color: var(--muted);
  font-size: 0.85rem;
}

@media (max-width: 1120px) {
  .header-membership-badges img {
    height: 42px;
  }
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: wrap;
  }

  .header-membership-badges {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    margin: 6px 0 0;
  }

  .top-trust-bar-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-trust-bar-copy {
    text-align: left;
  }
}

@media (max-width: 620px) {
  .header-membership-badges img {
    height: 38px;
    padding: 4px 6px;
  }

  .top-trust-bar-logos img {
    height: 50px;
  }

  .top-trust-bar-copy strong {
    font-size: 0.9rem;
  }
}

.damp-case-hero {
  background:
    radial-gradient(circle at 88% 25%, rgba(76, 184, 193, 0.22), transparent 31%),
    radial-gradient(circle at 18% 90%, rgba(201, 166, 91, 0.18), transparent 28%),
    var(--green-dark);
}


.footer-email-links {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 5px;
  align-items: center;
}

.footer-email-links a {
  color: rgba(255,255,255,0.82);
}

.form-note a {
  color: white;
  font-weight: 700;
}


.quotation-points {
  display: grid;
  gap: 12px;
  margin: 28px 0 4px;
}

.quotation-points div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: center;
}

.quotation-points strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--green-dark);
}

.quotation-points span {
  color: white;
  font-weight: 700;
}

.form-section {
  margin: 0 0 26px;
  padding: 0;
  border: 0;
}

.form-section legend {
  width: 100%;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.05rem;
  font-weight: 800;
}

.field-help {
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.45;
}

.consent-label {
  grid-template-columns: 22px 1fr !important;
  align-items: start;
  gap: 11px !important;
  margin: 4px 0 22px !important;
  font-weight: 600 !important;
  line-height: 1.5;
}

.consent-label input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--gold);
}

.quote-submit {
  width: 100%;
  text-align: center;
}


.service-actions {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.secondary-link {
  font-size: 0.88rem;
  opacity: 0.78;
}

.survey-levels-section {
  background:
    linear-gradient(180deg, rgba(238,243,239,0.7), rgba(255,255,255,0.96)),
    var(--cream);
}

.survey-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

.survey-detail-card {
  position: relative;
  height: 100%;
  padding: clamp(26px, 4vw, 44px);
  border: 1px solid rgba(24,69,52,0.14);
  border-radius: 22px;
  background: white;
  box-shadow: 0 18px 50px rgba(25,54,44,0.08);
  scroll-margin-top: 110px;
}

.featured-detail {
  border: 2px solid var(--gold);
  box-shadow: 0 22px 60px rgba(25,54,44,0.13);
}

.survey-detail-heading {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 22px;
}

.survey-level-badge {
  display: grid;
  place-items: center;
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: var(--green-dark);
  color: white;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.featured-detail .survey-level-badge {
  background: var(--gold);
  color: var(--green-dark);
}

.survey-detail-kicker {
  margin: 0 0 4px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.survey-detail-heading h3 {
  margin: 0;
  color: var(--green-dark);
  font-size: clamp(1.55rem, 3vw, 2rem);
}

.survey-detail-intro {
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.75;
}

.survey-detail-card h4 {
  margin: 28px 0 12px;
  color: var(--green-dark);
  font-size: 1.08rem;
}

.survey-detail-card > p:not(.survey-detail-intro) {
  line-height: 1.72;
}

.survey-detail-list {
  display: grid;
  gap: 13px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.survey-detail-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.68;
}

.survey-detail-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--gold-dark);
  font-weight: 900;
}

.survey-limitations {
  margin-top: 28px;
  padding: 20px;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  background: var(--cream);
}

.survey-limitations strong {
  display: block;
  margin-bottom: 7px;
  color: var(--green-dark);
}

.survey-limitations p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
}

.survey-choice-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 34px;
  padding: clamp(24px, 4vw, 38px);
  border-radius: 20px;
  background: var(--green-dark);
  color: white;
}

.survey-choice-callout .eyebrow {
  color: var(--gold);
}

.survey-choice-callout h3 {
  margin: 4px 0 10px;
  color: white;
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}

.survey-choice-callout p:last-child {
  margin-bottom: 0;
  color: rgba(255,255,255,0.82);
}

@media (max-width: 900px) {
  .survey-detail-grid {
    grid-template-columns: 1fr;
  }

  .survey-choice-callout {
    grid-template-columns: 1fr;
  }

  .survey-choice-callout .button {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 520px) {
  .survey-detail-heading {
    align-items: flex-start;
  }

  .survey-level-badge {
    flex-basis: 62px;
    width: 62px;
    height: 62px;
    font-size: 0.9rem;
  }
}


.valuation-note {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid rgba(24,69,52,0.16);
  border-radius: 12px;
  background: rgba(238,243,239,0.78);
}

.valuation-note strong {
  display: block;
  margin-bottom: 7px;
  color: var(--green-dark);
}

.valuation-note p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
}


.reviews-section {
  background:
    radial-gradient(circle at top right, rgba(210,164,70,0.18), transparent 34%),
    var(--green-dark);
  color: white;
}

.review-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.6fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.review-copy h2 {
  max-width: 720px;
  margin-bottom: 16px;
  color: white;
}

.review-copy p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255,255,255,0.82);
  font-size: 1.02rem;
  line-height: 1.72;
}

.review-action {
  display: grid;
  gap: 14px;
  padding: 26px;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 18px;
  background: rgba(255,255,255,0.07);
  box-shadow: 0 18px 42px rgba(0,0,0,0.16);
}

.review-action .button {
  width: 100%;
  text-align: center;
}

.review-action span {
  color: rgba(255,255,255,0.68);
  font-size: 0.78rem;
  line-height: 1.45;
}

@media (max-width: 760px) {
  .review-panel {
    grid-template-columns: 1fr;
  }
}
