/* ─── TOKENS ─── */
:root {
  --bg: #ffffff;
  --ink: #0b0b0c;
  --muted: rgba(11,11,12,.62);
  --line: rgba(11,11,12,.10);
  --yellow: #ffd400;
  --shadow: 0 20px 60px rgba(0,0,0,.10);
  --radius: 24px;
  --max: 1180px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: "Sora", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── BACKGROUND FX ─── */
.bgfx {
  position: fixed; inset: -40px;
  pointer-events: none; z-index: -2;
  background:
    radial-gradient(900px 700px at 10% 10%, rgba(255,212,0,.18), transparent 60%),
    radial-gradient(700px 600px at 90% 20%, rgba(255,212,0,.14), transparent 60%),
    radial-gradient(1000px 700px at 70% 95%, rgba(0,0,0,.05), transparent 60%);
}
.grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: -1;
  opacity: .08;
  background-image: 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='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

/* ─── UTILITIES ─── */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 22px; }

.pill {
  display: inline-flex; gap: 10px; align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--line); border-radius: 999px;
  background: rgba(255,255,255,.70); backdrop-filter: blur(8px);
  font-size: 13px; color: var(--muted);
}
.dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 0 0 6px rgba(255,212,0,.20);
  flex-shrink: 0;
}

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border-radius: 16px; padding: 12px 14px;
  font: 600 14px/1 inherit;
  border: 1px solid var(--line); background: #fff;
  cursor: pointer; user-select: none; white-space: nowrap;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); box-shadow: 0 16px 40px rgba(0,0,0,.10); }
.btn.primary { background: var(--yellow); border-color: rgba(0,0,0,.10); }
.btn.primary:hover { box-shadow: 0 20px 50px rgba(255,212,0,.30); }
.btn.ghost { background: rgba(255,255,255,.55); backdrop-filter: blur(8px); }
.btn.hamb { display: none; }

/* ─── LANGUAGE DROPDOWN ─── */
.langDropdown { position: relative; }
.langDropBtn {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.6); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 10px;
  padding: 7px 10px; font: 600 12px/1 inherit;
  color: var(--ink); cursor: pointer; letter-spacing: .04em;
  transition: background .2s, box-shadow .2s;
}
.langDropBtn:hover { background: rgba(255,255,255,.9); box-shadow: 0 4px 16px rgba(0,0,0,.08); }
.langDropBtn svg { transition: transform .25s ease; flex-shrink: 0; }
.langDropdown.open .langDropBtn svg { transform: rotate(180deg); }
.langMenu {
  position: absolute; top: calc(100% + 8px); right: 0;
  background: rgba(255,255,255,.95); backdrop-filter: blur(16px);
  border: 1px solid var(--line); border-radius: 14px;
  padding: 6px; min-width: 150px;
  box-shadow: 0 16px 40px rgba(0,0,0,.12);
  opacity: 0; transform: translateY(-8px) scale(0.97);
  pointer-events: none;
  transition: opacity .22s ease, transform .22s cubic-bezier(.2,.9,.2,1);
  z-index: 100;
}
.langDropdown.open .langMenu {
  opacity: 1; transform: translateY(0) scale(1);
  pointer-events: all;
}
.langOpt {
  display: flex; align-items: center; gap: 8px;
  width: 100%; padding: 9px 12px; border-radius: 9px;
  background: none; border: none; font: 500 13px/1 inherit;
  color: rgba(11,11,12,.7); cursor: pointer; text-align: left;
  transition: background .15s, color .15s;
}
.langOpt:hover { background: rgba(11,11,12,.06); color: var(--ink); }
.langOpt.active { background: rgba(255,212,0,.2); color: var(--ink); font-weight: 700; }

/* ─── HEADER ─── */
header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(133,133,133,.74); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: transform .4s cubic-bezier(.4,0,.2,1), opacity .4s ease;
}
header.hidden { transform: translateY(-100%); opacity: 0; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 16px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 190px; }
.brand img {
  width: 40px; height: 40px; object-fit: contain;
  transform: rotate(-18deg);
  filter: drop-shadow(0 10px 18px rgba(0,0,0,.12));
}
.brand b { font-weight: 700; letter-spacing: -0.02em; }
.brand span { display: block; font-size: 12px; color: var(--muted); margin-top: 2px; }

