/* ============================================================
   NEXIGEN INDUSTRIAL — Design System
   ============================================================ */

/* ---------- Custom Properties ---------- */
:root {
  --bg:           #070711;
  --bg-2:         #0c0c1a;
  --bg-3:         #111127;
  --surface:      #13132a;
  --surface-2:    #1a1a35;
  --border:       rgba(255,255,255,0.06);
  --border-glow:  rgba(0,212,255,0.2);

  --cyan:         #00d4ff;
  --cyan-dim:     rgba(0,212,255,0.12);
  --blue:         #4060ff;
  --blue-dim:     rgba(64,96,255,0.12);

  --text:         #e8e8f0;
  --text-muted:   #6b6b8a;
  --text-dim:     #9898b8;

  --font-main:    'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out:   cubic-bezier(0.4, 0, 0.2, 1);

  --radius:       12px;
  --radius-lg:    20px;
  --radius-xl:    32px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul, ol { list-style: none; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
@media(max-width:768px){ .container{ padding: 0 20px; } }

/* ---------- Utility ---------- */
.dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  margin-right: 10px;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100%{ box-shadow: 0 0 0 0 rgba(0,212,255,0.4); }
  50%{ box-shadow: 0 0 0 6px rgba(0,212,255,0); }
}
.outline-text {
  -webkit-text-stroke: 1px var(--cyan);
  color: transparent;
}
.hide-mobile{ display: inline; }
@media(max-width:640px){ .hide-mobile{ display: none; } }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all 0.3s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }

.btn--primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #fff;
  box-shadow: 0 0 30px rgba(0,212,255,0.25), 0 4px 20px rgba(0,0,0,0.4);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 50px rgba(0,212,255,0.4), 0 8px 30px rgba(0,0,0,0.5);
}
.btn--ghost {
  background: rgba(255,255,255,0.04);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: var(--border-glow);
  background: rgba(0,212,255,0.06);
  transform: translateY(-2px);
}
.btn--outline {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 10px 20px;
  font-size: 0.85rem;
}
.btn--outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
}
.btn--sm { padding: 10px 20px; font-size: 0.85rem; }
.btn--lg { padding: 18px 40px; font-size: 1rem; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 20px 0;
  transition: all 0.4s var(--ease-out-expo);
}
.nav.scrolled {
  padding: 12px 0;
  background: rgba(7,7,17,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  flex-shrink: 0;
}
.nav__links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.25s;
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--cyan);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-out-expo);
}
.nav__links a:hover { color: var(--text); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  margin-left: auto;
}
.nav__burger span {
  display: block;
  width: 24px; height: 1.5px;
  background: var(--text);
  transition: all 0.3s;
}
.nav__burger.active span:nth-child(1){ transform: translateY(6.5px) rotate(45deg); }
.nav__burger.active span:nth-child(2){ opacity: 0; }
.nav__burger.active span:nth-child(3){ transform: translateY(-6.5px) rotate(-45deg); }
@media(max-width:900px){
  .nav__links, .nav .btn--outline{ display: none; }
  .nav__burger{ display: flex; }
}
/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 99;
  background: rgba(7,7,17,0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out-expo);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu__link {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: color 0.25s;
}
.mobile-menu__link:hover { color: var(--cyan); }

/* ============================================================
   SECTION SHARED STYLES
   ============================================================ */
.section-eyebrow {
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 20px;
}
.section-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 20px;
}
.section-title--sm { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.section-sub {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 560px;
}
.section-header { margin-bottom: 64px; }
.section-header--center { text-align: center; }
.section-header--center .section-eyebrow { justify-content: center; }
.section-header--center .section-sub { margin: 0 auto; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-card {
  opacity: 0;
  transform: translateY(50px) scale(0.97);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.reveal-card.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal-step {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.7s var(--ease-out-expo), transform 0.7s var(--ease-out-expo);
}
.reveal-step.visible {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.35s; }

/* ============================================================
   01 · HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--bg);
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  z-index: 0;
}
/* Ambient orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  animation: float-orb 8s ease-in-out infinite;
}
.hero__orb--1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,0.12) 0%, transparent 70%);
  top: -200px; left: -100px;
  animation-delay: 0s;
}
.hero__orb--2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(64,96,255,0.15) 0%, transparent 70%);
  bottom: -150px; right: -100px;
  animation-delay: -3s;
}
.hero__orb--3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: -6s;
}
@keyframes float-orb {
  0%,100%{ transform: translate(0,0); }
  33%{ transform: translate(30px, -30px); }
  66%{ transform: translate(-20px, 20px); }
}
/* Grid overlay */
.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,212,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,212,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 75%);
}
/* Content */
/* ── Split Layout */
.hero__split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  max-width: 1320px;
  padding: 130px 60px 80px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  .hero__split { grid-template-columns: 1fr; padding: 120px 32px 70px; text-align: center; }
  .hero__product { order: -1; }
}
@media (max-width: 600px) {
  .hero__split { padding: 100px 20px 60px; gap: 40px; }
}

