/* ═══════════════════════════════════════════════════════════════
   EVO ELECTRIC — Clean Design System (light-first)
   Built on top of theme.css tokens. Loaded AFTER theme.css.
   ═══════════════════════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-primary);
  color: var(--ink-90);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4, h5 { font-family: 'Exo 2', sans-serif; color: var(--ink-100); line-height: 1.08; letter-spacing: -.02em; }
::selection { background: var(--accent); color: #fff; }

.evo-wrap { max-width: 1240px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .evo-wrap { padding: 0 20px; } }

/* ── Section scaffolding ── */
.sec { padding: 104px 0; }
.sec-sm { padding: 72px 0; }
@media (max-width: 900px) { .sec { padding: 72px 0; } .sec-sm { padding: 56px 0; } }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Inter', sans-serif; font-size: .7rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 18px;
}
.eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--accent); border-radius: 1px; }

.sec-title { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 800; }
.sec-title em { font-style: normal; color: var(--accent); }
.sec-lede { color: var(--ink-60); font-size: 1.04rem; line-height: 1.7; max-width: 620px; margin-top: 18px; }
.sec-head { max-width: 720px; }
.sec-head.center { margin: 0 auto; text-align: center; }
.sec-head.center .eyebrow { justify-content: center; }
.sec-head.center .sec-lede { margin-left: auto; margin-right: auto; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 10px; font-weight: 700; font-size: .82rem;
  letter-spacing: .02em; border: 1.5px solid transparent; transition: all .22s cubic-bezier(.16,1,.3,1);
  white-space: nowrap; cursor: pointer; line-height: 1;
}
.btn svg { width: 17px; height: 17px; }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(244,121,32,.22); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(244,121,32,.32); }
.btn-ghost { background: transparent; color: var(--ink-100); border-color: var(--ink-30); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.btn-white { background: #fff; color: #d96911; box-shadow: 0 6px 18px rgba(0,0,0,.12); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.18); }
.btn-outline-white { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.4); }
.btn-outline-white:hover { background: rgba(255,255,255,.16); border-color: #fff; transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: .86rem; }
@media (max-width: 480px) { .btn { width: 100%; } }

/* ── HERO ── */
.hero { position: relative; padding: 130px 0 84px; overflow: hidden; background: var(--bg-primary); }
.hero-grid {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: linear-gradient(var(--border) 1px, transparent 1px), linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 80% 70% at 70% 0%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 70% 0%, #000, transparent 75%);
  opacity: .7;
}
.hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px;
  background: var(--accent-soft); border: 1px solid var(--accent-border); color: var(--accent);
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 24px;
}
.hero-tag .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.hero h1 { font-size: clamp(2.5rem, 5.2vw, 4.1rem); font-weight: 800; letter-spacing: -.03em; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub { color: var(--ink-60); font-size: 1.1rem; line-height: 1.65; max-width: 500px; margin: 22px 0 32px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 36px; }
.hero-proof { display: flex; gap: 26px; flex-wrap: wrap; }
.hero-proof-item { display: flex; flex-direction: column; gap: 2px; }
.hero-proof-item b { font-family: 'Exo 2', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--ink-100); letter-spacing: -.02em; }
.hero-proof-item span { font-size: .72rem; color: var(--ink-50); letter-spacing: .04em; text-transform: uppercase; font-weight: 600; }

.hero-visual { position: relative; }
.hero-card {
  position: relative; border-radius: 20px; overflow: hidden; background: #fff;
  border: 1px solid var(--border); box-shadow: 0 30px 70px -24px rgba(10,12,18,.28);
  aspect-ratio: 4 / 4.4;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-badge {
  position: absolute; border-radius: 14px; background: var(--bg-card); backdrop-filter: blur(8px);
  border: 1px solid var(--border); box-shadow: 0 14px 34px -12px rgba(10,12,18,.3);
  padding: 14px 18px; display: flex; align-items: center; gap: 12px;
}
.hero-badge .ic { width: 38px; height: 38px; border-radius: 10px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero-badge .ic svg { width: 20px; height: 20px; }
.hero-badge b { display: block; font-family: 'Exo 2', sans-serif; font-size: .92rem; color: var(--ink-100); font-weight: 700; }
.hero-badge span { font-size: .7rem; color: var(--ink-50); }
.hero-badge.b1 { top: 22px; left: -22px; }
.hero-badge.b2 { bottom: 26px; right: -20px; }

@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-visual { max-width: 440px; }
  .hero-badge.b1 { left: 14px; }
  .hero-badge.b2 { right: 14px; }
}
@media (max-width: 560px) {
  .hero { padding: 104px 0 64px; }
  .hero-proof { gap: 20px; }
  .hero-badge { display: none; }
}

/* ── TRUST / LOGO BAR ── */
.trust { border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: var(--bg-secondary); }
.trust-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 14px 40px; padding: 28px 32px; }
.trust-label { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-50); }
.trust-chip { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600; color: var(--ink-70); }
.trust-chip svg { width: 16px; height: 16px; color: var(--accent); }

