/* =========================================================
   Tech Recycling Berlin — Premium Design System v2
   ========================================================= */

:root {
  /* Brand */
  --green: #3A9E1E;
  --green-dark: #2d7d16;
  --green-deeper: #1f5a0f;
  --green-light: #e8f5e1;
  --green-soft: #f4faf0;
  --green-glow: rgba(58,158,30,.22);

  /* Neutrals */
  --ink: #0f1a0d;
  --ink-soft: #2a3328;
  --muted: #6b7669;
  --line: #e5e9e2;
  --bg: #ffffff;
  --bg-alt: #fafbf8;
  --bg-dark: #0b140a;

  /* Accents */
  --accent-yellow: #e8f23a;
  --accent-lime: #bdea5c;

  /* Typography */
  --font-display: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --font-body: "Inter", ui-sans-serif, system-ui, sans-serif;

  /* Radii & shadows */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(15,26,13,.06), 0 2px 6px rgba(15,26,13,.04);
  --shadow-md: 0 10px 30px -10px rgba(15,26,13,.12), 0 4px 12px rgba(15,26,13,.05);
  --shadow-lg: 0 30px 60px -20px rgba(15,26,13,.22), 0 10px 30px -15px rgba(15,26,13,.08);
  --shadow-glow: 0 20px 60px -20px rgba(58,158,30,.45);

  /* Motion */
  --ease-out: cubic-bezier(.16, 1, .3, 1);
  --ease-out-soft: cubic-bezier(.22, 1, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1.25rem, 3vw, 2rem);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  font-size: 16px;
  font-feature-settings: "cv11", "ss01";
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--green); }
button { font: inherit; cursor: pointer; border: 0; background: none; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  letter-spacing: -0.022em;
  line-height: 1.12;
  margin: 0 0 .5em;
  font-weight: 700;
}
h1 { font-size: clamp(2.25rem, 5vw, 4rem); letter-spacing: -0.035em; font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.9rem); letter-spacing: -0.03em; font-weight: 800; }
h3 { font-size: clamp(1.25rem, 2vw, 1.55rem); }
p { margin: 0 0 1em; color: var(--ink-soft); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); color: var(--ink-soft); max-width: 62ch; }

::selection { background: var(--green); color: #fff; }

/* Custom scrollbar */
html { scrollbar-color: var(--green) var(--bg-alt); }
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: #cdd5c6; border-radius: 10px; border: 2px solid var(--bg-alt); }
::-webkit-scrollbar-thumb:hover { background: var(--green); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: clamp(4rem, 8vw, 7rem) 0; position: relative; }
.section--tight { padding: clamp(3rem, 5vw, 4.5rem) 0; }
.section--dark { background: var(--bg-dark); color: #dde5d9; position: relative; overflow: hidden; }
.section--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 40% 50% at 20% 20%, rgba(58,158,30,.18), transparent 60%),
    radial-gradient(ellipse 35% 45% at 85% 80%, rgba(58,158,30,.12), transparent 55%);
  pointer-events: none;
}
.section--dark > .container { position: relative; z-index: 1; }
.section--dark h1, .section--dark h2, .section--dark h3 { color: #fff; }
.section--dark p { color: #b6c1b1; }
.section--alt { background: var(--bg-alt); }

/* Animated page-wide grain overlay (subtle) */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .08 0'/></filter><rect width='120' height='120' filter='url(%23n)'/></svg>");
  opacity: .5;
  z-index: 9999;
  mix-blend-mode: multiply;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-display);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  display: inline-block;
  transform-origin: left;
  animation: eyebrow-draw .9s var(--ease-out) both;
}
@keyframes eyebrow-draw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.6rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform .25s var(--ease-spring), background .3s ease, color .3s ease, box-shadow .3s ease, border-color .3s ease;
  white-space: nowrap;
  cursor: pointer;
  will-change: transform;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.28) 50%, transparent 100%);
  transform: translateX(-120%);
  transition: transform .7s var(--ease-out);
  z-index: -1;
}
.btn:hover::before { transform: translateX(120%); }
.btn svg { width: 16px; height: 16px; transition: transform .3s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn--primary {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: #fff;
  box-shadow: 0 10px 28px -10px rgba(58,158,30,.55), 0 2px 6px rgba(58,158,30,.25);
}
.btn--primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(58,158,30,.7), 0 4px 10px rgba(58,158,30,.3); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost {
  background: rgba(255,255,255,.6);
  color: var(--ink);
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover { background: var(--ink); color: #fff; border-color: var(--ink); transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: #fff; box-shadow: 0 10px 25px -10px rgba(15,26,13,.5); }
.btn--dark:hover { background: var(--green); color: #fff; transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.78);
  backdrop-filter: saturate(1.6) blur(18px);
  -webkit-backdrop-filter: saturate(1.6) blur(18px);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease, padding .3s ease;
}
.site-header.is-scrolled {
  background: rgba(255,255,255,.92);
  border-bottom-color: var(--line);
  box-shadow: 0 4px 20px -10px rgba(15,26,13,.08);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: .2rem 0;
  transition: padding .3s ease;
}
.site-header.is-scrolled .site-header__inner { padding: .15rem 0; }

.brand {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-block: -.9rem;
}
.brand:hover { color: var(--ink); }
.brand img {
  width: 108px;
  height: 108px;
  object-fit: contain;
  display: block;
  transition: width .3s var(--ease-out), height .3s var(--ease-out);
}
.site-header.is-scrolled .brand img { width: 96px; height: 96px; }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav > a, .nav-has-sub > a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .95rem;
  color: var(--ink-soft);
  position: relative;
  padding: .4rem 0;
}
.nav > a::after, .nav-has-sub > a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: -2px;
  height: 2px;
  background: var(--green);
  transition: right .35s var(--ease-out);
  border-radius: 2px;
}
.nav > a:hover::after, .nav-has-sub:hover > a::after { right: 0; }
.nav > a:hover, .nav-has-sub > a:hover { color: var(--ink); }
.nav > a.active { color: var(--green); }
.nav > a.active::after { right: 0; }

.nav-has-sub { position: relative; }
.nav-has-sub::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -1rem;
  right: -1rem;
  height: 16px;
  pointer-events: none;
}
.nav-has-sub:hover::after,
.nav-has-sub:focus-within::after { pointer-events: auto; }
.nav-sub {
  position: absolute;
  top: calc(100% + 12px);
  left: -1rem;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: .5rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(.98);
  transform-origin: top left;
  transition: all .28s var(--ease-out);
  pointer-events: none;
}
.nav-sub a {
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .7rem .9rem;
  border-radius: 8px;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .92rem;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.nav-sub a::before {
  content: "→";
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .2s ease, transform .2s ease;
  color: var(--green);
}
.nav-sub a:hover { background: var(--green-soft); color: var(--green-dark); transform: translateX(2px); }
.nav-sub a:hover::before { opacity: 1; transform: translateX(0); }
.nav-has-sub:hover .nav-sub,
.nav-has-sub:focus-within .nav-sub {
  opacity: 1; visibility: visible; transform: translateY(0) scale(1);
  pointer-events: auto;
}

.header-actions { display: flex; align-items: center; gap: 1rem; }
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: .2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .08em;
  color: var(--muted);
  padding: .25rem;
  background: var(--bg-alt);
  border-radius: 999px;
  border: 1px solid var(--line);
}
.lang-switch a {
  padding: .35rem .7rem;
  border-radius: 999px;
  transition: background .25s var(--ease-out), color .25s ease;
}
.lang-switch a.active { background: var(--ink); color: #fff; }
.lang-switch a:not(.active):hover { color: var(--ink); }
.lang-switch span { opacity: .3; }

.menu-toggle {
  display: none;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}
.menu-toggle:hover { background: var(--bg-alt); }
.menu-toggle span {
  display: block;
  width: 18px; height: 2px;
  background: var(--ink);
  position: relative;
  border-radius: 2px;
  transition: background .2s ease;
}
.menu-toggle span::before, .menu-toggle span::after {
  content: ""; position: absolute; left: 0;
  width: 18px; height: 2px; background: var(--ink);
  border-radius: 2px;
  transition: transform .3s var(--ease-spring);
}
.menu-toggle span::before { top: -6px; }
.menu-toggle span::after  { top: 6px; }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 960px) {
  .nav, .header-actions .btn { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-nav.is-open { display: block; }
}

@media (max-width: 640px) {
  .site-header {
    background: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: 1px solid var(--line);
  }
  .site-header.is-scrolled {
    background: #fff;
    box-shadow: 0 4px 18px -10px rgba(15,26,13,.15);
  }
  .site-header__inner {
    padding: .35rem 0;
    gap: .6rem;
    align-items: center;
  }
  .site-header.is-scrolled .site-header__inner { padding: .3rem 0; }
  .brand { margin-block: -.5rem; }
  .brand img {
    width: 88px;
    height: 88px;
    transition: width .25s var(--ease-out), height .25s var(--ease-out);
  }
  .site-header.is-scrolled .brand img { width: 80px; height: 80px; }
  .header-actions { gap: .45rem; align-items: center; }
  .lang-switch {
    font-size: .72rem;
    padding: .2rem;
    height: 36px;
    box-sizing: border-box;
  }
  .lang-switch a { padding: .3rem .6rem; line-height: 1; }
  .menu-toggle {
    width: 40px;
    height: 36px;
    border-radius: 10px;
  }
  .scroll-progress {
    height: 2px;
    box-shadow: none;
    background: var(--green);
  }
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h, 72px) 0 0 0;
  background: #fff;
  z-index: 49;
  overflow-y: auto;
  padding: 1.75rem var(--gutter) 4rem;
  border-top: 1px solid var(--line);
  animation: mobileNavIn .35s var(--ease-out);
}
@keyframes mobileNavIn {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.mobile-nav a {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  padding: .9rem 0;
  border-bottom: 1px solid var(--line);
  animation: mobileNavItem .5s var(--ease-out) backwards;
}
@media (max-width: 640px) {
  .mobile-nav a { font-size: 1.05rem; padding: .8rem 0; }
  .mobile-nav .sub-group > span { padding: 1.1rem 0 .35rem; }
  .mobile-nav .mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 1rem 1.6rem;
    margin-top: 1.5rem;
    border-bottom: none;
  }
}
.mobile-nav a:nth-child(1) { animation-delay: .05s; }
.mobile-nav a:nth-child(2) { animation-delay: .08s; }
.mobile-nav a:nth-child(3) { animation-delay: .11s; }
.mobile-nav a:nth-child(4) { animation-delay: .14s; }
.mobile-nav a:nth-child(5) { animation-delay: .17s; }
.mobile-nav a:nth-child(6) { animation-delay: .20s; }
@keyframes mobileNavItem {
  from { opacity: 0; transform: translateX(-10px); }
  to { opacity: 1; transform: translateX(0); }
}
.mobile-nav .sub-group { margin: 1rem 0; padding: 0 0 .5rem; }
.mobile-nav .sub-group > span {
  display: block;
  font-family: var(--font-display);
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  padding: 1.5rem 0 .5rem;
}
.mobile-nav .sub-group a { font-size: 1rem; padding: .65rem 0; }
.mobile-nav .mobile-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem 1.6rem;
  margin-top: 2rem;
  border-bottom: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 85% 10%, rgba(58,158,30,.12), transparent 60%),
    radial-gradient(ellipse 60% 60% at 10% 90%, rgba(58,158,30,.07), transparent 60%),
    var(--bg);
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10%;
  background-image:
    radial-gradient(circle at center, var(--green-glow) 0%, transparent 8%),
    radial-gradient(circle at center, rgba(232,242,58,.15) 0%, transparent 6%);
  background-size: 420px 420px, 300px 300px;
  background-position: 12% 18%, 78% 60%;
  background-repeat: no-repeat;
  animation: heroBlobs 24s ease-in-out infinite alternate;
  pointer-events: none;
  filter: blur(40px);
}
@keyframes heroBlobs {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(3%, 2%) scale(1.05); }
  100% { transform: translate(-2%, -3%) scale(.96); }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  position: relative;
}
.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .9rem .4rem .5rem;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: hero-fade-up .8s var(--ease-out) .05s both;
  border: 1px solid rgba(58,158,30,.18);
}
.hero__tag .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 4px rgba(58,158,30,.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(58,158,30,.2); }
  50% { box-shadow: 0 0 0 9px rgba(58,158,30,.04); }
}
@keyframes hero-fade-up {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1.25rem;
  animation: hero-fade-up .9s var(--ease-out) .15s both;
}
.hero h1 .accent {
  color: var(--green);
  position: relative;
  white-space: nowrap;
  display: inline-block;
}
.hero h1 .accent::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .08em;
  height: .35em;
  background: var(--accent-yellow);
  z-index: -1;
  opacity: .45;
  border-radius: 3px;
  transform-origin: left;
  animation: accentDraw 1s var(--ease-out) .8s both;
}
@keyframes accentDraw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.hero__lead {
  font-size: clamp(1.05rem, 1.3vw, 1.22rem);
  margin-bottom: 2rem;
  max-width: 54ch;
  animation: hero-fade-up .9s var(--ease-out) .25s both;
}
.hero__actions {
  display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem;
  animation: hero-fade-up .9s var(--ease-out) .35s both;
}
.hero__trust {
  display: flex; flex-wrap: wrap; gap: 1.2rem 2rem; align-items: center;
  animation: hero-fade-up .9s var(--ease-out) .45s both;
}
.hero__trust-item {
  display: flex; align-items: center; gap: .55rem;
  font-family: var(--font-display);
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s ease, transform .2s ease;
}
.hero__trust-item:hover { color: var(--green-dark); transform: translateY(-2px); }
.hero__trust-item svg { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }

/* Hero visual */
.hero__visual {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 70% 30%, rgba(58,158,30,.28), transparent 55%),
    linear-gradient(135deg, #0b140a 0%, #1f3318 100%);
  overflow: hidden;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255,255,255,.08);
  animation: hero-fade-up 1s var(--ease-out) .3s both;
  transform-style: preserve-3d;
  perspective: 1000px;
}
.hero__visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx, 70%) var(--my, 30%), rgba(232,242,58,.15) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .5s ease;
  pointer-events: none;
}
.hero__visual:hover::before { opacity: 1; }
.hero__visual svg { position: absolute; inset: 0; width: 100%; height: 100%; animation: floaty 8s ease-in-out infinite; }
@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(.5deg); }
}
.hero__visual svg g[transform*="translate(250 200)"] { animation: spin 60s linear infinite; transform-origin: 250px 200px; }
@keyframes spin { to { transform: translate(250px, 200px) rotate(360deg); } }

.hero__stats {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem; right: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
  background: rgba(255,255,255,.10);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-md);
  padding: 1rem;
}
.hero__stat { text-align: center; }
.hero__stat strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: #fff;
  letter-spacing: -0.02em;
}
.hero__stat span {
  display: block;
  font-size: .72rem;
  color: #b6c1b1;
  margin-top: .15rem;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 520px; margin: 0 auto; }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  padding: 2.5rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg-alt) 0%, #fff 100%);
  overflow: hidden;
}
.trust-bar__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.trust-bar__label {
  font-family: var(--font-display);
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
.trust-bar__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem 1rem;
}
.trust-bar__item {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .7rem 1.1rem .7rem .75rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .92rem;
  color: var(--ink);
  transition: transform .3s var(--ease-spring), border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.trust-bar__item:hover {
  transform: translateY(-3px);
  border-color: var(--green-light);
  box-shadow: 0 8px 24px -12px rgba(58,158,30,.35);
  background: linear-gradient(180deg, #fff, #f4f9f0);
}
.trust-bar__item__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  flex-shrink: 0;
  transition: transform .5s var(--ease-spring);
}
.trust-bar__item__mark svg { width: 16px; height: 16px; }
.trust-bar__item:hover .trust-bar__item__mark { transform: rotate(-8deg) scale(1.08); }

@media (max-width: 640px) {
  .trust-bar { padding: 2rem 0; }
  .trust-bar__items {
    flex-direction: column;
    align-items: stretch;
    gap: .55rem;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
  }
  .trust-bar__item {
    width: 100%;
    justify-content: flex-start;
    padding: .65rem 1rem .65rem .65rem;
    font-size: .9rem;
  }
}

/* ---------- Section head ---------- */
.section-head {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}
.section-head--left { text-align: left; margin-left: 0; }
.section-head p { font-size: 1.1rem; color: var(--ink-soft); }

/* ---------- Service cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.service-card {
  position: relative;
  padding: 2.1rem 2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: transform .45s var(--ease-out), border-color .3s ease, box-shadow .4s ease, background .3s ease;
  display: flex;
  flex-direction: column;
  min-height: 280px;
  overflow: hidden;
  isolation: isolate;
}
.service-card::after {
  /* subtle green wash on hover */
  content: "";
  position: absolute;
  inset: -50% -50% auto auto;
  width: 180%; height: 180%;
  background: radial-gradient(circle, rgba(58,158,30,.10), transparent 55%);
  opacity: 0;
  transition: opacity .5s ease, transform .6s var(--ease-out);
  pointer-events: none;
  z-index: -1;
  transform: translate(30%, -30%);
}
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--green) 0%, rgba(58,158,30,.55) 55%, transparent 85%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity .4s ease;
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 0; }
.service-card:hover::after { opacity: 1; transform: translate(10%, -10%); }