/* ── Content */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: left;
  padding: 0;
  max-width: none;
}
@media (max-width: 1024px) { .hero__content { text-align: center; } }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 28px;
  padding: 8px 16px;
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 100px;
  background: rgba(0,212,255,0.04);
  backdrop-filter: blur(8px);
}
.hero__headline {
  font-family: var(--font-main);
  font-size: clamp(2.6rem, 5.5vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 24px;
}
.hero__headline em {
  font-style: normal;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 500px;
}
@media (max-width: 1024px) { .hero__sub { margin-left: auto; margin-right: auto; } }

.hero__actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
@media (max-width: 1024px) { .hero__actions { justify-content: center; } }

/* Cert strip */
.hero__certs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
@media (max-width: 1024px) { .hero__certs { justify-content: center; } }
.hero__certs span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 100px;
  color: var(--text-muted);
  background: rgba(0,212,255,0.03);
}

/* ──────────────────────────────────────────────
   HERO PRODUCT VISUAL
   ────────────────────────────────────────────── */
.hero__product {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.hero__product-glow {
  position: absolute;
  width: 120%;
  height: 120%;
  top: -10%; left: -10%;
  background: radial-gradient(ellipse at center, rgba(0,212,255,0.08) 0%, rgba(64,96,255,0.06) 40%, transparent 70%);
  pointer-events: none;
  filter: blur(20px);
  animation: float-orb 8s ease-in-out infinite;
}
.hero__product-frame {
  position: relative;
  width: 100%;
  background: rgba(7,7,17,0.8);
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 14px;
  overflow: visible;
  box-shadow:
    0 0 0 1px rgba(0,212,255,0.05),
    0 24px 60px rgba(0,0,0,0.6),
    0 0 60px rgba(0,212,255,0.06);
  animation: hero-float 6s ease-in-out infinite;
  backdrop-filter: blur(10px);
}
@keyframes hero-float {
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}
/* Top window bar */
.hero__pf-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(255,255,255,0.02);
  border-radius: 14px 14px 0 0;
}
.hero__pf-dot {
  display: block;
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
}
.hero__pf-label {
  font-family: var(--font-main);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
  margin-left: 8px;
  flex: 1;
}
.hero__pf-status {
  font-size: 0.65rem;
  font-weight: 700;
  color: #22c55e;
  letter-spacing: 0.06em;
}
.hero__pf-svg {
  display: block;
  width: 100%;
  height: auto;
  padding: 12px;
}
.hero__pf-img {
  display: block;
  width: 100%;
  max-width: 380px;
  height: auto;
  margin: 0 auto;
  padding: 20px;
  object-fit: contain;
}
/* Annotation cards on the product */
.hero__ann {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(13,13,26,0.9);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 10px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  z-index: 3;
  white-space: nowrap;
  animation: ann-float 5s ease-in-out infinite;
}
.hero__ann--a { top: 16%; right: -24px; animation-delay: 0s; }
.hero__ann--b { top: 44%; right: -30px; animation-delay: -1.8s; }
.hero__ann--c { bottom: 18%; right: -20px; animation-delay: -3.5s; }
@keyframes ann-float {
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-6px); }
}
@media (max-width: 1200px) { .hero__ann { display: none; } }
.hero__ann-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}
.hero__ann-dot--blue { background: var(--blue); box-shadow: 0 0 8px var(--blue); }
.hero__ann-dot--green { background: #22c55e; box-shadow: 0 0 8px #22c55e; }
.hero__ann strong {
  display: block;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.hero__ann span {
  display: block;
  font-size: 0.66rem;
  color: var(--text-muted);
  margin-top: 2px;
}
/* Product label below frame */
.hero__product-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.hero__product-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cyan);
  transition: gap 0.3s var(--ease-out-expo), opacity 0.25s;
}
.hero__product-cta:hover { gap: 10px; opacity: 0.8; }
.hero__product-label > span {
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.6;
}
/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 40px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  animation: fade-in-up 1s 1.5s both;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cyan), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}
@keyframes scroll-line {
  0%{ transform: scaleY(1); transform-origin: top; }
  50%{ transform: scaleY(0.3); transform-origin: bottom; }
  100%{ transform: scaleY(1); transform-origin: top; }
}
/* Corner decorations */
.hero__corner {
  position: absolute;
  width: 60px; height: 60px;
  z-index: 2;
  pointer-events: none;
}
.hero__corner--tl {
  top: 100px; left: 40px;
  border-top: 1px solid var(--border-glow);
  border-left: 1px solid var(--border-glow);
}
.hero__corner--br {
  bottom: 80px; right: 40px;
  border-bottom: 1px solid var(--border-glow);
  border-right: 1px solid var(--border-glow);
}
/* Legacy badges — hidden (replaced by product annotations) */
.hero__badge { display: none; }
@media(max-width:1024px){ .hero__corner { display: none; } }
@keyframes fade-in-up {
  from{ opacity: 0; transform: translateX(-50%) translateY(20px); }
  to  { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ============================================================
   02 · BRAND / MANIFESTO
   ============================================================ */
.brand {
  background: var(--bg);
  padding: 80px 0 100px;
  overflow: hidden;
}

/* Arrow navigation — bottom */
.brand__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  position: relative;
  z-index: 2;
}
.brand__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.2);
  background: rgba(0,212,255,0.04);
  color: var(--cyan);
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  flex-shrink: 0;
}
.brand__nav-btn:hover:not(:disabled) {
  background: rgba(0,212,255,0.12);
  border-color: rgba(0,212,255,0.5);
  transform: scale(1.08);
  box-shadow: 0 0 18px rgba(0,212,255,0.15);
}
.brand__nav-btn:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}
.brand__nav-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.brand__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.3);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s var(--ease-out-expo);
}
.brand__dot--active {
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: 0 0 8px rgba(0,212,255,0.5);
  transform: scale(1.3);
  position: relative;
}
/* Autoplay progress ring on active dot */
.brand__dot--active::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  border-top-color: var(--cyan);
  animation: dot-spin 4s linear forwards;
}
@keyframes dot-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.brand__sticky-wrap {
  overflow: hidden;
  width: 100%;
}
.brand__track {
  display: flex;
  gap: 0;
  width: 100%;
  will-change: transform;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.brand__panel {
  flex-shrink: 0;
  width: 100%;
  min-width: 100%;
  min-height: 52vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 80px;
  position: relative;
}
.brand__panel--intro { background: var(--bg); }
.brand__panel--mid {
  background: linear-gradient(135deg, var(--bg-2), var(--bg));
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
}
.brand__panel--end { background: var(--bg-3); }
.brand__panel-inner {
  position: relative;
  z-index: 1;
  max-width: 900px;
  width: 100%;
}
.brand__overline {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 24px;
}
.brand__big-text {
  font-family: var(--font-main);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--text);
}
.brand__big-text--outline {
  -webkit-text-stroke: 1.5px rgba(0,212,255,0.5);
  color: transparent;
}
.brand__body {
  margin-top: 32px;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  max-width: 480px;
}
.brand__deco {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 400px; height: 400px;
  opacity: 0.6;
  animation: spin-slow 40s linear infinite;
}
@keyframes spin-slow { to{ transform: translateY(-50%) rotate(360deg); } }
.brand__metrics-row {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.brand__metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.brand__metric strong {
  font-family: var(--font-main);
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.brand__metric span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
/* Mobile: tighter padding */
@media(max-width:768px){
  .brand__panel { padding: 48px 24px; min-height: unset; }
  .brand__deco { display: none; }
  .brand__metrics-row { gap: 24px; }
  .brand__metric strong { font-size: 2rem; }
}

/* ============================================================
   03 · PRODUCTS — Tek Ürün Showcase
   ============================================================ */
.products {
  padding: 100px 0 80px;
  background: var(--bg-2);
  position: relative;
  overflow: hidden;
}
.products::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

/* Eyebrow */
.pshow__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 48px;
}

/* Ambient glow */
.pshow__glow {
  position: absolute;
  width: 800px; height: 600px;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse, rgba(0,212,255,0.06) 0%, rgba(64,96,255,0.04) 40%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  animation: float-orb 10s ease-in-out infinite;
}

/* ── Split Layout ── */
.pshow__split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 0;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
@media(max-width:960px){
  .pshow__split { grid-template-columns: 1fr; padding: 0 20px; }
  .pshow__info { order: -1; padding-bottom: 40px; }
}

/* Visual side */
.pshow__visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 20px 20px 0;
}
.pshow__visual-inner {
  position: relative;
  width: 100%;
  max-width: 520px;
}
/* Decorative rings */
.pshow__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,212,255,0.07);
  pointer-events: none;
  animation: spin-slow 60s linear infinite;
}
.pshow__ring--1 { width: 560px; height: 560px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.pshow__ring--2 { width: 420px; height: 420px; top: 50%; left: 50%; transform: translate(-50%,-50%); animation-direction: reverse; animation-duration: 40s; }

.pshow__svg {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.7)) drop-shadow(0 0 40px rgba(0,212,255,0.08));
  animation: hero-float 7s ease-in-out infinite;
}
.pshow__img {
  width: 100%;
  max-width: 450px;
  height: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 24px 60px rgba(0,0,0,0.7)) drop-shadow(0 0 40px rgba(0,212,255,0.08));
  animation: hero-float 7s ease-in-out infinite;
}

