:root {
  --ink: #0b1110;
  --ink-soft: #1f2b26;
  --sage-900: #0f1a14;
  --sage-800: #16231d;
  --sage-700: #22352c;
  --sage-500: #3f5f4f;
  --sage-300: #8aa79a;
  --sage-200: #c7d5cc;
  --fog: #f5f4ef;
  --mist: #eef1eb;
  --cream: #fbfaf6;
  --gold: #c2a36e;
  --line: rgba(11, 17, 16, 0.12);
  --glass: rgba(255, 255, 255, 0.28);
  --glass-strong: rgba(255, 255, 255, 0.42);
  --shadow: 0 22px 44px rgba(11, 17, 16, 0.18);
  --shadow-soft: 0 14px 30px rgba(11, 17, 16, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: radial-gradient(circle at top, #e8efe6, var(--cream) 55%);
  line-height: 1.6;
}

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

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(251, 250, 246, 0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 17, 16, 0.06);
  box-shadow: 0 10px 24px rgba(11, 17, 16, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.brand {
  display: grid;
  gap: 2px;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  letter-spacing: 0.5px;
}

.brand:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 5px;
  border-radius: 4px;
}

.brand-line {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
}

.brand-mark {
  font-weight: 700;
  font-size: 1.15rem;
  text-transform: uppercase;
}

.brand-ext {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sage-500);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-sub {
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 2.8px;
  font-weight: 600;
  color: var(--sage-500);
}

.nav-links {
  display: flex;
  gap: 22px;
  font-weight: 500;
  color: var(--sage-700);
}

.nav-links a {
  position: relative;
  padding-bottom: 6px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
}

.nav-cta {
  white-space: nowrap;
}

.scroll-top {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--sage-900);
  color: var(--cream);
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  background: var(--glass);
  color: var(--sage-900);
  border-color: rgba(15, 26, 20, 0.3);
  backdrop-filter: blur(12px) saturate(150%);
  -webkit-backdrop-filter: blur(12px) saturate(150%);
}

.btn-elevate:hover {
  transform: scale(1.02);
  box-shadow: 0 12px 24px rgba(11, 17, 16, 0.18);
}

.hero {
  position: relative;
  padding: 0 0 90px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(233, 240, 231, 0.7) 0%, rgba(233, 240, 231, 0.45) 45%, rgba(233, 240, 231, 0.12) 100%),
    url("/static/img/hero-raypath.webp");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 250, 246, 0.95) 0%, rgba(251, 250, 246, 0.5) 55%, rgba(251, 250, 246, 0.0) 100%);
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-logo {
  width: min(260px, 70%);
  height: auto;
  display: block;
  margin: -24px auto 12px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: var(--sage-500);
  font-weight: 600;
}

.hero-copy h1 {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 4.4vw, 3.6rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 12px 0 16px;
}

.hero-title {
  min-height: 3.2em;
}

.hero-title span {
  display: inline-block;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.hero-title.is-fading span {
  opacity: 0;
  transform: translateY(6px);
}

.lead {
  font-size: 1.05rem;
  color: var(--sage-700);
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 22px 0;
  display: grid;
  gap: 10px;
}

.hero-points li {
  padding-left: 26px;
  position: relative;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--gold);
}

.hero-segments {
  margin: 4px 0 16px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-500);
}

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

.trust {
  display: grid;
  gap: 10px;
  color: var(--sage-700);
  font-size: 0.95rem;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-weight: 600;
}

.section {
  padding: 72px 0;
}

.section-title {
  display: grid;
  gap: 10px;
  margin-bottom: 36px;
}

.section-title h2 {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 2.05rem;
  letter-spacing: -0.015em;
  text-align: center;
  margin: 0;
}

.section-title--center {
  text-align: center;
}

.section-title--center p {
  margin: 0 auto;
  max-width: 720px;
  color: var(--sage-700);
}

.section-title ul {
  margin: 0;
  padding: 0;
}

.section-title li {
  margin-bottom: 16px;
  list-style: none;
  position: relative;
  padding-left: 34px;
}

