/* ╔══════════════════════════════════════════════╗
   ║  VELSIGUR — World-Class Premium Design       ║
   ╚══════════════════════════════════════════════╝ */

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

:root {
  /* Palette */
  --ink:    #06050a;
  --ink2:   #0c0b10;
  --ink3:   #131118;
  --ink4:   #1a1821;
  --red:    #d41a1a;
  --red2:   #eb2020;
  --red3:   #ff2828;
  --red-bg: rgba(212,26,26,.07);
  --red-dim: rgba(212,26,26,.25);
  --line:   rgba(255,255,255,.07);
  --line2:  rgba(255,255,255,.12);
  --cream:  #ede9e3;
  --muted:  #a09c96;
  --dim:    #5a5652;
  --dim2:   #302e38;
  /* Type */
  --f-d: 'Bebas Neue', sans-serif;
  --f-c: 'Barlow Condensed', sans-serif;
  --f-b: 'Barlow', sans-serif;
  /* Easing */
  --e1: cubic-bezier(.16,1,.3,1);
  --e2: cubic-bezier(.25,.46,.45,.94);
  --e3: cubic-bezier(.76,0,.24,1);
}

html { font-size: 16px; scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--f-b);
  font-weight: 300;
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

/* NOISE */
body::after {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9990;
  opacity: .5;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
}

/* ══ CURSOR ═══════════════════════════════════════ */
.cursor-ring {
  position: fixed;
  width: 36px; height: 36px;
  border: 1.5px solid rgba(212,26,26,.55);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9995;
  transform: translate(-50%,-50%);
  transition: width .3s var(--e1), height .3s var(--e1), border-color .3s, background .3s, border-radius .3s;
}
.cursor-ring.expand { width: 64px; height: 64px; border-color: var(--red); background: rgba(212,26,26,.06); }
.cursor-ring.text-mode { width: 6px; height: 6px; background: var(--red); border: none; border-radius: 50%; }
body:not(:hover) .cursor-ring { opacity: 0; }

/* ══ LOADER ════════════════════════════════════════ */
#loader {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 9998; pointer-events: none;
  opacity: 1; transition: opacity .4s .2s;
}
#loader.done { opacity: 0; }
.loader-bar {
  height: 100%; background: var(--red);
  width: 0; transition: width .5s var(--e2);
}

/* ══ NAV ═══════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem; height: 68px;
  transition: background .5s var(--e2), border-color .5s;
  border-bottom: 1px solid transparent;
}
nav.scrolled {
  background: rgba(6,5,10,.93);
  backdrop-filter: blur(24px) saturate(1.5);
  border-color: var(--line);
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; flex-shrink: 0; }
.nav-logo-svg { transition: transform .4s var(--e1); display: block; }
.nav-logo:hover .nav-logo-svg { transform: rotate(-8deg) scale(1.08); }
.nav-wordmark {
  font-family: var(--f-d);
  font-size: 19px; letter-spacing: .12em; color: var(--cream);
}
.nav-links { display: flex; list-style: none; }
.nav-links li a {
  display: flex; align-items: center; height: 68px;
  padding: 0 1.1rem;
  font-family: var(--f-c); font-size: 11px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--dim); text-decoration: none;
  transition: color .2s;
  position: relative; overflow: hidden;
}
.nav-links li a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--red);
  transform: translateX(-105%); transition: transform .35s var(--e1);
}
.nav-links li a:hover, .nav-links li a.active { color: var(--cream); }
.nav-links li a.active::after, .nav-links li a:hover::after { transform: translateX(0); }
.nav-right { display: flex; align-items: center; gap: 1rem; }
.nav-cta {
  display: flex; align-items: center; gap: .5rem;
  font-family: var(--f-c); font-size: 11px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase;
  color: var(--cream); text-decoration: none;
  border: 1px solid var(--line2); padding: .5rem 1.2rem;
  transition: all .25s var(--e2); overflow: hidden; position: relative;
}
.nav-cta::before {
  content: ''; position: absolute; inset: 0;
  background: var(--red); transform: translateX(-105%);
  transition: transform .3s var(--e3);
}
.nav-cta span, .nav-cta svg { position: relative; z-index: 1; }
.nav-cta:hover { border-color: var(--red); }
.nav-cta:hover::before { transform: translateX(0); }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: .4rem;
}
.nav-burger span { display: block; width: 20px; height: 1.5px; background: var(--cream); transition: all .35s var(--e1); }
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ══ MOBILE MENU ══════════════════════════════════ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 490;
  background: var(--ink2);
  display: flex; align-items: center; justify-content: center;
  clip-path: circle(0% at calc(100% - 3rem) 34px);
  transition: clip-path .65s var(--e3);
}
.mobile-menu.open { clip-path: circle(150% at calc(100% - 3rem) 34px); }
.mobile-menu-inner { padding: 2rem; width: 100%; max-width: 500px; }
.mobile-nav { display: flex; flex-direction: column; gap: 0; margin-bottom: 3rem; }
.mobile-nav-link {
  font-family: var(--f-d);
  font-size: clamp(48px, 12vw, 72px);
  color: var(--cream); text-decoration: none; line-height: 1.1;
  letter-spacing: .02em;
  border-bottom: 1px solid var(--line);
  padding: .4rem 0;
  display: block;
  transform: translateY(20px); opacity: 0;
  transition: color .2s, transform .5s calc(var(--i) * .06s + .1s) var(--e1), opacity .5s calc(var(--i) * .06s + .1s);
}
.mobile-menu.open .mobile-nav-link { transform: none; opacity: 1; }
.mobile-nav-link:hover { color: var(--red); }
.mobile-menu-contact { display: flex; flex-direction: column; gap: .5rem; }
.mobile-contact-link { font-family: var(--f-c); font-size: 15px; letter-spacing: .08em; color: var(--muted); text-decoration: none; transition: color .2s; }
.mobile-contact-link:hover { color: var(--cream); }

/* ══ PAGE / TRANSITIONS ════════════════════════════ */
#app { min-height: 100vh; }
.page-wrap { animation: pageReveal .6s var(--e1) both; }
@keyframes pageReveal { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

/* REVEAL */
.r { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--e1), transform .8s var(--e1); }
.r.r-1 { transition-delay: .08s; } .r.r-2 { transition-delay: .16s; } .r.r-3 { transition-delay: .24s; }
.r.visible { opacity: 1; transform: none; }
.r-left { opacity: 0; transform: translateX(-36px); transition: opacity .8s var(--e1), transform .8s var(--e1); }
.r-left.visible { opacity: 1; transform: none; }