/* Floating chips */
.pshow__chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: rgba(10,10,26,0.88);
  border: 1px solid rgba(0,212,255,0.2);
  border-radius: 100px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.4);
  white-space: nowrap;
  animation: ann-float 5s ease-in-out infinite;
}
.pshow__chip--a { top: 12%; right: -8px; animation-delay: 0s; }
.pshow__chip--b { top: 46%; right: -16px; animation-delay: -2s; }
.pshow__chip--c { bottom: 16%; right: -4px; animation-delay: -4s; }
@media(max-width:1100px){ .pshow__chip { display: none; } }

.pshow__chip-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  flex-shrink: 0;
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse-dot 2s ease-in-out infinite;
}
.pshow__chip-dot--blue  { background: var(--blue); box-shadow: 0 0 8px var(--blue); }
.pshow__chip-dot--green { background: #22c55e; box-shadow: 0 0 8px #22c55e; }
.pshow__chip strong {
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}
.pshow__chip em {
  font-style: normal;
  font-size: 0.7rem;
  color: var(--text-muted);
}

/* Info side */
.pshow__info {
  padding: 40px 20px 40px 60px;
}
@media(max-width:960px){ .pshow__info { padding: 0; } }

.pshow__model-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin-bottom: 16px;
  opacity: 0.8;
}
.pshow__title {
  font-family: var(--font-main);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 20px;
}
.pshow__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 440px;
}

