/* ============================================
   Ascenor Consulting — Landing Page Styles
   ============================================ */

:root {
  /* Brand palette (from Ascenor Brand Kit v1.0) */
  --imperial-green: #0E3324;
  --shadow-green: #0A2419;
  --parchment: #F3E3C5;
  --sage-gold: #B5B394;
  --gold-deep: #C9B27E;
  --muted-body: #4A5A51;
  --soft-ground: #E8E4DA;
  --ivory: #FBF8F1;
  --white: #FFFFFF;

  --ink: var(--imperial-green);
  --bg: var(--ivory);
  --bg-alt: var(--soft-ground);
  --bg-card: var(--parchment);
  --border-soft: rgba(14, 51, 36, 0.10);
  --card-border: rgba(14, 51, 36, 0.08);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Helvetica Neue", Arial, sans-serif;

  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 10px;

  --shadow-card: 0 14px 40px rgba(10, 36, 25, 0.10);
  --shadow-card-hover: 0 22px 54px rgba(10, 36, 25, 0.16);

  --container: 1180px;

  /* Pinstripe motif from brand cover */
  --pinstripe: repeating-linear-gradient(
    90deg,
    rgba(243, 227, 197, 0.06) 0 1px,
    transparent 1px 96px
  );
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* ---------- Accessibility: skip link ---------- */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--imperial-green);
  color: var(--parchment);
  padding: 12px 20px;
  border-radius: 0 0 10px 0;
  font-size: 0.9rem;
}

.skip-link:focus {
  left: 0;
}

/* Visible focus outline for keyboard users (accessibility) */
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 3px;
}

/* ---------- Scroll reveal animations ---------- */
@media (prefers-reduced-motion: no-preference) {
  body.reveal-ready [data-animate] {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
  }

  body.reveal-ready [data-animate].in-view {
    opacity: 1;
    transform: none;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--muted-body);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--imperial-green);
  font-weight: 500;
  margin: 0;
  line-height: 1.12;
}

p {
  margin: 0;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

.eyebrow--on-light {
  color: #97925f;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 104px 0;
}

.section--tight {
  padding: 80px 0;
}

.section--alt {
  background: var(--bg-alt);
}

.section-head {
  max-width: 700px;
  margin: 0 auto 60px;
  text-align: center;
}

.section-head .eyebrow {
  display: inline-block;
  margin-bottom: 16px;
}

.section-head h2 {
  font-size: clamp(2.1rem, 3.6vw, 2.9rem);
}

.section-head p {
  margin-top: 18px;
  font-size: 1.05rem;
}

.divider-rule {
  width: 54px;
  height: 2px;
  background: var(--gold-deep);
  margin: 22px auto 0;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 34px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--imperial-green);
  color: var(--parchment);
  box-shadow: 0 12px 30px rgba(14, 51, 36, 0.28);
}

.btn-primary:hover {
  background: var(--shadow-green);
  box-shadow: 0 16px 38px rgba(14, 51, 36, 0.36);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--imperial-green);
  border-color: rgba(14, 51, 36, 0.28);
}

.btn-secondary:hover {
  border-color: var(--imperial-green);
  background: rgba(14, 51, 36, 0.04);
}

/* CTA styles for use on dark green backgrounds */
.btn-on-dark {
  background: var(--parchment);
  color: var(--imperial-green);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
}

.btn-on-dark:hover {
  background: var(--white);
  transform: translateY(-2px);
}

.btn-ghost-light {
  background: transparent;
  color: var(--parchment);
  border-color: rgba(243, 227, 197, 0.4);
}

.btn-ghost-light:hover {
  border-color: var(--parchment);
  background: rgba(243, 227, 197, 0.08);
}

/* ---------- Top social-proof banner ---------- */

.top-banner {
  background: var(--shadow-green);
  color: var(--parchment);
  text-align: center;
  padding: 11px 20px;
  font-size: 0.83rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(243, 227, 197, 0.1);
}

.top-banner .stars {
  color: var(--gold-deep);
  letter-spacing: 0.1em;
}

.top-banner strong {
  color: var(--parchment);
  font-weight: 500;
}

/* ---------- Header / Nav (dark, sits over green hero) ---------- */

.site-header {
  position: absolute;
  top: 40px; /* below top-banner */
  left: 0;
  right: 0;
  z-index: 100;
}