/* ── GAMME CARDS ── */
.gamme-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.gamma-card {
  position: relative; display: flex; flex-direction: column; background: var(--bg-card);
  border: 1px solid var(--border); border-radius: 16px; padding: 30px 28px 26px;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s, border-color .3s;
  overflow: hidden;
}
.gamma-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .35s cubic-bezier(.16,1,.3,1); }
.gamma-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -22px rgba(10,12,18,.22); border-color: var(--accent-border); }
.gamma-card:hover::before { transform: scaleX(1); }
.gamma-ic { width: 54px; height: 54px; border-radius: 14px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.gamma-ic svg { width: 28px; height: 28px; }
.gamma-card h3 { font-size: 1.18rem; font-weight: 700; margin-bottom: 9px; }
.gamma-card p { color: var(--ink-60); font-size: .9rem; line-height: 1.6; flex: 1; }
.gamma-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--border); }
.gamma-price { font-family: 'Exo 2', sans-serif; font-weight: 700; color: var(--ink-100); font-size: .95rem; }
.gamma-price span { color: var(--ink-50); font-size: .72rem; font-weight: 500; }
.gamma-link { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); font-size: .76rem; font-weight: 700; letter-spacing: .04em; transition: gap .25s; }
.gamma-card:hover .gamma-link { gap: 11px; }
.gamma-link svg { width: 15px; height: 15px; }
@media (max-width: 900px) { .gamme-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .gamme-grid { grid-template-columns: 1fr; } }

/* ── WHY / VANTAGGI ── */
.why { background: var(--bg-secondary); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.why-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; padding: 28px 26px; transition: transform .3s, box-shadow .3s, border-color .3s; }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 20px 44px -22px rgba(10,12,18,.2); border-color: var(--accent-border); }
.why-ic { width: 46px; height: 46px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.why-ic svg { width: 24px; height: 24px; }
.why-card h3 { font-size: 1.04rem; font-weight: 700; margin-bottom: 8px; }
.why-card p { color: var(--ink-60); font-size: .88rem; line-height: 1.65; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } }

