/* ═══════════════════════════════════════
   NEXERM — Design System v2
   ═══════════════════════════════════════ */

:root {
  --bg:       #06090f;
  --bg2:      #0b1020;
  --surface:  rgba(255,255,255,.04);
  --surface2: rgba(255,255,255,.07);
  --border:   rgba(255,255,255,.08);
  --border2:  rgba(255,255,255,.14);
  --text:     #eef1ff;
  --muted:    #6b7a9e;
  --muted2:   #98a3c7;
  --green:    #00e5a0;
  --blue:     #4f8fff;
  --radius:   16px;
  --radius-lg:24px;
  --max-w:    1120px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── BACKGROUND CANVAS ── */
.bg-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.bg-glow-1 {
  position: absolute;
  width: 900px; height: 900px;
  top: -200px; right: -200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,229,160,.10) 0%, transparent 60%);
  filter: blur(80px);
}

.bg-glow-2 {
  position: absolute;
  width: 600px; height: 600px;
  bottom: 0; left: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(79,143,255,.08) 0%, transparent 65%);
  filter: blur(80px);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.5) 0%, transparent 70%);
}

/* ── LAYOUT ── */
.wrap {
  width: min(var(--max-w), calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(6,9,15,.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  width: min(var(--max-w), calc(100% - 48px));
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .03em;
}

.brand-dot {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: conic-gradient(from 135deg, var(--green), var(--blue), var(--green));
  box-shadow: 0 0 16px rgba(0,229,160,.45);
  flex-shrink: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: .88rem;
  color: var(--muted);
}

.site-nav a { transition: color .2s; }
.site-nav a:hover { color: var(--text); }

.header-actions { display: flex; align-items: center; gap: 10px; }

.lang-btn {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  cursor: pointer;
  font-family: "Space Grotesk", sans-serif;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  color: var(--muted);
  transition: border-color .2s;
}

.lang-btn:hover { border-color: var(--border2); }
.lang-btn .sep { opacity: .3; }
.lang-btn .opt.active { color: var(--text); }

.menu-btn {
  display: none;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: .85rem;
  cursor: pointer;
}

/* Mobile nav */
.site-nav.open {
  display: flex;
  position: absolute;
  top: calc(100% + 8px);
  left: 16px; right: 16px;
  flex-direction: column;
  gap: 0;
  background: rgba(6,9,15,.97);
  backdrop-filter: blur(24px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px 0;
}

.site-nav.open a {
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255,255,255,.04);
  font-size: .95rem;
}

.site-nav.open a:last-child { border-bottom: none; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--green), #7affe5);
  color: #031a10;
  font-weight: 800;
  font-size: .9rem;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 0 40px rgba(0,229,160,.25);
  white-space: nowrap;
}

.btn-primary:hover {
  opacity: .92;
  transform: translateY(-2px);
  box-shadow: 0 4px 50px rgba(0,229,160,.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  border-radius: 999px;
  border: 1px solid var(--border2);
  background: var(--surface);
  color: var(--text);
  font-weight: 600;
  font-size: .9rem;
  cursor: pointer;
  transition: border-color .2s, background .2s, transform .2s;
  white-space: nowrap;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,.25);
  background: var(--surface2);
  transform: translateY(-2px);
}

.btn-lg { height: 56px; padding: 0 36px; font-size: .95rem; }

/* ── EYEBROW ── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--green);
  margin-bottom: 16px;
}

.eyebrow::before {
  content: "";
  display: block;
  width: 20px; height: 1px;
  background: var(--green);
  opacity: .6;
}

/* ── SECTION ── */
.section {
  padding: 120px 0 0;
  position: relative;
  z-index: 1;
}

.section-title {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.04em;
  margin-bottom: 48px;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.45);
}

/* ── HERO ── */
.hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  padding: 120px 0 80px;
  position: relative;
  z-index: 1;
}

.hero-left { display: flex; flex-direction: column; align-items: flex-start; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border-radius: 999px;
  border: 1px solid rgba(0,229,160,.25);
  background: rgba(0,229,160,.07);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: blink 2s ease-in-out infinite;
}

@keyframes blink {
  0%,100% { opacity: 1; }
  50%      { opacity: .3; }
}

.hero-badge span {
  font-size: .78rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: .04em;
}

.hero-h1 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -.05em;
  margin-bottom: 24px;
}