.service-card__icon {
  width: 56px; height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-light), #d6ecc3);
  color: var(--green-dark);
  border-radius: 16px;
  margin-bottom: 1.25rem;
  transition: transform .45s var(--ease-spring), background .3s ease;
  position: relative;
}
.service-card__icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 20px;
  border: 1px dashed var(--green);
  opacity: 0;
  transition: opacity .4s ease, transform .6s var(--ease-out);
  transform: scale(.9);
}
.service-card:hover .service-card__icon { transform: rotate(-6deg) scale(1.05); background: linear-gradient(135deg, var(--green), var(--green-dark)); color: #fff; }
.service-card:hover .service-card__icon::after { opacity: 0; transform: scale(1); }
.service-card__icon svg { width: 28px; height: 28px; transition: transform .35s var(--ease-out); }
.service-card h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.service-card p { flex-grow: 1; font-size: .96rem; color: var(--ink-soft); }
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .92rem;
  color: var(--green-dark);
}
.service-card__link svg {
  width: 14px; height: 14px;
  transition: transform .3s var(--ease-out);
}
.service-card__link:hover { color: var(--green); }
.service-card__link:hover svg { transform: translateX(5px); }

/* Whole-card clickable via stretched link (pseudo-link spans the card) */
.service-card > .service-card__link::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}
.service-card > .service-card__link { position: static; }
.service-card h3, .service-card p, .service-card__icon { position: relative; z-index: 2; pointer-events: none; }
.service-card__link > * { position: relative; z-index: 2; }

/* ---------- Process ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  counter-reset: step;
  position: relative;
}
.process-step {
  counter-increment: step;
  position: relative;
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid transparent;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease, background .3s ease;
}
.process-step:hover {
  border-color: var(--line);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  background: #fff;
}
.section--alt .process-step { background: transparent; }
.section--alt .process-step:hover { background: #fff; }

.process-step__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 3.5rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 1rem;
  letter-spacing: -.04em;
  display: block;
  transition: transform .35s var(--ease-spring);
}
.process-step:hover .process-step__num { transform: scale(1.08); }
.process-step__num::before {
  content: counter(step, decimal-leading-zero);
}
.process-step h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.process-step p { font-size: .95rem; margin: 0; }
.process-step__art {
  width: 100%;
  max-width: 140px;
  height: auto;
  margin: 0 0 1rem;
  display: block;
  transition: transform .5s var(--ease-spring);
}
.process-step__art svg { width: 100%; height: auto; display: block; }
.process-step:hover .process-step__art { transform: translateY(-4px) scale(1.04) rotate(-1deg); }

/* ---------- Feature split ---------- */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.feature-split--reverse > :first-child { order: 2; }
@media (max-width: 900px) {
  .feature-split { grid-template-columns: 1fr; }
  .feature-split--reverse > :first-child { order: 0; }
}