.section-title li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 20px;
  height: 20px;
  background-image: url("/static/img/greenl.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.audience-grid,
.benefits-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.audience-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border-radius: 0 18px 0 18px;
  color: var(--ink);
  display: grid;
  grid-template-rows: 170px 1fr;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(33, 76, 51, 0.2);
  background: #fff;
  isolation: isolate;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.audience-card::before {
  content: "";
  grid-row: 1;
  background-size: cover;
  background-position: var(--card-bg-pos, center);
  transform: translateZ(0) scale(1.01);
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: saturate(0.86) contrast(1.02);
  will-change: transform, filter;
  backface-visibility: hidden;
}

.audience-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 20px 22px;
  background: linear-gradient(145deg, #ffffff 0%, #f7f8f5 100%);
  border-top: 1px solid rgba(33, 76, 51, 0.12);
}

.audience-card h3 {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: var(--sage-900);
}

.audience-card p {
  margin: 0;
  color: var(--sage-700);
  font-size: 0.94rem;
  line-height: 1.6;
}

.audience-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.audience-card:hover::before {
  transform: translateZ(0) scale(1.05);
  filter: saturate(0.95) contrast(1.05);
}

.card-hotels::before {
  background-image: url("/static/img/restaurant.webp");
  --card-bg-pos: center 42%;
}

.card-beauty::before {
  background-image: url("/static/img/beauty.webp");
  --card-bg-pos: center 40%;
}

.card-schools::before {
  background-image: url("/static/img/schools.webp");
  --card-bg-pos: center 44%;
}

.card-cleaning::before {
  background-image: url("/static/img/cleaning.webp");
  --card-bg-pos: center 42%;
}

.benefits {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(247, 248, 244, 0.92) 0%, rgba(247, 248, 244, 0.9) 100%),
    url("/static/img/eco_bg.webp");
  background-size: cover;
  background-position: center;
}

.benefits-grid article {
  background: rgba(255, 255, 255, 0.86);
  padding: 24px;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(11, 17, 16, 0.06);
}

.steps {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step {
  background: var(--accent-soft);
  padding: 24px;
  border-radius: 20px;
}

.step span {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-blue);
}

.process {
  background: var(--sage-900);
  color: var(--cream);
}

.process .section-title h2 {
  color: var(--cream);
}

.process .section-title p {
  color: rgba(251, 250, 246, 0.7);
}

.timeline {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  position: relative;
  margin-top: 36px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(251, 250, 246, 0.15);
}

.timeline-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 24px;
  display: grid;
  gap: 12px;
  min-height: 220px;
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
}

.timeline-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.timeline-step {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.15em;
}

.timeline-icon {
  font-weight: 600;
  font-size: 1.4rem;
  opacity: 0.9;
}

.timeline-card h3 {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 1.25rem;
  color: var(--cream);
}

.timeline-card p {
  margin: 0;
  color: rgba(251, 250, 246, 0.7);
}

.mini-cta {
  justify-self: start;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(194, 163, 110, 0.6);
  background: transparent;
  color: var(--gold);
  font-weight: 600;
}

.process-cta {
  margin-top: 28px;
  text-align: center;
}