.hero-h1 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--green), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted2);
  line-height: 1.75;
  max-width: 44ch;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-tags span {
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: .78rem;
  color: var(--muted2);
}

/* Hero right — visual panel */
.hero-right { position: relative; }

.hero-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  backdrop-filter: blur(20px);
}

.hero-panel-title {
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
  margin-bottom: 20px;
}

.hero-metric-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-metric-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hmi-label {
  font-size: .82rem;
  color: var(--muted2);
  flex: 1;
}

.hmi-bar-wrap {
  flex: 2;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  overflow: hidden;
}

.hmi-bar {
  height: 100%;
  border-radius: 999px;
  transition: width 1.2s cubic-bezier(.22,1,.36,1);
}

.hmi-bar.green  { background: linear-gradient(90deg, var(--green), #7affdf); }
.hmi-bar.blue   { background: linear-gradient(90deg, var(--blue),  #a0c4ff); }
.hmi-bar.purple { background: linear-gradient(90deg, #9b6fff, #c9b0ff); }

.hmi-val {
  font-family: "Space Grotesk", sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text);
  min-width: 36px;
  text-align: right;
}

.hero-saving-badge {
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(0,229,160,.2);
  background: rgba(0,229,160,.06);
  display: flex;
  align-items: center;
  gap: 14px;
}

.hsb-icon { font-size: 1.6rem; line-height: 1; }
.hsb-label { font-size: .78rem; color: var(--muted2); }
.hsb-val {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

/* Float cards */
.hero-float {
  position: absolute;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(6,9,15,.9);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .8rem;
  white-space: nowrap;
  animation: float 4s ease-in-out infinite;
}

.hero-float-1 { top: -20px; right: -20px; animation-delay: 0s; }
.hero-float-2 { bottom: -16px; left: -24px; animation-delay: 2s; }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.hf-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 6px var(--green);
  flex-shrink: 0;
}

.hf-dot.blue { background: var(--blue); box-shadow: 0 0 6px var(--blue); }
.hf-label { color: var(--muted2); }
.hf-val { font-weight: 700; color: var(--text); }

/* ── STATS STRIP ── */
.stats-strip {
  position: relative;
  z-index: 1;
  margin-top: 0;
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
  backdrop-filter: blur(20px);
}

.stat-item {
  padding: 28px 32px;
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.stat-label {
  font-size: .76rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .07em;
}

/* ── FOR WHOM ── */
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.pain-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color .2s;
}

.pain-card:hover { border-color: var(--border2); }

.pain-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: .72rem;
  font-weight: 700;
  color: var(--green);
  opacity: .7;
  flex-shrink: 0;
  margin-top: 2px;
}

.pain-card p {
  font-size: .92rem;
  color: var(--text);
  line-height: 1.55;
}

.section-note {
  text-align: center;
  font-size: .87rem;
  color: var(--muted);
  line-height: 1.65;
  margin-top: 8px;
}

/* ── SOLUTIONS ── */
.sol-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.sol-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color .25s, transform .25s;
}

.sol-card:hover {
  border-color: rgba(0,229,160,.28);
  transform: translateY(-4px);
}

.sol-card.featured {
  border-color: rgba(0,229,160,.22);
  background: rgba(0,229,160,.04);
}

.sol-body { padding: 28px 28px 0; flex: 1; }

.sol-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--green);
  background: rgba(0,229,160,.1);
  border: 1px solid rgba(0,229,160,.18);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.sol-card h3 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 10px;
  color: var(--text);
}

.sol-card > .sol-body > p {
  font-size: .87rem;
  color: var(--muted2);
  line-height: 1.65;
  margin-bottom: 18px;
}

.sol-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 20px;
}

.sol-checklist li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  font-size: .84rem;
  color: var(--muted2);
}

.sol-checklist li::before {
  content: "✓";
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1.5;
}

.sol-foot {
  padding: 16px 28px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.02);
}

.sol-price {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.sol-time {
  font-size: .75rem;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
}

/* ── PROCESS ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border);
}

.process-step {
  background: var(--bg2);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.proc-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(0,229,160,.15);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -.04em;
}

.process-step h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.02em;
}

.process-step p {
  font-size: .86rem;
  color: var(--muted2);
  line-height: 1.65;
}

/* ── CASE IDEAS ── */
.ideas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border);
}

.idea-card {
  background: var(--bg2);
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: background .2s;
}