.feature-card {
  background: linear-gradient(145deg, var(--bg-dark) 0%, #182815 100%);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: clamp(380px, 38vw, 520px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-lg);
}
.feature-card::before {
  content: "";
  position: absolute;
  inset: -30% -30% auto auto;
  width: 80%; aspect-ratio: 1;
  background: radial-gradient(circle, var(--green-glow), transparent 65%);
  animation: spin 30s linear infinite;
}
.feature-card::after {
  content: "";
  position: absolute;
  inset: 20% auto auto -20%;
  width: 70%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(232,242,58,.08), transparent 60%);
  animation: spin 45s linear infinite reverse;
}
.feature-card > * { position: relative; z-index: 1; }
.feature-card h3 { color: #fff; }
.feature-card .bignum {
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800;
  line-height: .9;
  letter-spacing: -.05em;
  background: linear-gradient(180deg, #fff 0%, var(--green) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.feature-card .bignum small {
  font-size: .4em;
  color: #b6c1b1;
  font-weight: 500;
  -webkit-text-fill-color: #b6c1b1;
}

.check-list { list-style: none; padding: 0; margin: 2rem 0 0; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: .8rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 1rem;
  transition: transform .25s var(--ease-out), color .25s ease;
}
.check-list li:last-child { border-bottom: 0; }
.check-list li:hover { transform: translateX(4px); }
.check-list li svg {
  flex-shrink: 0;
  width: 24px; height: 24px;
  padding: 3px;
  color: #fff;
  background: var(--green);
  border-radius: 50%;
  margin-top: 2px;
  box-shadow: 0 4px 12px -2px rgba(58,158,30,.35);
}

/* ---------- Stats band ---------- */
.stats-band {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-big strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -.04em;
  background: linear-gradient(180deg, #fff 0%, var(--green) 150%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section--dark .stat-big strong {
  background: linear-gradient(180deg, var(--green) 0%, var(--accent-lime) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-big span {
  display: block;
  margin-top: .5rem;
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
}
.section--dark .stat-big span { color: #c9d3c3; }

/* ---------- Industries strip ---------- */
.industries-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}
.industry-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  padding: 1.5rem 1rem;
  border-radius: var(--radius-lg);
  background: #fff;
  border: 1px solid var(--line);
  text-align: center;
  transition: transform .4s var(--ease-spring), border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.industry-pill:hover {
  transform: translateY(-6px);
  border-color: var(--green-light);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, #fff, #f4f9f0);
}
.industry-pill svg {
  width: 44px;
  height: 44px;
  color: var(--green);
  transition: transform .5s var(--ease-spring);
}
.industry-pill:hover svg { transform: scale(1.12) rotate(-4deg); }
.industry-pill span {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .95rem;
  color: var(--ink);
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s ease, border-color .25s ease;
}
.testimonial::before {
  content: "\201C";
  position: absolute;
  top: -.3em; right: .4em;
  font-family: var(--font-display);
  font-size: 9rem;
  font-weight: 800;
  color: var(--green-light);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.testimonial > * { position: relative; z-index: 1; }
.testimonial:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--green-light); }
.testimonial .stars { display: flex; gap: 2px; margin-bottom: 1rem; color: var(--green); }
.testimonial .stars svg { width: 18px; height: 18px; fill: currentColor; animation: starPop .5s var(--ease-spring) backwards; }
.testimonial .stars svg:nth-child(2) { animation-delay: .08s; }
.testimonial .stars svg:nth-child(3) { animation-delay: .16s; }
.testimonial .stars svg:nth-child(4) { animation-delay: .24s; }
.testimonial .stars svg:nth-child(5) { animation-delay: .32s; }
@keyframes starPop { from { opacity: 0; transform: scale(.4) rotate(-20deg); } to { opacity: 1; transform: scale(1) rotate(0); } }
.testimonial blockquote { margin: 0 0 1.5rem; font-size: 1.02rem; line-height: 1.6; color: var(--ink); }
.testimonial__author { display: flex; align-items: center; gap: .8rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.testimonial__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-light), #d6ecc3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--green-dark);
  font-size: .95rem;
}
.testimonial__info strong { display: block; font-family: var(--font-display); font-size: .95rem; }
.testimonial__info span { display: block; font-size: .82rem; color: var(--muted); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  transition: background .3s ease;
}
.faq-item[open] { background: linear-gradient(180deg, var(--green-soft) 0%, transparent 100%); }
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem .5rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  transition: color .2s ease, padding .25s ease;
}
.faq-item summary:hover { color: var(--green-dark); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 400;
  background-image: linear-gradient(var(--green), var(--green));
  -webkit-mask:
    linear-gradient(#000 0 0) center/10px 2px no-repeat,
    linear-gradient(#000 0 0) center/2px 10px no-repeat,
    linear-gradient(#000 0 0);
          mask:
    linear-gradient(#000 0 0) center/10px 2px no-repeat,
    linear-gradient(#000 0 0) center/2px 10px no-repeat,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  transition: transform .3s var(--ease-spring);
  flex-shrink: 0;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body {
  padding: 0 .5rem 1.5rem;
  color: var(--ink-soft);
  max-width: 70ch;
  animation: faqOpen .35s var(--ease-out);
}
.faq-item__body p { margin: 0; }
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- CTA ---------- */
.cta-big {
  background: linear-gradient(145deg, var(--bg-dark) 0%, #132412 100%);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(2.5rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.cta-big::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(58,158,30,.45), transparent 60%);
  pointer-events: none;
  animation: ctaGlowA 16s ease-in-out infinite alternate;
  will-change: transform, opacity;
}
@keyframes ctaGlowA {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1);     opacity: .85; }
  50%  { transform: translate(-14%, 8%) rotate(8deg) scale(1.12); opacity: 1; }
  100% { transform: translate(6%, -6%) rotate(-6deg) scale(.95);  opacity: .8; }
}
.cta-big::after {
  content: "";
  position: absolute;
  bottom: -40%; left: -10%;
  width: 50%; height: 150%;
  background: radial-gradient(ellipse, rgba(189,234,92,.22), transparent 65%);
  pointer-events: none;
  animation: ctaGlowB 22s ease-in-out infinite alternate;
  will-change: transform, opacity;
}
@keyframes ctaGlowB {
  0%   { transform: translate(0, 0) scale(1);     opacity: .75; }
  50%  { transform: translate(14%, -8%) scale(1.18); opacity: 1; }
  100% { transform: translate(-6%, 6%) scale(.92);  opacity: .8; }
}
.cta-big h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin-bottom: 1rem;
  position: relative;
}
.cta-big p {
  color: #b6c1b1;
  max-width: 52ch;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  position: relative;
}
.cta-big .btn { position: relative; }

/* ---------- Contact form ---------- */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
@media (max-width: 900px) { .contact-wrap { grid-template-columns: 1fr; } }

.contact-info h3 { font-size: 1.25rem; margin-top: 2rem; margin-bottom: .5rem; }
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { margin: 0 0 .25rem; color: var(--ink-soft); }
.contact-info a { color: var(--green-dark); font-weight: 500; transition: color .2s ease; }
.contact-info a:hover { color: var(--green); }

.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
  box-shadow: var(--shadow-md);
  position: relative;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { margin-bottom: 1rem; position: relative; }
.form-group label {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .85rem;
  margin-bottom: .4rem;
  color: var(--ink-soft);
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.form-group textarea { min-height: 140px; resize: vertical; font-family: var(--font-body); }
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: 0;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(58,158,30,.15);
}
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  margin: 1rem 0 1.25rem;
  font-size: .85rem;
  color: var(--muted);
}
.form-consent input { margin-top: 3px; accent-color: var(--green); width: 18px; height: 18px; flex-shrink: 0; cursor: pointer; }
.form-turnstile { margin: 0 0 1.25rem; min-height: 65px; }
.form-turnstile .cf-turnstile { display: flex; justify-content: flex-start; }
.form button[type="submit"] { width: 100%; }

/* Field-level error state */
.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: #d92d20;
  box-shadow: 0 0 0 3px rgba(217,45,32,.12);
}
.form-group .field-error,
.form-consent .field-error {
  display: none;
  margin-top: .35rem;
  color: #b42318;
  font-size: .82rem;
  font-weight: 500;
  line-height: 1.35;
}
.form-group.has-error .field-error,
.form-consent.has-error .field-error { display: block; }
.form-consent.has-error > span { color: #b42318; }
.form-consent.has-error input { outline: 2px solid #d92d20; outline-offset: 2px; }

/* Status / result box at top of form */
.form-status {
  display: none;
  align-items: flex-start;
  gap: .75rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  margin-bottom: 1.25rem;
  font-size: .92rem;
  line-height: 1.4;
}
.form-status.is-visible { display: flex; }
.form-status .form-status__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.form-status .form-status__icon svg { width: 14px; height: 14px; }
.form-status p { margin: 0; }
.form-status strong { display: block; font-family: var(--font-display); font-weight: 700; margin-bottom: .15rem; }
.form-status--success {
  background: #e7f5ea;
  border-color: #c9e6cf;
  color: #1f5a30;
}
.form-status--success .form-status__icon { background: #1f7a3a; color: #fff; }
.form-status--error {
  background: #fdecec;
  border-color: #f5c7c7;
  color: #842323;
}
.form-status--error .form-status__icon { background: #d92d20; color: #fff; }

/* Submit button loading state */
.btn.is-loading {
  pointer-events: none;
  opacity: .82;
  position: relative;
}
.btn.is-loading > * { visibility: hidden; }
.btn.is-loading::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 18px;
  margin: -9px 0 0 -9px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  visibility: visible;
  animation: btn-spin .65s linear infinite;
}
@keyframes btn-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) {
  .btn.is-loading::after { animation: none; }
}

/* ---------- Page hero (for subpages) ---------- */
.page-hero {
  padding: clamp(1.25rem, 2.5vw, 2.25rem) 0 clamp(2rem, 4vw, 3.5rem);
  background:
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(58,158,30,.12), transparent 60%),
    radial-gradient(ellipse 50% 40% at 10% 90%, rgba(232,242,58,.08), transparent 60%),
    var(--bg);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero__inner { max-width: 820px; position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 1rem; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  font-family: var(--font-display);
}
.breadcrumb a { transition: color .2s ease; }
.breadcrumb a:hover { color: var(--green); }
.breadcrumb span { color: var(--line); }

/* ---------- Prose (long-form content) ---------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 3rem; }
.prose h3 { margin-top: 2rem; }
.prose ul { padding-left: 1.25rem; }
.prose ul li { margin-bottom: .5rem; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1px; transition: color .2s ease; }
.prose a:hover { color: var(--green); }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, var(--bg-dark) 0%, #050a04 100%);
  color: #dde5d9;
  padding: clamp(4rem, 6vw, 5rem) 0 2rem;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: -10%; left: -10%;
  width: 40%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(58,158,30,.12), transparent 70%);
  pointer-events: none;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 500px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color: #fff; margin-bottom: 1rem; display: inline-block; }
.site-footer .brand img { width: auto; height: 88px; filter: none; display: block; }
.site-footer p { color: #9aa896; font-size: .92rem; }
.footer-col h4 {
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 1.25rem;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: .7rem; }
.footer-col a {
  color: #b6c1b1;
  font-size: .92rem;
  position: relative;
  transition: color .25s ease, padding-left .25s ease;
}
.footer-col a::before {
  content: "→";
  position: absolute;
  left: -14px;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity .25s ease, transform .25s ease;
  color: var(--green);
}
.footer-col a:hover { color: var(--green); padding-left: 14px; }
.footer-col a:hover::before { opacity: 1; transform: translateX(0); }
.footer-contact a { color: #dde5d9; display: block; margin-bottom: .3rem; }
.footer-contact a::before { display: none; }
.footer-contact a:hover { padding-left: 0; }
.footer-social { display: flex; gap: .75rem; margin-top: 1.25rem; }
.footer-social a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 50%;
  color: #b6c1b1;
  transition: all .3s var(--ease-out);
}
.footer-social a::before { display: none; }
.footer-social a:hover { background: var(--green); border-color: var(--green); color: #fff; transform: translateY(-3px) scale(1.05); padding-left: 0; }
.footer-social svg { width: 16px; height: 16px; }
.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: .85rem;
  color: #9aa896;
  position: relative;
}
.footer-bottom-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal[data-reveal="left"]  { transform: translateX(-28px); }
.reveal[data-reveal="right"] { transform: translateX(28px); }
.reveal[data-reveal="zoom"]  { transform: scale(.92); }
.reveal[data-reveal="left"].is-visible,
.reveal[data-reveal="right"].is-visible,
.reveal[data-reveal="zoom"].is-visible { transform: none; }

/* Staggered children */
.stagger > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.stagger.is-visible > * { opacity: 1; transform: translateY(0); }
.stagger.is-visible > :nth-child(1) { transition-delay: .05s; }
.stagger.is-visible > :nth-child(2) { transition-delay: .12s; }
.stagger.is-visible > :nth-child(3) { transition-delay: .19s; }
.stagger.is-visible > :nth-child(4) { transition-delay: .26s; }
.stagger.is-visible > :nth-child(5) { transition-delay: .33s; }
.stagger.is-visible > :nth-child(6) { transition-delay: .40s; }
.stagger.is-visible > :nth-child(7) { transition-delay: .47s; }
.stagger.is-visible > :nth-child(8) { transition-delay: .54s; }

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.hide-on-mobile { display: initial; }
@media (max-width: 600px) { .hide-on-mobile { display: none; } }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 1rem; left: 1rem; right: 1rem;
  max-width: 480px;
  margin-left: auto;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  z-index: 60;
  font-size: .9rem;
  transform: translateY(calc(100% + 2rem));
  transition: transform .45s var(--ease-out-soft);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p { margin: 0 0 1rem; font-size: .88rem; }
.cookie-banner .actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.cookie-banner .btn { padding: .6rem 1rem; font-size: .85rem; }

/* ---------- Page transition overlay ---------- */
.page-transition {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  z-index: 9998;
  transform: translateY(-100%);
  pointer-events: none;
  transition: transform .6s var(--ease-out-soft);
}
.page-transition.is-exit { transform: translateY(0); }
.page-transition.is-enter { transform: translateY(100%); transition-duration: .7s; }

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: var(--sp, 0%);
  background: linear-gradient(90deg, var(--green), var(--accent-lime));
  z-index: 100;
  transition: width .1s linear;
  box-shadow: 0 0 10px var(--green-glow);
}

/* ---------- Back to top ---------- */
.to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  display: inline-flex;
  align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .3s ease, transform .3s ease, background .2s ease;
  z-index: 40;
}
.to-top.is-visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
.to-top:hover { background: var(--green); }
.to-top svg { width: 18px; height: 18px; }
@media (max-width: 600px) { .to-top { right: 1rem; bottom: 5rem; } }

/* ---------- View Transitions API (smooth cross-page fade) ---------- */
@view-transition {
  navigation: auto;
}
::view-transition-old(root),
::view-transition-new(root) {
  animation-duration: .5s;
  animation-timing-function: var(--ease-out-soft);
}
::view-transition-old(root) {
  animation-name: vt-fade-out;
}
::view-transition-new(root) {
  animation-name: vt-fade-in;
}
@keyframes vt-fade-out {
  to { opacity: 0; transform: translateY(-12px); }
}
@keyframes vt-fade-in {
  from { opacity: 0; transform: translateY(12px); }
}

/* ---------- Extra animations v3 ---------- */

/* (Ambient CTA shimmer removed — hover-only shine on .btn::before kept.) */

/* Hero headline: cascade fade/rise per word (wrapped by JS) */
.hero h1 .w, .hero__eyebrow .w {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px) rotate(1.2deg);
  filter: blur(6px);
  animation: word-rise .9s var(--ease-spring) forwards;
  animation-delay: calc(var(--i, 0) * 70ms + 120ms);
}
@keyframes word-rise {
  to { opacity: 1; transform: translateY(0) rotate(0); filter: blur(0); }
}

/* Floating gradient blobs behind hero */
.hero { position: relative; overflow: hidden; }
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
  opacity: .55;
}
.hero::before {
  width: 520px; height: 520px;
  background: radial-gradient(circle at 30% 30%, rgba(58,158,30,.35), transparent 70%);
  top: -140px; left: -160px;
  animation: blob-drift 18s ease-in-out infinite alternate;
}
.hero::after {
  width: 420px; height: 420px;
  background: radial-gradient(circle at 70% 60%, rgba(232,242,58,.28), transparent 70%);
  bottom: -160px; right: -120px;
  animation: blob-drift 22s ease-in-out -6s infinite alternate-reverse;
}
.hero > * { position: relative; z-index: 1; }
@keyframes blob-drift {
  0%   { transform: translate(0,0) scale(1); }
  50%  { transform: translate(40px,-30px) scale(1.08); }
  100% { transform: translate(-20px,30px) scale(.96); }
}

/* Magnetic-pull hint + hover glow for primary CTA */
.btn--primary { transition: transform .28s var(--ease-spring), background .3s ease, color .3s ease, box-shadow .3s ease, border-color .3s ease; }
.btn--primary.is-magnetic { transition: transform .12s ease-out, box-shadow .3s ease; }

/* Gentle float on decorative hero SVG chips/badges */
@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.hero__visual svg > g:nth-of-type(4) { animation: float-soft 5.5s ease-in-out infinite; transform-origin: center; }
.hero__visual svg > g:nth-of-type(5) { animation: float-soft 6.8s ease-in-out -2s infinite; transform-origin: center; }

/* Section fade-in from below with blur (stronger reveal) */
.reveal-soft {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-spring), filter .9s var(--ease-out);
}
.reveal-soft.is-visible { opacity: 1; transform: translateY(0); filter: blur(0); }

/* Service-card icon: subtle breathing + pop on reveal */
@keyframes icon-breath {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-3px) scale(1.04); }
}
.service-card .service-card__icon { animation: icon-breath 5.5s ease-in-out infinite; }
.service-card:hover .service-card__icon { animation-play-state: paused; }

