/* ==========================================================================
   Plee Station — Design System v3 "Bold Festival Energy"
   Brand palette (fixed): #646362 #6D6B65 #727469 #727E70 #6F897C #6A938C
   Full dark. Bebas Neue poster type. Marquee strips, stickers, ghost text.
   ========================================================================== */

:root {
  color-scheme: dark;

  /* Brand ramp */
  --gray-500: #646362;
  --gray-450: #6D6B65;
  --olive-400: #727469;
  --sage-400: #727E70;
  --sage-500: #6F897C;
  --sage-600: #6A938C;

  /* Derived (same hues, adjusted lightness for dark-mode contrast) */
  --sage-200: #c9ded7;
  --sage-300: #9fc3ba;
  --sage-700: #55807a;
  --sage-800: #446660;

  /* Dark surfaces (deep shades of brand gray) */
  --bg: #2d2c2b;
  --bg-deep: #262524;
  --surface: #363534;
  --surface-2: #3e3d3c;
  --line: rgba(255, 255, 255, 0.11);
  --line-strong: rgba(255, 255, 255, 0.2);

  --text: #f2f1ef;
  --text-soft: rgba(242, 241, 239, 0.75);
  --text-muted: rgba(242, 241, 239, 0.55);

  --danger: #e08573;
  --danger-soft: #f0a494;

  --grad-brand: linear-gradient(135deg, #646362 0%, #727469 45%, #6F897C 75%, #6A938C 100%);
  --grad-text: linear-gradient(92deg, #c9ded7 0%, #9fc3ba 45%, #7fb3a7 100%);
  --glow-sage: rgba(106, 147, 140, 0.4);

  --font-poster: "Bebas Neue", "Outfit", system-ui, sans-serif;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Source Sans 3", system-ui, sans-serif;

  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;
  --radius-pill: 999px;

  --shadow-s: 0 2px 6px rgba(0, 0, 0, 0.3);
  --shadow-m: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-l: 0 24px 60px rgba(0, 0, 0, 0.5);

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 6.5rem;

  --wrap: 1160px;

  --noise: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  --dots: radial-gradient(rgba(255, 255, 255, 0.055) 1.2px, transparent 1.2px);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip; /* rotated full-bleed strips must never cause sideways scroll */
}

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

a { color: var(--sage-300); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--sage-200); }

/* Poster type for the big moments, Outfit for UI-level headings */
h1, h2 {
  font-family: var(--font-poster);
  font-weight: 400;
  text-transform: uppercase;
  line-height: 0.94;
  color: var(--text);
  letter-spacing: 0.012em;
  text-wrap: balance;
}
h1 { font-size: clamp(3.6rem, 9.5vw, 8rem); }
h2 { font-size: clamp(2.5rem, 5.5vw, 4.2rem); }
h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text);
  letter-spacing: -0.015em;
}
h3 { font-size: 1.25rem; }

p { max-width: 65ch; }

:focus-visible {
  outline: 3px solid var(--sage-300);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--sage-300); color: var(--bg-deep);
  padding: 0.6rem 1rem; z-index: 300; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.wrap { width: min(var(--wrap), 100% - 2.5rem); margin-inline: auto; }

section { padding-block: var(--space-6); position: relative; }
section > .wrap { position: relative; z-index: 2; }

.section-head { max-width: 680px; margin-bottom: var(--space-5); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .kicker {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--sage-300); margin-bottom: var(--space-2);
}
.section-head .kicker::before {
  content: ""; width: 26px; height: 3px; border-radius: 2px;
  background: var(--grad-text);
}
.section-head.center .kicker::after {
  content: ""; width: 26px; height: 3px; border-radius: 2px;
  background: var(--grad-text);
}
.section-head p { margin-top: var(--space-2); color: var(--text-soft); font-size: 1.15rem; }
.section-head.center p { margin-inline: auto; }

/* ---------- Ghost outline text ---------- */
.ghost {
  position: absolute; z-index: 0;
  font-family: var(--font-poster); text-transform: uppercase;
  font-size: clamp(7rem, 20vw, 17rem); line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(159, 195, 186, 0.13);
  pointer-events: none; user-select: none; white-space: nowrap;
}
.ghost-tl { top: 0.5rem; left: -1rem; }
.ghost-br { bottom: 0.5rem; right: -1rem; }
.has-ghost { overflow: hidden; }

