﻿:root {
  --green: #1f3d2b;
  --green-dark: #142a1d;
  --black: #1a1a1a;
  --muted: #5e6661;
  --line: #dfe5e1;
  --offwhite: #f5f7f6;
  --white: #ffffff;
  --gold: #c8a96a;
  --shadow: 0 18px 54px rgba(26, 26, 26, 0.08);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--offwhite);
  color: var(--black);
  font-family: "Manrope", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

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

.site-header {
  align-items: center;
  background: rgba(245, 247, 246, 0.86);
  border-bottom: 1px solid rgba(223, 229, 225, 0.8);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  left: 0;
  padding: 14px clamp(20px, 4vw, 64px);
  position: sticky;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

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

.brand img {
  height: 34px;
  width: 34px;
  object-fit: contain;
}

.brand span {
  white-space: nowrap;
}

.main-nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
  color: var(--muted);
}

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

.nav-cta {
  justify-self: end;
  background: var(--green);
  color: var(--white);
  border-radius: var(--radius);
  padding: 11px 16px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.section-shell {
  margin: 0 auto;
  max-width: 1200px;
  padding: 84px clamp(20px, 4vw, 40px);
}

.hero {
  padding-bottom: 0;
  padding-top: 32px;
}

.hero-media {
  background:
    radial-gradient(circle at top right, rgba(200, 169, 106, 0.18), transparent 30%),
    linear-gradient(135deg, rgba(20, 42, 29, 0.98), rgba(31, 61, 43, 0.9)),
    var(--green);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  min-height: clamp(620px, 72vh, 760px);
  padding: clamp(28px, 4vw, 44px);
}

.hero-media::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
  inset: 0;
  opacity: 0.45;
  position: absolute;
}

.hero-media::after {
  background: radial-gradient(circle, rgba(200, 169, 106, 0.18), rgba(200, 169, 106, 0) 68%);
  content: "";
  height: 420px;
  position: absolute;
  right: -100px;
  top: -120px;
  width: 420px;
}

.hero-overlay {
  background:
    linear-gradient(120deg, rgba(20, 42, 29, 0.14), rgba(20, 42, 29, 0)),
    radial-gradient(circle at bottom left, rgba(255, 255, 255, 0.08), transparent 34%);
  inset: 0;
  position: absolute;
}

.hero-grid {
  align-items: start;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  min-height: 100%;
  position: relative;
  z-index: 2;
}

.hero-side {
  display: grid;
  gap: 16px;
  padding-top: 222px;
}

.hero-badge {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  color: var(--white);
  display: grid;
  gap: 6px;
  padding: 16px 18px;
}

.hero-badge strong,
.hero-proof strong {
  color: var(--white);
  font-size: 15px;
  font-weight: 800;
}

.hero-badge span,
.hero-proof span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.system-board {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 16px;
  box-shadow: 0 28px 60px rgba(20, 42, 29, 0.26);
  color: var(--black);
  padding: 16px;
  width: 100%;
}

.board-top {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.board-top span {
  background: #d9dfdb;
  border-radius: 999px;
  height: 8px;
  width: 8px;
}

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

.metric,
.workflow-line {
  background: var(--offwhite);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
}

.metric span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  font-weight: 700;
}

.metric strong {
  color: var(--green);
  display: block;
  font-size: 24px;
  line-height: 1.1;
  margin-top: 6px;
}

.metric.strong {
  background: #edf3ef;
}

.workflow-line {
  align-items: center;
  display: flex;
  gap: 10px;
  grid-column: 1 / -1;
  justify-content: space-between;
  font-size: 12px;
  font-weight: 800;
}

.workflow-line i {
  background: var(--gold);
  height: 2px;
  flex: 1;
}

.hero-content {
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 620px;
  padding: 0;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 14px;
  text-transform: uppercase;
}

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

h1 {
  font-size: clamp(42px, 5.1vw, 64px);
  line-height: 1.02;
  margin-bottom: 18px;
  max-width: 650px;
  overflow-wrap: anywhere;
}