/* Spec grid — 2×2 */
.pshow__specs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
}
.pshow__spec {
  background: var(--surface);
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: background 0.25s;
}
.pshow__spec:hover { background: rgba(0,212,255,0.04); }
.pshow__spec strong {
  font-family: var(--font-main);
  font-size: 1.4rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
}
.pshow__spec span {
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

/* Cert badges */
.pshow__certs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 32px;
}
.pshow__certs span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 100px;
  color: var(--text-muted);
  background: rgba(0,212,255,0.03);
}

/* CTA buttons */
.pshow__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ── Feature strip — bottom ── */
.pshow__features {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
  margin-top: 64px;
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
@media(max-width:900px){
  .pshow__features { grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border); border-radius: 16px; overflow: hidden; border: 1px solid var(--border); margin-top: 48px; padding: 0; }
  .pshow__feature-div { display: none; }
}
@media(max-width:500px){ .pshow__features { grid-template-columns: 1fr; } }

.pshow__feature {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px 24px;
  transition: background 0.25s;
}
@media(max-width:900px){ .pshow__feature { background: var(--surface); } }
.pshow__feature:hover { background: rgba(0,212,255,0.03); }
.pshow__feature-div {
  width: 1px;
  height: 60px;
  background: var(--border);
}
.pshow__feature-icon {
  width: 32px; height: 32px;
  color: var(--cyan);
  margin-bottom: 4px;
}
.pshow__feature strong {
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
}
.pshow__feature span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ============================================================
   04 · PROCESS / TECHNOLOGY
   ============================================================ */