/* ---------- Marquee headline strips ---------- */
.strip {
  overflow: hidden; position: relative; z-index: 5;
  padding-block: 0.85rem;
  rotate: -1.4deg;
  margin-block: calc(-1 * var(--space-2));
  width: 105vw; margin-left: -2.5vw;
}
.strip-solid { background: var(--grad-brand); box-shadow: var(--shadow-m); }
.strip-ghost { border-block: 1px solid var(--line); background: var(--bg-deep); }
.strip-track {
  display: flex; align-items: center; gap: 2.5rem;
  width: max-content;
  animation: marquee 22s linear infinite;
}
.strip-item {
  display: inline-flex; align-items: center; gap: 2.5rem;
  font-family: var(--font-poster); text-transform: uppercase;
  font-size: 1.9rem; line-height: 1; white-space: nowrap;
  color: #fff; letter-spacing: 0.04em;
}
.strip-ghost .strip-item {
  color: transparent;
  -webkit-text-stroke: 1px rgba(242, 241, 239, 0.5);
}
.strip-item .sep { font-size: 1.2rem; color: rgba(255,255,255,0.7); -webkit-text-stroke: 0; }
.strip-ghost .strip-item .sep { color: var(--sage-300); }
@media (prefers-reduced-motion: reduce) {
  .strip-track { animation: none; }
}

/* ---------- Click ripple ---------- */
.ripple {
  position: fixed; z-index: 400; pointer-events: none;
  width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid var(--sage-300);
  translate: -50% -50%;
  animation: ripple 0.7s ease-out forwards;
}
@keyframes ripple {
  0% { opacity: 0.9; scale: 0.4; }
  100% { opacity: 0; scale: 6; }
}

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; z-index: 250;
  height: 3px; width: 100%;
  background: var(--grad-text);
  transform-origin: 0 50%;
  transform: scaleX(0);
  pointer-events: none;
}

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  font-family: var(--font-display); font-weight: 700; font-size: 1rem;
  padding: 0.85rem 1.7rem; border-radius: var(--radius-pill);
  border: 2px solid transparent; cursor: pointer;
  text-decoration: none;
  transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease,
              box-shadow 0.22s ease, translate 0.22s ease;
  min-height: 48px; overflow: hidden;
}
.btn svg { width: 18px; height: 18px; flex: none; transition: transform 0.22s ease; }
.btn:hover svg { transform: translateX(3px); }
.btn::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.35) 50%, transparent 60%);
  transform: translateX(-120%);
  transition: transform 0.6s ease;
  pointer-events: none;
}
.btn:hover::after { transform: translateX(120%); }
.btn-primary { background: var(--sage-300); color: var(--bg-deep); }
.btn-primary:hover { background: var(--sage-200); color: var(--bg-deep); translate: 0 -2px; box-shadow: 0 12px 30px var(--glow-sage); }
.btn-ghost { background: transparent; color: var(--text); border-color: var(--line-strong); }
.btn-ghost:hover { border-color: var(--sage-300); color: var(--sage-200); translate: 0 -2px; }
.btn-light { background: var(--sage-300); color: var(--bg-deep); }
.btn-light:hover { background: var(--sage-200); translate: 0 -2px; box-shadow: 0 14px 30px var(--glow-sage); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn-outline-light:hover { border-color: #fff; background: rgba(255,255,255,0.1); color: #fff; translate: 0 -2px; }
.btn-lg { padding: 1.05rem 2.2rem; font-size: 1.1rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.site-header.scrolled {
  background: rgba(38, 37, 36, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-s);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-3); padding-block: 0.8rem;
}
.brand {
  display: inline-flex; align-items: center; gap: 0.65rem;
  text-decoration: none; color: #fff;
}
.brand-mark { width: 44px; height: 44px; flex: none; }
.brand-name {
  font-family: var(--font-poster); font-weight: 400; font-size: 1.55rem;
  text-transform: uppercase; letter-spacing: 0.03em; line-height: 0.9;
}
.brand-name small {
  display: block; font-family: var(--font-display); font-size: 0.62rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--sage-300);
  margin-top: 3px;
}
.nav-links { display: flex; align-items: center; gap: 0.25rem; list-style: none; }
.nav-links a {
  font-family: var(--font-display); font-weight: 500; font-size: 0.98rem;
  color: var(--text-soft); text-decoration: none;
  padding: 0.55rem 0.85rem; border-radius: var(--radius-pill);
  transition: background 0.18s ease, color 0.18s ease;
}
.nav-links a:hover { background: rgba(255,255,255,0.1); color: #fff; }
.nav-links a[aria-current="page"] { background: rgba(159,195,186,0.16); color: var(--sage-200); font-weight: 600; }
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover { color: var(--bg-deep); }
.nav-cta { margin-left: 0.5rem; }
.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer;
  padding: 0.6rem; border-radius: var(--radius-s); color: #fff;
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--bg-deep); border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-m);
    display: none; padding: var(--space-2) var(--space-3) var(--space-3);
  }
  .nav-menu.open { display: block; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0.2rem; }
  .nav-links a { display: block; padding: 0.85rem 1rem; }
  .nav-cta { margin: 0.6rem 0 0; width: 100%; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    var(--dots),
    radial-gradient(1000px 700px at 82% 0%, rgba(106, 147, 140, 0.32), transparent 62%),
    radial-gradient(800px 600px at 4% 100%, rgba(114, 116, 105, 0.38), transparent 60%),
    var(--bg-deep);
  background-size: 26px 26px, auto, auto, auto;
  color: #fff;
  padding-block: clamp(5rem, 11vw, 9rem);
  margin-top: calc(-1 * (60px + 1.6rem));
  padding-top: clamp(8rem, 15vw, 12rem);
}
.hero .wrap { position: relative; z-index: 3; }