.hero-title-sub {
  display: block;
  font-size: clamp(26px, 3.1vw, 38px);
  line-height: 1.08;
  margin-left: 0;
  margin-top: 18px;
  max-width: none;
  overflow-wrap: normal;
  text-align: left;
  white-space: nowrap;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  margin-bottom: 18px;
  overflow-wrap: anywhere;
}

h3 {
  font-size: 20px;
  line-height: 1.25;
  margin-bottom: 10px;
}

.hero-content p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-highlights {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  max-width: 560px;
}

.hero-highlights span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.88);
  display: inline-flex;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 14px;
}

.hero-proof {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, 1fr);
}

.hero-proof div {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  display: grid;
  gap: 6px;
  padding: 14px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  font-weight: 800;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

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

.hero .button.primary {
  background: var(--gold);
  color: var(--black);
}

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

.hero .button.primary:hover {
  background: #d4b879;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.42);
  color: var(--white);
}

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

.section-heading > p:not(.eyebrow),
.result-copy > p:not(.eyebrow),
.cta-inner p {
  color: var(--muted);
  font-size: 17px;
}

.problem-grid,
.services-grid,
.faq-grid,
.summary-grid,
.impact-grid,
.trust-grid {
  align-items: stretch;
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

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

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

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

.trust-grid {
  grid-template-columns: repeat(2, 1fr);
}

.problem-grid article,
.services-grid article,
.faq-grid article,
.summary-grid article,
.impact-grid article,
.result-list div,
.trust-grid article,
.trust-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px;
}

.problem-grid p,
.services-grid p,
.faq-grid p,
.summary-grid p,
.impact-grid p,
.result-list span,
.trust-grid p,
.trust-panel p {
  color: var(--muted);
}

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

.icon {
  color: var(--green);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 28px;
}

.system-section {
  background: var(--black);
  color: var(--white);
}

.system-inner .section-heading > p:not(.eyebrow),
.dark-section .section-heading > p:not(.eyebrow),
.dark-section .result-copy > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

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

.dark-section.section-shell {
  box-shadow: 0 0 0 100vmax var(--black);
  clip-path: inset(0 -100vmax);
}

.dark-section h2,
.dark-section h3,
.dark-section strong {
  color: var(--white);
}

.dark-section .eyebrow,
.dark-section .icon {
  color: var(--gold);
}

.process {
  align-items: stretch;
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 36px;
}

.process div {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px;
  position: relative;
}

.process div::after {
  color: var(--gold);
  content: "→";
  font-size: 24px;
  position: absolute;
  right: -18px;
  top: 50%;
  transform: translateY(-50%);
}

.process div:last-child::after {
  content: "";
}

.process span {
  color: var(--gold);
  display: block;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 12px;
}

.process strong {
  display: block;
  font-size: 21px;
}

.process p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  margin: 12px 0 0;
}

.result-section {
  align-items: start;
  display: grid;
  gap: 52px;
  grid-template-columns: 1fr 0.85fr;
}

.result-list {
  align-items: stretch;
  display: grid;
  gap: 14px;
}

.result-list strong,
.result-list span {
  display: block;
}

.result-list strong {
  margin-bottom: 6px;
}

.dark-section .result-list div {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.dark-section .result-list span {
  color: rgba(255, 255, 255, 0.7);
}

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

.faq-answer {
  color: var(--black);
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 12px;
}

.faq-detail {
  margin-bottom: 0;
}

.faq-closing {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin-top: 28px;
}

.faq-closing p {
  color: var(--muted);
  margin-bottom: 0;
  max-width: 620px;
}

.trust-layout {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: 0.95fr 1.05fr;
  margin-top: 34px;
}

.resource-grid {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.resource-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 22px;
}

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

.trust-panel h3,
.trust-grid h3,
.impact-grid h3,
.summary-grid h3 {
  color: var(--black);
}

.trust-grid a,
.site-footer a {
  color: inherit;
}

.text-link {
  color: var(--green);
  display: inline-flex;
  font-weight: 800;
  margin-top: 6px;
  text-decoration: underline;
}

.cta-section {
  background: var(--black);
  color: var(--white);
}

.cta-inner {
  align-items: start;
  display: grid;
  gap: 52px;
  grid-template-columns: 0.9fr 1fr;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.78);
}

