/* =============================================
   CLEXYT — DARK LUXURY FUTURISTIC STUDIO
   Folding pamphlet • Interactive robot • Minimal
   ============================================= */

/* === RESET === */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

/* === TOKENS === */
:root {
  --ink:      #0a0a10;
  --surface:  #111118;
  --card:     #16161f;
  --border:   rgba(255,255,255,0.07);
  --cyan:     #00f0e0;
  --amber:    #f0a500;
  --muted:    rgba(255,255,255,0.35);
  --text:     rgba(255,255,255,0.88);
  --font-h:   'Syne', sans-serif;
  --font-m:   'Space Mono', monospace;
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h:    64px;
}

/* === BASE === */
body {
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-h);
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }

/* === CUSTOM CURSOR === */
.c-dot, .c-ring {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  will-change: transform;
}
.c-dot {
  width: 6px; height: 6px;
  background: var(--cyan);
  box-shadow: 0 0 12px var(--cyan), 0 0 24px rgba(0,240,224,0.4);
  transition: width .15s, height .15s, background .2s;
  top: 0; left: 0;
}
.c-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(0,240,224,0.5);
  transition: width .25s var(--ease), height .25s var(--ease), border-color .2s, opacity .2s;
  top: 0; left: 0;
}
body:has(.choice-left:hover) .c-dot,
body:has(.choice-right:hover) .c-dot { width: 10px; height: 10px; }
body:has(.choice-left:hover) .c-ring,
body:has(.choice-right:hover) .c-ring { width: 56px; height: 56px; border-color: var(--cyan); }

/* === STARFIELD === */
#starfield {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

/* === NAV === */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  z-index: 1000;
  background: rgba(10,10,16,0.6);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: background .3s;
}
nav.scrolled { background: rgba(10,10,16,0.95); }

.nav-logo {
  font-family: var(--font-m);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: .4rem;
}
.nav-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.4} }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: .85rem;
  letter-spacing: .06em;
  color: var(--muted);
}
.nav-links a { transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.nav-cta {
  padding: .45rem 1.2rem;
  border: 1px solid rgba(0,240,224,0.35);
  border-radius: 3px;
  color: var(--cyan) !important;
  font-family: var(--font-m);
  font-size: .78rem;
  letter-spacing: .1em;
  transition: background .2s, border-color .2s !important;
}
.nav-cta:hover { background: rgba(0,240,224,0.08) !important; border-color: var(--cyan) !important; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: .5rem;
}
.burger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: all .3s;
}

.mob-nav {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(10,10,16,0.97);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  padding: 1.5rem 2rem;
  gap: 1.5rem;
  font-size: 1.1rem;
  z-index: 999;
  transform: translateY(-110%);
  transition: transform .4s var(--ease);
  border-bottom: 1px solid var(--border);
}
.mob-nav.open { transform: translateY(0); }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* Fold decoration lines */
.fold-line {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.04) 30%, rgba(255,255,255,0.04) 70%, transparent);
  pointer-events: none;
  z-index: 0;
}
.fold-line-1 { left: 33.33%; }
.fold-line-2 { left: 66.66%; }

.hero-inner {
  flex: 1;
  display: flex;
  align-items: stretch;
  min-height: calc(100vh - var(--nav-h));
  position: relative;
  z-index: 1;
}

/* === CHOICE PANELS === */
.choice-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  cursor: none;
  overflow: hidden;
  transition: flex .6s var(--ease), background .4s;
}
.choice-panel:hover { flex: 1.3; }

.panel-bg {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s;
}
.panel-bg-left {
  background: radial-gradient(ellipse at 30% 50%, rgba(0,240,224,0.07) 0%, transparent 70%);
}
.panel-bg-right {
  background: radial-gradient(ellipse at 70% 50%, rgba(240,165,0,0.07) 0%, transparent 70%);
}
.choice-panel:hover .panel-bg { opacity: 1; }

.panel-content {
  text-align: center;
  padding: 3rem 2rem;
  z-index: 2;
  pointer-events: none;
}
.panel-label {
  font-family: var(--font-m);
  font-size: .7rem;
  letter-spacing: .18em;
  color: var(--muted);
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.choice-left .panel-label { color: rgba(0,240,224,0.5); }
.choice-right .panel-label { color: rgba(240,165,0,0.5); }

.panel-content h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: .8rem;
  opacity: .9;
}
.panel-content p {
  font-size: .8rem;
  color: var(--muted);
  font-family: var(--font-m);
  letter-spacing: .04em;
  margin-bottom: 1.2rem;
}
.panel-price-hint {
  font-family: var(--font-m);
  font-size: .8rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
}
.choice-left .panel-price-hint strong { color: var(--cyan); }
.choice-right .panel-price-hint strong { color: var(--amber); }