.blob {
  position: absolute; border-radius: 50%;
  filter: blur(90px); pointer-events: none; z-index: 1;
}
.blob-1 { width: 560px; height: 560px; top: -180px; right: -120px; background: rgba(106, 147, 140, 0.4); }
.blob-2 { width: 440px; height: 440px; bottom: -180px; left: -140px; background: rgba(114, 126, 112, 0.4); }
.blob-3 { width: 300px; height: 300px; top: 38%; left: 44%; background: rgba(111, 137, 124, 0.25); }

.grain::before {
  content: ""; position: absolute; inset: 0; z-index: 2;
  background-image: var(--noise);
  opacity: 0.13; mix-blend-mode: overlay; pointer-events: none;
}

.cursor-glow {
  position: absolute; z-index: 1; width: 560px; height: 560px;
  border-radius: 50%; pointer-events: none;
  background: radial-gradient(circle, rgba(159, 195, 186, 0.14) 0%, transparent 65%);
  transform: translate(-50%, -50%);
  left: 70%; top: 40%;
}

.hero-grid {
  display: grid; grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-5); align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(159,195,186,0.1); border: 1px solid rgba(159,195,186,0.3);
  backdrop-filter: blur(6px);
  border-radius: var(--radius-pill); padding: 0.45rem 1.1rem;
  font-family: var(--font-display); font-weight: 600; font-size: 0.88rem;
  margin-bottom: var(--space-3);
  color: var(--sage-200);
  rotate: -1.5deg;
}
.hero .eyebrow svg { width: 15px; height: 15px; }
.hero h1 { color: #fff; margin-bottom: var(--space-3); }
.hero h1 .accent { font-style: normal; }
.hero h1 .accent .wi,
html:not(.gsap-on) .hero h1 .accent {
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.hero .lead { font-size: 1.28rem; color: var(--text-soft); margin-bottom: var(--space-4); }
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--space-2); }

.w { display: inline-block; overflow: hidden; vertical-align: bottom; padding-bottom: 0.08em; margin-bottom: -0.08em; }
.wi { display: inline-block; will-change: transform; }

.hero-visual { position: relative; display: flex; justify-content: center; z-index: 2; }
.hero-visual .roll {
  width: min(340px, 68vw);
  filter: drop-shadow(0 0 60px rgba(159, 195, 186, 0.25)) drop-shadow(0 30px 50px rgba(0,0,0,0.5));
}
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-16px) rotate(2deg); }
}
html:not(.gsap-on) .hero-visual .roll { animation: float 5.5s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  html:not(.gsap-on) .hero-visual .roll { animation: none; }
}