.contact-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.contact-points a,
.contact-points span {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 14px;
}

.page-secondary {
  border-color: var(--line);
  color: var(--black);
}

.about-hero {
  padding-bottom: 40px;
}

.about-hero .section-heading {
  max-width: 980px;
}

.about-hero h1 {
  line-height: 1.08;
  margin-bottom: 22px;
  max-width: 980px;
  overflow-wrap: normal;
  text-wrap: balance;
  hyphens: auto;
}

.about-hero .section-heading > p:not(.eyebrow) {
  max-width: 760px;
}

.about-hero .contact-points a,
.about-hero .contact-points span {
  background: var(--white);
  border-color: var(--line);
  color: var(--black);
}

.story-layout {
  align-items: stretch;
  display: grid;
  gap: 24px;
  grid-template-columns: 1.2fr 0.8fr;
}

.guide-layout {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.guide-content {
  display: grid;
  gap: 18px;
}

.guide-content section,
.guide-aside,
.guide-cta {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}

.guide-content p,
.guide-content li,
.guide-aside p,
.guide-cta p {
  color: var(--muted);
}

.guide-content ul,
.guide-aside ul {
  margin: 0;
  padding-left: 20px;
}

.guide-content li + li,
.guide-aside li + li {
  margin-top: 10px;
}

.guide-aside {
  display: grid;
  gap: 16px;
  position: sticky;
  top: 96px;
}

.guide-aside strong,
.guide-cta strong {
  color: var(--black);
}

.guide-links {
  display: grid;
  gap: 10px;
}

.guide-links a {
  color: var(--green);
  font-weight: 800;
  text-decoration: underline;
}

.guide-cta {
  margin-top: 28px;
}

.story-panel,
.story-facts div,
.dark-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 24px;
}

.story-facts {
  align-items: stretch;
  display: grid;
  gap: 16px;
}

.story-facts strong,
.story-facts span {
  display: block;
}

.story-facts strong {
  color: var(--black);
  margin-bottom: 8px;
}

.story-facts span {
  color: var(--muted);
}

.dark-section .story-facts div {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.dark-section .story-facts strong {
  color: var(--white);
}

.dark-section .story-facts span {
  color: rgba(255, 255, 255, 0.74);
}

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

.principles-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 22px;
}

.principles-grid p {
  color: var(--muted);
}

.dark-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
}

.dark-card p,
.dark-card span {
  color: rgba(255, 255, 255, 0.74);
}

.dark-card strong,
.dark-card h2 {
  color: var(--white);
}

.appointment-note {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  display: grid;
  gap: 4px;
  margin-top: 28px;
  padding: 18px;
}

.appointment-note strong {
  color: var(--gold);
}

.appointment-note span {
  color: rgba(255, 255, 255, 0.78);
}

.direct-contact-note {
  color: rgba(255, 255, 255, 0.8);
  margin-top: 18px;
}

.direct-contact-note a {
  color: var(--white);
  font-weight: 800;
  text-decoration: underline;
}

.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  color: var(--black);
  display: grid;
  gap: 16px;
  padding: 28px;
}

.contact-form label {
  color: var(--black);
  display: grid;
  font-size: 14px;
  font-weight: 800;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  background: var(--offwhite);
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--black);
  font: inherit;
  padding: 13px 14px;
  width: 100%;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
  outline: none;
}

.recaptcha-block {
  display: grid;
  gap: 10px;
}

.recaptcha-shell {
  min-height: 78px;
}

.recaptcha-note,
.form-status {
  color: var(--black);
  font-size: 14px;
  margin-bottom: 0;
}

.form-helper-link {
  background: none;
  border: 0;
  color: var(--green);
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  justify-self: start;
  padding: 0;
  text-decoration: underline;
}

.form-helper-link[hidden] {
  display: none;
}

.recaptcha-note[hidden],
.form-status[hidden] {
  display: none;
}