.panel-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-m);
  font-size: .78rem;
  letter-spacing: .12em;
  padding: .6rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 2px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.choice-left .panel-cta { border-color: rgba(0,240,224,0.4); color: var(--cyan); }
.choice-right .panel-cta { border-color: rgba(240,165,0,0.4); color: var(--amber); }
.choice-panel:hover .panel-cta { opacity: 1; transform: translateY(0); }

.arrow-icon { display: inline-block; transition: transform .2s; }
.choice-panel:hover .arrow-icon { transform: translateX(4px); }

/* Fold edge lines on panels */
.panel-fold-edge {
  position: absolute;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.12) 30%, rgba(255,255,255,0.12) 70%, transparent);
}
.panel-fold-edge-left { right: 0; }
.panel-fold-edge-right { left: 0; }

/* === ROBOT STAGE === */
.robot-stage {
  width: 280px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
  padding: 2rem 0;
}

.robo-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* === ROBOT === */
.robot-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  animation: robotFloat 4s ease-in-out infinite;
  will-change: transform;
}
@keyframes robotFloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* HEAD */
.rb-head {
  width: 80px; height: 72px;
  background: var(--card);
  border: 1px solid rgba(0,240,224,0.2);
  border-radius: 14px 14px 10px 10px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -4px;
  transition: transform .15s ease-out;
  will-change: transform;
  box-shadow: 0 0 30px rgba(0,240,224,0.08);
}
.rb-head-glow {
  position: absolute;
  inset: -4px;
  border-radius: 18px 18px 14px 14px;
  background: radial-gradient(ellipse at 50% 40%, rgba(0,240,224,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.rb-antenna {
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 14px;
  background: rgba(0,240,224,0.5);
}
.rb-antenna-tip {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 10px var(--cyan), 0 0 20px rgba(0,240,224,0.5);
  animation: antennaPulse 2s ease-in-out infinite;
}
@keyframes antennaPulse {
  0%,100%{box-shadow: 0 0 10px var(--cyan), 0 0 20px rgba(0,240,224,0.5);}
  50%{box-shadow: 0 0 16px var(--cyan), 0 0 30px rgba(0,240,224,0.7);}
}

.rb-visor {
  display: flex;
  gap: 12px;
  align-items: center;
}
.rb-eye {
  width: 18px; height: 10px;
  background: var(--cyan);
  border-radius: 10px;
  box-shadow: 0 0 12px var(--cyan), 0 0 24px rgba(0,240,224,0.4);
  position: relative;
  transition: all .2s;
  animation: eyeBlink 5s ease-in-out infinite;
}
@keyframes eyeBlink {
  0%,95%,100% { transform: scaleY(1); }
  97% { transform: scaleY(0.1); }
}

.rb-mouth {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px; height: 3px;
  background: rgba(0,240,224,0.3);
  border-radius: 2px;
}

.rb-ear {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px; height: 20px;
  background: var(--card);
  border: 1px solid rgba(0,240,224,0.2);
  border-radius: 4px;
}
.rb-ear-l { left: -9px; border-right: none; }
.rb-ear-r { right: -9px; border-left: none; }

/* BODY */
.rb-body {
  width: 90px; height: 90px;
  background: var(--card);
  border: 1px solid rgba(0,240,224,0.15);
  border-radius: 10px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.rb-chest {
  display: flex;
  gap: 6px;
}
.rb-chest-light {
  width: 8px; height: 8px;
  border-radius: 50%;
  animation: chestFlicker 2s ease-in-out infinite;
}
.rb-chest-light-1 { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); animation-delay: 0s; }
.rb-chest-light-2 { background: var(--amber); box-shadow: 0 0 8px var(--amber); animation-delay: .5s; }
.rb-chest-light-3 { background: #a855f7; box-shadow: 0 0 8px #a855f7; animation-delay: 1s; }
@keyframes chestFlicker {
  0%,100%{opacity:1} 50%{opacity:.4}
}

.rb-core {
  width: 28px; height: 14px;
  background: rgba(0,240,224,0.1);
  border: 1px solid rgba(0,240,224,0.25);
  border-radius: 3px;
}

/* ARMS */
.rb-arm {
  position: absolute;
  top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rb-arm-l {
  left: -90px;
  animation: armWaveL 3s ease-in-out infinite;
  transform-origin: top right;
}
.rb-arm-r {
  right: -90px;
  animation: armWaveR 3s ease-in-out infinite;
  transform-origin: top left;
}
@keyframes armWaveL {
  0%,100%{transform:rotate(-15deg)} 50%{transform:rotate(-25deg)}
}
@keyframes armWaveR {
  0%,100%{transform:rotate(15deg)} 50%{transform:rotate(25deg)}
}

.rb-upper-arm {
  width: 10px; height: 30px;
  background: var(--card);
  border: 1px solid rgba(0,240,224,0.15);
  border-radius: 5px;
}
.rb-elbow {
  width: 12px; height: 12px;
  background: var(--surface);
  border: 1px solid rgba(0,240,224,0.2);
  border-radius: 50%;
}
.rb-lower-arm {
  width: 10px; height: 24px;
  background: var(--card);
  border: 1px solid rgba(0,240,224,0.15);
  border-radius: 5px;
}
.rb-hand {
  width: 28px; height: 28px;
  background: var(--card);
  border: 1px solid rgba(0,240,224,0.25);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 16px rgba(0,240,224,0.15);
}
.rb-palm {
  display: flex;
  align-items: center;
  justify-content: center;
}
.rb-offer-label {
  font-family: var(--font-m);
  font-size: .38rem;
  font-weight: 700;
  letter-spacing: .08em;
  white-space: nowrap;
}
.rb-offer-label-l { color: var(--cyan); }
.rb-offer-label-r { color: var(--amber); }

/* LEGS */
.rb-legs {
  display: flex;
  gap: 10px;
  margin-top: -2px;
}
.rb-leg {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.rb-shin {
  width: 14px; height: 28px;
  background: var(--card);
  border: 1px solid rgba(0,240,224,0.12);
  border-radius: 4px;
}
.rb-foot {
  width: 18px; height: 8px;
  background: var(--card);
  border: 1px solid rgba(0,240,224,0.12);
  border-radius: 0 0 4px 4px;
}

.rb-glow-floor {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px; height: 20px;
  background: radial-gradient(ellipse, rgba(0,240,224,0.18) 0%, transparent 70%);
  filter: blur(4px);
}

/* ROBOT PROMPT */
.robot-prompt {
  margin-top: 1.4rem;
  padding: .55rem 1.1rem;
  background: rgba(0,240,224,0.05);
  border: 1px solid rgba(0,240,224,0.15);
  border-radius: 30px;
  font-family: var(--font-m);
  font-size: .72rem;
  letter-spacing: .06em;
  color: rgba(0,240,224,0.7);
  display: flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
}
.prompt-cursor {
  width: 6px; height: 12px;
  background: var(--cyan);
  border-radius: 1px;
  animation: blinkCursor .8s step-end infinite;
}
@keyframes blinkCursor { 0%,100%{opacity:1} 50%{opacity:0} }

/* === SCROLL HINT === */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-m);
  font-size: .65rem;
  letter-spacing: .14em;
  color: var(--muted);
  opacity: .6;
  animation: fadeInUp 1s 1.5s both;
}
@keyframes fadeInUp { from{opacity:0;transform:translateX(-50%) translateY(10px)} to{opacity:.6;transform:translateX(-50%) translateY(0)} }
.scroll-bar {
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--muted), transparent);
  animation: scrollAnim 2s ease-in-out infinite;
}
@keyframes scrollAnim { 0%,100%{opacity:.6} 50%{opacity:.2} }

/* === ABOUT STRIP === */
.about-strip {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
}
.strip-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.strip-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .3rem;
  flex-shrink: 0;
}
.stat-n {
  font-family: var(--font-m);
  font-size: 2rem;
  font-weight: 700;
  color: var(--cyan);
}
.stat-l {
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: .1em;
  font-family: var(--font-m);
}
.strip-divider {
  width: 1px; height: 40px;
  background: var(--border);
  flex-shrink: 0;
}
.strip-text p {
  font-size: .85rem;
  color: var(--muted);
  line-height: 1.6;
}
.strip-text strong { color: var(--text); }

/* === FOLDING CARD TEASER === */
.fold-teaser {
  max-width: 1100px;
  margin: 0 auto;
  padding: 5rem 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
}

.fold-card {
  background: var(--surface);
  cursor: none;
  overflow: hidden;
  perspective: 800px;
  transition: background .3s;
}
.fold-card:hover { background: var(--card); }

.fold-card-inner {
  position: relative;
  transition: transform .6s var(--ease);
  transform-style: preserve-3d;
  min-height: 280px;
}
.fold-card:hover .fold-card-inner {
  transform: rotateX(-180deg);
}

.fold-card-front, .fold-card-back {
  padding: 2.5rem 2rem;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.fold-card-back {
  position: absolute;
  inset: 0;
  transform: rotateX(180deg);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: var(--card);
}

.fc-icon {
  color: var(--cyan);
  margin-bottom: 1.2rem;
  opacity: .8;
}
.fold-card-front h3 {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: .7rem;
}
.fold-card-front p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
}

.fold-card-back h4 {
  font-family: var(--font-m);
  font-size: .7rem;
  letter-spacing: .14em;
  color: var(--muted);
  margin-bottom: .6rem;
}
.fc-price {
  font-family: var(--font-m);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: .7rem;
}
.fold-card-back p {
  font-size: .78rem;
  color: var(--muted);
  margin-bottom: 1.2rem;
}
.fc-link {
  font-family: var(--font-m);
  font-size: .75rem;
  color: var(--cyan);
  letter-spacing: .06em;
}

/* === FOOTER === */
.site-footer {
  border-top: 1px solid var(--border);
  background: var(--ink);
  padding: 4rem 2rem 1.5rem;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  font-family: var(--font-m);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: .1em;
  margin-bottom: .8rem;
}
.footer-brand p {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.7;
}
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: .8rem;
  font-size: .82rem;
  color: var(--muted);
}
.footer-links a:hover, .footer-contact a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: .75rem;
  color: var(--muted);
  font-family: var(--font-m);
  letter-spacing: .04em;
}