.site-header.is-stuck {
  position: fixed;
  top: 0;
  background: rgba(10, 36, 25, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(243, 227, 197, 0.12);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { transform: translateY(-100%); }
  to { transform: translateY(0); }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: var(--container);
  margin: 0 auto;
}

.nav-logo img {
  height: 46px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 400;
  color: rgba(243, 227, 197, 0.82);
  transition: color 0.2s ease;
}

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-cta .btn {
  padding: 12px 26px;
  font-size: 0.88rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--parchment);
}

/* ---------- Hero (immersive Imperial Green) ---------- */

.hero {
  position: relative;
  background:
    radial-gradient(circle at 50% -10%, rgba(181, 179, 148, 0.16), transparent 55%),
    linear-gradient(180deg, var(--imperial-green) 0%, var(--shadow-green) 100%);
  color: var(--parchment);
  padding: 190px 0 130px;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--pinstripe);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, rgba(10, 36, 25, 0.5));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}

.hero-eagle {
  height: 62px;
  width: auto;
  margin: 0 auto 28px;
  opacity: 0.92;
}

.hero .eyebrow {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--gold-deep);
}

.hero h1 {
  font-size: clamp(2.8rem, 6.2vw, 4.6rem);
  color: var(--parchment);
  letter-spacing: 0.01em;
  font-weight: 500;
}

.hero-sub {
  margin: 26px auto 0;
  max-width: 620px;
  font-size: 1.18rem;
  color: rgba(243, 227, 197, 0.82);
  font-weight: 300;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 42px;
}

.hero-proof {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 40px;
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(243, 227, 197, 0.18);
  background: rgba(243, 227, 197, 0.04);
}

.hero-proof .stars {
  color: var(--gold-deep);
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}

.hero-proof span.txt {
  font-size: 0.86rem;
  color: rgba(243, 227, 197, 0.8);
  letter-spacing: 0.02em;
}

/* ---------- VSL / Video ---------- */

.video-wrap {
  max-width: 900px;
  margin: 0 auto;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(160deg, var(--imperial-green), var(--shadow-green));
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(14, 51, 36, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--pinstripe);
  opacity: 0.9;
}

.play-button {
  position: relative;
  z-index: 2;
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease;
}

.video-frame:hover .play-button {
  transform: scale(1.08);
}

.play-button svg {
  margin-left: 5px;
}

.video-caption {
  text-align: center;
  margin-top: 22px;
  font-size: 0.92rem;
  color: var(--muted-body);
  letter-spacing: 0.02em;
}

/* ---------- Stat cards ---------- */

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 76px;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 46px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage-gold), var(--gold-deep));
}

.stat-card .stat-number {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--imperial-green);
  font-weight: 600;
  line-height: 1;
}

.stat-card .stat-label {
  margin-top: 12px;
  font-size: 0.95rem;
  color: var(--muted-body);
}

/* ---------- Logo strip ---------- */

.logo-strip-label {
  text-align: center;
  margin-bottom: 30px;
}

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 52px;
}

.logo-strip .logo-item {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--imperial-green);
  opacity: 0.4;
  letter-spacing: 0.02em;
  transition: opacity 0.2s ease;
}

.logo-strip .logo-item:hover {
  opacity: 0.75;
}

/* ---------- Case studies ---------- */

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

.case-card {
  background: var(--bg-card);
  border: 1px solid rgba(14, 51, 36, 0.06);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

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

.case-card .case-tag {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #97925f;
  font-weight: 500;
}

.case-card .case-stat {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--imperial-green);
  line-height: 1;
}

.case-card h3 {
  font-size: 1.4rem;
}

.case-card p.quote {
  font-size: 0.96rem;
  color: var(--muted-body);
  font-style: italic;
  line-height: 1.7;
}

.case-card .case-link {
  margin-top: auto;
  padding-top: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--imperial-green);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.case-card .case-link svg {
  transition: transform 0.2s ease;
}

.case-card:hover .case-link svg {
  transform: translateX(4px);
}

/* ---------- How it works ---------- */

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

.step-card {
  position: relative;
  padding-top: 28px;
  border-top: 2px solid rgba(14, 51, 36, 0.1);
}

.step-number {
  font-family: var(--font-display);
  font-size: 3.2rem;
  color: var(--gold-deep);
  line-height: 1;
  margin-bottom: 18px;
  font-weight: 600;
}