/* ══ EYEBROW ═══════════════════════════════════════ */
.eyebrow {
  font-family: var(--f-c); font-size: 10px; font-weight: 600;
  letter-spacing: .35em; text-transform: uppercase; color: var(--red);
  display: flex; align-items: center; gap: .8rem; margin-bottom: 1.4rem;
}
.eyebrow::before { content: ''; width: 22px; height: 1px; background: var(--red); flex-shrink: 0; }

/* ══ BUTTONS ═══════════════════════════════════════ */
.btn {
  font-family: var(--f-c); font-size: 12px; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  padding: .85rem 2.2rem; cursor: pointer;
  text-decoration: none; display: inline-flex; align-items: center; gap: .6rem;
  transition: all .25s var(--e2); border: none; position: relative; overflow: hidden;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red::before { content: ''; position: absolute; inset: 0; background: var(--red3); transform: translateY(105%); transition: transform .3s var(--e3); }
.btn-red:hover::before { transform: translateY(0); }
.btn-red span, .btn-red svg { position: relative; z-index: 1; }
.btn-outline { background: none; color: var(--cream); border: 1px solid var(--line2); }
.btn-outline:hover { border-color: var(--cream); }

/* ══ MARQUEE ═══════════════════════════════════════ */
.marquee-strip {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  padding: 1rem 0; overflow: hidden; background: var(--ink2);
  display: flex; gap: 0;
}
.marquee-track {
  display: flex; align-items: center; gap: 0;
  animation: marqueeScroll 28s linear infinite;
  will-change: transform; flex-shrink: 0;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
@keyframes marqueeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee-item {
  font-family: var(--f-c); font-size: 12px; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase; color: var(--dim);
  white-space: nowrap; padding: 0 2rem; display: flex; align-items: center; gap: 1.5rem;
  transition: color .2s;
}
.marquee-item:hover { color: var(--cream); }
.marquee-sep { width: 4px; height: 4px; background: var(--red); border-radius: 50%; flex-shrink: 0; }

/* ══ HERO ═══════════════════════════════════════════ */
.hero {
  position: relative; height: 100svh; min-height: 640px;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: flex-end; padding: 0;
  overflow: hidden;
}
.hero-left {
  position: relative; z-index: 2;
  padding: 5rem 3rem 5rem 3rem;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-right {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  padding: 5rem 3rem;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 100% 80% at 70% 40%, #1a0303 0%, var(--ink) 65%);
}
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(212,26,26,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,26,26,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  animation: gridDrift 40s linear infinite;
}
@keyframes gridDrift { to { background-position: 60px 60px; } }

.hero-eyebrow { opacity: 0; animation: slideUp .7s .2s var(--e1) forwards; }
.hero-h1 {
  font-family: var(--f-d);
  font-size: clamp(68px, 9.5vw, 140px);
  line-height: .88; letter-spacing: .02em;
  overflow: hidden; margin-bottom: 2rem;
}
.hero-h1-line {
  display: block; overflow: hidden;
  opacity: 0; animation: slideUp .8s var(--e1) forwards;
}
.hero-h1-line:nth-child(1) { animation-delay: .3s; }
.hero-h1-line:nth-child(2) { animation-delay: .42s; }
.hero-h1-line:nth-child(3) { animation-delay: .54s; color: var(--red); }
.hero-sub {
  max-width: 400px; font-size: 15px; line-height: 1.85; color: var(--muted);
  margin-bottom: 2.8rem;
  opacity: 0; animation: slideUp .7s .68s var(--e1) forwards;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; animation: slideUp .7s .8s var(--e1) forwards;
}
.hero-logo-display {
  opacity: 0; animation: logoReveal 1.2s .4s var(--e1) forwards;
  filter: drop-shadow(0 0 60px rgba(212,26,26,.15));
}
@keyframes logoReveal { from { opacity: 0; transform: scale(.9) rotate(-3deg); } to { opacity: 1; transform: none; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: none; } }

.hero-scroll {
  position: absolute; left: 3rem; bottom: 2.5rem; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: .7rem;
  opacity: 0; animation: fadeIn 1s 1.4s forwards;
}
@keyframes fadeIn { to { opacity: 1; } }
.hero-scroll span { font-family: var(--f-c); font-size: 9px; letter-spacing: .32em; text-transform: uppercase; color: var(--dim); writing-mode: vertical-rl; }
.hero-scroll-line { width: 1px; height: 56px; background: linear-gradient(var(--red), transparent); animation: scrollAnim 2s 2s ease-in-out infinite; }
@keyframes scrollAnim { 0%,100%{opacity:.3;transform:scaleY(.6);transform-origin:top} 50%{opacity:1;transform:scaleY(1)} }

/* ══ STATS ════════════════════════════════════════ */
.stats-band { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); }
.stat-cell { padding: 2.5rem 2rem; border-right: 1px solid var(--line); cursor: default; position: relative; overflow: hidden; transition: background .3s; }
.stat-cell::before { content: ''; position: absolute; inset: 0; background: var(--red-bg); opacity: 0; transition: opacity .3s; }
.stat-cell:hover::before { opacity: 1; }
.stat-cell:last-child { border-right: none; }
.stat-number { font-family: var(--f-d); font-size: 54px; color: var(--cream); line-height: 1; display: block; }
.stat-suffix { color: var(--red); }
.stat-label { font-family: var(--f-c); font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--dim); margin-top: .35rem; display: block; }

/* ══ DIVISION CARDS ═══════════════════════════════ */
.divisions { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); }
.div-card {
  text-decoration: none; display: block;
  border-right: 1px solid var(--line); position: relative; overflow: hidden;
  transition: background .3s;
}
.div-card:last-child { border-right: none; }
.div-card:hover { background: var(--ink3); }
.div-card-inner { padding: 3rem 2.5rem; transition: transform .4s var(--e1); }
.div-card:hover .div-card-inner { transform: translateY(-5px); }
.div-bar { position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--e1); }
.div-card:hover .div-bar { transform: scaleX(1); }
.div-num { font-family: var(--f-d); font-size: 56px; color: var(--dim2); line-height: 1; margin-bottom: 1.6rem; transition: color .3s; }
.div-card:hover .div-num { color: rgba(212,26,26,.2); }
.div-icon { width: 32px; height: 32px; color: var(--red); margin-bottom: 1.3rem; }
.div-title { font-family: var(--f-c); font-size: 22px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--cream); margin-bottom: .6rem; }
.div-desc { font-size: 13px; line-height: 1.85; color: var(--muted); }
.div-link { margin-top: 2rem; font-family: var(--f-c); font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--red); display: flex; align-items: center; gap: .5rem; }
.div-link svg { transition: transform .3s var(--e1); }
.div-card:hover .div-link svg { transform: translateX(5px); }