/* === MINI ROBOT (inner pages) === */
.mini-robot {
  display: flex;
  align-items: center;
  gap: .5rem;
}
.mini-rb-head {
  width: 24px; height: 20px;
  background: var(--card);
  border: 1px solid rgba(0,240,224,0.2);
  border-radius: 4px;
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.mini-rb-eye {
  width: 4px; height: 3px;
  background: var(--cyan);
  border-radius: 2px;
  box-shadow: 0 0 6px var(--cyan);
  margin: 0 2px;
}
.mini-rb-tip {
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  width: 2px; height: 5px;
  background: rgba(0,240,224,0.5);
}
.mini-rb-tip::before {
  content: '';
  position: absolute;
  top: -4px; left: -2px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 6px var(--cyan);
  animation: pulse 2s infinite;
}

/* === PAGE SECTIONS (shared) === */
.page-hero {
  padding: calc(var(--nav-h) + 4rem) 2rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.page-tag {
  font-family: var(--font-m);
  font-size: .68rem;
  letter-spacing: .2em;
  color: var(--cyan);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.page-tag::before {
  content: '';
  display: block;
  width: 24px; height: 1px;
  background: var(--cyan);
}
.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 800;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-bottom: 1.2rem;
}
.page-hero p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.7;
}

/* Service cards grid */
.services-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 2rem 5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5px;
  background: var(--border);
  margin-bottom: 1.5px;
}