.step-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
}

.step-card p {
  font-size: 0.98rem;
}

/* ---------- Booking section ---------- */

.booking-section {
  position: relative;
  background: linear-gradient(180deg, var(--imperial-green), var(--shadow-green));
  color: var(--parchment);
  overflow: hidden;
}

.booking-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--pinstripe);
  pointer-events: none;
}

.booking-section .container {
  position: relative;
  z-index: 2;
}

.booking-section .section-head h2 {
  color: var(--parchment);
}

.booking-section .section-head .eyebrow {
  color: var(--gold-deep);
}

.booking-section .section-head p {
  color: rgba(243, 227, 197, 0.78);
}

.booking-embed {
  max-width: 720px;
  margin: 0 auto;
  background: var(--ivory);
  border: 1px solid rgba(243, 227, 197, 0.25);
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.booking-embed .calendly-inline-widget {
  border-radius: 16px;
  overflow: hidden;
  background: var(--ivory);
}

.booking-fallback {
  text-align: center;
  margin-top: 20px;
  font-size: 0.9rem;
  color: rgba(243, 227, 197, 0.7);
}

.booking-fallback a {
  color: var(--parchment);
  border-bottom: 1px solid rgba(243, 227, 197, 0.4);
  padding-bottom: 1px;
}

.booking-fallback a:hover {
  border-color: var(--parchment);
}

.calendly-placeholder {
  min-height: 480px;
  border-radius: calc(var(--radius-lg) - 6px);
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  text-align: center;
  padding: 40px 24px;
  color: var(--muted-body);
}

.calendly-placeholder .calendar-icon {
  color: var(--imperial-green);
}

.calendly-placeholder h4 {
  font-size: 1.3rem;
}

.calendly-placeholder code {
  font-size: 0.8rem;
  background: var(--soft-ground);
  padding: 6px 12px;
  border-radius: 8px;
  color: var(--muted-body);
}

/* ---------- Final CTA ---------- */

.final-cta {
  position: relative;
  background: var(--shadow-green);
  color: var(--parchment);
  text-align: center;
  padding: 110px 0;
  overflow: hidden;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 120%, rgba(181, 179, 148, 0.14), transparent 60%),
    var(--pinstripe);
  pointer-events: none;
}

.final-cta .container {
  position: relative;
  z-index: 2;
}

.final-cta h2 {
  color: var(--parchment);
  font-size: clamp(2.3rem, 4.2vw, 3.4rem);
}

.final-cta p {
  margin: 20px auto 38px;
  max-width: 520px;
  color: rgba(243, 227, 197, 0.8);
  font-size: 1.05rem;
}

/* ---------- Footer ---------- */

.site-footer {
  background: #071a12;
  color: rgba(243, 227, 197, 0.7);
  padding: 68px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(243, 227, 197, 0.12);
}

.footer-brand img {
  height: 50px;
  margin-bottom: 18px;
}

.footer-brand p {
  font-size: 0.9rem;
  max-width: 270px;
  color: rgba(243, 227, 197, 0.55);
  line-height: 1.7;
}

.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 20px;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-col a,
.footer-col span {
  font-size: 0.9rem;
  color: rgba(243, 227, 197, 0.66);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--parchment);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.8rem;
  color: rgba(243, 227, 197, 0.45);
}