/* Industry pills — pop in on reveal with a tiny rotate */
.industries-strip.is-visible .industry-pill,
.industries-strip .industry-pill {
  animation: pill-pop .7s var(--ease-spring) backwards;
}
.industries-strip .industry-pill:nth-child(1) { animation-delay: .05s; }
.industries-strip .industry-pill:nth-child(2) { animation-delay: .12s; }
.industries-strip .industry-pill:nth-child(3) { animation-delay: .19s; }
.industries-strip .industry-pill:nth-child(4) { animation-delay: .26s; }
.industries-strip .industry-pill:nth-child(5) { animation-delay: .33s; }
.industries-strip .industry-pill:nth-child(6) { animation-delay: .40s; }
@keyframes pill-pop {
  from { opacity: 0; transform: translateY(14px) scale(.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* (Process-grid connector line removed — steps stand on their own.) */

/* ---------- Premium interactions v4 ---------- */

/* Hero cursor-following spotlight (whole hero, not just visual) */
.hero > .hero__spotlight {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    520px circle at var(--hx, 50%) var(--hy, 30%),
    rgba(232, 242, 58, .18),
    rgba(58, 158, 30, .08) 25%,
    transparent 55%
  );
  opacity: 0;
  transition: opacity .45s var(--ease-out);
  mix-blend-mode: screen;
}
.hero:hover > .hero__spotlight { opacity: 1; }

/* Service-card shine sweep on hover (injected span) */
.service-card .shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: inherit;
  z-index: 0;
}
.service-card .shine::before {
  content: "";
  position: absolute;
  top: -30%;
  left: -40%;
  width: 40%;
  height: 160%;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255, 255, 255, .45) 50%,
    transparent 100%
  );
  transform: translateX(-60%) skewX(-18deg);
  transition: transform .9s var(--ease-out);
}
.service-card:hover .shine::before { transform: translateX(380%) skewX(-18deg); }

/* Feature card: circular progress ring around 98% */
.feature-card__bignum-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.25rem, 3vw, 2.5rem);
}
.feature-card__bignum-wrap .bignum { position: relative; z-index: 1; }
.feature-card__ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(170px, 24vw, 280px);
  height: clamp(170px, 24vw, 280px);
  transform: translate(-50%, -50%) rotate(-90deg);
  pointer-events: none;
  overflow: visible;
  z-index: 0;
}
.feature-card__ring circle {
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  transform-origin: center;
}
.feature-card__ring .ring-track {
  stroke: rgba(255, 255, 255, .08);
}
.feature-card__ring .ring-fill {
  stroke: url(#ringGrad);
  stroke-dasharray: var(--ring-len, 628);
  stroke-dashoffset: var(--ring-len, 628);
  transition: stroke-dashoffset 2s var(--ease-out);
  filter: drop-shadow(0 0 8px rgba(134, 214, 61, .5));
}
.feature-card.is-visible .feature-card__ring .ring-fill {
  stroke-dashoffset: calc(var(--ring-len, 628) * .02); /* 98% filled */
}

/* Counter-finish flash glow for stat strongs */
.stat-big strong,
.hero__stat strong { position: relative; }
.stat-big strong.is-flashed::after,
.hero__stat strong.is-flashed::after {
  content: "";
  position: absolute;
  inset: -18%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(58, 158, 30, .35), transparent 65%);
  pointer-events: none;
  animation: counter-flash .8s var(--ease-out) forwards;
  mix-blend-mode: screen;
}
@keyframes counter-flash {
  0%   { opacity: 0; transform: scale(.4); }
  35%  { opacity: 1; transform: scale(1); }
  100% { opacity: 0; transform: scale(1.4); }
}

/* Button ripple */
.btn .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  transform: scale(0);
  animation: ripple-out .7s var(--ease-out) forwards;
  pointer-events: none;
  mix-blend-mode: overlay;
  z-index: 0;
}
.btn--ghost .ripple { background: rgba(58, 158, 30, .28); mix-blend-mode: normal; }
.btn--dark .ripple { background: rgba(134, 214, 61, .45); mix-blend-mode: normal; }
@keyframes ripple-out {
  to { transform: scale(3.2); opacity: 0; }
}

/* Check-list animated checkmark on reveal */
.check-list li svg {
  stroke-dasharray: 30;
  stroke-dashoffset: 30;
  transition: stroke-dashoffset .8s var(--ease-out);
}
.check-list.is-visible li svg,
.reveal.is-visible .check-list li svg { stroke-dashoffset: 0; }
.check-list li:nth-child(1) svg { transition-delay: .1s; }
.check-list li:nth-child(2) svg { transition-delay: .25s; }
.check-list li:nth-child(3) svg { transition-delay: .40s; }
.check-list li:nth-child(4) svg { transition-delay: .55s; }
.check-list li:nth-child(5) svg { transition-delay: .70s; }

/* Hero visual scroll-linked parallax (very subtle) */
.hero__visual { will-change: transform; }

/* Testimonial: quote mark subtle animation on hover */
.testimonial::before {
  transition: transform .6s var(--ease-spring), color .3s ease;
}
.testimonial:hover::before {
  transform: translate(-6px, 4px) rotate(-6deg);
  color: #c9e6a9;
}