/* ══ ABOUT SPLIT ═══════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--line); }
.about-left { padding: 6rem 3rem; display: flex; flex-direction: column; justify-content: center; }
.section-h2 { font-family: var(--f-d); font-size: clamp(48px, 5.5vw, 82px); line-height: .9; letter-spacing: .02em; margin-bottom: 1.8rem; }
.section-body { font-size: 14px; line-height: 2; color: var(--muted); margin-bottom: 1.2rem; }
.about-right {
  background: var(--ink3); border-left: 1px solid var(--line);
  display: grid; grid-template-rows: 1fr auto;
}
.about-logo-panel {
  display: flex; align-items: center; justify-content: center;
  padding: 4rem; position: relative; overflow: hidden;
}
.about-logo-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(212,26,26,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(212,26,26,.06) 1px, transparent 1px); background-size: 40px 40px; }
.about-logo-float { animation: floatLogo 8s ease-in-out infinite; filter: drop-shadow(0 0 40px rgba(212,26,26,.2)); position: relative; z-index: 2; }
@keyframes floatLogo { 0%,100%{transform:translateY(0) rotate(0)} 50%{transform:translateY(-10px) rotate(1deg)} }
.about-contact-grid { border-top: 1px solid var(--line); display: grid; grid-template-columns: 1fr 1fr; }
.contact-cell { padding: 1.3rem 1.6rem; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.contact-cell:nth-child(even) { border-right: none; }
.contact-cell:nth-last-child(-n+2) { border-bottom: none; }
.contact-key { font-family: var(--f-c); font-size: 9px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--red); margin-bottom: .35rem; }
.contact-val { font-size: 13px; color: var(--muted); line-height: 1.5; }
.contact-val a { color: var(--muted); text-decoration: none; transition: color .2s; }
.contact-val a:hover { color: var(--cream); }

/* ══ MAP STRIP ════════════════════════════════════ */
.map-strip { border-top: 1px solid var(--line); height: 300px; background: var(--ink2); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.map-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(212,26,26,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(212,26,26,.07) 1px, transparent 1px); background-size: 36px 36px; }
.map-content { position: relative; z-index: 2; text-align: center; }
.map-icon { width: 44px; height: 44px; color: var(--red); margin: 0 auto 1rem; animation: mapPulse 2.5s ease-in-out infinite; }
@keyframes mapPulse { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
.map-addr { font-family: var(--f-c); font-size: 20px; letter-spacing: .08em; color: var(--cream); margin-bottom: .4rem; }
.map-city { font-size: 11px; color: var(--muted); letter-spacing: .22em; text-transform: uppercase; margin-bottom: 1.6rem; }

/* ══ PAGE HERO ════════════════════════════════════ */
.page-hero {
  padding: 8rem 3rem 5rem; border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden;
  background: linear-gradient(170deg, var(--ink3) 0%, var(--ink) 55%);
}
.page-hero-watermark {
  position: absolute; right: -1rem; top: 50%; transform: translateY(-50%);
  font-family: var(--f-d); font-size: 22vw; color: rgba(255,255,255,.018);
  line-height: 1; user-select: none; pointer-events: none; letter-spacing: -.02em;
}
.page-h1 { font-family: var(--f-d); font-size: clamp(64px, 9vw, 128px); line-height: .88; letter-spacing: .02em; }
.page-h1 em { font-style: normal; color: var(--red); }
.page-sub { max-width: 540px; margin-top: 1.5rem; font-size: 15px; line-height: 1.85; color: var(--muted); }

/* ══ SERVICES ══════════════════════════════════════ */
.svc-list { border-top: 1px solid var(--line); }
.svc-row {
  display: grid; grid-template-columns: 90px 1fr 1fr;
  border-bottom: 1px solid var(--line);
  position: relative; overflow: hidden; transition: background .3s;
}
.svc-row::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--red);
  transform: scaleY(0); transform-origin: bottom; transition: transform .45s var(--e1);
}
.svc-row:hover { background: var(--ink3); }
.svc-row:hover::before { transform: scaleY(1); }
.svc-num { padding: 3.5rem 0 3.5rem 2rem; border-right: 1px solid var(--line); display: flex; align-items: flex-start; justify-content: flex-start; }
.svc-num span { font-family: var(--f-d); font-size: 60px; color: var(--dim2); line-height: 1; transition: color .3s; }
.svc-row:hover .svc-num span { color: rgba(212,26,26,.3); }
.svc-main { padding: 3.5rem 3rem; border-right: 1px solid var(--line); }
.svc-icon { width: 30px; height: 30px; color: var(--red); margin-bottom: 1.2rem; }
.svc-title { font-family: var(--f-c); font-size: 22px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--cream); margin-bottom: .5rem; }
.svc-tag { display: inline-flex; font-family: var(--f-c); font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--red); border: 1px solid rgba(212,26,26,.3); padding: .2rem .6rem; margin-top: .5rem; }
.svc-detail { padding: 3.5rem 3rem; display: flex; flex-direction: column; justify-content: center; }
.svc-body { font-size: 14px; line-height: 1.95; color: var(--muted); }
.svc-action { margin-top: 1.5rem; font-family: var(--f-c); font-size: 10px; font-weight: 600; letter-spacing: .22em; text-transform: uppercase; color: var(--red); display: flex; align-items: center; gap: .5rem; opacity: 0; transform: translateX(-8px); transition: opacity .3s, transform .3s; }
.svc-row:hover .svc-action { opacity: 1; transform: none; }