.footer-social {
  display: flex;
  gap: 14px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(243, 227, 197, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(243, 227, 197, 0.7);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.footer-social a:hover {
  border-color: var(--gold-deep);
  background: rgba(201, 178, 126, 0.12);
  color: var(--parchment);
}

/* ---------- Placeholder content (replace before launch) ---------- */
.ph {
  color: var(--sage-gold);
  font-style: italic;
  font-weight: 300;
}

.logo-item.is-placeholder {
  font-style: italic;
  border: 1px dashed rgba(14, 51, 36, 0.28);
  border-radius: 8px;
  padding: 10px 22px;
  opacity: 0.55;
  font-size: 1rem;
}

.case-card.is-placeholder {
  border: 1px dashed rgba(14, 51, 36, 0.2);
  background: rgba(243, 227, 197, 0.4);
}

.case-card.is-placeholder .quote {
  color: var(--sage-gold);
}

.stat-card.is-placeholder .stat-number {
  color: var(--sage-gold);
}

/* ---------- Case / results note ---------- */
.case-note {
  text-align: center;
  margin-top: 34px;
  font-size: 0.8rem;
  color: var(--muted-body);
  opacity: 0.7;
}

/* ---------- Footer additions ---------- */
.footer-disclaimer {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(243, 227, 197, 0.42);
  padding: 26px 0 4px;
  max-width: 900px;
}

.footer-disclaimer strong {
  color: rgba(243, 227, 197, 0.6);
  font-weight: 500;
}

.footer-legal-links {
  display: inline-flex;
  gap: 20px;
}

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

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1500;
  max-width: 720px;
  margin: 0 auto;
  background: rgba(10, 36, 25, 0.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(243, 227, 197, 0.18);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  animation: cookieUp 0.4s ease;
}

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

.cookie-banner p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(243, 227, 197, 0.82);
  margin: 0;
}

.cookie-banner a {
  color: var(--gold-deep);
  border-bottom: 1px solid rgba(201, 178, 126, 0.4);
}

.cookie-banner a:hover {
  color: var(--parchment);
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.cookie-actions .btn-primary {
  padding: 11px 26px;
  font-size: 0.88rem;
  background: var(--parchment);
  color: var(--imperial-green);
  box-shadow: none;
}

.cookie-actions .btn-primary:hover {
  background: var(--white);
}

.cookie-learn {
  font-size: 0.85rem;
  color: rgba(243, 227, 197, 0.7);
  white-space: nowrap;
}

/* ---------- Legal pages (privacy / terms) ---------- */
.legal-page {
  background: var(--bg);
}

.legal-hero {
  background: linear-gradient(180deg, var(--imperial-green), var(--shadow-green));
  color: var(--parchment);
  padding: 150px 0 70px;
  position: relative;
  overflow: hidden;
}

.legal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--pinstripe);
}

.legal-hero .container {
  position: relative;
  z-index: 2;
}

.legal-hero h1 {
  color: var(--parchment);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
}

.legal-hero p {
  margin-top: 14px;
  color: rgba(243, 227, 197, 0.75);
  font-size: 0.95rem;
}

.legal-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 72px 24px 100px;
}

.legal-body h2 {
  font-size: 1.6rem;
  margin: 48px 0 14px;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body h3 {
  font-size: 1.2rem;
  margin: 28px 0 10px;
}

.legal-body p,
.legal-body li {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted-body);
}

.legal-body ul {
  padding-left: 22px;
  margin: 12px 0;
}

.legal-body li {
  margin-bottom: 8px;
}

.legal-body a {
  color: var(--imperial-green);
  border-bottom: 1px solid rgba(14, 51, 36, 0.3);
}

.legal-body strong {
  color: var(--imperial-green);
  font-weight: 500;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 40px;
  font-size: 0.9rem;
  color: var(--imperial-green);
  font-weight: 500;
}

.legal-note {
  margin-top: 40px;
  padding: 20px 24px;
  background: var(--soft-ground);
  border-left: 3px solid var(--gold-deep);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--muted-body);
}

/* ---------- Responsive ---------- */

@media (max-width: 960px) {
  .stats-grid,
  .case-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .section {
    padding: 76px 0;
  }

  .hero {
    padding: 150px 0 100px;
  }
}

@media (max-width: 720px) {
  .nav-links,
  .nav-cta .btn {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .site-header {
    top: 42px;
  }

  .nav.is-open .nav-links {
    display: flex;
    position: absolute;
    top: 76px;
    left: 12px;
    right: 12px;
    background: rgba(10, 36, 25, 0.98);
    border: 1px solid rgba(243, 227, 197, 0.14);
    border-radius: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 16px 20px 20px;
    backdrop-filter: blur(12px);
  }

  .nav.is-open .nav-links a {
    padding: 11px 0;
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding: 140px 0 90px;
  }

  .hero-proof {
    flex-direction: column;
    gap: 6px;
    border-radius: 18px;
  }

  .section-head {
    margin-bottom: 44px;
  }

  .logo-strip {
    gap: 30px;
  }

  .logo-strip .logo-item {
    font-size: 1.2rem;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 18px 20px;
  }

  .cookie-actions {
    width: 100%;
    justify-content: space-between;
  }

  .footer-legal-links {
    margin-top: 4px;
  }
}