.idea-card:hover { background: var(--surface2); }

.idea-icon {
  font-size: 1.4rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 1px;
}

.idea-industry {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .09em;
  color: var(--green);
  opacity: .8;
  margin-bottom: 4px;
}

.idea-card h4 {
  font-size: .95rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text);
}

.idea-card p {
  font-size: .82rem;
  color: var(--muted2);
  line-height: 1.55;
}

.ideas-note {
  text-align: center;
  font-size: .87rem;
  color: var(--muted);
  margin-top: 20px;
}

.ideas-note a { color: var(--green); }

/* ── WHY ME ── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--border);
}

.why-card {
  background: var(--bg2);
  padding: 32px;
  transition: background .2s;
}

.why-card:hover { background: var(--surface2); }

.why-num {
  font-family: "Space Grotesk", sans-serif;
  font-size: .72rem;
  font-weight: 700;
  color: var(--green);
  opacity: .6;
  margin-bottom: 14px;
  letter-spacing: .04em;
}

.why-card h4 {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}

.why-card p {
  font-size: .87rem;
  color: var(--muted2);
  line-height: 1.65;
}

/* ── OFFER ── */
.offer-block {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0,229,160,.18);
  background: rgba(0,229,160,.04);
  padding: 72px 48px;
  text-align: center;
  overflow: hidden;
}

.offer-block::before {
  content: "";
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,229,160,.15), transparent 65%);
  pointer-events: none;
}

.offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 16px;
  border-radius: 999px;
  background: var(--green);
  color: #031a10;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.offer-block .eyebrow { justify-content: center; }

.offer-h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -.03em;
  margin: 12px 0 16px;
}

.offer-h2 em {
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,.5);
}

.offer-sub {
  font-size: 1rem;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 32px;
}

.trust-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .77rem;
  color: var(--muted2);
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 999px;
}

.trust-badge .tick { color: var(--green); font-weight: 700; }

.offer-note {
  margin-top: 20px;
  font-size: .83rem;
  color: var(--muted);
  line-height: 1.65;
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

/* ── CTA ── */
.cta-block {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  padding-bottom: 100px;
}

.cta-h2 {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -.05em;
  margin: 12px 0 18px;
}

.cta-h2 em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, var(--green), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-sub {
  font-size: .97rem;
  color: var(--muted2);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 20px; }

.cta-note {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ── FOOTER ── */
.site-footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 36px 0 40px;
  margin-top: 0;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  width: min(var(--max-w), calc(100% - 48px));
  margin: 0 auto;
}

.footer-brand { font-family: "Space Grotesk", sans-serif; font-weight: 700; font-size: .95rem; margin-bottom: 6px; }
.footer-sub { font-size: .82rem; color: var(--muted); max-width: 36ch; line-height: 1.6; }

.footer-nav {
  display: flex;
  gap: 24px;
  font-size: .85rem;
  color: var(--muted);
  align-items: center;
  padding-top: 4px;
}

.footer-nav a:hover { color: var(--text); }

/* ── STICKY CTA ── */
.sticky-cta {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 200;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green);
  color: #031a10;
  font-weight: 800;
  font-size: .88rem;
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: 0 8px 40px rgba(0,229,160,.35);
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .35s, transform .35s;
  pointer-events: none;
}

.sticky-cta.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.sticky-cta:hover { box-shadow: 0 12px 50px rgba(0,229,160,.5); }

.sticky-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #031a10;
  animation: sdot 2s ease-in-out infinite;
}

@keyframes sdot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.35; transform:scale(.5); }
}

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}

.reveal.in { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding: 100px 0 60px; gap: 40px; }
  .hero-right { display: none; }
  .hero-left { align-items: center; text-align: center; }
  .hero-h1 { max-width: 20ch; }
  .hero-sub { max-width: 100%; text-align: center; }
  .hero-tags { justify-content: center; }
  .sol-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }
  .pain-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .menu-btn { display: inline-flex; }
  .offer-block { padding: 48px 24px; }
}

@media (max-width: 640px) {
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--border); }
  .stat-item:last-child { border-bottom: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: none; }
  .ideas-grid { grid-template-columns: 1fr; }
  .sticky-cta { bottom: 16px; right: 16px; padding: 12px 18px; font-size: .82rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-actions .btn-primary, .hero-actions .btn-ghost { width: 100%; max-width: 320px; }
}