.process {
  padding: 120px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.process__bg-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(0,212,255,0.02) 1px, transparent 1px);
  background-size: 100% 80px;
  pointer-events: none;
}

/* ── New card grid layout ── */
.process__cards {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 56px;
}
@media(max-width:960px){
  .process__cards { flex-wrap: wrap; gap: 20px; }
  .process__arrow  { display: none; }
}

/* Arrow between cards */
.process__arrow {
  flex-shrink: 0;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}
.process__arrow svg { width: 40px; height: auto; }

/* Individual card */
.process__card {
  flex: 1;
  min-width: 0;
  background: var(--bg-3);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s var(--ease-out-expo);
  cursor: default;
}
.process__card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 0 40px rgba(0,212,255,0.07), 0 16px 40px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}
@media(max-width:960px){
  .process__card { flex: 0 0 calc(50% - 10px); }
}
@media(max-width:540px){
  .process__card { flex: 0 0 100%; }
}

/* Visual area — top */
.process__card-visual {
  width: 100%;
  overflow: hidden;
  background: #0c0c1e;
  border-bottom: 1px solid var(--border);
  transition: filter 0.4s;
}
.process__card-visual svg {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s var(--ease-out-expo);
}
.process__card:hover .process__card-visual svg {
  transform: scale(1.04);
}

/* Text area — bottom */
.process__card-body {
  padding: 20px 22px 22px;
}
.process__card-num {
  display: inline-block;
  font-family: var(--font-main);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--cyan);
  margin-bottom: 8px;
}
.process__card-body h3 {
  font-family: var(--font-main);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}
.process__card-body p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.process__card-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(0,212,255,0.06);
  border: 1px solid rgba(0,212,255,0.15);
  color: var(--text-muted);
}
.process__card-tag--green {
  background: rgba(34,197,94,0.08);
  border-color: rgba(34,197,94,0.2);
  color: #22c55e;
}

/* ============================================================
   05 · TRUST
   ============================================================ */
.trust {
  padding: 140px 0;
  background: var(--bg-2);
  position: relative;
}
.trust::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}
/* Counters */
.trust__counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 80px;
}
@media(max-width:768px){ .trust__counters{ grid-template-columns: 1fr 1fr; } }
@media(max-width:440px){ .trust__counters{ grid-template-columns: 1fr; } }
.trust__counter {
  background: var(--surface);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.trust__counter strong {
  font-family: var(--font-main);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.trust__counter span {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.trust__divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin-bottom: 80px;
}
/* Logos */
.trust__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
}
.logo-item {
  opacity: 0.35;
  transition: opacity 0.4s, filter 0.4s;
  filter: grayscale(1);
  cursor: pointer;
  height: 40px;
  display: flex;
  align-items: center;
}
.logo-item svg { height: 40px; width: auto; }
.logo-item:hover {
  opacity: 0.9;
  filter: grayscale(0);
}
/* Testimonial */
.trust__quote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: var(--surface);
  position: relative;
}
.trust__quote::before {
  content: '"';
  position: absolute;
  top: -30px; left: 48px;
  font-size: 8rem;
  color: var(--cyan);
  opacity: 0.15;
  font-family: serif;
  line-height: 1;
}
.trust__quote p {
  font-family: var(--font-main);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.trust__quote footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust__quote footer strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cyan);
}
.trust__quote footer span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================================
   06 · FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
}
.footer__top {
  padding: 80px 0;
}
.footer__top-inner {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.2fr;
  gap: 60px;
  align-items: start;
}
@media(max-width:960px){
  .footer__top-inner{ grid-template-columns: 1fr 1fr; }
  .footer__brand{ grid-column: 1 / -1; }
}
@media(max-width:600px){
  .footer__top-inner{ grid-template-columns: 1fr; }
}
.footer__logo { margin-bottom: 20px; }
.footer__tagline {
  font-family: var(--font-main);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 28px;
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__social-link {
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all 0.3s;
}
.footer__social-link svg { width: 16px; height: 16px; }
.footer__social-link:hover {
  color: var(--cyan);
  border-color: var(--border-glow);
  background: var(--cyan-dim);
}
/* Nav */
.footer__nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media(max-width:600px){ .footer__nav{ grid-template-columns: 1fr 1fr; } }
.footer__nav-col h4 {
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}
.footer__nav-col a {
  display: block;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  transition: color 0.25s;
}
.footer__nav-col a:hover { color: var(--cyan); }
/* Newsletter */
.footer__newsletter h4 {
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}
.footer__newsletter > p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer__form {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.footer__form input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.3s;
  font-family: var(--font-body);
}
.footer__form input::placeholder { color: var(--text-muted); }
.footer__form input:focus { border-color: var(--border-glow); }
.footer__form .btn { flex-shrink: 0; padding: 12px 16px; }
.footer__privacy {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.footer__privacy a { color: var(--text-dim); text-decoration: underline; }
/* Bottom */
.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer__bottom p {
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer__bottom-links {
  display: flex;
  gap: 24px;
}
.footer__bottom-links a {
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: color 0.25s;
}
.footer__bottom-links a:hover { color: var(--cyan); }

/* ============================================================
   SCROLL PROGRESS BAR
   ============================================================ */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  z-index: 200;
  transform-origin: left;
  transform: scaleX(0);
  box-shadow: 0 0 8px var(--cyan);
}

/* ============================================================
   CURSOR GLOW (desktop only)
   ============================================================ */
.cursor-glow {
  position: fixed;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.04) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
  transform: translate(-50%, -50%);
  transition: transform 0.1s linear;
}

/* ============================================================
   MODALS — Bilgilendirme Sayfaları
   ============================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5,5,16,0.75);
  backdrop-filter: blur(6px);
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease-in-out);
}
.modal-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

/* <dialog> reset & custom style */
.info-modal {
  position: fixed;
  top: 50%; left: 50%;
  transform: translate(-50%, -48%) scale(0.97);
  width: min(680px, 94vw);
  max-height: 82vh;
  background: #0e0e22;
  border: 1px solid rgba(0,212,255,0.15);
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.7), 0 0 60px rgba(0,212,255,0.05);
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  z-index: 501;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease-out-expo), transform 0.35s var(--ease-out-expo);
  /* Override browser dialog defaults */
  margin: 0;
  inset: unset;
  top: 50%; left: 50%;
}
.info-modal[open],
.info-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
/* Remove browser default dialog backdrop */
.info-modal::backdrop { display: none; }