/* ── QUALITY / SPLIT BAND ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.split-media { border-radius: 18px; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 26px 60px -28px rgba(10,12,18,.32); aspect-ratio: 5/4; }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.split-li { display: flex; gap: 14px; align-items: flex-start; }
.split-li .ck { width: 26px; height: 26px; border-radius: 8px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.split-li .ck svg { width: 15px; height: 15px; }
.split-li b { color: var(--ink-100); font-weight: 700; font-family: 'Exo 2', sans-serif; }
.split-li p { color: var(--ink-60); font-size: .9rem; line-height: 1.55; margin-top: 2px; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 36px; } .split-media { order: -1; } }

/* ── PROCESS ── */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; counter-reset: step; }
.step { position: relative; padding: 28px 24px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; }
.step-n { font-family: 'Exo 2', sans-serif; font-size: 1.05rem; font-weight: 800; color: #fff; background: var(--accent); width: 38px; height: 38px; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.step h4 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step p { color: var(--ink-60); font-size: .86rem; line-height: 1.6; }
@media (max-width: 900px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .steps { grid-template-columns: 1fr; } }

/* ── BRANDS MARQUEE ── */
.brands { background: var(--bg-secondary); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 52px 0; }
.brands-label { text-align: center; font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-50); margin-bottom: 34px; }
.brands-track-wrap { overflow: hidden; mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.brands-track { display: flex; align-items: center; gap: 72px; width: max-content; animation: brands-scroll 28s linear infinite; }
@keyframes brands-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.brands-track img { height: 34px; width: auto; max-width: 150px; object-fit: contain; opacity: .72; filter: grayscale(1); transition: opacity .3s, filter .3s; }
.brands-track img:hover { opacity: 1; filter: grayscale(0); }
[data-theme="dark"] .brands-track img { filter: grayscale(1) brightness(1.6); opacity: .55; }
@media (prefers-reduced-motion: reduce) { .brands-track { animation: none; } }

/* ── FINAL CTA ── */
.cta { position: relative; overflow: hidden; background: linear-gradient(135deg, #F47920 0%, #d2580c 100%); }
.cta-grid-bg { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.07) 1px, transparent 1px); background-size: 64px 64px; mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000, transparent 80%); -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, #000, transparent 80%); }
.cta-inner { position: relative; z-index: 1; text-align: center; padding: 92px 32px; }
.cta .eyebrow { color: rgba(255,255,255,.85); }
.cta .eyebrow::before { background: rgba(255,255,255,.85); }
.cta h2 { color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; }
.cta p { color: rgba(255,255,255,.9); font-size: 1.08rem; line-height: 1.6; max-width: 540px; margin: 18px auto 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ── */
.evo-footer { background: var(--accent); color: #fff; }
.evo-footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.1fr; gap: 44px; padding: 68px 0 52px; }
.evo-footer-brand p { color: rgba(255,255,255,.82); font-size: .85rem; line-height: 1.7; margin-top: 18px; max-width: 280px; }
.evo-footer-logo { display: flex; align-items: center; gap: 12px; }
.evo-footer-logo img { height: 42px; width: auto; }
.evo-footer-logo .ft-sep { width: 1.5px; height: 32px; background: rgba(255,255,255,.4); }
.evo-footer-logo .ft-txt { display: flex; flex-direction: column; line-height: 1.1; }
.evo-footer-logo .ft-txt span { font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: .9rem; letter-spacing: .06em; }
.evo-footer-logo .ft-line { height: 2px; background: #fff; margin-top: 3px; border-radius: 1px; }
.evo-footer h5 { color: #fff; font-size: .68rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 18px; font-family: 'Inter', sans-serif; }
.evo-footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.evo-footer ul a, .evo-footer ul li { color: rgba(255,255,255,.82); font-size: .85rem; transition: all .22s; }
.evo-footer ul a:hover { color: #fff; padding-left: 4px; }
.evo-footer-social { display: flex; gap: 10px; margin-top: 18px; }
.evo-footer-social a { width: 38px; height: 38px; border-radius: 9px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,.15); transition: all .22s; }
.evo-footer-social a:hover { background: #fff; transform: translateY(-3px); }
.evo-footer-social a svg { width: 17px; height: 17px; fill: #fff; transition: fill .22s; }
.evo-footer-social a:hover svg { fill: var(--accent); }
.evo-footer-bottom { border-top: 1px solid rgba(255,255,255,.2); background: rgba(0,0,0,.08); }
.evo-footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; padding: 18px 0; }
.evo-footer-bottom-inner span, .evo-footer-bottom-inner a { color: rgba(255,255,255,.7); font-size: .75rem; }
.evo-footer-bottom-inner a:hover { color: #fff; }
.evo-footer-legal { display: flex; gap: 20px; }
@media (max-width: 880px) { .evo-footer-top { grid-template-columns: 1fr 1fr; gap: 36px 32px; } }
@media (max-width: 520px) { .evo-footer-top { grid-template-columns: 1fr; } }

/* ── FLOATING WHATSAPP ── */
.evo-fab { position: fixed; bottom: 22px; right: 22px; z-index: 900; display: flex; align-items: center; gap: 10px; background: #25D366; color: #fff; padding: 13px 20px 13px 16px; border-radius: 999px; box-shadow: 0 10px 28px rgba(37,211,102,.4); font-weight: 700; font-size: .84rem; transition: all .25s; }
.evo-fab:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 14px 34px rgba(37,211,102,.5); }
.evo-fab svg { width: 22px; height: 22px; fill: #fff; }
@media (max-width: 560px) { .evo-fab span { display: none; } .evo-fab { padding: 15px; border-radius: 50%; } }

/* ── REVEAL (base state = VISIBLE; animation plays from hidden, no stuck-hidden risk) ── */
.rv { opacity: 1; transform: none; }
.rv.in { animation: rvIn .7s cubic-bezier(.16,1,.3,1) both; }
.rv.in.rv-1 { animation-delay: .08s; }
.rv.in.rv-2 { animation-delay: .16s; }
.rv.in.rv-3 { animation-delay: .24s; }
.rv.in.rv-4 { animation-delay: .32s; }
@keyframes rvIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { .rv.in { animation: none; } }

/* ═══════════════════════════════════════════════════════════════
   INTERIOR PAGES (about / warranty / certifications / faq / gamma)
   ═══════════════════════════════════════════════════════════════ */

/* ── PAGE HERO ── */
.page-hero { position: relative; overflow: hidden; padding: 124px 0 72px; background: var(--bg-secondary); border-bottom: 1px solid var(--border); }
.page-hero .hero-grid { opacity: .55; }
.page-hero-inner { position: relative; z-index: 1; max-width: 820px; }
.page-hero-inner.center { margin: 0 auto; text-align: center; }
.page-hero-inner.center .eyebrow { justify-content: center; }
.page-hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.4rem); font-weight: 800; letter-spacing: -.03em; }
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero p { color: var(--ink-60); font-size: 1.06rem; line-height: 1.7; max-width: 600px; margin-top: 20px; }
.page-hero-inner.center p { margin-left: auto; margin-right: auto; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .76rem; color: var(--ink-50); margin-bottom: 22px; }
.page-hero-inner.center .breadcrumb { justify-content: center; }
.breadcrumb a { color: var(--ink-50); transition: color .2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--ink-30); }

/* ── HIGHLIGHT STAT CARDS ── */
.hl-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.hl-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 34px 30px; text-align: center; transition: transform .3s, box-shadow .3s, border-color .3s; position: relative; overflow: hidden; }
.hl-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transition: transform .35s cubic-bezier(.16,1,.3,1); }
.hl-card:hover { transform: translateY(-6px); box-shadow: 0 26px 50px -22px rgba(10,12,18,.2); border-color: var(--accent-border); }
.hl-card:hover::before { transform: scaleX(1); }
.hl-ic { width: 56px; height: 56px; border-radius: 14px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; margin: 0 auto 18px; }
.hl-ic svg { width: 28px; height: 28px; }
.hl-value { font-family: 'Exo 2', sans-serif; font-size: 2rem; font-weight: 800; color: var(--accent); letter-spacing: -.02em; margin-bottom: 6px; }
.hl-card h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: 9px; }
.hl-card p { color: var(--ink-60); font-size: .89rem; line-height: 1.65; }
@media (max-width: 900px) { .hl-grid { grid-template-columns: 1fr; } }

/* ── DETAIL BLOCKS ── */
.detail-list { max-width: 880px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 20px; }
.detail-block { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 36px 38px; transition: border-color .3s, box-shadow .3s; }
.detail-block:hover { border-color: var(--accent-border); box-shadow: 0 20px 44px -26px rgba(10,12,18,.18); }
.detail-block h3 { display: flex; align-items: center; gap: 14px; font-size: 1.2rem; font-weight: 700; margin-bottom: 14px; }
.db-ic { width: 42px; height: 42px; border-radius: 11px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.db-ic svg { width: 21px; height: 21px; }
.detail-block > p { color: var(--ink-60); font-size: .96rem; line-height: 1.7; margin-bottom: 18px; }
.detail-block ul { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; }
.detail-block ul li { position: relative; padding-left: 28px; color: var(--ink-70); font-size: .9rem; line-height: 1.5; }
.detail-block ul li::before { content: ''; position: absolute; left: 0; top: 4px; width: 17px; height: 17px; border-radius: 50%; background: var(--accent-soft); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23F47920' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5'/%3E%3C/svg%3E"); background-size: 11px; background-repeat: no-repeat; background-position: center; }
@media (max-width: 640px) { .detail-block { padding: 28px 24px; } .detail-block ul { grid-template-columns: 1fr; } }

/* ── FAQ ACCORDION ── */
.faq-wrap { max-width: 820px; margin: 52px auto 0; }
.faq-cat { font-family: 'Exo 2', sans-serif; font-size: .8rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin: 40px 0 16px; }
.faq-cat:first-child { margin-top: 0; }
.faq-item { border: 1px solid var(--border); border-radius: 14px; background: var(--bg-card); margin-bottom: 12px; overflow: hidden; transition: border-color .3s, box-shadow .3s; }
.faq-item.open { border-color: var(--accent-border); box-shadow: 0 16px 38px -24px rgba(10,12,18,.2); }
.faq-q { display: flex; align-items: center; justify-content: space-between; gap: 16px; width: 100%; padding: 22px 26px; background: none; border: none; text-align: left; font-family: 'Exo 2', sans-serif; font-size: 1.02rem; font-weight: 600; color: var(--ink-100); cursor: pointer; }
.faq-q .fq-ic { width: 30px; height: 30px; border-radius: 8px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform .3s, background .3s; }
.faq-q .fq-ic svg { width: 16px; height: 16px; }
.faq-item.open .fq-ic { transform: rotate(45deg); background: var(--accent); color: #fff; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.16,1,.3,1); }
.faq-a-inner { padding: 0 26px 24px; color: var(--ink-60); font-size: .94rem; line-height: 1.72; }

/* ── CERTIFICATION CARDS ── */
.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.cert-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; padding: 32px 28px; transition: transform .3s, box-shadow .3s, border-color .3s; }
.cert-card:hover { transform: translateY(-5px); box-shadow: 0 24px 48px -24px rgba(10,12,18,.2); border-color: var(--accent-border); }
.cert-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 13px; border-radius: 999px; background: var(--accent-soft); color: var(--accent); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.cert-card h3 { font-size: 1.12rem; font-weight: 700; margin-bottom: 10px; }
.cert-card p { color: var(--ink-60); font-size: .9rem; line-height: 1.65; }
@media (max-width: 900px) { .cert-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .cert-grid { grid-template-columns: 1fr; } }

/* ── CONTACT STRIP ── */
.contact-strip { background: var(--bg-secondary); border-top: 1px solid var(--border); }
.contact-head { text-align: center; max-width: 560px; margin: 0 auto 44px; }
.contact-head h3 { font-size: 1.7rem; font-weight: 800; margin-bottom: 12px; }
.contact-head p { color: var(--ink-60); font-size: 1rem; line-height: 1.6; }
.contact-methods { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cm-item { display: flex; align-items: center; gap: 14px; padding: 18px 26px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 13px; transition: transform .25s, box-shadow .25s, border-color .25s; min-width: 230px; }
.cm-item:hover { transform: translateY(-3px); box-shadow: 0 16px 34px -20px rgba(10,12,18,.2); border-color: var(--accent-border); }
.cm-ic { width: 46px; height: 46px; border-radius: 11px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.cm-ic svg { width: 22px; height: 22px; }
.cm-item h4 { font-size: .95rem; font-weight: 700; margin-bottom: 2px; }
.cm-item span { font-size: .82rem; color: var(--ink-50); }

/* ── ABOUT: STATS + VALUES + TIMELINE ── */
.about-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 52px; }
.about-stat { text-align: center; padding: 30px 20px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 14px; }
.about-stat b { display: block; font-family: 'Exo 2', sans-serif; font-size: clamp(1.5rem, 2.3vw, 2.1rem); font-weight: 800; color: var(--accent); letter-spacing: -.02em; white-space: nowrap; }
.about-stat span { color: var(--ink-60); font-size: .85rem; font-weight: 500; }
@media (max-width: 760px) { .about-stats { grid-template-columns: 1fr 1fr; } }

.timeline { max-width: 760px; margin: 52px auto 0; position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 13px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
.tl-item { position: relative; padding-bottom: 38px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ''; position: absolute; left: -33px; top: 4px; width: 14px; height: 14px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.tl-year { font-family: 'Exo 2', sans-serif; font-weight: 800; color: var(--accent); font-size: .9rem; letter-spacing: .04em; margin-bottom: 6px; }
.tl-item h4 { font-size: 1.08rem; font-weight: 700; margin-bottom: 6px; }
.tl-item p { color: var(--ink-60); font-size: .92rem; line-height: 1.65; }

/* ── GAMMA: PRODUCT CARDS WITH IMAGE ── */
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 52px; }
.prod-card-g { display: flex; flex-direction: column; background: var(--bg-card); border: 1px solid var(--border); border-radius: 18px; overflow: hidden; transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s, border-color .3s; }
.prod-card-g:hover { transform: translateY(-6px); box-shadow: 0 28px 56px -24px rgba(10,12,18,.24); border-color: var(--accent-border); }
.prod-card-g .media { position: relative; background: radial-gradient(ellipse at 50% 35%, #1b1f27, #0c0e12); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; padding: 22px; border-bottom: 1px solid var(--border); }
.prod-card-g .media img { max-height: 100%; width: auto; object-fit: contain; }
.prod-card-g .media .sku { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.75); }
.prod-card-g .media .badge { position: absolute; top: 14px; left: 14px; background: var(--accent); color: #fff; font-size: .62rem; font-weight: 800; letter-spacing: .1em; padding: 5px 11px; border-radius: 999px; }
.prod-card-g .media .sku { position: absolute; bottom: 14px; right: 14px; font-family: 'Exo 2', sans-serif; font-size: .66rem; font-weight: 700; letter-spacing: .06em; color: var(--ink-50); background: var(--bg-card); border: 1px solid var(--border); padding: 4px 9px; border-radius: 6px; }
.prod-card-g .body { padding: 24px 24px 8px; flex: 1; }
.prod-card-g .body h4 { font-size: 1.18rem; font-weight: 700; margin-bottom: 8px; }
.prod-card-g .range { display: inline-block; font-family: 'Exo 2', sans-serif; font-size: .74rem; font-weight: 700; color: var(--accent); background: var(--accent-soft); padding: 4px 11px; border-radius: 6px; margin-bottom: 12px; }
.prod-card-g .body p { color: var(--ink-60); font-size: .9rem; line-height: 1.6; }
.prod-card-g .foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 24px 24px; margin-top: 8px; border-top: 1px solid var(--border); }
.prod-card-g .price { font-family: 'Exo 2', sans-serif; font-weight: 800; font-size: 1.3rem; color: var(--ink-100); letter-spacing: -.02em; }
.prod-card-g .price span { display: block; font-family: 'Inter', sans-serif; font-size: .68rem; font-weight: 500; color: var(--ink-50); letter-spacing: .02em; }
.prod-card-g .btn-sm { color: var(--accent); font-size: .78rem; font-weight: 700; white-space: nowrap; transition: gap .25s; }
@media (max-width: 900px) { .prod-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .prod-grid { grid-template-columns: 1fr; } }

/* ── GAMMA: SPECS TABLE + FEATURES ── */
.specs-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 22px; margin-top: 48px; }
.specs-table { background: var(--bg-card); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
.specs-table .row { display: flex; justify-content: space-between; gap: 18px; padding: 16px 24px; border-bottom: 1px solid var(--border); }
.specs-table .row:last-child { border-bottom: none; }
.specs-table .k { color: var(--ink-60); font-size: .88rem; }
.specs-table .v { color: var(--ink-100); font-weight: 600; font-size: .88rem; text-align: right; font-family: 'Exo 2', sans-serif; }
.feat-list { list-style: none; background: var(--accent-soft); border: 1px solid var(--accent-border); border-radius: 16px; padding: 26px 28px; display: flex; flex-direction: column; gap: 14px; }
.feat-list li { position: relative; padding-left: 28px; color: var(--ink-80); font-size: .9rem; line-height: 1.45; }
.feat-list li::before { content: ''; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%; background: var(--accent); background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M4.5 12.75l6 6 9-13.5'/%3E%3C/svg%3E"); background-size: 11px; background-repeat: no-repeat; background-position: center; }
@media (max-width: 820px) { .specs-grid { grid-template-columns: 1fr; } }

/* ── GAMMA: APPLICATIONS GRID ── */
.apps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 48px; }
.app-card { display: flex; align-items: center; gap: 16px; padding: 22px 24px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 13px; transition: transform .25s, border-color .25s, box-shadow .25s; }
.app-card:hover { transform: translateY(-3px); border-color: var(--accent-border); box-shadow: 0 16px 34px -22px rgba(10,12,18,.2); }
.app-card .num { font-family: 'Exo 2', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--accent); background: var(--accent-soft); width: 42px; height: 42px; border-radius: 11px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.app-card .t { font-weight: 600; font-size: .94rem; color: var(--ink-90); font-family: 'Exo 2', sans-serif; }
@media (max-width: 760px) { .apps-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 460px) { .apps-grid { grid-template-columns: 1fr; } }

/* ── GAMMA: OTHER RANGES ── */
.other-ranges { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 44px; }
.other-range { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 20px 22px; background: var(--bg-card); border: 1px solid var(--border); border-radius: 13px; font-family: 'Exo 2', sans-serif; font-weight: 700; font-size: .94rem; color: var(--ink-90); transition: all .25s; }
.other-range:hover { border-color: var(--accent-border); color: var(--accent); transform: translateY(-3px); box-shadow: 0 16px 34px -22px rgba(10,12,18,.2); }
.other-range .arrow { color: var(--accent); transition: transform .25s; }
.other-range:hover .arrow { transform: translateX(4px); }
@media (max-width: 760px) { .other-ranges { grid-template-columns: 1fr 1fr; } }

/* ── COOKIE BANNER ── */
.evo-cookie { position: fixed; bottom: 0; left: 0; right: 0; z-index: 950; background: var(--bg-card); border-top: 1px solid var(--border); backdrop-filter: blur(16px); padding: 18px 32px; display: none; align-items: center; justify-content: center; gap: 18px; flex-wrap: wrap; box-shadow: 0 -8px 30px -16px rgba(10,12,18,.2); }
.evo-cookie.show { display: flex; }
.evo-cookie p { color: var(--ink-60); font-size: .82rem; line-height: 1.55; max-width: 560px; }
.evo-cookie p a { color: var(--accent); text-decoration: underline; }
.evo-cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.ck-accept { padding: 10px 22px; background: var(--accent); color: #fff; font-weight: 700; font-size: .74rem; border: none; border-radius: 8px; cursor: pointer; transition: background .22s; }
.ck-accept:hover { background: var(--accent-hover); }
.ck-reject { padding: 10px 22px; background: transparent; color: var(--ink-60); font-weight: 600; font-size: .74rem; border: 1px solid var(--border); border-radius: 8px; cursor: pointer; transition: all .22s; }
.ck-reject:hover { color: var(--ink-100); border-color: var(--ink-30); }