.form-status {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.form-status[data-state="pending"] {
  color: var(--muted);
}

.form-status[data-state="success"] {
  background: #edf5ef;
  border: 1px solid #bfd3c2;
  border-radius: var(--radius);
  color: var(--green-dark);
  padding: 14px 16px;
}

.form-status[data-state="error"] {
  background: #fff3f0;
  border: 1px solid #e8c3bb;
  border-radius: var(--radius);
  color: #8a2f1d;
  padding: 14px 16px;
}

.site-footer {
  align-items: center;
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto 1fr;
  padding: 24px clamp(20px, 4vw, 64px);
}

.site-footer span:first-child {
  color: var(--white);
  font-weight: 800;
}

.site-footer span:last-child {
  justify-self: end;
}

.footer-links {
  align-items: center;
  display: flex;
  gap: 18px;
  justify-content: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.footer-links a:hover {
  color: var(--white);
}

.cookie-banner {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  bottom: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr auto;
  left: 50%;
  max-width: 920px;
  padding: 20px;
  position: fixed;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  z-index: 50;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-banner p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 0;
}

.cookie-banner p a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
}

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

.button.secondary.dark {
  border-color: var(--line);
  color: var(--black);
}

.legal-main {
  min-height: 70vh;
}

.legal-content {
  max-width: 860px;
}

.legal-content h1 {
  color: var(--black);
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 24px;
  overflow-wrap: normal;
}

.legal-content h2 {
  font-size: 24px;
  margin-bottom: 12px;
  margin-top: 38px;
}

.legal-content p {
  color: var(--muted);
}

.legal-notice {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  color: var(--black);
  padding: 18px;
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .hero {
    padding-top: 24px;
  }

  .hero-media {
    min-height: auto;
  }

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

  .hero-side {
    padding-top: 24px;
  }

  .problem-grid,
  .services-grid,
  .process,
  .faq-grid,
  .summary-grid,
  .impact-grid,
  .trust-grid,
  .principles-grid,
  .result-section,
  .cta-inner,
  .trust-layout,
  .story-layout,
  .guide-layout {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    display: flex;
    gap: 12px;
    justify-content: space-between;
    padding: 12px 16px;
    width: 100%;
  }

  .brand img {
    height: 30px;
    width: 30px;
  }

  .brand span {
    font-size: 17px;
  }

  .nav-cta {
    display: none;
  }

  .section-shell {
    padding: 64px 20px;
  }

  .hero {
    padding: 16px;
  }

  .hero-media {
    min-height: auto;
    padding: 24px 20px;
  }

  .hero-content {
    max-width: none;
  }

  .hero-content h1 {
    font-size: 38px;
    max-width: 340px;
  }

  .hero-title-sub {
    font-size: 26px;
    margin-left: 18px;
    margin-top: 16px;
    max-width: none;
    text-align: left;
    white-space: normal;
  }

  .hero-content p:not(.eyebrow) {
    font-size: 17px;
    max-width: 330px;
    overflow-wrap: anywhere;
  }

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

  .hero-actions {
    max-width: 330px;
  }

  .hero-highlights {
    max-width: none;
  }

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

  .workflow-line {
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr 1fr;
  }

  .workflow-line i {
    display: none;
  }

  .workflow-line span {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 8px 10px;
  }

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

  .problem-grid,
  .services-grid,
  .process,
  .faq-grid,
  .summary-grid,
  .impact-grid,
  .trust-grid,
  .principles-grid,
  .result-section,
  .cta-inner,
  .trust-layout,
  .story-layout,
  .guide-layout {
    grid-template-columns: 1fr;
  }

  .guide-aside {
    position: static;
    top: auto;
  }

  .process div::after {
    bottom: -24px;
    left: 24px;
    right: auto;
    top: auto;
    transform: rotate(90deg);
  }

  .site-footer {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .site-footer span:last-child {
    justify-self: start;
  }

  .footer-links {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .cookie-banner {
    align-items: stretch;
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .contact-points {
    flex-direction: column;
  }

  .faq-closing {
    align-items: stretch;
    flex-direction: column;
  }
}