.links {
  display: flex; gap: 16px; align-items: center;
  color: rgba(11,11,12,.70); font-size: 14px;
}
.links a {
  padding: 10px; border-radius: 12px;
  transition: background .2s, color .2s, transform .2s;
}
.links a:hover { background: rgba(11,11,12,.05); color: var(--ink); transform: translateY(-1px); }
.ctaRow { display: flex; gap: 10px; align-items: center; }

/* Mobile menu */
.mMenu { display: none; border-top: 1px solid var(--line); padding: 12px 0 16px; }
.mMenu a {
  display: block; padding: 12px 10px; border-radius: 14px;
  color: rgba(11,11,12,.78); transition: background .2s;
}
.mMenu a:hover { background: rgba(11,11,12,.05); }
.mMenu.open { display: block; }

/* ─── SECTIONS ─── */
section { padding: 70px 0; }
.secTitle {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 18px; margin-bottom: 22px;
}
.secTitle h2 {
  margin: 0;
  font-size: clamp(22px, 2.8vw, 34px);
  letter-spacing: -0.03em; line-height: 1.1;
}
.secTitle p { margin: 0; color: var(--muted); max-width: 52ch; line-height: 1.6; font-size: 14px; }

/* Contact section title override */
.contactTitle {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ─── HERO ─── */
.hero { padding: 70px 0 32px; }
.heroGrid {
  display: grid; grid-template-columns: 1.25fr .75fr;
  gap: 26px; align-items: stretch;
}
.hCard {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(11,11,12,.02));
  box-shadow: var(--shadow); overflow: hidden; position: relative;
}
.hCard::before {
  content: ""; position: absolute; inset: -2px;
  background:
    radial-gradient(900px 260px at 20% 0%, rgba(255,212,0,.35), transparent 60%),
    radial-gradient(560px 300px at 95% 30%, rgba(0,0,0,.08), transparent 60%);
  z-index: 0; pointer-events: none;
}
.hInner { position: relative; z-index: 1; padding: 30px; }

h1 {
  margin: 16px 0 14px;
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.02; letter-spacing: -0.04em;
}
mark {
  background: var(--yellow);
  padding: 0 .18em; border-radius: 14px;
  color: inherit;
}
.lead { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.6; max-width: 58ch; }

.mini { margin-top: 18px; display: flex; justify-content: center; }
.heroUnderline { width: 420px; max-width: 100%; opacity: .75; }

.side { padding: 22px; display: flex; flex-direction: column; gap: 12px; min-height: 100%; }
.sideTop { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }

.badge {
  padding: 10px 12px; border-radius: 16px;
  border: 1px solid var(--line); background: rgba(255,255,255,.70);
  font-size: 13px; color: rgba(11,11,12,.72);
}
.badge--yellow { background: rgba(255,212,0,.25); }

.stat {
  margin-top: auto; border-radius: 18px;
  background: rgba(11,11,12,.035); border: 1px solid var(--line); padding: 14px;
}
.stat b { font-size: 22px; letter-spacing: -0.03em; }
.stat p { margin: 6px 0 0; color: var(--muted); font-size: 13px; line-height: 1.4; }

.spark {
  height: 120px; border-radius: 18px;
  border: 1px dashed rgba(11,11,12,.18);
  background:
    radial-gradient(280px 100px at 20% 40%, rgba(255,212,0,.35), transparent 60%),
    radial-gradient(240px 120px at 80% 30%, rgba(0,0,0,.06), transparent 60%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(11,11,12,.75); font-size: 15px; font-weight: 600;
  letter-spacing: -0.01em;
}
.sparkLabel { flex-shrink: 0; }
.sparkCursor { color: var(--ink); font-weight: 700; }
.sparkBlinkCursor {
  color: var(--yellow); font-weight: 300;
  animation: blink .75s step-end infinite;
}
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0; } }