/* ══ PROCESS ════════════════════════════════════════ */
.process-sect { padding: 6rem 3rem; border-top: 1px solid var(--line); }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 3.5rem; position: relative; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: 12.5%; right: 12.5%; height: 1px; background: linear-gradient(90deg, var(--red), rgba(212,26,26,.15)); z-index: 0; }
.proc-step { position: relative; z-index: 1; text-align: center; padding: 0 1.5rem; }
.proc-dot { width: 56px; height: 56px; border-radius: 50%; background: var(--ink); border: 1px solid var(--line2); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; transition: all .3s; }
.proc-step:hover .proc-dot { border-color: var(--red); background: var(--red-bg); }
.proc-n { font-family: var(--f-d); font-size: 22px; color: var(--red); }
.proc-title { font-family: var(--f-c); font-size: 14px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--cream); margin-bottom: .5rem; }
.proc-body { font-size: 12px; line-height: 1.75; color: var(--muted); }

/* ══ PRODUCTS ═══════════════════════════════════════ */
.prod-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); border-top: 1px solid var(--line); }
.prod-card { background: var(--ink); padding: 3rem 2.5rem; position: relative; overflow: hidden; transition: background .3s; }
.prod-card::after { content: ''; position: absolute; top: 0; left: 0; width: 2px; height: 0; background: var(--red); transition: height .4s var(--e1); }
.prod-card:hover { background: var(--ink3); }
.prod-card:hover::after { height: 100%; }
.prod-cat { font-family: var(--f-c); font-size: 10px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--red); margin-bottom: 1.2rem; }
.prod-title { font-family: var(--f-c); font-size: 22px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--cream); margin-bottom: .9rem; }
.prod-body { font-size: 13px; line-height: 1.85; color: var(--muted); }