.svc-card {
  background: var(--surface);
  padding: 2.5rem;
  position: relative;
  transition: background .3s;
  overflow: hidden;
}
.svc-card:hover { background: var(--card); }
.svc-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--cyan), transparent);
  transform: scaleX(0);
  transition: transform .4s var(--ease);
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-badge {
  font-family: var(--font-m);
  font-size: .65rem;
  letter-spacing: .14em;
  color: var(--cyan);
  margin-bottom: .8rem;
}
.svc-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: .6rem;
}
.svc-desc {
  font-size: .82rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.svc-price {
  font-family: var(--font-m);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cyan);
  margin-bottom: .4rem;
}
.svc-deposit {
  font-family: var(--font-m);
  font-size: .7rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  letter-spacing: .04em;
}
.svc-features {
  list-style: none;
  font-size: .8rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-bottom: 2rem;
}
.svc-features li::before { content: '—  '; color: rgba(0,240,224,0.4); }
.svc-book {
  display: inline-block;
  padding: .65rem 1.6rem;
  border: 1px solid rgba(0,240,224,0.3);
  border-radius: 2px;
  font-family: var(--font-m);
  font-size: .75rem;
  letter-spacing: .1em;
  color: var(--cyan);
  background: none;
  cursor: none;
  transition: background .2s, border-color .2s;
  text-decoration: none;
}
.svc-book:hover { background: rgba(0,240,224,0.06); border-color: var(--cyan); }