.dot-float {
  position: absolute; border-radius: 50%; z-index: 1;
  background: var(--sage-300); opacity: 0.5; pointer-events: none;
}

/* ---------- Stats: oversized poster numbers ---------- */
.stats {
  position: relative; z-index: 6;
  margin-top: calc(-1 * var(--space-6));
  padding-block: 0;
}
.stats-card {
  background: var(--surface); border-radius: var(--radius-l);
  box-shadow: var(--shadow-l); border: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding: var(--space-4) var(--space-3);
  gap: var(--space-3);
  rotate: -0.6deg;
}
@media (max-width: 760px) { .stats-card { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding-inline: var(--space-2); }
.stat + .stat { border-left: 1px solid var(--line); }
@media (max-width: 760px) { .stat:nth-child(3) { border-left: 0; } }
.stat .num {
  font-family: var(--font-poster);
  font-size: clamp(3rem, 5.5vw, 4.6rem); line-height: 0.95;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stat .label { font-size: 0.95rem; color: var(--text-muted); margin-top: 0.3rem; }

/* ---------- Client marquee ---------- */
.marquee {
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.marquee::before, .marquee::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 90px; z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg), transparent); }
.marquee::after { right: 0; background: linear-gradient(-90deg, var(--bg), transparent); }
.marquee-label {
  text-align: center; font-family: var(--font-display); font-weight: 600;
  font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-muted); margin-bottom: var(--space-2);
}
.marquee-track {
  display: flex; align-items: center; gap: 3.2rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: inline-flex; align-items: center; gap: 3.2rem;
  font-family: var(--font-poster); font-size: 1.6rem; text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted); white-space: nowrap;
}
.marquee-item svg { width: 22px; height: 22px; color: var(--sage-500); opacity: 0.9; }
@keyframes marquee { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ---------- Cards & grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-3); }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-3); }
@media (max-width: 980px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-m); padding: var(--space-4);
  box-shadow: var(--shadow-s);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, rotate 0.3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.45), 0 0 30px rgba(106,147,140,0.12); border-color: var(--sage-500); }

/* Sticker tilt (independent `rotate` property — safe next to reveal/GSAP transforms) */
.tilt:nth-child(odd) { rotate: -1.4deg; }
.tilt:nth-child(even) { rotate: 1.1deg; }
.tilt:hover { rotate: 0deg; }