/* Header */
.info-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  flex-shrink: 0;
}
.info-modal__header h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.info-modal__header h2 svg { color: var(--cyan); flex-shrink: 0; }
.info-modal__close {
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  flex-shrink: 0;
}
.info-modal__close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--text);
  border-color: rgba(255,255,255,0.16);
}

/* Scrollable body */
.info-modal__body {
  overflow-y: auto;
  padding: 28px 28px 32px;
  flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(0,212,255,0.2) transparent;
}
.info-modal__body::-webkit-scrollbar { width: 4px; }
.info-modal__body::-webkit-scrollbar-track { background: transparent; }
.info-modal__body::-webkit-scrollbar-thumb { background: rgba(0,212,255,0.2); border-radius: 4px; }

.info-modal__date {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.info-modal__body h3 {
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 24px 0 10px;
}
.info-modal__body h3:first-of-type { margin-top: 0; }
.info-modal__body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 8px;
}
.info-modal__body ul {
  list-style: none;
  padding: 0;
  margin-bottom: 8px;
}
.info-modal__body ul li {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  padding: 5px 0 5px 18px;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.info-modal__body ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-size: 1rem;
  line-height: 1.5;
}

/* Cookie table */
.cookie-table { margin: 12px 0 8px; border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; overflow: hidden; }
.cookie-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 2fr;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.8rem;
}
.cookie-row:last-child { border-bottom: none; }
.cookie-row--head {
  background: rgba(0,212,255,0.05);
  font-weight: 700;
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.cookie-row span { padding: 10px 14px; color: var(--text-muted); }
.cookie-row--head span { color: var(--text-dim); }
.cookie-row code { font-family: monospace; font-size: 0.76rem; color: var(--cyan); }

.c-badge-green { color: #22c55e !important; font-weight: 600; }
.c-badge-blue  { color: var(--blue) !important; font-weight: 600; }
.c-badge-amber { color: #f59e0b !important; font-weight: 600; }

.cookie-actions {
  display: flex;
  gap: 10px;
  margin: 16px 0 8px;
  flex-wrap: wrap;
}