/* Gallery */
.gallery-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}
.gallery-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.gallery-section > p {
  font-size: .82rem;
  color: var(--muted);
  margin-bottom: 2rem;
  font-family: var(--font-m);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 3px;
}
.gallery-item {
  aspect-ratio: 1;
  background: var(--card);
  overflow: hidden;
  position: relative;
  cursor: none;
}
.gallery-item img, .gallery-item video {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease), opacity .3s;
  opacity: .85;
}
.gallery-item:hover img, .gallery-item:hover video { transform: scale(1.06); opacity: 1; }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,10,16,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity .3s;
  display: flex;
  align-items: flex-end;
  padding: .8rem;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-label {
  font-family: var(--font-m);
  font-size: .65rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,0.7);
}
.gallery-empty {
  grid-column: 1/-1;
  padding: 4rem 2rem;
  text-align: center;
  color: var(--muted);
  font-family: var(--font-m);
  font-size: .8rem;
  letter-spacing: .06em;
  border: 1px dashed rgba(255,255,255,0.08);
  border-radius: 4px;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox img, .lightbox video {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: var(--muted);
  font-size: 1.5rem;
  cursor: none;
  line-height: 1;
}

/* Consulting form */
.consult-section {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
}
.consult-section h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.consult-section > p {
  font-size: .85rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1rem; }
.form-group label {
  font-family: var(--font-m);
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 3px;
  color: var(--text);
  font-family: var(--font-h);
  font-size: .9rem;
  transition: border-color .2s;
  outline: none;
  cursor: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(0,240,224,0.4); }
.form-group select option { background: var(--ink); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  padding: .9rem 2rem;
  background: none;
  border: 1px solid rgba(0,240,224,0.3);
  border-radius: 3px;
  color: var(--cyan);
  font-family: var(--font-m);
  font-size: .8rem;
  letter-spacing: .1em;
  cursor: none;
  transition: background .2s, border-color .2s;
  margin-top: .5rem;
}
.form-submit:hover { background: rgba(0,240,224,0.06); border-color: var(--cyan); }
.form-submit svg { transition: transform .2s; }
.form-submit:hover svg { transform: translateX(4px); }

/* Contact cards */
.contact-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5px;
  background: var(--border);
}
.contact-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  transition: background .3s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.contact-card:hover { background: var(--card); }
.contact-card-icon {
  width: 40px; height: 40px;
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--cyan);
}
.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .4rem;
}
.contact-card p {
  font-family: var(--font-m);
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Expertise grid */
.expertise-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5px;
  background: var(--border);
}
.expertise-card {
  background: var(--surface);
  padding: 2rem;
  transition: background .3s;
}
.expertise-card:hover { background: var(--card); }
.expertise-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
}
.expertise-card p {
  font-size: .8rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
}
.expertise-tag {
  font-family: var(--font-m);
  font-size: .62rem;
  letter-spacing: .08em;
  padding: .2rem .6rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--muted);
}

/* Notification */
.notif {
  position: fixed;
  top: calc(var(--nav-h) + 1rem);
  right: 1.5rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: .8rem 1.2rem;
  font-family: var(--font-m);
  font-size: .75rem;
  letter-spacing: .06em;
  z-index: 9000;
  transform: translateX(120%);
  transition: transform .4s var(--ease);
  max-width: 280px;
}
.notif.show { transform: translateX(0); }
.notif.success { border-color: rgba(0,240,224,0.3); color: var(--cyan); }
.notif.error { border-color: rgba(255,80,80,0.3); color: #ff5050; }

/* === RESPONSIVE === */
@media (max-width: 900px) {
  .fold-teaser { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .burger { display: flex; }
  .hero-inner { flex-direction: column; }
  .choice-panel { flex: none; padding: 2.5rem 1.5rem; min-height: 30vh; }
  .robot-stage { width: 100%; padding: 1.5rem 0; }
  .strip-inner { flex-wrap: wrap; justify-content: center; }
  .strip-text { width: 100%; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-section { grid-template-columns: 1fr; }
  .expertise-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .fold-teaser { padding: 3rem 0; }
}