/* ══ SECURITHOR ═══════════════════════════════════ */
.sw-section { display: grid; grid-template-columns: 1fr 420px; border-top: 1px solid var(--line); }
.sw-text { padding: 6rem 3rem; display: flex; flex-direction: column; justify-content: center; }
.sw-visual { background: var(--ink3); border-left: 1px solid var(--line); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.sw-bg-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(212,26,26,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(212,26,26,.05) 1px, transparent 1px); background-size: 44px 44px; }
.sw-emblem { position: relative; z-index: 2; text-align: center; }
.sw-orbit { position: relative; width: 200px; height: 200px; margin: 0 auto 1.5rem; }
.sw-ring { position: absolute; border-radius: 50%; border: 1px solid; }
.sw-ring-1 { inset: 0; border-color: rgba(255,255,255,.06); animation: orbit 24s linear infinite; }
.sw-ring-2 { inset: 18px; border-color: rgba(212,26,26,.2); animation: orbit 16s linear infinite reverse; }
.sw-ring-3 { inset: 36px; border-color: rgba(212,26,26,.08); }
.sw-center { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; }
.sw-logo-small { filter: drop-shadow(0 0 20px rgba(212,26,26,.3)); }
@keyframes orbit { to { transform: rotate(360deg); } }
.sw-name { font-family: var(--f-d); font-size: 32px; letter-spacing: .14em; color: var(--cream); }
.sw-sub { font-family: var(--f-c); font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--dim); margin-top: .5rem; }
.sw-list { list-style: none; display: flex; flex-direction: column; gap: .85rem; margin-top: 2rem; }
.sw-list li { display: flex; align-items: flex-start; gap: .9rem; font-size: 14px; color: var(--muted); }
.sw-list li::before { content: ''; width: 6px; height: 6px; background: var(--red); flex-shrink: 0; transform: rotate(45deg); margin-top: 5px; }