.icon-chip {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(159, 195, 186, 0.13); color: var(--sage-300);
  display: grid; place-items: center; margin-bottom: var(--space-2);
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.icon-chip svg { width: 26px; height: 26px; }
.card:hover .icon-chip { background: var(--sage-300); color: var(--bg-deep); transform: scale(1.06) rotate(-4deg); }
.card h3 { margin-bottom: 0.5rem; }
.card p { color: var(--text-soft); font-size: 1rem; }

/* Product cards */
.product-card { display: flex; flex-direction: column; position: relative; overflow: hidden; }
.product-card .badge {
  position: absolute; top: 1.15rem; right: 0.9rem; z-index: 1;
  background: var(--sage-300); color: var(--bg-deep);
  font-family: var(--font-poster); font-size: 0.95rem; letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.32rem 0.9rem 0.22rem; border-radius: 4px;
  rotate: 5deg;
  box-shadow: 0 4px 12px rgba(0,0,0,0.35);
}
.product-card .visual {
  background: rgba(255, 255, 255, 0.045); border-radius: var(--radius-s);
  padding: var(--space-3); margin-bottom: var(--space-3);
  display: grid; place-items: center; min-height: 150px;
  overflow: hidden;
}
.product-card .visual svg {
  width: 100%; max-width: 220px; height: auto; color: rgba(242, 241, 239, 0.8);
  transition: transform 0.35s ease;
}
.product-card:hover .visual svg { transform: translateX(6px) scale(1.03); }
.product-card .code {
  font-family: var(--font-display); font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.08em; color: var(--sage-300); text-transform: uppercase;
}
.product-card .meta {
  display: flex; align-items: center; gap: 0.45rem;
  color: var(--text-soft); font-size: 0.95rem; margin: 0.5rem 0 1rem;
}
.product-card .meta svg { width: 17px; height: 17px; color: var(--sage-300); flex: none; }
.product-card .price-row {
  margin-top: auto; padding-top: var(--space-2);
  border-top: 1px dashed var(--line-strong);
  display: flex; align-items: baseline; gap: 0.4rem;
}
.product-card .price {
  font-family: var(--font-poster); font-size: 2.3rem; line-height: 1; color: var(--sage-200);
}
.product-card .per { color: var(--text-muted); font-size: 0.92rem; }
.features { list-style: none; margin-bottom: var(--space-2); }
.features li {
  display: flex; gap: 0.55rem; align-items: flex-start;
  font-size: 0.97rem; color: var(--text-soft); padding-block: 0.28rem;
}
.features svg { width: 17px; height: 17px; color: var(--sage-300); flex: none; margin-top: 3px; }

/* Steps */
.step .step-num {
  font-family: var(--font-poster);
  font-size: 3.6rem; line-height: 0.9;
  background: var(--grad-text);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  opacity: 0.8;
  margin-bottom: var(--space-1);
}

/* SLA banner */
.sla-banner {
  position: relative;
  background:
    var(--dots),
    radial-gradient(700px 400px at 85% 10%, rgba(106, 147, 140, 0.4), transparent 60%),
    radial-gradient(500px 400px at 5% 95%, rgba(114, 126, 112, 0.35), transparent 55%),
    var(--bg-deep);
  background-size: 26px 26px, auto, auto, auto;
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  color: #fff; padding: var(--space-5);
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: var(--space-4);
  align-items: center; overflow: hidden;
  rotate: -0.5deg;
}
@media (max-width: 860px) { .sla-banner { grid-template-columns: 1fr; } }
.sla-banner h2 { color: #fff; }
.sla-banner p { color: var(--text-soft); margin-top: var(--space-2); }
.sla-list { list-style: none; display: grid; gap: 0.7rem; position: relative; z-index: 1; }
.sla-list li {
  background: rgba(255,255,255,0.07); border: 1px solid var(--line);
  backdrop-filter: blur(4px);
  border-radius: var(--radius-s); padding: 0.8rem 1.1rem;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  font-size: 0.98rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.sla-list li:hover { background: rgba(255,255,255,0.12); transform: translateX(4px); }
.sla-list .prio { font-weight: 600; font-family: var(--font-display); }
.sla-list .time {
  background: var(--sage-300); color: var(--bg-deep);
  font-family: var(--font-poster); font-size: 1.05rem; letter-spacing: 0.04em;
  border-radius: 4px; padding: 0.22rem 0.7rem 0.12rem; white-space: nowrap;
  rotate: -3deg;
}

/* Testimonials */
.quote-card { display: flex; flex-direction: column; gap: var(--space-2); }
.quote-card .stars { display: flex; gap: 2px; color: var(--sage-300); }
.quote-card .stars svg { width: 18px; height: 18px; }
.quote-card blockquote { font-size: 1.05rem; color: var(--text); font-style: italic; }
.quote-card .who { display: flex; align-items: center; gap: 0.8rem; margin-top: auto; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  background: var(--grad-brand); color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display); font-weight: 700; font-size: 0.95rem;
  border: 2px solid rgba(159,195,186,0.35);
}
.who .name { font-weight: 600; font-family: var(--font-display); font-size: 0.97rem; }
.who .role { color: var(--text-muted); font-size: 0.88rem; }

/* Section elevation (was tint) */
.tint {
  background: var(--dots), var(--bg-deep);
  background-size: 26px 26px, auto;
  border-block: 1px solid var(--line);
}

/* ---------- Final CTA ---------- */
.cta-final { padding-block: var(--space-6) 0; }
.cta-card {
  position: relative; overflow: hidden;
  background:
    var(--dots),
    radial-gradient(800px 500px at 50% 130%, rgba(106, 147, 140, 0.5), transparent 65%),
    radial-gradient(400px 300px at 12% 0%, rgba(114, 126, 112, 0.3), transparent 60%),
    var(--bg-deep);
  background-size: 26px 26px, auto, auto, auto;
  border: 1px solid rgba(159,195,186,0.25);
  border-radius: var(--radius-l);
  padding: var(--space-6) var(--space-4);
  text-align: center;
  color: #fff;
  rotate: -0.5deg;
}
.cta-card .inner {
  position: relative; z-index: 2;
  max-width: 720px; margin-inline: auto;
  display: flex; flex-direction: column; align-items: center; gap: var(--space-3);
}
.cta-card h2 { color: #fff; }
.cta-card p { color: var(--text-soft); font-size: 1.15rem; }
.cta-card .roll-bg {
  position: absolute; z-index: 1; opacity: 0.07;
  width: 420px; right: -80px; bottom: -90px;
  transform: rotate(-12deg);
}

/* ---------- Timeline ---------- */
.timeline { position: relative; margin-top: var(--space-4); }
.timeline::before {
  content: ""; position: absolute; left: 11px; top: 6px; bottom: 6px;
  width: 3px; border-radius: 2px; background: var(--grad-text);
  transform: scaleY(0); transform-origin: 0 0;
  transition: transform 1.1s cubic-bezier(0.4, 0, 0.2, 1);
}
.timeline.drawn::before { transform: scaleY(1); }
@media (prefers-reduced-motion: reduce) {
  .timeline::before { transform: none; transition: none; }
}
.timeline-item { position: relative; padding: 0 0 var(--space-4) 3rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: ""; position: absolute; left: 3px; top: 6px;
  width: 19px; height: 19px; border-radius: 50%;
  background: var(--sage-300); border: 4px solid var(--bg);
  box-shadow: 0 0 0 2px var(--sage-300), 0 0 14px rgba(159,195,186,0.4);
}
.timeline-item .year {
  font-family: var(--font-poster); font-size: 1.7rem; line-height: 1;
  color: var(--sage-300);
}
.timeline-item p { color: var(--text-soft); margin-top: 0.25rem; }

/* Team */
.team-card { text-align: center; padding: var(--space-3); }
.team-card .avatar {
  width: 76px; height: 76px; font-size: 1.5rem; margin: 0 auto var(--space-2);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.team-card:hover .avatar { transform: scale(1.12) rotate(-5deg); }
.team-card .name { font-family: var(--font-display); font-weight: 700; }
.team-card .role { color: var(--text-muted); font-size: 0.93rem; }

/* ---------- Reference cases ---------- */
.case-card .case-tag {
  display: inline-block; background: rgba(159,195,186,0.14); color: var(--sage-200);
  border: 1px solid rgba(159,195,186,0.3);
  font-family: var(--font-display); font-weight: 600; font-size: 0.78rem;
  padding: 0.28rem 0.8rem; border-radius: var(--radius-pill);
  margin-bottom: var(--space-2);
  rotate: -2deg;
}
.case-card .delivery {
  border-top: 1px dashed var(--line-strong); margin-top: var(--space-2); padding-top: var(--space-2);
  font-size: 0.95rem; color: var(--text-soft);
  display: flex; gap: 0.55rem; align-items: flex-start;
}
.case-card .delivery svg { width: 18px; height: 18px; color: var(--sage-300); flex: none; margin-top: 2px; }
.case-card blockquote { border-left-color: var(--sage-500) !important; color: var(--text-soft) !important; }

/* ---------- Forms (dark) ---------- */
.form-wrap { max-width: 760px; margin-inline: auto; }
.form-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-l); padding: var(--space-5);
  box-shadow: var(--shadow-m);
}
@media (max-width: 640px) { .form-card { padding: var(--space-3); } }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-3); }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field.full { grid-column: 1 / -1; }