.btn-primary-cta {
  border-color: rgba(194, 163, 110, 0.55);
  background: var(--cream);
  color: var(--sage-900);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.consultation-check {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(194, 163, 110, 0.14), transparent 32%),
    linear-gradient(180deg, #f7f8f4 0%, var(--cream) 100%);
}

.consultation-panel {
  max-width: 980px;
  margin: 0 auto;
  padding: 48px;
  border: 1px solid rgba(33, 76, 51, 0.16);
  border-radius: 0 28px 0 28px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.consultation-heading {
  margin-bottom: 30px;
}

.consultation-heading p {
  max-width: 650px;
}

.consultation-eyebrow {
  color: var(--sage-500);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.consultation-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.consultation-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: 78px;
  padding: 18px;
  border: 1px solid rgba(33, 76, 51, 0.12);
  border-radius: 14px;
  background: linear-gradient(145deg, #ffffff 0%, #f4f7f2 100%);
  color: var(--sage-800);
  font-weight: 500;
  line-height: 1.5;
}

.consultation-list li:last-child {
  grid-column: 1 / -1;
}

.consultation-list .material-symbols-outlined {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--gold);
  font-size: 1.45rem;
  font-variation-settings: "FILL" 1;
}

.consultation-cta {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.results-section {
  background: #fff;
}

.results-heading {
  max-width: 780px;
  margin-right: auto;
  margin-left: auto;
}

.results-eyebrow {
  color: var(--sage-500);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.result-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(33, 76, 51, 0.16);
  border-radius: 0 20px 0 20px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(11, 17, 16, 0.09);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.before-after-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0;
  aspect-ratio: 3 / 2;
  background: var(--mist);
  border-bottom: 1px solid rgba(33, 76, 51, 0.12);
  border-top: 0;
  border-right: 0;
  border-left: 0;
  color: inherit;
  cursor: zoom-in;
  font: inherit;
}

.before-after-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, filter 0.35s ease;
}

.result-zoom:hover img {
  transform: scale(1.02);
  filter: brightness(0.94);
}

.result-zoom:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -3px;
}

.result-state {
  position: absolute;
  top: 14px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(15, 26, 20, 0.76);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.result-state--before {
  left: 14px;
}

.result-state--after {
  right: 14px;
  background: rgba(194, 163, 110, 0.9);
  color: var(--sage-900);
}

.result-zoom-icon {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  background: rgba(15, 26, 20, 0.78);
  color: #fff;
  font-size: 1.3rem;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: transform 0.2s ease, background 0.2s ease;
}

.result-zoom:hover .result-zoom-icon {
  transform: scale(1.08);
  background: var(--sage-900);
}

.result-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.result-category {
  min-height: 2.7em;
  margin-bottom: 9px;
  color: var(--sage-500);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.result-content h3 {
  margin: 0 0 10px;
  color: var(--sage-900);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 1.3rem;
  line-height: 1.3;
}

.result-content p {
  margin: 0;
  color: var(--sage-700);
  font-size: 0.94rem;
}

.result-content .result-note {
  margin-top: auto;
  padding-top: 16px;
  color: var(--sage-500);
  font-size: 0.86rem;
  font-style: italic;
}

.results-disclaimer {
  max-width: 900px;
  margin: 24px auto 0;
  color: var(--sage-500);
  font-size: 0.78rem;
  line-height: 1.55;
  text-align: center;
}

.results-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 34px;
  padding: 30px 34px;
  border-radius: 0 20px 0 20px;
  background: var(--sage-900);
  color: var(--cream);
  box-shadow: var(--shadow-soft);
}

.results-cta h3 {
  margin: 0 0 6px;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 1.35rem;
}

.results-cta p {
  max-width: 620px;
  margin: 0;
  color: rgba(251, 250, 246, 0.72);
}

.results-cta .btn {
  flex: 0 0 auto;
}

.learn-more-link {
  max-width: 720px;
  margin: 22px auto 0;
  color: var(--sage-700);
  font-size: 0.98rem;
  text-align: center;
}

.learn-more-link a {
  color: var(--sage-900);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(194, 163, 110, 0.72);
  text-underline-offset: 4px;
}

body.lightbox-open {
  overflow: hidden;
}

.image-lightbox {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 32px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.image-lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.image-lightbox__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  padding: 0;
  border: 0;
  background: rgba(7, 12, 9, 0.88);
  cursor: zoom-out;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.image-lightbox__content {
  position: relative;
  z-index: 1;
  display: grid;
  max-width: min(1200px, 92vw);
  max-height: 92vh;
  gap: 12px;
  transform: translateY(10px) scale(0.98);
  transition: transform 0.22s ease;
}

.image-lightbox.is-open .image-lightbox__content {
  transform: translateY(0) scale(1);
}

.image-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: calc(92vh - 54px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0 18px 0 18px;
  background: var(--sage-900);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  object-fit: contain;
}

.image-lightbox__caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.88rem;
  text-align: center;
}

.image-lightbox__close {
  position: absolute;
  z-index: 2;
  top: -18px;
  right: -18px;
  display: grid;
  width: 46px;
  height: 46px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: var(--cream);
  color: var(--sage-900);
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.image-lightbox__close:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.about {
  background: var(--section-light);
}

.about-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(240px, 320px) 1fr;
  align-items: start;
}

.about-logo {
  display: grid;
  gap: 16px;
  justify-items: start;
}

.about-logo img {
  width: min(260px, 100%);
  height: auto;
  object-fit: contain;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-badges span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(26, 44, 36, 0.14);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage-900);
}

.about-content h3 {
  margin: 24px 0 12px;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 1.4rem;
}

.about-list {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 14px;
}

.about-list li {
  list-style: none;
  padding-left: 34px;
  position: relative;
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 20px;
  height: 20px;
  background-image: url("/static/img/greenl.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.about-note {
  margin-top: 18px;
  color: var(--sage-700);
}

.about-cta {
  margin-top: 18px;
}

.contact .hero-form {
  max-width: 560px;
  margin: 0 auto;
}

.faq {
  background: #fff;
}

.faq-list details {
  background: var(--section-light);
  padding: 18px 22px;
  border-radius: 14px;
  margin-bottom: 12px;
  border: 1px solid var(--line);
}

.footer {
  background:
    linear-gradient(180deg, rgba(247, 248, 244, 0.92), rgba(247, 248, 244, 0.8)),
    url("/static/img/eco_bg.webp");
  background-size: cover;
  background-position: center;
  backdrop-filter: blur(8px);
  color: var(--ink);
  padding: 50px 0 26px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.footer-note {
  text-align: center;
  color: var(--sage-700);
  font-size: 0.85rem;
  margin-top: 30px;
}

.legal-page {
  min-height: 100vh;
  padding: 54px 0;
  background:
    radial-gradient(circle at top, rgba(232, 239, 230, 0.95), rgba(251, 250, 246, 0.92) 58%),
    url("/static/img/eco_bg.webp");
  background-size: cover;
  background-position: center;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--sage-700);
  font-weight: 700;
}

.legal-card {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px);
  border: 1px solid rgba(33, 76, 51, 0.14);
  border-radius: 0 28px 0 28px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.legal-header {
  margin-bottom: 34px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
  text-align: center;
}

.legal-header h1 {
  margin: 8px 0 10px;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -0.02em;
}

.legal-card section {
  padding: 22px 0;
  border-bottom: 1px solid rgba(11, 17, 16, 0.08);
}

.legal-card section:last-child {
  border-bottom: 0;
}

.legal-card h2,
.legal-card h3 {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--sage-900);
}

.legal-card h2 {
  margin: 0 0 14px;
  font-size: 1.45rem;
}

.legal-card h3 {
  margin: 18px 0 8px;
  font-size: 1.02rem;
}

.legal-card p,
.legal-card li {
  color: var(--sage-700);
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding-left: 22px;
}

.cookie-banner {
  position: fixed;
  z-index: 120;
  right: 20px;
  bottom: 20px;
  left: 20px;
  display: none;
  pointer-events: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1060px;
  margin: 0 auto;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 0 20px 0 20px;
  background: rgba(251, 250, 246, 0.94);
  box-shadow: var(--shadow);
  pointer-events: auto;
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.cookie-banner h2 {
  margin: 0 0 6px;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 1.15rem;
}

.cookie-banner p {
  max-width: 720px;
  margin: 0;
  color: var(--sage-700);
  font-size: 0.9rem;
}

.cookie-banner__actions {
  display: flex;
  flex: 0 0 auto;
  gap: 10px;
}

.hero-form {
  background: linear-gradient(
    160deg,
    var(--glass-strong) 0%,
    rgba(255, 255, 255, 0.22) 100%
  );
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(26px) saturate(150%);
  -webkit-backdrop-filter: blur(26px) saturate(150%);
}

.hero-form h3 {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  text-align: center;
}

.hero-form p {
  text-align: center;
  color: var(--sage-700);
}

.hero-form .privacy-note {
  margin: 2px 0 0;
  color: rgba(34, 53, 44, 0.78);
  font-size: 0.75rem;
  line-height: 1.5;
  text-align: left;
}

.hero-form .privacy-note a,
.footer a,
.legal-card a,
.cookie-banner a {
  color: var(--sage-900);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(194, 163, 110, 0.65);
  text-underline-offset: 3px;
}

.hero-form label {
  display: grid;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--sage-700);
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid rgba(11, 17, 16, 0.12);
  font-family: inherit;
  background: rgba(255, 255, 255, 0.8);
}

.hero-form textarea {
  resize: vertical;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--sage-700);
}