/* ══ AUTO HERO ═══════════════════════════════════ */
.auto-hero { position: relative; padding: 9rem 3rem 5.5rem; overflow: hidden; background: var(--ink); }
.auto-hero-glow { position: absolute; inset: 0; background: radial-gradient(ellipse 50% 70% at 85% 50%, #1a0202, transparent 65%); }
.auto-hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(212,26,26,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(212,26,26,.04) 1px, transparent 1px); background-size: 60px 60px; }
.auto-hero-h1 { position: relative; font-family: var(--f-d); font-size: clamp(76px, 12vw, 168px); line-height: .84; letter-spacing: .01em; }
.auto-hero-h1 em { font-style: normal; color: var(--red); display: block; }
.auto-hero-sub { position: relative; max-width: 480px; font-size: 15px; line-height: 1.9; color: var(--muted); margin-top: 2rem; }
.auto-watermark { position: absolute; right: -2%; top: 50%; transform: translateY(-50%); opacity: .035; pointer-events: none; }

/* AUTO TAGS */
.auto-kpis { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); }
.auto-kpi { padding: 2rem 1.5rem; border-right: 1px solid var(--line); text-align: center; transition: background .3s; }
.auto-kpi:last-child { border-right: none; }
.auto-kpi:hover { background: var(--ink3); }
.auto-kpi-val { font-family: var(--f-d); font-size: 40px; color: var(--red); line-height: 1; display: block; }
.auto-kpi-label { font-family: var(--f-c); font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--dim); margin-top: .4rem; display: block; }

/* CAR FILTER */
.car-filter { padding: 1.5rem 3rem; border-bottom: 1px solid var(--line); background: var(--ink2); display: flex; gap: .7rem; align-items: center; flex-wrap: wrap; }
.filter-label { font-family: var(--f-c); font-size: 10px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--dim); margin-right: .3rem; }
.filter-btn { font-family: var(--f-c); font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; padding: .38rem .95rem; border: 1px solid var(--line); background: none; color: var(--muted); cursor: pointer; transition: all .2s; }
.filter-btn:hover, .filter-btn.on { border-color: var(--red); color: var(--cream); background: var(--red-bg); }

/* CAR GRID */
.cars-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); }
.car-card { background: var(--ink); cursor: pointer; transition: background .25s; overflow: hidden; }
.car-card:hover { background: var(--ink3); }
.car-photo { height: 230px; overflow: hidden; position: relative; background: var(--ink4); display: flex; align-items: center; justify-content: center; }
.car-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--e1); }
.car-card:hover .car-photo img { transform: scale(1.05); }
.car-photo-ph { opacity: .07; }
.photo-count { position: absolute; bottom: .7rem; right: .8rem; font-family: var(--f-c); font-size: 10px; letter-spacing: .1em; color: rgba(255,255,255,.5); background: rgba(0,0,0,.55); padding: .2rem .5rem; backdrop-filter: blur(4px); }
.car-status { position: absolute; top: .8rem; left: .8rem; font-family: var(--f-c); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; padding: .25rem .65rem; }
.s-disp { background: var(--red); color: #fff; }
.s-rez { background: rgba(180,130,0,.88); color: #fff; }
.s-vand { background: rgba(55,55,55,.9); color: #888; }
.car-body { padding: 1.8rem 2rem; }
.car-make { font-family: var(--f-c); font-size: 10px; font-weight: 700; letter-spacing: .26em; text-transform: uppercase; color: var(--red); margin-bottom: .3rem; }
.car-name { font-family: var(--f-c); font-size: 22px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--cream); margin-bottom: .9rem; }
.car-specs { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-bottom: .9rem; }
.spec-k { font-size: 9px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--dim); display: block; margin-bottom: .15rem; }
.spec-v { font-family: var(--f-c); font-size: 13px; font-weight: 600; color: var(--muted); }
.car-price { font-family: var(--f-d); font-size: 24px; color: var(--cream); letter-spacing: .04em; }
.car-price small { font-family: var(--f-c); font-size: 11px; color: var(--dim); font-weight: 400; margin-left: .3rem; }
.car-cta-hint { margin-top: .9rem; font-family: var(--f-c); font-size: 10px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--red); display: flex; align-items: center; gap: .4rem; opacity: 0; transform: translateY(4px); transition: opacity .25s, transform .25s; }
.car-card:hover .car-cta-hint { opacity: 1; transform: none; }
.cars-empty { text-align: center; padding: 7rem 2rem; }
.cars-empty-h { font-family: var(--f-d); font-size: 42px; color: var(--muted); margin-bottom: .5rem; }
.cars-empty-p { font-size: 14px; color: var(--dim); }

/* ══ ADV ════════════════════════════════════════ */
.adv-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--line); }
.adv { background: var(--ink); padding: 2.8rem 2.5rem; transition: background .3s; }
.adv:hover { background: var(--ink3); }
.adv-h { font-family: var(--f-d); font-size: 32px; color: var(--red); margin-bottom: .8rem; line-height: 1; }
.adv-p { font-size: 13px; line-height: 1.85; color: var(--muted); }