/* FAQ hover: content preview peek */
.faq-item summary {
  position: relative;
}
.faq-item summary::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--green), var(--accent-lime));
  border-radius: 2px;
  transform: translateY(-50%);
  transition: height .35s var(--ease-out);
}
.faq-item[open] summary::before,
.faq-item summary:hover::before { height: 60%; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .reveal-soft, .stagger > * { opacity: 1; transform: none; transition: none; filter: none; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  body::before { display: none; }
  .page-transition, .scroll-progress { display: none !important; }
  .hero::before, .hero::after, .hero__spotlight { display: none; }
  .check-list li svg { stroke-dashoffset: 0; }
  .feature-card__ring .ring-fill { stroke-dashoffset: calc(var(--ring-len, 628) * .02); }
}

/* =========================================================
   v3 — Value Calculator, Comparison, Sticky Quote Tab
   ========================================================= */

/* ---------- Calculator ---------- */
.calc {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(1.25rem, 2.5vw, 2rem);
  align-items: stretch;
  margin-top: 2.5rem;
}
.calc__form {
  background: linear-gradient(180deg, #fff, var(--bg-alt));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.25rem, 2.4vw, 2rem);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  overflow: hidden;
}
.calc__form::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(58,158,30,.0), rgba(58,158,30,.25), rgba(232,242,58,.2));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
  opacity: .7;
}
.calc__row { display: flex; flex-direction: column; gap: .55rem; }
.calc__label {
  display: grid;
  grid-template-columns: 40px 1fr auto;
  align-items: center;
  gap: .85rem;
  font-size: .96rem;
  color: var(--ink);
  cursor: pointer;
}
.calc__label strong { display: block; font-weight: 600; }
.calc__label em { font-style: normal; font-size: .82rem; color: var(--muted); }
.calc__icon {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--green);
  background: var(--green-light);
  border-radius: 10px;
  transition: transform .3s var(--ease-spring), background .3s;
}
.calc__label:hover .calc__icon { transform: rotate(-6deg) scale(1.05); background: #dff0d1; }
.calc__count {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .25rem .7rem;
  font-variant-numeric: tabular-nums;
  min-width: 52px;
  text-align: center;
}
.calc__row input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green) var(--fill, 0%), #e6ede0 var(--fill, 0%));
  outline: none;
  cursor: pointer;
  transition: background .25s;
}
.calc__row input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--green);
  box-shadow: 0 4px 14px rgba(58,158,30,.35);
  transition: transform .2s var(--ease-spring), box-shadow .2s;
}
.calc__row input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--green);
  box-shadow: 0 4px 14px rgba(58,158,30,.35);
}
.calc__row input[type="range"]:active::-webkit-slider-thumb,
.calc__row input[type="range"]:hover::-webkit-slider-thumb {
  transform: scale(1.15);
  box-shadow: 0 6px 22px rgba(58,158,30,.55);
}

.calc__result {
  position: relative;
  background: linear-gradient(160deg, #0b140a 0%, #15281a 60%, #2d7d16 140%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.6vw, 2rem);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow-lg);
}
.calc__result::before,
.calc__result::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.calc__result::before {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(232,242,58,.18), transparent 60%);
  top: -120px; right: -100px;
  animation: calcFloat 8s ease-in-out infinite alternate;
}
.calc__result::after {
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(58,158,30,.35), transparent 60%);
  bottom: -100px; left: -80px;
  animation: calcFloat 10s ease-in-out infinite alternate-reverse;
}
@keyframes calcFloat {
  from { transform: translate(0,0); }
  to { transform: translate(10px,-16px); }
}
.calc__amount {
  display: flex;
  align-items: baseline;
  gap: .4rem;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
  position: relative;
  z-index: 1;
}
.calc__currency { font-size: clamp(1.75rem, 3vw, 2.4rem); color: var(--accent-yellow); }
.calc__value {
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  color: #fff;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(100deg, #fff 10%, var(--accent-lime) 55%, var(--accent-yellow) 95%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: transform .4s var(--ease-spring);
}
.calc__value.is-bump { animation: valueBump .5s var(--ease-spring); }
@keyframes valueBump {
  0% { transform: scale(1); }
  45% { transform: scale(1.07); }
  100% { transform: scale(1); }
}
.calc__hint { color: #cdd8c5; font-size: .86rem; margin: 0; position: relative; z-index: 1; }
.calc__breakdown {
  list-style: none;
  margin: 0; padding: .5rem 0;
  border-top: 1px dashed rgba(255,255,255,.15);
  border-bottom: 1px dashed rgba(255,255,255,.15);
  display: flex; flex-direction: column; gap: .4rem;
  position: relative; z-index: 1;
  min-height: 60px;
}
.calc__breakdown li {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .92rem;
  color: #e6ede0;
  font-variant-numeric: tabular-nums;
  animation: lineIn .35s var(--ease-out);
}
@keyframes lineIn {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}
.calc__breakdown li.calc__empty { color: #9aa896; font-size: .88rem; justify-content: flex-start; }
.calc__breakdown li strong { color: var(--accent-lime); font-weight: 700; }
.calc__cta {
  display: flex; flex-wrap: wrap; gap: .85rem; align-items: center;
  position: relative; z-index: 1;
  margin-top: auto;
}
.calc__phone {
  display: inline-flex; align-items: center; gap: .5rem;
  color: #fff; font-weight: 600;
  padding: .6rem .9rem;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  font-size: .92rem;
  transition: background .25s, transform .25s;
}
.calc__phone:hover { background: rgba(255,255,255,.16); transform: translateY(-2px); color: #fff; }
.calc__phone svg { width: 16px; height: 16px; }

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

/* ---------- Comparison ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
  align-items: stretch;
}
.compare__col {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  transition: transform .4s var(--ease-out), box-shadow .4s, border-color .4s;
  position: relative;
}
.compare__col header { margin-bottom: 1rem; }
.compare__col h3 { margin-bottom: 0; }
.compare__badge {
  display: inline-block;
  font-size: .78rem;
  font-weight: 600;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: #eceee8;
  color: var(--muted);
  margin-bottom: .6rem;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.compare__badge--highlight {
  background: linear-gradient(100deg, var(--green), var(--green-dark));
  color: #fff;
  box-shadow: 0 6px 14px rgba(58,158,30,.25);
}
.compare__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .7rem; }
.compare__col li {
  display: flex; align-items: flex-start; gap: .7rem;
  color: var(--ink-soft); font-size: .95rem; line-height: 1.45;
  padding: .55rem .6rem;
  border-radius: 10px;
  transition: background .25s, transform .25s;
}
.compare__col--us li:hover { background: var(--green-soft); transform: translateX(3px); }
.compare__col--them li:hover { background: #faeceb; }
.compare__mark {
  flex-shrink: 0;
  width: 22px; height: 22px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.compare__mark--check { background: var(--green); color: #fff; }
.compare__mark--x { background: #f4d7d4; color: #b33a30; }
.compare__mark svg { width: 14px; height: 14px; }

.compare__col--them { background: #fbfbfa; }
.compare__col--them h3 { color: var(--muted); }
.compare__col--us {
  background: linear-gradient(180deg, #fff, var(--green-soft));
  border-color: rgba(58,158,30,.25);
  box-shadow: 0 10px 30px -15px rgba(58,158,30,.35);
}
.compare__col--us::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, var(--green), var(--accent-yellow), var(--green));
  background-size: 300% 300%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
  animation: compareGlow 6s linear infinite;
}
@keyframes compareGlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}
.compare__col--us:hover { transform: translateY(-4px); box-shadow: 0 22px 45px -20px rgba(58,158,30,.4); }

.compare__vs {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--muted);
  position: relative;
}
.compare__vs span {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .9rem;
  letter-spacing: .04em;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

@media (max-width: 780px) {
  .compare { grid-template-columns: 1fr; }
  .compare__vs { height: 32px; }
  .compare__vs span { transform: rotate(90deg); }
}

/* ---------- Sticky Quote Tab ---------- */
.quote-tab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  padding: .85rem .9rem .85rem 1rem;
  border-radius: 14px 0 0 14px;
  display: flex;
  align-items: center;
  gap: .55rem;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .01em;
  box-shadow: 0 18px 40px -10px rgba(15,26,13,.25), 0 6px 18px -8px rgba(58,158,30,.35);
  z-index: 900;
  transition: transform .5s var(--ease-spring), box-shadow .3s;
  text-transform: uppercase;
  writing-mode: horizontal-tb;
}
.quote-tab.is-visible { transform: translate(0, -50%); }
.quote-tab:hover { color: #fff; transform: translate(-4px, -50%); box-shadow: 0 22px 48px -10px rgba(15,26,13,.35), 0 10px 22px -6px rgba(58,158,30,.5); }
.quote-tab__icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.quote-tab__icon svg { width: 16px; height: 16px; }
.quote-tab__label { white-space: nowrap; }
.quote-tab__pulse {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: inherit;
  opacity: .7;
  animation: pulseOut 2.4s ease-out infinite;
  pointer-events: none;
  z-index: -1;
}
@keyframes pulseOut {
  0% { transform: scale(1); opacity: .55; }
  100% { transform: scale(1.18); opacity: 0; }
}
@media (max-width: 780px) {
  .quote-tab {
    top: auto;
    bottom: 1.25rem;
    right: 1.25rem;
    transform: translateY(160%);
    padding: .8rem 1.1rem;
    border-radius: 999px;
  }
  .quote-tab.is-visible { transform: translateY(0); }
  .quote-tab:hover { transform: translateY(-3px); }
  .quote-tab__label br { display: none; }
}

/* Service-card float on hover: softer lift for the icon */
.service-card:hover .service-card__icon {
  transform: rotate(-4deg) scale(1.08);
  transition: transform .35s var(--ease-spring);
}

/* Subtle ambient gradient breathing on hero accent text */
.hero h1 .accent {
  background: linear-gradient(100deg, var(--green) 0%, #6ec232 40%, var(--accent-yellow) 80%, var(--green) 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: accentShift 7s ease-in-out infinite;
}
@keyframes accentShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

@media (prefers-reduced-motion: reduce) {
  .quote-tab__pulse, .calc__result::before, .calc__result::after,
  .compare__col--us::before, .hero h1 .accent { animation: none !important; }
}

/* =====================================================================
   v3 polish — propagates to every sub-page via shared classes
   ===================================================================== */

/* Richer page-hero: aurora mesh + tactile grain + slow ambient drift */
.page-hero {
  background:
    radial-gradient(ellipse 55% 45% at 85% 15%, rgba(58,158,30,.16), transparent 62%),
    radial-gradient(ellipse 50% 40% at 12% 92%, rgba(232,242,58,.10), transparent 62%),
    radial-gradient(ellipse 40% 35% at 55% 55%, rgba(189,234,92,.08), transparent 70%),
    var(--bg);
  isolation: isolate;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.06 0 0 0 0 0.1 0 0 0 0 0.05 0 0 0 0.4 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)' opacity='0.22'/></svg>");
  opacity: .35;
  mix-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
}
.page-hero::after {
  content: "";
  position: absolute;
  top: -20%; right: -15%;
  width: 60%; height: 120%;
  background: conic-gradient(from 180deg at 60% 40%, rgba(58,158,30,.08), transparent 30%, rgba(232,242,58,.06) 55%, transparent 85%);
  filter: blur(40px);
  pointer-events: none;
  z-index: 0;
  animation: auroraDrift 18s ease-in-out infinite alternate;
}
@keyframes auroraDrift {
  from { transform: translate(0, 0) rotate(0deg); }
  to { transform: translate(-4%, 3%) rotate(8deg); }
}
.page-hero__inner { position: relative; z-index: 2; }
.page-hero h1 {
  font-size: clamp(2.25rem, 4.6vw, 3.6rem);
  letter-spacing: -.02em;
  line-height: 1.08;
}
.page-hero .lead {
  font-size: clamp(1.05rem, 1.3vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 62ch;
  line-height: 1.6;
}

/* Breadcrumb refinement — dot separators + subtle hover */
.breadcrumb {
  align-items: center;
  font-size: .82rem;
  letter-spacing: .01em;
  text-transform: uppercase;
  font-weight: 500;
}
.breadcrumb span {
  display: inline-flex;
  align-items: center;
}
.breadcrumb > span:not(:last-child) {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: .3;
  margin: 0 .2rem;
  color: var(--muted);
}

/* Trust row — sits under the hero lead for quick credibility signals */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem .9rem;
  margin-top: 1.75rem;
  position: relative;
  z-index: 2;
}
.trust-row__item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .85rem;
  background: rgba(255,255,255,.65);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .8rem;
  letter-spacing: .02em;
  color: var(--ink);
  box-shadow: 0 2px 8px -4px rgba(15,26,13,.12);
  transition: transform .25s var(--ease-out), box-shadow .25s var(--ease-out);
}
.trust-row__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -10px rgba(15,26,13,.2);
}
.trust-row__item svg {
  width: 14px; height: 14px;
  color: var(--green);
  flex-shrink: 0;
}
.trust-row__item--dot::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px rgba(58,158,30,.15);
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(58,158,30,.15); }
  50% { box-shadow: 0 0 0 6px rgba(58,158,30,.05); }
}