.field label {
  display: block; font-family: var(--font-display); font-weight: 600;
  font-size: 0.95rem; margin-bottom: 0.4rem; color: var(--text);
}
.field label .req { color: var(--sage-300); }
.field .hint { font-size: 0.85rem; color: var(--text-muted); margin-top: 0.35rem; }

.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--text);
  background: rgba(255, 255, 255, 0.055); border: 2px solid var(--line-strong);
  border-radius: var(--radius-s); padding: 0.75rem 1rem;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  min-height: 48px;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(242,241,239,0.38); }
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--sage-300); background: rgba(255,255,255,0.08);
  box-shadow: 0 0 0 4px rgba(159, 195, 186, 0.15);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); }
.field .error {
  display: none; color: var(--danger-soft); font-size: 0.88rem; margin-top: 0.35rem; font-weight: 600;
}
.field.invalid .error { display: block; }

.check-group { display: grid; gap: 0.6rem; }
.check-pill {
  display: flex; align-items: center; gap: 0.7rem;
  border: 2px solid var(--line-strong); border-radius: var(--radius-s);
  padding: 0.7rem 1rem; cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease;
  color: var(--text);
}
.check-pill:hover { border-color: var(--sage-300); background: rgba(159,195,186,0.07); }
.check-pill input { width: 20px; height: 20px; accent-color: var(--sage-300); flex: none; min-height: 0; }
.check-pill span small { display: block; color: var(--text-muted); }
.check-pill:has(input:checked) { border-color: var(--sage-300); background: rgba(159,195,186,0.1); }