/* ══ CTA BAND ════════════════════════════════════ */
.cta-band { padding: 5.5rem 3rem; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.cta-h { font-family: var(--f-d); font-size: clamp(38px, 4.5vw, 64px); line-height: .95; }
.cta-h em { font-style: normal; color: var(--red); }
.cta-btns { display: flex; gap: .9rem; flex-wrap: wrap; }

/* ══ MODAL ═══════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; z-index: 800;
  display: flex; align-items: center; justify-content: center;
  background: rgba(3,2,6,.94); backdrop-filter: blur(16px) saturate(1.5);
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--e2);
  padding: 1rem;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: var(--ink3); width: min(940px, 100%); max-height: 92vh;
  overflow-y: auto; overflow-x: hidden; position: relative;
  transform: translateY(28px) scale(.97); transition: transform .45s var(--e1);
  border: 1px solid var(--line2);
  scrollbar-width: thin; scrollbar-color: var(--line) transparent;
}
.modal::-webkit-scrollbar { width: 3px; }
.modal::-webkit-scrollbar-thumb { background: var(--dim2); }
.modal-overlay.open .modal { transform: none; }
.modal-close {
  position: sticky; top: 1rem; left: calc(100% - 3rem); z-index: 10;
  width: 40px; height: 40px; background: rgba(6,5,10,.85);
  border: 1px solid var(--line2); color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s; backdrop-filter: blur(6px);
  margin-left: auto; margin-right: 1rem; margin-top: 1rem; flex-shrink: 0;
}
.modal-close:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* GALLERY */
.modal-gallery { height: 460px; background: var(--ink); position: relative; overflow: hidden; }
.g-slides { position: relative; width: 100%; height: 100%; }
.g-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .5s var(--e2); }
.g-slide.on { opacity: 1; }
.g-slide img { width: 100%; height: 100%; object-fit: cover; }
.g-ph { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.g-prev, .g-next {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 48px; height: 48px; background: rgba(6,5,10,.7);
  border: 1px solid rgba(255,255,255,.1); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s; backdrop-filter: blur(6px);
}
.g-prev { left: 1rem; } .g-next { right: 1rem; }
.g-prev:hover, .g-next:hover { background: var(--red); border-color: var(--red); }
.g-dots { position: absolute; bottom: 1rem; left: 0; right: 0; display: flex; justify-content: center; gap: .4rem; z-index: 5; }
.g-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.25); cursor: pointer; border: none; padding: 0; transition: all .25s var(--e1); }
.g-dot.on { background: var(--red); width: 22px; border-radius: 3px; }
.g-count { position: absolute; top: 1rem; left: 1rem; font-family: var(--f-c); font-size: 11px; letter-spacing: .14em; color: rgba(255,255,255,.5); background: rgba(0,0,0,.6); padding: .25rem .6rem; backdrop-filter: blur(4px); z-index: 5; }