/* ─── PRODUCT CARDS ─── */
.productGrid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.productCard {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: #fff; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.productCard:hover { transform: translateY(-4px); box-shadow: 0 30px 80px rgba(0,0,0,.11); }

.productHero {
  padding: 28px 28px 24px;
  position: relative; overflow: hidden;
}
.productHero--afisha {
  background: linear-gradient(135deg, #fff8cc 0%, #fff3a0 60%, #ffe55e 100%);
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.productHero--estate {
  background: linear-gradient(135deg, #f0f0f0 0%, #e4e4e4 60%, #d4d4d4 100%);
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.productHero--afisha::after,
.productHero--estate::after {
  content: "";
  position: absolute; top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  opacity: .15;
}
.productHero--afisha::after { background: var(--yellow); }
.productHero--estate::after { background: #888; }

.productLabel {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 6px;
}
.productIcon {
  width: 120px; height: 120px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px; letter-spacing: -0.02em;
}
.productIcon img { width: 100%; height: 100%; object-fit: contain; }
.productHero--estate .productIcon img { width: 150px; height: 150px; }
.productIcon--dark {
  background: #1a1a1a; color: #fff;
  box-shadow: 0 6px 20px rgba(0,0,0,.20);
}
.productLabel h3 { margin: 0; font-size: 22px; letter-spacing: -0.03em; }
.productTag {
  display: inline-block; margin-top: 4px;
  font-size: 12px; font-weight: 600;
  color: rgba(0,0,0,.50); letter-spacing: .04em; text-transform: uppercase;
}
.productDesc {
  margin: 0; font-size: 14px; line-height: 1.65;
  color: rgba(0,0,0,.65); max-width: 52ch;
}

.productBody { padding: 24px 28px 28px; display: flex; flex-direction: column; gap: 24px; flex: 1; }

.featureRow { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.featureItem { display: flex; gap: 12px; align-items: flex-start; }
.featureIcon { font-size: 20px; line-height: 1; flex-shrink: 0; margin-top: 1px; }
.featureItem b { display: block; font-size: 13px; letter-spacing: -0.01em; margin-bottom: 3px; }
.featureItem p { margin: 0; font-size: 12px; color: var(--muted); line-height: 1.55; }

.productWho { display: flex; flex-direction: column; gap: 10px; }
.whoLabel { font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); }
.chipRow { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  padding: 9px 10px; border-radius: 999px;
  border: 1px solid var(--line); background: rgba(11,11,12,.03);
  font-size: 12px; color: rgba(11,11,12,.72);
}

.productFooter {
  display: flex; gap: 10px; flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  margin-top: auto;
}

/* ─── WHY MOSAIC ─── */
.whyMosaic { padding: 80px 0; }
.whyTop { margin-bottom: 26px; }
.whyTitle {
  margin: 0; font-weight: 900;
  letter-spacing: -0.03em; text-transform: uppercase;
  font-size: clamp(26px, 3.2vw, 40px);
}
.whyGrid {
  display: grid; grid-template-columns: repeat(12, 1fr);
  gap: 18px; grid-auto-flow: dense;
}
.whyCard {
  border: 1.6px solid #000; border-radius: 28px;
  background: #fff; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .25s, box-shadow .25s;
}
.whyCard:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.12); }
.whyText { padding: 22px 22px 12px; }
.whyText h3 { margin: 0 0 10px; font-size: 18px; letter-spacing: -0.02em; }
.whyText p { margin: 0; color: rgba(0,0,0,.65); font-size: 14px; line-height: 1.55; max-width: 46ch; }
.whyMedia {
  margin-top: auto; padding: 6px 9px 9px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.whyMedia img { width: 100%; max-height: 200px; object-fit: contain; }
.smallMedia img { max-height: 140px; }

.whyCard.tall  { grid-column: 1 / span 4; grid-row: span 2; }
.whyCard.wide  { grid-column: 5 / span 8; }
.whyCard.mid   { grid-column: span 4; }
.whyCard.small { grid-column: span 4; }

/* ─── MARQUEE ─── */
.marqueeWrap {
  padding: 0; overflow: hidden;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: #fff;
}
.marqueeInner { padding: 60px 0; }
.marRow {
  display: flex; align-items: center; justify-content: center;
  gap: 26px; margin: 24px 0;
  will-change: transform;
}
.marText {
  font-size: clamp(32px, 5.4vw, 82px);
  font-weight: 800; letter-spacing: -0.03em;
  line-height: 1; text-transform: uppercase; white-space: nowrap;
}
.fill  { color: var(--ink); }
.stroke {
  color: transparent;
  -webkit-text-stroke: 2px rgba(11,11,12,.30);
}
.marIcon {
  width: 56px; height: 56px; flex-shrink: 0;
  border-radius: 999px;
  background: rgba(11,11,12,.07);
  border: 1px solid rgba(0,0,0,.10);
  display: flex; align-items: center; justify-content: center;
}
.marIcon--yellow {
  background: var(--yellow);
  box-shadow: 0 20px 40px rgba(255,212,0,.25);
}
.marIcon svg { width: 26px; height: 26px; }

/* ─── PROCESS ─── */
.cards3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: rgba(255,255,255,.8); padding: 18px;
  min-height: 160px; position: relative; overflow: hidden;
}
.card::after {
  content: ""; position: absolute; inset: -2px;
  background: radial-gradient(400px 180px at 20% 0%, rgba(255,212,0,.22), transparent 60%);
  pointer-events: none;
}
.card > * { position: relative; z-index: 1; }
.card b { display: block; font-size: 16px; letter-spacing: -0.02em; }
.card p { margin: 10px 0 0; color: var(--muted); font-size: 14px; line-height: 1.6; }

/* ─── CONTACT FORM ─── */
.contact {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255,255,255,.75), rgba(11,11,12,.02));
  box-shadow: var(--shadow); padding: 22px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.req { color: #f87171; margin-left: 2px; }
.field-error { font-size: 12px; color: #f87171; min-height: 16px; margin-top: -4px; }
label { font-size: 13px; color: rgba(11,11,12,.70); }
input, textarea, select {
  border: 1px solid var(--line); border-radius: 14px;
  padding: 12px; font: inherit; font-size: 14px;
  outline: none; background: rgba(255,255,255,.85);
  transition: border-color .2s, box-shadow .2s;
}
input:focus, textarea:focus, select:focus {
  border-color: rgba(11,11,12,.30);
  box-shadow: 0 0 0 6px rgba(255,212,0,.25);
}
textarea { min-height: 120px; resize: vertical; }
.full { grid-column: 1 / -1; }
.formRow { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; justify-content: flex-end; }
#formStatus { margin-right: auto; color: var(--muted); font-size: 13px; }

/* ─── FOOTER ─── */
.zeonBlackFooter {
  background: #0b0b0c;
  overflow: hidden;
  border-radius: 40px 40px 0 0;
}

.zeonBlackInner {
  position: relative;
  max-width: var(--max); margin: 0 auto; padding: 0 22px;
  display: flex; align-items: stretch; justify-content: space-between;
  min-height: 420px;
}

/* Yellow glow blobs */
.zeonBlackInner::before {
  content: ""; position: absolute; inset: -40px; pointer-events: none; z-index: 0;
  background:
    radial-gradient(600px 400px at 5% 120%, rgba(255,212,0,.12), transparent 55%),
    radial-gradient(400px 300px at 50% -10%, rgba(255,212,0,.06), transparent 55%);
}

.blackLeft {
  flex: 1;
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 48px 40px 40px;
}
.blackLeft h2 {
  margin: 0 0 10px;
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.05; color: #fff;
}
.blackLeft > div > p {
  margin: 0 0 28px;
  color: rgba(255,255,255,.50); font-size: 15px; line-height: 1.65;
}
.footerProducts { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.footerPill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 14px; border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12); background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.72); font-size: 13px; font-weight: 500;
  transition: background .2s, border-color .2s, color .2s;
  cursor: default;
}
.footerPill:hover { background: rgba(255,212,0,.10); border-color: rgba(255,212,0,.30); color: #fff; }
.footerPill .dot { width: 7px; height: 7px; box-shadow: 0 0 0 4px rgba(255,212,0,.18); }
.footerLinks { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 36px; }
.footerLinks a {
  color: rgba(255,255,255,.45); font-size: 13px;
  padding: 6px 10px; border-radius: 10px;
  transition: color .2s, background .2s;
}
.footerLinks a:hover { color: #fff; background: rgba(255,255,255,.07); }
.footerBottom {
  display: flex; align-items: center; justify-content: flex-start;
  gap: 24px; padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.08); flex-wrap: wrap;
}
.copyright { color: rgba(255,255,255,.30); font-size: 12px; }
.footerSocials { display: flex; gap: 8px; }
.socialBtn {
  width: 34px; height: 34px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.45);
  transition: background .2s, border-color .2s, color .2s, transform .2s;
}
.socialBtn:hover {
  background: rgba(255,212,0,.12); border-color: rgba(255,212,0,.30);
  color: var(--yellow); transform: translateY(-2px);
}
.socialBtn svg { width: 15px; height: 15px; }

/* Image fills entire right side */
.blackRight {
  flex-shrink: 0;
  width: 420px;
  position: relative;
  overflow: hidden;
  overflow: visible;
}

/* Subtle yellow glow behind image */
.blackRight::before {
  content: "";
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 50%;
  background: radial-gradient(ellipse 80% 60% at 50% 100%, rgba(255,212,0,.15), transparent 70%);
  z-index: 1; pointer-events: none;
}

.blackRight img {
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom center;
  z-index: 2;
  filter: drop-shadow(-20px 0 40px rgba(0,0,0,.4));
}

/* ─── REVEAL ANIMATIONS ─── */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.9,.2,1); }
.reveal.in { opacity: 1; transform: translateY(0); }
.delay1 { transition-delay: .08s; }
.delay2 { transition-delay: .16s; }
.delay3 { transition-delay: .24s; }

/* ─── FORM SUCCESS ANIMATION ─── */
.formCardWrap { position: relative; }
.formSuccess {
  position: absolute; inset: 0; z-index: 10;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px;
  background: #fff; border-radius: inherit;
  opacity: 0; pointer-events: none;
  transform: scale(0.85);
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.formSuccess.show { opacity: 1; pointer-events: all; transform: scale(1); }
.formSuccess.hide {
  opacity: 0; transform: scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.successCircle { width: 90px; height: 90px; filter: drop-shadow(0 8px 24px rgba(34,197,94,.3)); }
.successRing { stroke-dasharray: 276; stroke-dashoffset: 276; transition: stroke-dashoffset 0s; }
.successCheck { stroke-dasharray: 60; stroke-dashoffset: 60; transition: stroke-dashoffset 0s; }
.formSuccess.show .successRing { stroke-dashoffset: 0; transition: stroke-dashoffset 0.55s cubic-bezier(0.4,0,0.2,1) 0.15s; }
.formSuccess.show .successCheck { stroke-dashoffset: 0; transition: stroke-dashoffset 0.35s cubic-bezier(0.4,0,0.2,1) 0.6s; }
.successMsg {
  margin: 0; text-align: center;
  font-size: 18px; font-weight: 700; color: #0b0b0c;
  opacity: 0; transform: translateY(8px);
  transition: opacity 0s, transform 0s;
}
.formSuccess.show .successMsg { opacity: 1; transform: translateY(0); transition: opacity 0.4s ease 0.85s, transform 0.4s ease 0.85s; }
.successMsg span { display: block; font-size: 13px; font-weight: 400; color: rgba(11,11,12,.45); margin-top: 5px; }
#partnerForm { transition: filter 0.3s ease, opacity 0.3s ease; }
#partnerForm.blurred { filter: blur(4px); opacity: 0.3; pointer-events: none; }

/* ─── RESPONSIVE ─── */
.productToggle { display: none; }

@media (max-width: 980px) {
  .heroGrid, .productGrid, .contact { grid-template-columns: 1fr; }
  .featureRow { grid-template-columns: 1fr; }
  .cards3 { grid-template-columns: 1fr; }
  .links { display: none; }
  .btn.hamb { display: inline-flex; }
  .brand { min-width: auto; }
  .whyGrid { grid-template-columns: 1fr; }
  .whyCard.tall, .whyCard.wide, .whyCard.mid, .whyCard.small {
    grid-column: auto; grid-row: auto; min-height: 220px;
  }
  .ctaRow .btn.primary { display: none; }

  .productBody {
    max-height: 0;
    overflow: hidden;
    padding-top: 0; padding-bottom: 0;
    transition: max-height .4s cubic-bezier(.2,.9,.2,1), padding .3s ease;
  }
  .productCard.open .productBody {
    max-height: 1200px;
    padding-top: 24px; padding-bottom: 28px;
  }
  .productHero { cursor: pointer; }
  .productToggle {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 28px;
    border-top: 1px solid var(--line);
    font-size: 13px; font-weight: 600; color: var(--muted);
  }
  .productToggle svg { transition: transform .3s ease; }
  .productCard.open .productToggle svg { transform: rotate(180deg); }
}
@media (max-width: 900px) {
  .zeonBlackInner { flex-direction: column; min-height: auto; }
  .blackLeft { padding: 36px 28px 28px; text-align: center; align-items: center; }
  .footerBottom { justify-content: center; }
  .blackRight { width: 100%; height: 200px; }
  .blackRight img { height: 100%; width: auto; object-position: top center; }
}