.radio-row { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.radio-pill { position: relative; }
.radio-pill input { position: absolute; opacity: 0; inset: 0; cursor: pointer; min-height: 0; }
.radio-pill span {
  display: inline-block; border: 2px solid var(--line-strong);
  border-radius: var(--radius-pill); padding: 0.5rem 1.1rem;
  font-family: var(--font-display); font-weight: 500; font-size: 0.95rem;
  transition: all 0.18s ease; cursor: pointer; color: var(--text);
}
.radio-pill input:checked + span { background: var(--sage-300); border-color: var(--sage-300); color: var(--bg-deep); font-weight: 700; }
.radio-pill input:focus-visible + span { outline: 3px solid var(--sage-300); outline-offset: 2px; }

.form-success {
  display: none; text-align: center; padding: var(--space-5) var(--space-3);
}
.form-success.show { display: block; }
.form-success .check-anim {
  width: 84px; height: 84px; margin: 0 auto var(--space-3);
  background: rgba(159,195,186,0.15); border-radius: 50%;
  display: grid; place-items: center; color: var(--sage-300);
  animation: pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.form-success .check-anim svg { width: 42px; height: 42px; }
.form-success p { color: var(--text-soft) !important; }
@keyframes pop {
  0% { transform: scale(0.4); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* Priority cards */
.prio-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-2); margin-bottom: var(--space-4); }
@media (max-width: 860px) { .prio-cards { grid-template-columns: repeat(2, 1fr); } }
.prio-card {
  border: 1px solid var(--line); border-radius: var(--radius-m);
  padding: var(--space-2) var(--space-3); background: var(--surface);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.prio-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-s); }
.prio-card .dot { width: 12px; height: 12px; border-radius: 50%; display: inline-block; margin-right: 0.4rem; }
.prio-card .t { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.prio-card .rt { color: var(--sage-300); font-family: var(--font-poster); font-size: 1.5rem; }
.prio-card .ex { color: var(--text-muted); font-size: 0.85rem; }

/* ---------- Calculator ---------- */
.calc-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-l); box-shadow: var(--shadow-m);
  padding: var(--space-5); display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5);
  rotate: -0.5deg;
}
@media (max-width: 860px) { .calc-card { grid-template-columns: 1fr; padding: var(--space-3); } }
.calc-controls .field { margin-bottom: var(--space-3); }
.range-row { display: flex; align-items: center; gap: var(--space-2); }
.range-row input[type="range"] {
  flex: 1; accent-color: var(--sage-300); min-height: 0; height: auto; padding: 0; border: 0; background: transparent;
}
.range-val {
  font-family: var(--font-poster); font-size: 2rem; line-height: 1;
  color: var(--sage-300); min-width: 4.2ch; text-align: right;
}
.calc-result {
  background: rgba(159, 195, 186, 0.08); border: 1px solid rgba(159,195,186,0.25);
  border-radius: var(--radius-m);
  padding: var(--space-3); display: flex; flex-direction: column; gap: var(--space-2);
}
.calc-result h3 { display: flex; align-items: center; gap: 0.5rem; }
.calc-result h3 svg { width: 22px; height: 22px; color: var(--sage-300); }
.calc-items { list-style: none; display: grid; gap: 0.5rem; }
.calc-items li {
  background: rgba(255,255,255,0.06); border-radius: var(--radius-s); padding: 0.7rem 1rem;
  display: flex; justify-content: space-between; gap: 1rem; font-size: 0.98rem;
}
.calc-items .qty { font-family: var(--font-display); font-weight: 700; color: var(--sage-200); }
.calc-total {
  border-top: 2px dashed var(--line-strong); padding-top: var(--space-2);
  display: flex; justify-content: space-between; align-items: baseline;
}
.calc-total .amount { font-family: var(--font-poster); font-size: 2.6rem; line-height: 1; color: var(--sage-200); }
.calc-note { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- Page hero ---------- */
.page-hero {
  position: relative; overflow: hidden;
  background:
    var(--dots),
    radial-gradient(760px 480px at 85% 0%, rgba(106, 147, 140, 0.32), transparent 62%),
    radial-gradient(520px 420px at 4% 100%, rgba(114, 126, 112, 0.32), transparent 58%),
    var(--bg-deep);
  background-size: 26px 26px, auto, auto, auto;
  color: #fff;
  padding-block: var(--space-6);
  margin-top: calc(-1 * (60px + 1.6rem));
  padding-top: clamp(7.5rem, 12vw, 10rem);
  border-bottom: 1px solid var(--line);
}
.page-hero .wrap { position: relative; z-index: 3; }
.page-hero h1 { color: #fff; font-size: clamp(3rem, 7vw, 5.6rem); }
.page-hero p { color: var(--text-soft); font-size: 1.2rem; margin-top: var(--space-2); max-width: 56ch; }
.page-hero a { color: var(--sage-200); }
.breadcrumb {
  display: inline-flex; gap: 0.5rem; align-items: center;
  font-size: 0.9rem; color: var(--text-muted); margin-bottom: var(--space-2);
  font-family: var(--font-display);
}
.breadcrumb a { color: var(--text-muted); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

/* ---------- Footer ---------- */
.site-footer {
  position: relative; overflow: hidden;
  background:
    var(--dots),
    radial-gradient(700px 400px at 90% 110%, rgba(106, 147, 140, 0.2), transparent 60%),
    var(--bg-deep);
  background-size: 26px 26px, auto, auto;
  color: var(--text-soft);
  padding-block: var(--space-6) var(--space-3); margin-top: var(--space-6);
  border-top: 1px solid var(--line);
}
.site-footer::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad-text);
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--space-4); padding-bottom: var(--space-4);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer h4 { color: #fff; font-size: 1rem; margin-bottom: var(--space-2); }
.site-footer ul { list-style: none; display: grid; gap: 0.5rem; }
.site-footer a { color: var(--text-soft); text-decoration: none; transition: color 0.18s ease; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-brand p { margin-top: var(--space-2); font-size: 0.95rem; color: var(--text-muted); max-width: 30ch; }
.footer-brand .brand { color: #fff; }
.footer-contact li { display: flex; gap: 0.6rem; align-items: flex-start; font-size: 0.95rem; }
.footer-contact svg { width: 18px; height: 18px; flex: none; margin-top: 3px; color: var(--sage-300); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--space-2);
  padding-top: var(--space-3); font-size: 0.88rem; color: var(--text-muted);
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
.grid-2 > .reveal:nth-child(2), .grid-3 > .reveal:nth-child(2), .grid-4 > .reveal:nth-child(2) { transition-delay: 0.08s; }
.grid-3 > .reveal:nth-child(3), .grid-4 > .reveal:nth-child(3) { transition-delay: 0.16s; }
.grid-4 > .reveal:nth-child(4) { transition-delay: 0.24s; }
.grid-2 > .reveal:nth-child(4) { transition-delay: 0.16s; }
.grid-4 > .reveal:nth-child(5), .grid-3 > .reveal:nth-child(5) { transition-delay: 0.1s; }
.grid-4 > .reveal:nth-child(6), .grid-3 > .reveal:nth-child(6) { transition-delay: 0.18s; }
.grid-4 > .reveal:nth-child(7) { transition-delay: 0.14s; }
.grid-4 > .reveal:nth-child(8) { transition-delay: 0.22s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .card, .btn::after { transition: none; }
  .btn:hover::after { transform: none; }
  .scroll-progress { display: none; }
  .ripple { display: none; }
}