/* Service-card lift — keep on brand, slightly sharper */
.service-card {
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease-out), border-color .3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 52px -16px rgba(15,26,13,.18), 0 6px 16px -6px rgba(58,158,30,.12);
  border-color: rgba(58,158,30,.25);
}

/* Process step — connecting line + elegant number */
.process-grid { position: relative; }
@media (min-width: 900px) {
  .process-grid::before {
    content: "";
    position: absolute;
    top: 28px;
    left: 5%; right: 5%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--line) 8%, var(--line) 92%, transparent);
    pointer-events: none;
    z-index: 0;
  }
}
.process-step { position: relative; z-index: 1; }
.process-step__num {
  background: #fff;
  border: 2px solid var(--green);
  color: var(--green);
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: 0 8px 22px -10px rgba(58,158,30,.45);
}
.process-step:hover .process-step__num {
  background: var(--green);
  color: #fff;
}

/* CTA refinement — shimmer line + better h2 rhythm */
.cta-big {
  box-shadow: 0 30px 60px -20px rgba(15,26,13,.35), 0 8px 20px -8px rgba(58,158,30,.25);
}
.cta-big h2 {
  letter-spacing: -.02em;
  line-height: 1.1;
}
.cta-big::before { animation-duration: 14s; }
.cta-big::after  { animation-duration: 20s; }