.field-error {
  color: #b42318;
  font-size: 0.75rem;
  margin-top: -4px;
  min-height: 1em;
}

.has-error input,
.has-error select,
.has-error textarea {
  border-color: rgba(180, 35, 24, 0.7);
  box-shadow: 0 0 0 2px rgba(180, 35, 24, 0.12);
}

.crm {
  padding: 60px 0;
}

.crm table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.crm th,
.crm td {
  text-align: left;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
}

.crm-toolbar {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.crm-toolbar label {
  display: grid;
  gap: 6px;
  color: var(--sage-700);
  font-size: 0.85rem;
}

.crm-toolbar select,
.crm-toolbar input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
  background: #fff;
}

.crm-search input {
  width: 100%;
}

.crm-row--sent {
  background: rgba(219, 231, 215, 0.4);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  border: 1px solid transparent;
}

.badge--sent {
  background: rgba(194, 163, 110, 0.2);
  color: #8a6a1c;
  border-color: rgba(194, 163, 110, 0.5);
}

.badge--done {
  background: rgba(47, 125, 64, 0.18);
  color: #1c5d21;
  border-color: rgba(47, 125, 64, 0.45);
}

.badge--empty {
  background: rgba(107, 122, 116, 0.12);
  color: #5b6b64;
  border-color: rgba(107, 122, 116, 0.25);
}