/* MODAL INFO */
.modal-info { padding: 2.8rem 2.8rem 3.5rem; }
.modal-hdr { display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.modal-make { font-family: var(--f-c); font-size: 11px; font-weight: 700; letter-spacing: .3em; text-transform: uppercase; color: var(--red); margin-bottom: .4rem; }
.modal-name { font-family: var(--f-d); font-size: clamp(40px, 6vw, 64px); color: var(--cream); line-height: .9; letter-spacing: .02em; }
.modal-badge { display: inline-flex; font-family: var(--f-c); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; padding: .3rem .8rem; margin-top: .7rem; }
.modal-price-area { text-align: right; }
.modal-price-lbl { font-family: var(--f-c); font-size: 10px; letter-spacing: .24em; text-transform: uppercase; color: var(--dim); margin-bottom: .3rem; }
.modal-price-val { font-family: var(--f-d); font-size: 44px; color: var(--cream); letter-spacing: .03em; }
.modal-specs { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); margin-bottom: 2.5rem; }
.modal-spec { background: var(--ink2); padding: 1.3rem 1.5rem; }
.modal-spec-k { font-family: var(--f-c); font-size: 9px; font-weight: 600; letter-spacing: .26em; text-transform: uppercase; color: var(--red); margin-bottom: .4rem; }
.modal-spec-v { font-family: var(--f-c); font-size: 17px; font-weight: 600; color: var(--cream); }
.modal-section-lbl { font-family: var(--f-c); font-size: 10px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--dim); margin-bottom: .8rem; padding-bottom: .6rem; border-bottom: 1px solid var(--line); }
.modal-desc { font-size: 14px; line-height: 2; color: var(--muted); margin-bottom: 2.5rem; }
.modal-actions { display: flex; gap: 1rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid var(--line); }
.modal-btn { font-family: var(--f-c); font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; padding: .8rem 2rem; text-decoration: none; display: inline-flex; align-items: center; gap: .5rem; transition: all .2s; }
.modal-btn-red { background: var(--red); color: #fff; border: 1px solid var(--red); }
.modal-btn-red:hover { background: var(--red3); }
.modal-btn-out { background: none; color: var(--muted); border: 1px solid var(--line2); }
.modal-btn-out:hover { border-color: var(--cream); color: var(--cream); }

/* ══ FOOTER ══════════════════════════════════════ */
footer { border-top: 1px solid var(--line); padding: 5rem 3rem 2.5rem; background: var(--ink2); }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid var(--line); }
.footer-brand-logo { display: flex; align-items: center; gap: 11px; margin-bottom: 1rem; }
.footer-brand-wm { font-family: var(--f-d); font-size: 18px; letter-spacing: .12em; color: var(--cream); }
.footer-tagline { font-size: 13px; color: var(--muted); line-height: 1.9; max-width: 290px; }
.footer-col-h { font-family: var(--f-c); font-size: 10px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; color: var(--cream); margin-bottom: 1.3rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-links li a { font-size: 13px; color: var(--muted); text-decoration: none; transition: color .2s, transform .2s; display: inline-block; cursor: pointer; }
.footer-links li a:hover { color: var(--cream); transform: translateX(3px); }
.footer-row { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: .4rem; }
.footer-row a { color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-row a:hover { color: var(--cream); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .8rem; }
.footer-copy { font-size: 12px; color: var(--dim); }
.footer-cui { font-family: var(--f-c); font-size: 11px; letter-spacing: .1em; color: var(--dim); }

/* ══ LOADING SHIMMER ══════════════════════════════ */
.loading-page { display: flex; align-items: center; justify-content: center; min-height: 80vh; }
.spinner { width: 38px; height: 38px; border: 2px solid var(--line); border-top-color: var(--red); border-radius: 50%; animation: spin .7s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ══ RESPONSIVE ══════════════════════════════════ */
@media (max-width: 1100px) {
  .sw-section { grid-template-columns: 1fr; }
  .sw-visual { border-left: none; border-top: 1px solid var(--line); padding: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  nav { padding: 0 1.2rem; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-right { display: none; }
  .hero-left { padding: 3rem 1.4rem; }
  .hero-scroll { left: 1.4rem; }
  .stats-band, .auto-kpis { grid-template-columns: 1fr 1fr; }
  .stat-cell:nth-child(2n) { border-right: none; }
  .divisions, .adv-grid { grid-template-columns: 1fr; }
  .div-card { border-right: none; border-bottom: 1px solid var(--line); }
  .adv { border-right: none; border-bottom: 1px solid var(--line); }
  .about-grid { grid-template-columns: 1fr; }
  .about-right { border-left: none; border-top: 1px solid var(--line); }
  .about-logo-panel { min-height: 200px; padding: 2rem; }
  .about-logo-float { width: 140px !important; height: 140px !important; }
  .page-hero, .about-left, .process-sect, .cta-band, .car-filter, .auto-hero, .sw-text { padding-left: 1.4rem; padding-right: 1.4rem; }
  .svc-row { grid-template-columns: 60px 1fr; }
  .svc-num { padding: 2.5rem 0 2.5rem 1.2rem; }
  .svc-num span { font-size: 40px; }
  .svc-main { padding: 2.5rem 1.5rem; border-right: none; }
  .svc-detail { display: none; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .process-steps::before { display: none; }
  .prod-grid, .cars-grid { grid-template-columns: 1fr; }
  .modal-gallery { height: 280px; }
  .modal-info { padding: 1.6rem 1.5rem 2.5rem; }
  .modal-specs { grid-template-columns: 1fr 1fr; }
  .modal-hdr { flex-direction: column; }
  .modal-price-area { text-align: left; }
  .footer-grid { grid-template-columns: 1fr; }
  footer { padding: 3rem 1.4rem 1.8rem; }
  .cta-band { padding: 4rem 1.4rem; }
}
@media (max-width: 540px) {
  .stats-band, .auto-kpis { grid-template-columns: 1fr; }
  .stat-cell, .auto-kpi { border-right: none; }
  .modal-specs { grid-template-columns: 1fr 1fr; }
}