/* Feature-card (dark) — softer rim light + clearer bignum */
.feature-card {
  background: linear-gradient(155deg, #0f1f0d 0%, #1a2e17 100%);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.04);
}
.feature-card .bignum {
  font-size: clamp(4.5rem, 10vw, 7rem);
  letter-spacing: -.04em;
  background: linear-gradient(140deg, #fff 0%, #bdea5c 60%, #e8f23a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Spec grid — reusable for pricing / standards / tech specs */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.spec-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-md, 14px);
  padding: 1.25rem 1.35rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s ease;
}
.spec-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--green), var(--green-dark));
  transform: scaleY(.4);
  transform-origin: top;
  transition: transform .35s var(--ease-out);
}
.spec-card:hover {
  transform: translateY(-3px);
  border-color: rgba(58,158,30,.3);
  box-shadow: 0 18px 38px -14px rgba(15,26,13,.18);
}
.spec-card:hover::before { transform: scaleY(1); }
.spec-card__eyebrow {
  font-family: var(--font-display);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--green-dark);
  margin-bottom: .5rem;
  display: block;
}
.spec-card__value {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.2;
  margin-bottom: .35rem;
}
.spec-card__meta {
  font-size: .88rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* Reusable tier-ladder (DIN 66399 etc.) — works on dark sections */
.tier-ladder {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.tier-ladder .tier {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 12px;
  transition: background .3s ease, border-color .3s ease, transform .3s var(--ease-out);
}
.tier-ladder .tier:hover {
  background: rgba(189,234,92,.06);
  border-color: rgba(189,234,92,.25);
  transform: translateX(4px);
}
.tier-ladder .tier__code {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--lime, #bdea5c);
  letter-spacing: .02em;
}
.tier-ladder .tier__label {
  color: #dde5d9;
  font-size: .95rem;
}
.tier-ladder .tier__spec {
  color: #9aa896;
  font-family: var(--font-display);
  font-size: .82rem;
  letter-spacing: .02em;
  font-variant-numeric: tabular-nums;
}

/* Footer polish — tighter rhythm, warmer link hover */
.site-footer a { transition: color .2s ease; }
.site-footer a:hover { color: var(--lime, #bdea5c); }
.footer-col h4 {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #c4d4be;
  margin-bottom: 1rem;
}

/* Scroll-reveal — guarantee it never regresses on sub-pages */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  will-change: transform, opacity;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Accessibility safeguards */
@media (prefers-reduced-motion: reduce) {
  .page-hero::after,
  .trust-row__item--dot::before,
  .cta-big::before,
  .cta-big::after { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* Focus visibility — consistent ring across pages */
a:focus-visible,
button:focus-visible,
.btn:focus-visible,
.trust-row__item:focus-visible,
.spec-card:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 6px;
}

/* =====================================================================
   3D hero visual — reusable across sub-pages
   ===================================================================== */

.page-hero--split .page-hero__inner {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
@media (max-width: 900px) {
  .page-hero--split .page-hero__inner {
    grid-template-columns: 1fr;
  }
}

.page-hero__visual {
  position: relative;
  width: 100%;
  min-height: 380px;
  perspective: 1400px;
  transform-style: preserve-3d;
  z-index: 2;
}
@media (max-width: 900px) {
  .page-hero__visual { min-height: 300px; margin-top: 1rem; }
}

.hero-float {
  position: absolute;
  transform-style: preserve-3d;
  transition: transform .4s cubic-bezier(.16,1,.3,1);
  will-change: transform;
}

/* Back glass card — big stat or seal */
.hero-float--back {
  top: 8%;
  right: 4%;
  width: 72%;
  aspect-ratio: 1.15 / 1;
  background:
    linear-gradient(145deg, rgba(255,255,255,.88), rgba(255,255,255,.55));
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border: 1px solid rgba(255,255,255,.9);
  border-radius: 22px;
  box-shadow:
    0 40px 80px -30px rgba(15,26,13,.28),
    0 20px 40px -20px rgba(58,158,30,.18),
    inset 0 1px 0 rgba(255,255,255,.9);
  padding: 1.6rem 1.4rem;
  transform:
    rotateY(-8deg) rotateX(4deg)
    translate3d(var(--lx,0px), var(--ly,0px), -40px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-float--back::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 40% at 80% 20%, rgba(189,234,92,.35), transparent 60%);
  pointer-events: none;
}
.hero-float--back > * { position: relative; z-index: 1; }

.hero-float__mark {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 22px -6px rgba(58,158,30,.5);
}
.hero-float__mark svg { width: 28px; height: 28px; }

.hero-float__big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-top: .5rem;
}
.hero-float__big small {
  font-size: .35em;
  font-weight: 600;
  vertical-align: super;
  color: var(--green-dark);
  margin-left: .1em;
}
.hero-float__tag {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .85rem;
  color: var(--ink-soft);
  letter-spacing: .01em;
  margin-top: .4rem;
  line-height: 1.4;
}

/* Middle seal — circular cert mark with arc text */
.hero-float--seal {
  top: 45%;
  left: 2%;
  width: 160px;
  height: 160px;
  background: linear-gradient(145deg, #0f1f0d, #1a2e17);
  border-radius: 50%;
  border: 1px solid rgba(189,234,92,.22);
  box-shadow:
    0 30px 60px -20px rgba(0,0,0,.4),
    0 0 0 6px rgba(255,255,255,.85),
    0 0 0 7px rgba(189,234,92,.18),
    inset 0 1px 0 rgba(255,255,255,.06);
  transform:
    rotateZ(-6deg)
    translate3d(calc(var(--lx,0px) * 1.8), calc(var(--ly,0px) * 1.8), 30px);
  z-index: 2;
}
.hero-float--seal svg {
  width: 100%; height: 100%;
}
.hero-float--seal .seal__core {
  fill: none;
  stroke: rgba(189,234,92,.35);
  stroke-width: 1;
  stroke-dasharray: 2 4;
}
.hero-float--seal .seal__check {
  fill: none;
  stroke: var(--lime, #bdea5c);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-float--seal .seal__text {
  fill: #bdea5c;
  font-family: var(--font-display);
  font-size: 9px;
  letter-spacing: 2px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Top pill — tiny live chip */
.hero-float--pill {
  top: 4%;
  left: 8%;
  background: rgba(15,26,13,.92);
  color: #fff;
  padding: .55rem 1rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,.3);
  transform:
    translate3d(calc(var(--lx,0px) * 2.4), calc(var(--ly,0px) * 2.4), 60px);
  z-index: 3;
}
.hero-float--pill .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--lime, #bdea5c);
  box-shadow: 0 0 0 3px rgba(189,234,92,.25);
  animation: dotPulse 2.4s ease-in-out infinite;
}

/* Bottom chip — numeric fact */
.hero-float--chip {
  bottom: 6%;
  right: 10%;
  background: linear-gradient(140deg, var(--ink) 0%, #1f2d1b 100%);
  color: #fff;
  padding: .9rem 1.1rem;
  border-radius: 14px;
  min-width: 150px;
  box-shadow: 0 22px 40px -12px rgba(15,26,13,.45);
  border: 1px solid rgba(255,255,255,.06);
  transform:
    translate3d(calc(var(--lx,0px) * 3), calc(var(--ly,0px) * 3), 80px);
  z-index: 3;
}
.hero-float--chip b {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -.01em;
  color: var(--lime, #bdea5c);
  line-height: 1;
}
.hero-float--chip span {
  font-size: .8rem;
  color: #c4d4be;
  font-family: var(--font-display);
}

@media (max-width: 900px) {
  .page-hero__visual { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-float { transition: none !important; }
  .hero-float--pill .dot { animation: none !important; }
}

/* ============== v4 hero-art: service-specific illustrations ============== */
.hero-art {
  position: absolute;
  top: 14%;
  left: 8%;
  right: 6%;
  aspect-ratio: 5 / 3.2;
  background: #ffffff;
  border-radius: 26px;
  border: 1px solid rgba(15, 26, 13, 0.06);
  box-shadow:
    0 40px 80px -24px rgba(15, 26, 13, 0.22),
    0 14px 30px -8px rgba(58, 158, 30, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 1);
  overflow: hidden;
  transform-style: preserve-3d;
  transform:
    rotateY(-6deg) rotateX(3deg)
    translate3d(var(--lx, 0px), var(--ly, 0px), -20px);
  padding: 0;
  z-index: 1;
}
/* Photo variant — used when the illustration is a transparent PNG that
   already contains its own background / labels / pills. Drops the white
   card framing so the artwork bleeds to the edge, keeps the 3D tilt and
   adds a gentle idle float. Image is centered inside the visual column
   and capped to a sensible bounding box so it never feels oversized,
   regardless of the column width or the photo's aspect ratio. */
.hero-art--photo {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  aspect-ratio: auto;
  overflow: visible;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heroArtFloat 6s ease-in-out infinite alternate;
  will-change: transform;
}
.hero-art--photo::before { display: none; }
.hero-art--photo .hero-art__img {
  display: block;
  width: auto;
  height: auto;
  /* Scale down on small viewports, cap on large ones. The cap is tuned so
     landscape (1.5) images get reasonable presence (~540×360) while
     square ones stay bounded by max-height (~400×400). */
  max-width: min(100%, 540px);
  max-height: min(100%, 400px);
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 30px 50px rgba(15, 26, 13, .22))
          drop-shadow(0 12px 24px rgba(58, 158, 30, .12));
}
@keyframes heroArtFloat {
  from {
    transform:
      rotateY(-6deg) rotateX(3deg)
      translate3d(var(--lx, 0px), calc(var(--ly, 0px) - 6px), -20px);
  }
  to {
    transform:
      rotateY(-6deg) rotateX(3deg)
      translate3d(var(--lx, 0px), calc(var(--ly, 0px) + 6px), -20px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero-art--photo { animation: none !important; }
}
/* Visual column height for photo heroes — matches the image bounding box
   so the column doesn't reserve dead vertical space. */
.page-hero--split:has(.hero-art--photo) .page-hero__visual { min-height: 400px; }
.hero-art::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 40% at 85% 15%, rgba(189, 234, 92, 0.22), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero-art__svg {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
}
.hero-art__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: .75rem 1.1rem .9rem;
  background: linear-gradient(to top, rgba(255, 255, 255, .95), rgba(255, 255, 255, .7) 70%, transparent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .82rem;
  color: var(--ink-soft);
  line-height: 1.4;
  z-index: 2;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}
.hero-art__label strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: -.01em;
}

/* animated wipe bar used in erasure illustration */
.art-wipe-scan {
  animation: artWipe 3.2s cubic-bezier(.55, 0, .55, 1) infinite;
  transform-origin: 0 0;
}
@keyframes artWipe {
  0%   { transform: translateX(-24px); opacity: 0; }
  15%  { opacity: .75; }
  85%  { opacity: .75; }
  100% { transform: translateX(240px); opacity: 0; }
}

/* pulsing LED lights for server rack illustration */
.art-led {
  animation: artLed 1.8s ease-in-out infinite;
  transform-origin: center;
}
.art-led:nth-child(2) { animation-delay: .3s; }
.art-led:nth-child(3) { animation-delay: .6s; }
.art-led:nth-child(4) { animation-delay: .9s; }
.art-led:nth-child(5) { animation-delay: 1.2s; }
@keyframes artLed {
  0%, 100% { opacity: .35; }
  50% { opacity: 1; }
}

/* rotating platter for recovery illustration */
.art-platter {
  transform-origin: 150px 100px;
  animation: artSpin 14s linear infinite;
}
@keyframes artSpin { to { transform: rotate(360deg); } }

/* recycling loop arrows pulse */
.art-loop {
  stroke-dasharray: 420;
  stroke-dashoffset: 0;
  animation: artLoop 6s linear infinite;
}
@keyframes artLoop { to { stroke-dashoffset: -420; } }

/* shred fragments fall effect */
.art-shard {
  animation: artShard 3s ease-in-out infinite;
}
.art-shard:nth-child(2) { animation-delay: .4s; }
.art-shard:nth-child(3) { animation-delay: .8s; }
.art-shard:nth-child(4) { animation-delay: 1.2s; }
@keyframes artShard {
  0% { transform: translateY(-4px); opacity: 0; }
  20% { opacity: .9; }
  100% { transform: translateY(30px); opacity: 0; }
}

/* cycle arrow for buyback */
.art-cycle {
  transform-origin: 150px 100px;
  animation: artCycle 8s linear infinite;
}
@keyframes artCycle { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  .art-wipe-scan,
  .art-led,
  .art-platter,
  .art-loop,
  .art-shard,
  .art-cycle { animation: none !important; }
}


