/* ==========================================================================
   Insekten- & Pollenschutz Schweiz – Stylesheet (Modern Edition)
   Marke: Fenster Allround Service GmbH
   Akzent: Lime/Grün #92C649 · Ink #0d1411 · Off-White #f6f8f3
   ========================================================================== */

:root {
  --green: #92c649;
  --lime: #b6e651;
  --green-dark: #6fa22f;
  --green-darker: #4d7420;
  --green-light: #eaf6d9;
  --green-tint: #f3f9ea;
  --ink: #0d1411;
  --ink-2: #131c17;
  --ink-3: #1b2620;
  --text: #444e49;
  --muted: #828e88;
  --line: #e7ece7;
  --line-2: #eef2ec;
  --bg: #ffffff;
  --bg-soft: #f6f8f3;
  --white: #ffffff;
  --grad: linear-gradient(135deg, var(--lime) 0%, var(--green-dark) 100%);
  --grad-soft: linear-gradient(135deg, #eef8dc 0%, #d9edbb 100%);
  --radius-xl: 28px;
  --radius: 20px;
  --radius-sm: 14px;
  --shadow-sm: 0 1px 2px rgba(13,20,17,.04), 0 4px 14px rgba(13,20,17,.05);
  --shadow: 0 6px 16px rgba(13,20,17,.06), 0 18px 40px rgba(13,20,17,.08);
  --shadow-lg: 0 12px 30px rgba(13,20,17,.10), 0 34px 70px rgba(13,20,17,.16);
  --shadow-green: 0 10px 30px rgba(146,198,73,.4);
  --max: 1200px;
  --display: 'Space Grotesk', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  letter-spacing: -.01em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -.03em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; letter-spacing: -.02em; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

a { color: var(--green-darker); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--green-dark); }
img { max-width: 100%; display: block; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section--tint { background: var(--green-tint); }
.section--dark { background: var(--ink); color: #cfd8d2; }
.section--dark h2, .section--dark h3 { color: #fff; }

/* ---------- Utilities ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font);
  font-size: .78rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  color: var(--green-darker);
  margin-bottom: 18px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--grad); border-radius: 2px; }
.section-head { max-width: 720px; margin: 0 auto 60px; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.12rem; margin-top: 16px; }
.text-center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--text); }
.grad-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Buttons ---------- */
.btn {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 16px 30px; border-radius: 50px; border: 1.5px solid transparent;
  cursor: pointer; white-space: nowrap;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.btn svg { transition: transform .25s var(--ease); }
.btn-primary { background: var(--grad); color: #14240a; box-shadow: var(--shadow-green); }
.btn-primary:hover { color: #14240a; transform: translateY(-3px); box-shadow: 0 16px 40px rgba(146,198,73,.5); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-dark:hover svg { transform: translateX(4px); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-outline:hover { border-color: var(--green); color: var(--green-darker); transform: translateY(-3px); }
.btn-light { background: #fff; color: var(--ink); }
.btn-light:hover { color: var(--green-darker); transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-light:hover svg { transform: translateX(4px); }
.btn-ghost-light { background: rgba(255,255,255,.06); color: #fff; border-color: rgba(255,255,255,.25); backdrop-filter: blur(8px); }
.btn-ghost-light:hover { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.5); transform: translateY(-3px); }

/* ---------- Header ---------- */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.7);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s;
}
.header.scrolled { border-bottom-color: var(--line); background: rgba(255,255,255,.82); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 80px; }
.logo { display: flex; align-items: center; gap: 13px; }
.logo svg { height: 42px; width: auto; flex-shrink: 0; }
.logo-text { line-height: 1.05; }
.logo-text b { display: block; font-family: var(--display); font-size: 1.08rem; color: var(--ink); font-weight: 600; letter-spacing: -.02em; }
.logo-text span { display: block; font-size: .68rem; color: var(--green-darker); font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.nav-links a {
  color: var(--text); font-weight: 500; font-size: .95rem;
  padding: 10px 16px; border-radius: 10px;
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); background: var(--green-light); }
.nav-cta { margin-left: 12px; }
.nav-cta .btn { padding: 12px 24px; font-size: .93rem; }

.burger { display: none; background: none; border: 0; cursor: pointer; padding: 8px; z-index: 101; }
.burger span { display: block; width: 26px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: .3s var(--ease); }
.burger span + span { margin-top: 6px; }
.burger.open span:nth-child(1) { transform: translateY(8.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-8.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink);
  color: #fff;
  padding: 118px 0 128px;
  isolation: isolate;
}
.hero-grid-bg {
  position: absolute; inset: 0; z-index: -2;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, #000 40%, transparent 100%);
}
.orb { position: absolute; border-radius: 50%; filter: blur(70px); z-index: -1; opacity: .55; }
.orb-1 { width: 520px; height: 520px; background: radial-gradient(circle, #92c649, transparent 68%); top: -160px; right: -120px; animation: float1 14s var(--ease) infinite alternate; }
.orb-2 { width: 420px; height: 420px; background: radial-gradient(circle, #4d7420, transparent 70%); bottom: -180px; left: -100px; animation: float2 17s var(--ease) infinite alternate; }
@keyframes float1 { to { transform: translate(-40px, 50px) scale(1.1); } }
@keyframes float2 { to { transform: translate(50px, -40px) scale(1.15); } }

.hero-inner { position: relative; z-index: 2; max-width: 900px; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  padding: 8px 16px 8px 10px; border-radius: 50px;
  font-size: .82rem; font-weight: 500; color: rgba(255,255,255,.85);
  margin-bottom: 28px;
}
.hero-tag .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 0 4px rgba(182,230,81,.25); }
.hero h1 { color: #fff; font-weight: 600; }
.hero h1 .hl { background: linear-gradient(120deg, #b6e651, #92c649); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero p { font-size: 1.24rem; color: rgba(255,255,255,.75); margin: 26px 0 38px; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 15px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 14px 28px; margin-top: 46px; }
.hero-badge { display: flex; align-items: center; gap: 10px; font-size: .95rem; color: rgba(255,255,255,.82); }
.hero-badge svg { flex-shrink: 0; }

/* floating glass stat pills */
.hero-stats {
  display: flex; flex-wrap: wrap; gap: 14px; margin-top: 54px;
}
.hero-stat {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
  border-radius: 18px; padding: 18px 22px; min-width: 140px;
}
.hero-stat .num { font-family: var(--display); font-size: 1.7rem; font-weight: 600; color: #fff; line-height: 1; letter-spacing: -.02em; }
.hero-stat .num span { color: var(--lime); }
.hero-stat .lbl { font-size: .82rem; color: rgba(255,255,255,.6); margin-top: 7px; }

/* ---------- Marquee trust ---------- */
.marquee { background: var(--ink-2); border-top: 1px solid rgba(255,255,255,.06); overflow: hidden; padding: 20px 0; }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: scroll 28s linear infinite; }
.marquee-item { display: flex; align-items: center; gap: 11px; color: rgba(255,255,255,.62); font-size: .95rem; font-weight: 500; white-space: nowrap; }
.marquee-item svg { color: var(--green); flex-shrink: 0; }
@keyframes scroll { to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 26px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 34px 30px; height: 100%;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.card .ico {
  width: 58px; height: 58px; border-radius: 16px;
  background: var(--grad-soft); color: var(--green-darker);
  display: grid; place-items: center; margin-bottom: 22px;
  transition: transform .32s var(--ease);
}
.card:hover .ico { transform: scale(1.08) rotate(-4deg); }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text); font-size: .98rem; }

/* Bento product grid */
.bento { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.product-card {
  position: relative; overflow: hidden;
  grid-column: span 2;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  display: flex; flex-direction: column;
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s;
}
.product-card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: linear-gradient(135deg, rgba(146,198,73,.6), transparent 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity .32s;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.product-card:hover::after { opacity: 1; }
.product-card.feat { grid-column: span 3; }
.product-card .thumb {
  aspect-ratio: 16 / 9; position: relative;
  background: var(--grad-soft);
  display: grid; place-items: center; color: var(--green-darker);
  overflow: hidden;
}
.product-card .thumb::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(77,116,32,.16) 1px, transparent 0);
  background-size: 14px 14px; opacity: .5;
}
.product-card .thumb svg { width: 72px; height: 72px; position: relative; opacity: .9; transition: transform .4s var(--ease); }
.product-card:hover .thumb svg { transform: scale(1.12) translateY(-4px); }
.product-card .tag {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: rgba(255,255,255,.85); backdrop-filter: blur(6px);
  color: var(--green-darker);
  font-size: .68rem; font-weight: 700; letter-spacing: .08em;
  padding: 6px 13px; border-radius: 30px; text-transform: uppercase;
}
.product-card .body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.product-card .body h3 { margin-bottom: 9px; }
.product-card .body p { font-size: .95rem; color: var(--text); flex: 1; }
.product-card ul { list-style: none; margin: 16px 0 0; padding-top: 16px; border-top: 1px solid var(--line-2); }
.product-card ul li { position: relative; padding-left: 24px; font-size: .88rem; margin-bottom: 7px; color: var(--text); }
.product-card ul li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 14px; height: 14px; background: var(--grad); border-radius: 50%;
  box-shadow: inset 0 0 0 3px #fff;
}

/* Feature list */
.feature-list { list-style: none; }
.feature-list li { position: relative; padding-left: 38px; margin-bottom: 15px; }
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px; border-radius: 7px;
  background: var(--grad-soft);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 24 24' fill='none' stroke='%234d7420' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.feature-list li strong { color: var(--ink); font-weight: 600; }

/* Split section */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.split .media {
  border-radius: var(--radius-xl); aspect-ratio: 4 / 3; position: relative; overflow: hidden;
  background: var(--grad-soft);
  display: grid; place-items: center; box-shadow: var(--shadow);
}
.split .media::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(77,116,32,.14) 1px, transparent 0);
  background-size: 18px 18px;
}
.split .media svg { width: 128px; height: 128px; color: var(--green-darker); opacity: .85; position: relative; }
.split .media .badge-float {
  position: absolute; bottom: 22px; left: 22px; right: 22px;
  background: rgba(255,255,255,.9); backdrop-filter: blur(10px);
  border-radius: 16px; padding: 16px 20px; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 14px;
}
.split .media .badge-float .bi { width: 42px; height: 42px; border-radius: 11px; background: var(--grad); display: grid; place-items: center; color: #fff; flex-shrink: 0; }
.split .media .badge-float b { font-family: var(--display); color: var(--ink); font-size: .98rem; display: block; }
.split .media .badge-float span { font-size: .82rem; color: var(--muted); }

/* ---------- Colors / fabrics ---------- */
.swatch-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(112px, 1fr)); gap: 18px; }
.swatch { text-align: center; }
.swatch .chip { aspect-ratio: 1; border-radius: 16px; border: 1px solid rgba(0,0,0,.06); box-shadow: var(--shadow-sm); margin-bottom: 10px; transition: transform .28s var(--ease); }
.swatch:hover .chip { transform: translateY(-5px) scale(1.03); box-shadow: var(--shadow); }
.swatch .name { font-family: var(--display); font-size: .84rem; font-weight: 600; color: var(--ink); }
.swatch .sub { font-size: .72rem; color: var(--muted); }

.fabric-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 22px; }
.fabric { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; transition: box-shadow .28s, transform .28s, border-color .28s; }
.fabric:hover { box-shadow: var(--shadow); transform: translateY(-6px); border-color: transparent; }
.fabric .mesh { height: 88px; border-radius: var(--radius-sm); margin-bottom: 16px; background-color: #cfd4d7;
  background-image: repeating-linear-gradient(0deg, rgba(0,0,0,.28) 0 1px, transparent 1px 5px), repeating-linear-gradient(90deg, rgba(0,0,0,.28) 0 1px, transparent 1px 5px); }
.fabric h4 { font-family: var(--display); font-size: 1.02rem; margin-bottom: 5px; color: var(--ink); }
.fabric p { font-size: .86rem; color: var(--muted); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step .n {
  width: 50px; height: 50px; border-radius: 15px; background: var(--grad); color: #14240a;
  display: grid; place-items: center; font-family: var(--display); font-weight: 700; font-size: 1.25rem; margin-bottom: 18px;
  box-shadow: var(--shadow-green);
}
.step h3 { font-size: 1.15rem; margin-bottom: 8px; }
.step p { font-size: .94rem; color: var(--text); }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative; overflow: hidden;
  background: var(--ink); color: #fff;
  border-radius: var(--radius-xl); padding: 68px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}
.cta-band::before {
  content: ""; position: absolute; width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(146,198,73,.5), transparent 68%);
  filter: blur(50px); top: -180px; right: -120px;
}
.cta-band > * { position: relative; z-index: 2; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.72); margin-top: 12px; max-width: 560px; font-size: 1.08rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 48px; align-items: start; }
.contact-info .info-item { display: flex; gap: 18px; margin-bottom: 28px; }
.contact-info .info-item .ico { width: 50px; height: 50px; border-radius: 14px; flex-shrink: 0; background: var(--grad-soft); color: var(--green-darker); display: grid; place-items: center; }
.contact-info .info-item h4 { font-family: var(--display); font-size: 1.02rem; margin-bottom: 3px; color: var(--ink); }
.contact-info .info-item p, .contact-info .info-item a { font-size: .96rem; color: var(--text); }

.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: 40px; box-shadow: var(--shadow); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 20px; }
.field label { display: block; font-size: .9rem; font-weight: 600; color: var(--ink); margin-bottom: 8px; }
.field label .req { color: #e0574b; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font); font-size: .98rem;
  padding: 14px 16px; border: 1.5px solid var(--line); border-radius: 13px;
  background: var(--bg-soft); color: var(--ink);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--green); background: #fff;
  box-shadow: 0 0 0 4px rgba(146,198,73,.16);
}
.field textarea { resize: vertical; min-height: 138px; }
.field .err { display: none; color: #e0574b; font-size: .82rem; margin-top: 6px; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: #e0574b; }
.field.invalid .err { display: block; }
.checkbox { display: flex; gap: 12px; align-items: flex-start; font-size: .9rem; color: var(--text); }
.checkbox input { width: auto; margin-top: 4px; flex-shrink: 0; accent-color: var(--green-dark); }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 16px; }
.form-status { display: none; padding: 15px 18px; border-radius: 13px; margin-bottom: 22px; font-size: .95rem; }
.form-status.ok { display: block; background: var(--green-light); color: var(--green-darker); border: 1px solid var(--green); }
.form-status.error { display: block; background: #fdecea; color: #b13d34; border: 1px solid #f0b7b1; }

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  position: relative; overflow: hidden; isolation: isolate;
  background: var(--ink); color: #fff; padding: 90px 0 96px;
}
.page-hero .hero-grid-bg { z-index: -2; }
.page-hero .orb { opacity: .4; }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; }
.page-hero p { color: rgba(255,255,255,.72); font-size: 1.16rem; margin-top: 16px; max-width: 640px; }
.breadcrumb { font-size: .84rem; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.breadcrumb a { color: var(--lime); }

/* ---------- Legal / prose ---------- */
.prose { max-width: 820px; margin: 0 auto; }
.prose h2 { font-size: 1.55rem; margin: 44px 0 16px; }
.prose h3 { font-size: 1.18rem; margin: 28px 0 10px; }
.prose p, .prose li { color: var(--text); }
.prose ul, .prose ol { margin: 0 0 1rem 1.3rem; }
.prose li { margin-bottom: 8px; }
.prose .updated { color: var(--muted); font-size: .9rem; margin-bottom: 30px; }
.prose address { font-style: normal; line-height: 1.9; }

.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; cursor: pointer;
  font-family: var(--display); font-size: 1.12rem; font-weight: 600; color: var(--ink);
  padding: 24px 48px 24px 0; position: relative; transition: color .2s;
}
.faq-q:hover { color: var(--green-darker); }
.faq-q::after {
  content: ""; position: absolute; right: 8px; top: 28px; width: 16px; height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236fa22f' stroke-width='2.5' stroke-linecap='round'%3E%3Cline x1='12' y1='5' x2='12' y2='19'/%3E%3Cline x1='5' y1='12' x2='19' y2='12'/%3E%3C/svg%3E") no-repeat center;
  transition: transform .3s var(--ease);
}
.faq-item.open .faq-q::after { transform: rotate(135deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease); }
.faq-a p { padding-bottom: 24px; color: var(--text); }

/* ---------- Footer ---------- */
.footer { background: var(--ink); color: rgba(255,255,255,.62); padding: 76px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1.2fr; gap: 44px; padding-bottom: 54px; }
.footer h4 { font-family: var(--display); color: #fff; font-size: 1rem; margin-bottom: 20px; }
.footer .logo-text b { color: #fff; }
.footer p { font-size: .94rem; margin-top: 18px; line-height: 1.7; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 11px; }
.footer a { color: rgba(255,255,255,.62); font-size: .94rem; transition: color .2s; }
.footer a:hover { color: var(--lime); }
.footer .contact-line { display: flex; gap: 11px; margin-bottom: 13px; font-size: .94rem; }
.footer .contact-line svg { flex-shrink: 0; color: var(--green); margin-top: 3px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1); padding: 24px 0;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  font-size: .85rem; color: rgba(255,255,255,.45);
}
.footer-bottom a { color: rgba(255,255,255,.55); }
.footer-bottom .links { display: flex; gap: 22px; flex-wrap: wrap; }

/* ---------- Reveal animation (JS-enhanced) ---------- */
.js .reveal { opacity: 0; transform: translateY(30px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.visible { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .08s; }
.js .reveal[data-delay="2"] { transition-delay: .16s; }
.js .reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .orb, .marquee-track { animation: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .bento { grid-template-columns: repeat(4, 1fr); }
  .product-card, .product-card.feat { grid-column: span 2; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; gap: 38px; }
}
@media (max-width: 760px) {
  .section { padding: 68px 0; }
  .nav-links {
    position: fixed; inset: 80px 0 auto 0; flex-direction: column; align-items: stretch; gap: 2px;
    background: rgba(255,255,255,.97); backdrop-filter: blur(16px); padding: 18px 24px 28px;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow); height: auto;
    transform: translateY(-140%); transition: transform .4s var(--ease); opacity: 0; visibility: hidden;
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links a { padding: 14px 16px; font-size: 1.05rem; }
  .nav-cta { margin: 10px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .burger { display: block; }
  .bento, .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .product-card, .product-card.feat { grid-column: span 1; }
  .steps { grid-template-columns: 1fr; }
  .cta-band { padding: 44px 30px; text-align: center; justify-content: center; }
  .cta-band .btn { margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .form-card { padding: 28px 22px; }
  .hero { padding: 88px 0 96px; }
  .hero-stat { flex: 1; min-width: calc(50% - 7px); }
}
@media (max-width: 460px) {
  .footer-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .logo-text span { display: none; }
}