.crm-row--details td {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.crm-row--details details {
  padding: 8px 0;
}

.crm-row--details summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--sage-900);
  list-style: none;
}

.crm-row--details summary::-webkit-details-marker {
  display: none;
}

.crm-details {
  margin-top: 10px;
  display: grid;
  gap: 6px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  color: var(--sage-700);
  font-size: 0.9rem;
}

.admin-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.admin-header h1 {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
}

.admin-subtitle {
  max-width: 720px;
  margin: 8px 0 0;
  color: var(--sage-700);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
  margin-bottom: 26px;
}

.stats-card {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(33, 76, 51, 0.14);
  border-radius: 0 18px 0 18px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.stats-card span {
  color: var(--sage-700);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.stats-card strong {
  color: var(--sage-900);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
}

.stats-panels {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stats-panel {
  overflow: hidden;
  border: 1px solid rgba(33, 76, 51, 0.14);
  border-radius: 0 18px 0 18px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.stats-panel__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
}

.stats-panel__header h2 {
  margin: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 1.25rem;
}

.stats-panel__header span {
  color: var(--sage-500);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.stats-table {
  width: 100%;
  border-collapse: collapse;
}

.stats-table th,
.stats-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.stats-table th {
  color: var(--sage-700);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stats-table tr:last-child td {
  border-bottom: 0;
}

.stats-source {
  max-width: 360px;
  overflow-wrap: anywhere;
}

.admin-footer-nav {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}

.admin-footer-nav a {
  color: var(--sage-700);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(194, 163, 110, 0.65);
  text-underline-offset: 3px;
}

.stats-reset {
  display: grid;
  justify-items: center;
  gap: 12px;
  max-width: 620px;
  margin: 28px auto 0;
  padding: 22px;
  border: 1px solid rgba(130, 47, 47, 0.2);
  border-radius: 0 18px 0 18px;
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.stats-reset p {
  margin: 0;
  color: var(--sage-700);
  font-size: 0.9rem;
}

.btn-danger {
  background: #8a2f2f;
  color: #fff;
  box-shadow: 0 12px 24px rgba(138, 47, 47, 0.18);
}

.thanks {
  min-height: 100vh;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at top, #eef4ea, #fbfbf8 60%);
  padding: 24px;
}

.thanks-card {
  background: #fff;
  padding: 50px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  max-width: 540px;
  text-align: center;
}

.survey {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 16px;
  background: radial-gradient(circle at top, #eef4ea, #fbfbf8 60%);
}

.survey-card {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.7);
  max-width: 720px;
  width: 100%;
}

.survey-card h1 {
  margin-top: 0;
  font-family: "DM Sans", "Segoe UI", sans-serif;
}

.survey-form {
  display: grid;
  gap: 14px;
}

.survey-form label {
  display: grid;
  gap: 6px;
  color: var(--sage-700);
  font-size: 0.95rem;
}

.survey-form input,
.survey-form select,
.survey-form textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
  background: #fff;
}

.article-page {
  background:
    radial-gradient(circle at top left, rgba(232, 239, 230, 0.9), rgba(251, 250, 246, 0.96) 48%),
    linear-gradient(180deg, rgba(251, 250, 246, 0.96), rgba(238, 241, 235, 0.76));
}

.article-hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 64px;
  background:
    linear-gradient(120deg, rgba(251, 250, 246, 0.96) 0%, rgba(251, 250, 246, 0.78) 52%, rgba(232, 239, 230, 0.66) 100%),
    url("/static/img/section_bg.webp");
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid rgba(11, 17, 16, 0.08);
}

.article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  gap: 42px;
  align-items: center;
}

.article-hero__content h1 {
  max-width: 780px;
  margin: 10px 0 18px;
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: clamp(2.35rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.article-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.article-hero__box {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 0 28px 0 28px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.article-hero__box img {
  display: block;
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.article-hero__box > div {
  padding: 26px;
}

.article-hero__box h2,
.article-content h2,
.article-content h3,
.sidebar-card h2,
.sidebar-card h3 {
  font-family: "DM Sans", "Segoe UI", sans-serif;
  color: var(--sage-900);
  letter-spacing: -0.015em;
}

.article-hero__box h2 {
  margin: 0 0 14px;
  font-size: 1.35rem;
}

.article-hero__box ul,
.article-checklist,
.sidebar-card ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.article-hero__box li,
.article-checklist li,
.sidebar-card li {
  position: relative;
  padding-left: 24px;
  color: var(--sage-700);
}

.article-hero__box li::before,
.article-checklist li::before,
.sidebar-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(194, 163, 110, 0.16);
}

.article-section {
  padding-top: 72px;
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 42px;
  align-items: start;
}

.article-content {
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(33, 76, 51, 0.12);
  border-radius: 0 28px 0 28px;
  background: rgba(255, 255, 255, 0.84);
  box-shadow: var(--shadow-soft);
}

.article-content > h2:first-child {
  margin-top: 0;
}

.article-content h2 {
  margin: 42px 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  line-height: 1.18;
}

.article-content h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.article-content p {
  margin: 0 0 16px;
  color: var(--sage-700);
}

.article-cards,
.article-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0 34px;
}

.article-cards article,
.article-benefits div {
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(11, 17, 16, 0.09);
  border-radius: 0 18px 0 18px;
  background: linear-gradient(160deg, rgba(247, 248, 244, 0.95), rgba(255, 255, 255, 0.88));
  box-shadow: 0 12px 24px rgba(11, 17, 16, 0.07);
}

.article-cards p,
.article-benefits p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.article-checklist {
  margin: 18px 0 34px;
}

.article-highlight,
.article-cta {
  margin: 34px 0;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 0 24px 0 24px;
  background:
    linear-gradient(135deg, rgba(15, 26, 20, 0.94), rgba(34, 53, 44, 0.9)),
    url("/static/img/eco_bg.webp");
  background-size: cover;
  color: var(--cream);
  box-shadow: var(--shadow-soft);
}

.article-highlight h2,
.article-cta h2 {
  margin-top: 0;
  color: var(--cream);
}

.article-highlight p,
.article-cta p {
  color: rgba(251, 250, 246, 0.86);
}

.article-cta .btn {
  margin-top: 6px;
  background: var(--cream);
  color: var(--sage-900);
}

.article-steps {
  display: grid;
  gap: 14px;
  margin: 22px 0 36px;
  padding: 0;
  list-style: none;
  counter-reset: article-step;
}

.article-steps li {
  position: relative;
  min-height: 82px;
  padding: 20px 22px 20px 76px;
  border: 1px solid rgba(11, 17, 16, 0.09);
  border-radius: 0 18px 0 18px;
  background: rgba(247, 248, 244, 0.82);
  counter-increment: article-step;
}

.article-steps li::before {
  content: counter(article-step);
  position: absolute;
  left: 22px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--sage-900);
  color: var(--cream);
  font-weight: 800;
}

.article-steps strong,
.article-steps span {
  display: block;
}

.article-steps span {
  margin-top: 5px;
  color: var(--sage-700);
}

.article-faq {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.article-faq details {
  padding: 18px 20px;
  border: 1px solid rgba(11, 17, 16, 0.1);
  border-radius: 0 16px 0 16px;
  background: rgba(247, 248, 244, 0.86);
}

.article-faq summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--sage-900);
}

.article-faq p {
  margin: 12px 0 0;
}

.article-sidebar {
  position: sticky;
  top: 104px;
  display: grid;
  gap: 18px;
}

.sidebar-card {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 0 22px 0 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.sidebar-card h2,
.sidebar-card h3 {
  margin: 0 0 10px;
}

.sidebar-card p {
  color: var(--sage-700);
}

.sidebar-card .btn {
  width: 100%;
  margin-top: 8px;
  text-align: center;
}

.sidebar-card--light {
  background: rgba(247, 248, 244, 0.9);
}

.sidebar-card--image {
  overflow: hidden;
  padding: 0;
}

.sidebar-card--image img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.sidebar-card--image p {
  margin: 0;
  padding: 18px 20px 20px;
  font-size: 0.94rem;
}

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

  .about-logo {
    justify-items: center;
    text-align: center;
  }

  .admin-header {
    align-items: stretch;
    flex-direction: column;
  }

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

  .article-hero__grid,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .article-sidebar {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sidebar-card:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 860px) {
  .topbar {
    background: rgba(251, 250, 246, 0.94);
  }

  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 16px;
    padding: 12px 0;
  }

  .brand {
    min-width: 0;
  }

  .brand-sub {
    overflow: hidden;
    font-size: 0.64rem;
    letter-spacing: 1.8px;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    padding: 11px;
    place-content: center;
    gap: 5px;
    border: 1px solid rgba(15, 26, 20, 0.18);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--sage-900);
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(11, 17, 16, 0.08);
  }

  .nav-toggle__line {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transform-origin: center;
    transition: transform 0.22s ease, opacity 0.18s ease;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-toggle:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
  }

  .nav-cta {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    padding: 11px 18px;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 3;
    display: grid;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    margin: 0;
    padding: 0 16px;
    border: 1px solid transparent;
    border-radius: 0 16px 0 16px;
    background: rgba(255, 255, 255, 0);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      max-height 0.3s ease,
      margin 0.3s ease,
      padding 0.3s ease,
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0.3s ease,
      border-color 0.3s ease,
      background 0.3s ease;
  }

  .nav-links.is-open {
    max-height: 280px;
    margin-top: 2px;
    padding: 8px 16px;
    border-color: rgba(33, 76, 51, 0.14);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 28px rgba(11, 17, 16, 0.1);
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 13px 4px;
    border-bottom: 1px solid rgba(33, 76, 51, 0.1);
    font-weight: 600;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-links a::after {
    display: none;
  }

  .scroll-top {
    position: fixed;
    z-index: 9;
    right: max(18px, env(safe-area-inset-right));
    bottom: max(18px, env(safe-area-inset-bottom));
    display: grid;
    width: 46px;
    height: 46px;
    padding: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    background: rgba(15, 26, 20, 0.88);
    color: var(--cream);
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(11, 17, 16, 0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
  }

  .scroll-top.is-visible {
    opacity: 0.82;
    visibility: visible;
    transform: translateY(0);
  }

  .scroll-top:hover,
  .scroll-top:focus-visible {
    opacity: 1;
  }

  .scroll-top:focus-visible {
    outline: 3px solid var(--gold);
    outline-offset: 3px;
  }

  .scroll-top .material-symbols-outlined {
    font-size: 1.3rem;
  }

  .results-cta {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .package.featured {
    transform: none;
  }

  .timeline::before {
    display: none;
  }
}

@media (max-width: 640px) {
  .audience-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .audience-card {
    min-height: 0;
    grid-template-rows: 190px auto;
    border-color: rgba(33, 76, 51, 0.18);
    border-radius: 0 18px 0 18px;
  }

  .audience-card::before {
    background-size: cover;
  }

  .audience-card__content {
    padding: 20px 22px 22px;
  }

  .audience-card h3 {
    font-size: 1.15rem;
  }

  .audience-card p {
    font-size: 0.95rem;
  }

  .consultation-check {
    padding: 52px 0;
  }

  .consultation-panel {
    padding: 30px 20px;
    border-radius: 0 22px 0 22px;
  }

  .consultation-heading {
    margin-bottom: 24px;
  }

  .consultation-heading h2 {
    font-size: 1.75rem;
  }

  .consultation-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .consultation-list li,
  .consultation-list li:last-child {
    grid-column: auto;
    min-height: 0;
    padding: 16px;
  }

  .consultation-cta .btn {
    width: 100%;
    padding-inline: 18px;
    text-align: center;
  }

  .results-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .result-content {
    padding: 20px;
  }

  .result-category {
    min-height: 0;
  }

  .results-cta {
    padding: 26px 22px;
  }

  .results-cta .btn {
    width: 100%;
    text-align: center;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .cookie-banner__content {
    align-items: stretch;
    flex-direction: column;
    gap: 16px;
    padding: 18px;
  }

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

  .cookie-banner__actions .btn {
    width: 100%;
  }

  .legal-page {
    padding: 28px 0;
  }

  .hero {
    background:
      linear-gradient(120deg, rgba(233, 240, 231, 0.7) 0%, rgba(233, 240, 231, 0.45) 45%, rgba(233, 240, 231, 0.12) 100%),
      url("/static/img/hero-raypath_mobile.webp");
    background-size: cover;
    background-position: center top;
  }

  .legal-card {
    border-radius: 0 20px 0 20px;
  }

  .article-hero {
    padding: 46px 0 42px;
  }

  .article-hero__content h1 {
    font-size: clamp(2rem, 10vw, 2.65rem);
  }

  .article-hero__actions,
  .article-hero__actions .btn {
    width: 100%;
  }

  .article-hero__box img {
    height: 180px;
  }

  .article-hero__box > div,
  .article-content {
    padding: 22px;
  }

  .article-section {
    padding-top: 46px;
  }

  .article-cards,
  .article-benefits,
  .article-sidebar {
    grid-template-columns: 1fr;
  }

  .sidebar-card:first-child {
    grid-column: auto;
  }

  .article-cards article,
  .article-benefits div,
  .sidebar-card {
    border-radius: 0 18px 0 18px;
  }

  .article-steps li {
    padding: 74px 18px 18px;
  }

  .article-steps li::before {
    left: 18px;
    top: 18px;
  }

  .article-cta .btn {
    width: 100%;
  }

  .stats-card {
    padding: 18px;
  }

  .stats-panel {
    overflow-x: auto;
  }

  .stats-panel__header {
    align-items: flex-start;
    flex-direction: column;
  }

  .stats-table {
    min-width: 520px;
  }

  .admin-footer-nav {
    flex-direction: column;
    text-align: center;
  }

  .image-lightbox {
    padding: 16px;
  }

  .image-lightbox__content {
    max-width: 100%;
    max-height: 96vh;
  }

  .image-lightbox__image {
    max-height: calc(96vh - 52px);
    border-radius: 0 12px 0 12px;
  }

  .image-lightbox__close {
    top: -12px;
    right: -8px;
    width: 44px;
    height: 44px;
  }

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

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
