/* ============================================================
   VENTROR HOLDING — PREMIUM STYLESHEET
   Dark, animated, glassmorphism, high-end corporate design
   ============================================================ */

/* ──────────────────────────────────────────────
   0. DESIGN TOKENS & RESET
────────────────────────────────────────────── */
:root {
  /* Palette */
  --color-bg:          #080c12;
  --color-bg-2:        #0d1320;
  --color-bg-3:        #111827;
  --color-surface:     rgba(255,255,255,0.04);
  --color-surface-2:   rgba(255,255,255,0.08);
  --color-border:      rgba(255,255,255,0.08);
  --color-border-glow: rgba(108,99,255,0.35);

  /* Brand */
  --brand-primary:   #6C63FF;
  --brand-secondary: #3ECFCF;
  --brand-amber:     #F5A623;
  --brand-green:     #2ECC71;
  --brand-danger:    #FF6B6B;

  /* Gradients */
  --grad-brand:    linear-gradient(135deg, #6C63FF 0%, #3ECFCF 100%);
  --grad-ambient:  radial-gradient(ellipse 80% 60% at 50% 0%, rgba(108,99,255,0.15) 0%, transparent 60%);
  --grad-dark:     linear-gradient(180deg, #080c12 0%, #0d1320 100%);

  /* Typography */
  --font-display: 'Outfit', 'Inter', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing */
  --section-py:  clamp(80px, 10vw, 140px);
  --container:   1280px;
  --gutter:      clamp(20px, 5vw, 60px);

  /* Effects */
  --blur-glass:  blur(20px) saturate(1.8);
  --shadow-glow: 0 0 60px rgba(108,99,255,0.25);
  --shadow-card: 0 20px 60px rgba(0,0,0,0.4);
  --radius-card: 20px;
  --radius-sm:   10px;
  --radius-pill: 100px;

  /* Transitions */
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --duration:    0.6s;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

input, textarea {
  -webkit-user-select: text;
  -moz-user-select: text;
  -ms-user-select: text;
  user-select: text;
  cursor: text;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: #e2e8f0;
  line-height: 1.7;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul { list-style: none; }

svg { display: block; }

/* ──────────────────────────────────────────────
   1. TYPOGRAPHY SYSTEM
────────────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.section-subtitle {
  font-size: clamp(1.06rem, 2vw, 1.28rem);
  color: #94a3b8;
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.7;
}

.body-text {
  font-size: 1.125rem;
  color: #94a3b8;
  line-height: 1.8;
  max-width: 560px;
}

.gradient-text {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ──────────────────────────────────────────────
   2. LAYOUT
────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: var(--section-py) 0;
  position: relative;
}

.section-header { margin-bottom: clamp(40px, 6vw, 80px); }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin-top: 20px; }
.section-header.centered .section-badge { margin: 0 auto 16px; }

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-primary);
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.25);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 16px;
}

/* ──────────────────────────────────────────────
   3. BUTTONS
────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: all 0.3s var(--ease-out);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease-out); }

.btn-primary {
  background: var(--grad-brand);
  color: #ffffff;
  box-shadow: 0 4px 24px rgba(108,99,255,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(108,99,255,0.55);
}

.btn-ghost {
  background: transparent;
  color: #e2e8f0;
  border-color: var(--color-border);
}
.btn-ghost:hover {
  border-color: rgba(108,99,255,0.5);
  color: #ffffff;
}
.btn-ghost:hover svg { transform: translateX(4px); }

.btn-outline {
  background: transparent;
  color: var(--brand-primary);
  border-color: var(--brand-primary);
}
.btn-outline:hover {
  background: rgba(108,99,255,0.1);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ──────────────────────────────────────────────
   4. GLASS CARD & TILES
────────────────────────────────────────────── */
.glass-card,
.about-card,
.about-feat-card,
.service-card,
.deepmind-card,
.division-card,
.vbento-card,
.tech-card,
.team-card,
.legal-card,
.stat-item,
[class*="card"],
[class*="bento"],
[class*="kachel"],
[class*="tile"] {
  cursor: pointer;
}

.glass-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-out);
}
.glass-card:hover {
  border-color: var(--color-border-glow);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

/* ──────────────────────────────────────────────
   5. NAVIGATION
────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.4s, backdrop-filter 0.4s, padding 0.4s, box-shadow 0.4s;
}

.navbar.scrolled {
  background: rgba(8, 12, 18, 0.85);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  padding: 12px 0;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-img {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  transition: transform 0.3s var(--ease-out), filter 0.3s var(--ease-out);
}
.nav-logo:hover .logo-img {
  transform: translateY(-1px) scale(1.02);
  filter: drop-shadow(0 4px 12px rgba(62,207,207,0.25));
}

.logo-sub {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: #94a3b8;
  margin-bottom: 2px;
  align-self: flex-end;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: #94a3b8;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color 0.25s, background 0.25s;
}
.nav-link:hover { color: #ffffff; background: rgba(255,255,255,0.06); }
.nav-link.active { color: #ffffff; }

.nav-cta {
  background: var(--grad-brand) !important;
  color: #fff !important;
  padding: 9px 22px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(108,99,255,0.3);
  transition: transform 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(108,99,255,0.5) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-sm);
  cursor: pointer;
  z-index: 1001;
  transition: background 0.25s, border-color 0.25s;
}
.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(108, 99, 255, 0.4);
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s;
}
.nav-toggle span:nth-child(2) {
  margin: 5px 0;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ──────────────────────────────────────────────
   6. HERO SECTION
────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 120px var(--gutter) 80px;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bubble-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(108,99,255,0.18) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 80% 80%, rgba(62,207,207,0.08) 0%, transparent 50%),
    var(--color-bg);
  z-index: 0;
  pointer-events: none;
}

.hero-dark-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 60%, rgba(8, 12, 18, 0.2) 0%, #080c12 95%);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  will-change: opacity;
}

.hero-glow-beam {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 92%;
  max-width: 1280px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #6C63FF 35%, #3ECFCF 50%, #6C63FF 65%, transparent 100%);
  box-shadow: 0 0 25px rgba(108, 99, 255, 0.9), 0 0 50px rgba(62, 207, 207, 0.8);
  border-radius: 100px;
  z-index: 2;
  pointer-events: none;
  opacity: 0;
  will-change: transform, opacity;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 32px;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand-secondary);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(62,207,207,0.6); }
  50%       { box-shadow: 0 0 0 6px rgba(62,207,207,0); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin-bottom: 28px;
}

/* Hero Animated Typewriter Text */
.hero-typewriter {
  display: inline;
  vertical-align: baseline;
}

.hero-typewriter-cursor {
  display: inline-block;
  color: #3ecfcf;
  font-weight: 300;
  margin-left: 1px;
  margin-right: 4px;
  animation: typewriter-cursor-blink 0.75s infinite;
  vertical-align: baseline;
  user-select: none;
}

@keyframes typewriter-cursor-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

.hero-subtitle {
  font-size: clamp(1.08rem, 2.2vw, 1.35rem);
  color: #64748b;
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-card);
  padding: 24px 40px;
  max-width: 600px;
  margin: 0 auto;
  backdrop-filter: blur(12px);
}

.stat-item {
  flex: 1;
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1.1;
}

.stat-label {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
  flex-shrink: 0;
  margin: 0 32px;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #475569;
  animation: float-scroll 3s ease-in-out infinite;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, #6C63FF);
  animation: line-grow 3s ease-in-out infinite;
}

@keyframes float-scroll {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50%       { opacity: 1;   transform: translateX(-50%) translateY(6px); }
}

@keyframes line-grow {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(1.3); opacity: 1; }
}

/* ──────────────────────────────────────────────
   7. TICKER / MARQUEE
────────────────────────────────────────────── */
.ticker-wrapper {
  overflow: hidden;
  background: linear-gradient(90deg, var(--color-bg) 0%, #0c121e 50%, var(--color-bg) 100%);
  border-top: 1px solid rgba(108, 99, 255, 0.25);
  border-bottom: 1px solid rgba(62, 207, 207, 0.25);
  padding: 16px 0;
  position: relative;
  z-index: 2;
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8), 0 10px 40px rgba(0, 0, 0, 0.8);
}

.ticker-wrapper::before,
.ticker-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.ticker-wrapper::before { left: 0; background: linear-gradient(to right, var(--color-bg), transparent); }
.ticker-wrapper::after  { right: 0; background: linear-gradient(to left,  var(--color-bg), transparent); }

.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}

.ticker-item {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #475569;
  padding: 0 16px;
  transition: color 0.3s;
}
.ticker-dot {
  color: var(--brand-primary);
  font-size: 1.2rem;
  line-height: 1;
  align-self: center;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ──────────────────────────────────────────────
   8. ABOUT SECTION
────────────────────────────────────────────── */
.about-section {
  background: var(--color-bg);
  position: relative;
  padding: 120px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
  position: relative;
}

.about-text {
  position: sticky;
  top: 120px;
  align-self: flex-start;
  z-index: 10;
}

.about-text .btn { margin-top: 36px; }
.about-text .body-text { margin-top: 20px; }

.about-card-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.about-card {
  padding: 28px 24px;
}

.about-card-icon {
  width: 44px;
  height: 44px;
  background: rgba(108,99,255,0.12);
  border: 1px solid rgba(108,99,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.about-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand-primary);
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: #e2e8f0;
  margin-bottom: 6px;
}
.about-card p {
  font-size: 0.82rem;
  color: #64748b;
  line-height: 1.5;
}

/* ──────────────────────────────────────────────
   9. SERVICES SECTION
────────────────────────────────────────────── */
/* ──────────────────────────────────────────────
   9. SERVICES SECTION (Google DeepMind Bento Cards)
────────────────────────────────────────────── */
.services-section {
  position: relative;
  background: radial-gradient(circle at 50% 0%, #0d1222 0%, #070a13 100%);
  overflow: hidden;
  padding: 120px 0;
}

.services-ambient-glow {
  position: absolute;
  top: 20%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse 60% 40% at 50% 50%, rgba(108, 99, 255, 0.12) 0%, rgba(62, 207, 207, 0.05) 50%, transparent 70%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 0;
}

.glow-text {
  text-shadow: 0 0 30px rgba(108, 99, 255, 0.4), 0 0 60px rgba(62, 207, 207, 0.2);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: stretch;
}

.service-card.deepmind-card {
  background: rgba(13, 18, 30, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

/* Mouse-following spotlight */
.service-card.deepmind-card .card-spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.06), transparent 40%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.service-card.deepmind-card:hover .card-spotlight {
  opacity: 1;
}

/* Spotlight Border Highlight */
.service-card.deepmind-card .card-border-glow {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  padding: 1.5px;
  background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(108, 99, 255, 0.6), rgba(62, 207, 207, 0.3), transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.service-card.deepmind-card:hover .card-border-glow {
  opacity: 1;
}

.service-card.deepmind-card:hover {
  transform: translateY(-6px);
  border-color: rgba(108, 99, 255, 0.35);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5), 0 0 35px rgba(108, 99, 255, 0.15);
}

/* Card Header & Canvas */
.service-card-header {
  position: relative;
  height: 180px;
  width: 100%;
  background: radial-gradient(circle at 50% 0%, rgba(20, 27, 45, 0.9) 0%, rgba(10, 14, 26, 0.95) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.85;
}

.card-status-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: monospace;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 6px 12px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(12px);
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.card-status-badge.blue {
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  color: #38bdf8;
}

.card-status-badge.purple {
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.3);
  color: #c084fc;
}

.card-status-badge.green {
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #34d399;
}

.card-status-badge.amber {
  background: rgba(245, 158, 11, 0.12);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fbbf24;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  animation: pulseDot 1.8s infinite;
}

.pulse-dot.blue { background: #38bdf8; box-shadow: 0 0 8px #38bdf8; }
.pulse-dot.purple { background: #c084fc; box-shadow: 0 0 8px #c084fc; }
.pulse-dot.green { background: #34d399; box-shadow: 0 0 8px #34d399; }
.pulse-dot.amber { background: #fbbf24; box-shadow: 0 0 8px #fbbf24; }

@keyframes pulseDot {
  0% { transform: scale(0.8); opacity: 0.6; }
  50% { transform: scale(1.3); opacity: 1; }
  100% { transform: scale(0.8); opacity: 0.6; }
}

/* Interactive Header Previews */
.card-interactive-preview {
  position: absolute;
  bottom: 14px;
  right: 16px;
  z-index: 3;
}

/* Code Snippet Preview */
.code-preview {
  background: rgba(8, 12, 22, 0.85);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: monospace;
  font-size: 0.72rem;
  color: #94a3b8;
  backdrop-filter: blur(8px);
}
.code-header {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 4px;
}
.code-header .dot { width: 6px; height: 6px; border-radius: 50%; }
.code-header .red { background: #ef4444; }
.code-header .yellow { background: #f59e0b; }
.code-header .green { background: #10b981; }
.code-title { margin-left: 4px; font-size: 0.65rem; color: #64748b; }
.code-kw { color: #38bdf8; font-weight: 600; }
.code-val { color: #c084fc; }
.code-str { color: #34d399; font-weight: 700; }
.code-comment { font-size: 0.65rem; color: #64748b; }

/* Palette Preview */
.palette-preview {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(8, 12, 22, 0.85);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: 20px;
  padding: 6px 12px;
  backdrop-filter: blur(8px);
}
.palette-label { font-size: 0.68rem; color: #94a3b8; font-weight: 500; }
.palette-swatches { display: flex; gap: 6px; }
.swatch {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--swatch-c);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: transform 0.2s, border-color 0.2s;
}
.swatch:hover, .swatch.active { transform: scale(1.3); border-color: #ffffff; }

/* Chart Preview */
.chart-preview {
  background: rgba(8, 12, 22, 0.85);
  border: 1px solid rgba(52, 211, 153, 0.25);
  border-radius: 10px;
  padding: 8px 12px;
  backdrop-filter: blur(8px);
}
.chart-bar-wrap {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 32px;
}
.chart-bar {
  width: 14px;
  height: var(--h);
  background: rgba(52, 211, 153, 0.3);
  border-radius: 3px 3px 0 0;
  position: relative;
  transition: height 0.4s ease, background 0.3s ease;
}
.chart-bar.active, .chart-bar:hover {
  background: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.6);
}
.chart-bar span {
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.58rem;
  color: #64748b;
}

/* Network Nodes Preview */
.network-preview {
  background: rgba(8, 12, 22, 0.85);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 20px;
  padding: 6px 12px;
  backdrop-filter: blur(8px);
}
.net-nodes { display: flex; align-items: center; gap: 6px; }
.net-node { font-size: 0.62rem; font-weight: 700; padding: 2px 8px; border-radius: 4px; }
.net-node.main { background: rgba(251, 191, 36, 0.2); color: #fbbf24; border: 1px solid rgba(251, 191, 36, 0.4); }
.net-node.child { background: rgba(255, 255, 255, 0.06); color: #94a3b8; }
.net-line { width: 14px; height: 1.5px; background: linear-gradient(90deg, #fbbf24, rgba(255,255,255,0.2)); }

/* Card Body */
.service-card-body {
  padding: 0;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-number {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  user-select: none;
}

.service-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.service-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: transform 0.3s;
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(-5deg);
}

.service-icon.blue { background: rgba(14, 165, 233, 0.12); border-color: rgba(14, 165, 233, 0.3); }
.service-icon.blue svg { stroke: #38bdf8; width: 24px; height: 24px; }

.service-icon.purple { background: rgba(168, 85, 247, 0.12); border-color: rgba(168, 85, 247, 0.3); }
.service-icon.purple svg { stroke: #c084fc; width: 24px; height: 24px; }

.service-icon.green { background: rgba(16, 185, 129, 0.12); border-color: rgba(16, 185, 129, 0.3); }
.service-icon.green svg { stroke: #34d399; width: 24px; height: 24px; }

.service-icon.amber { background: rgba(245, 158, 11, 0.12); border-color: rgba(245, 158, 11, 0.3); }
.service-icon.amber svg { stroke: #fbbf24; width: 24px; height: 24px; }

.service-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #64748b;
  text-transform: uppercase;
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
  margin-bottom: 14px;
}

.service-desc {
  font-size: 0.98rem;
  color: #94a3b8;
  line-height: 1.65;
  margin-bottom: 24px;
}

/* Tag Pills */
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.service-tags span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 5px 12px;
  border-radius: 100px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.service-tags span.tag-blue {
  background: rgba(14, 165, 233, 0.08);
  border: 1px solid rgba(14, 165, 233, 0.2);
  color: #38bdf8;
}

.service-tags span.tag-purple {
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.2);
  color: #c084fc;
}

.service-tags span.tag-green {
  background: rgba(16, 185, 129, 0.08);
  border: 1px solid rgba(16, 185, 129, 0.2);
  color: #34d399;
}

.service-tags span.tag-amber {
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.2);
  color: #fbbf24;
}

.service-tags span:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Card Footer & Button */
.service-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.service-details-btn {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #ffffff;
  font-family: var(--font-main);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 10px 18px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: all 0.3s ease;
}

.service-details-btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.service-card:hover .service-details-btn {
  background: linear-gradient(135deg, rgba(108, 99, 255, 0.2), rgba(62, 207, 207, 0.15));
  border-color: rgba(108, 99, 255, 0.4);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(108, 99, 255, 0.25);
}

.service-card:hover .service-details-btn svg {
  transform: translateX(4px);
}

/* ──────────────────────────────────────────────
   DEEPMIND STYLE MODAL / DRAWER
────────────────────────────────────────────── */
.service-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.service-modal.active {
  opacity: 1;
  visibility: visible;
}

.service-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 8, 16, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.service-modal-content {
  position: relative;
  width: 100%;
  max-width: 680px;
  background: #0f172a;
  border: 1px solid rgba(108, 99, 255, 0.3);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8), 0 0 60px rgba(108, 99, 255, 0.2);
  z-index: 2;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  max-height: 85vh;
  overflow-y: auto;
}

.service-modal.active .service-modal-content {
  transform: scale(1) translateY(0);
}

.service-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: 1.5rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.service-modal-close:hover {
  background: rgba(239, 68, 68, 0.3);
  border-color: rgba(239, 68, 68, 0.5);
}

.modal-header-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}

.modal-section-heading {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--brand-secondary);
  margin: 24px 0 12px 0;
}

.modal-feature-list {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 12px;
}

.modal-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 0.95rem;
  color: #cbd5e1;
}

.modal-feature-list li svg {
  width: 20px;
  height: 20px;
  stroke: #3ecfcf;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ──────────────────────────────────────────────
   SCROLL REVEAL BLUR EFFECT
────────────────────────────────────────────── */
.reveal-blur-up {
  opacity: 0;
  transform: translateY(45px) scale(0.96);
  filter: blur(12px);
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.85s cubic-bezier(0.16, 1, 0.3, 1),
              filter 0.85s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, filter;
}

.reveal-blur-up.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0px);
}

@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}


/* ──────────────────────────────────────────────
   10. PORTFOLIO SECTION
────────────────────────────────────────────── */
.portfolio-section {
  background: var(--color-bg);
  overflow: hidden;
}

.portfolio-showcase {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;
  margin-top: 40px;
}

.portfolio-center-badge {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.portfolio-center-inner {
  background: var(--color-surface-2);
  border: 1px solid rgba(108,99,255,0.35);
  border-radius: 50%;
  width: 180px;
  height: 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  backdrop-filter: var(--blur-glass);
  box-shadow: 0 0 80px rgba(108,99,255,0.25), 0 0 160px rgba(62,207,207,0.08);
  z-index: 2;
  position: relative;
}
.portfolio-center-inner svg { width: 40px; height: 40px; }
.portfolio-center-inner span {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.1rem;
  color: #ffffff;
  letter-spacing: 0.05em;
}
.portfolio-center-inner small {
  font-size: 0.65rem;
  color: #64748b;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(108,99,255,0.15);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.ring-1 { width: 280px; height: 280px; animation: orbit-pulse 3s ease-in-out infinite; }
.ring-2 { width: 380px; height: 380px; animation: orbit-pulse 3s ease-in-out 1s infinite; border-color: rgba(62,207,207,0.08); }
.ring-3 { width: 500px; height: 500px; animation: orbit-pulse 3s ease-in-out 2s infinite; border-color: rgba(108,99,255,0.06); }

@keyframes orbit-pulse {
  0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
  50%       { opacity: 1;   transform: translate(-50%, -50%) scale(1.03); }
}

/* ──────────────────────────────────────────────
   11. DIVISIONS SECTION
────────────────────────────────────────────── */
.divisions-section {
  background: var(--color-bg-2);
}

.divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.division-card {
  background: var(--color-bg-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: border-color 0.3s, transform 0.4s var(--ease-out), box-shadow 0.3s;
}
.division-card:hover {
  border-color: var(--color-border-glow);
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4), 0 0 40px rgba(108,99,255,0.1);
}

.division-image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}

.division-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.division-card:hover .division-image { transform: scale(1.05); }

/* Remove gradient between subheading and image as requested */
.division-image-overlay {
  display: none;
}

.division-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #ffffff;
  background: rgba(0,0,0,0.6);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 100px;
  padding: 4px 12px;
  backdrop-filter: blur(10px);
}

.division-content {
  padding: 28px 28px 36px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.division-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-primary);
  margin-bottom: 12px;
}

.division-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.division-link-icon {
  width: 18px;
  height: 18px;
  stroke: var(--brand-primary);
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
  opacity: 0.8;
  transition: transform 0.2s, opacity 0.2s;
}

.division-card:hover .division-link-icon {
  transform: translate(2px, -2px);
  opacity: 1;
}

.division-desc {
  font-size: 0.98rem;
  color: #64748b;
  line-height: 1.7;
  margin-bottom: 20px;
}

.division-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto; /* Ensures features list aligns cleanly at the bottom for equal height cards */
}
.division-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #94a3b8;
}
.division-features li svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
#division-macher .division-features li svg { stroke: var(--brand-amber); }
#division-flora  .division-features li svg { stroke: var(--brand-green); }
#division-it     .division-features li svg { stroke: var(--brand-secondary); }

/* Bottom colored accent line flush at absolute bottom edge */
.division-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  z-index: 10;
}
.accent-amber { background: linear-gradient(90deg, var(--brand-amber), rgba(245,166,35,0.3)); }
.accent-green { background: linear-gradient(90deg, var(--brand-green), rgba(46,204,113,0.3)); }
.accent-blue  { background: linear-gradient(90deg, #3ecfcf, rgba(108,99,255,0.3)); }

/* ──────────────────────────────────────────────
   12. VALUES SECTION — PREMIUM BENTO GRID
────────────────────────────────────────────── */
.values-section {
  background: var(--color-bg);
  overflow: hidden;
}

.values-ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 20% 50%, rgba(108,99,255,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 80% 60%, rgba(62,207,207,0.05) 0%, transparent 50%);
  pointer-events: none;
}

.values-header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 80px);
}
.values-header .section-badge { margin: 0 auto 16px; }
.values-header .section-subtitle { margin-top: 16px; }

/* BENTO GRID LAYOUT */
.values-bento {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  grid-template-areas:
    "large  top-right"
    "bottom-full  bottom-full";
  /* override for 3-col top row */
}

/* Remap: large left + 2 right stacked, then full bottom */
.values-bento {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}

.vbento-large       { grid-column: 1; grid-row: 1; }
.vbento-top-right   { grid-column: 2; grid-row: 1; align-self: start; }
.vbento-bottom-right{ display: none; /* merged into 3-col layout on desktop */ }
.vbento-bottom-full { grid-column: 1 / -1; grid-row: 2; }

/* 3-column desktop layout */
@media (min-width: 900px) {
  .values-bento {
    grid-template-columns: 1.2fr 0.9fr 0.9fr;
    grid-template-rows: auto auto;
    gap: 18px;
  }
  .vbento-large        { grid-column: 1; grid-row: 1 / 3; }
  .vbento-top-right    { grid-column: 2; grid-row: 1; align-self: stretch; }
  .vbento-bottom-right { display: block; grid-column: 3; grid-row: 1; align-self: stretch; }
  .vbento-bottom-full  { grid-column: 2 / -1; grid-row: 2; }
}

/* ── Base Card ── */
.vbento-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.028);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--ease-out), box-shadow 0.4s;
  cursor: default;
}
.vbento-card:hover {
  border-color: rgba(108,99,255,0.32);
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(0,0,0,0.3), 0 0 50px rgba(108,99,255,0.1);
}

/* ── Inner layout ── */
.vbento-inner {
  position: relative;
  z-index: 2;
  padding: clamp(28px, 4vw, 40px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.vbento-inner-row {
  flex-direction: row;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

/* ── Number ── */
.vbento-num {
  position: absolute;
  top: 20px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
  color: rgba(255,255,255,0.03);
  user-select: none;
  pointer-events: none;
  letter-spacing: -0.04em;
}

/* ── Icon ── */
.vbento-icon-wrap {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(108,99,255,0.14) 0%, rgba(62,207,207,0.06) 100%);
  border: 1px solid rgba(108,99,255,0.22);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s;
}
.vbento-card:hover .vbento-icon-wrap {
  transform: scale(1.08) rotate(-4deg);
  box-shadow: 0 0 24px rgba(108,99,255,0.35);
}
.vbento-icon {
  width: 34px;
  height: 34px;
}

/* ── Body ── */
.vbento-body { flex: 1; }

.vbento-title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.vbento-desc {
  font-size: 1.0rem;
  color: #64748b;
  line-height: 1.7;
  max-width: 420px;
}

/* ── Feature list (large card) ── */
.vbento-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.vbento-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #94a3b8;
}
.vbento-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--grad-brand);
  flex-shrink: 0;
}

/* ── Metric row (bottom card) ── */
.vbento-metric-row {
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  padding: 16px 24px;
  flex-shrink: 0;
  margin-left: auto;
}
@media (max-width: 900px) {
  .vbento-metric-row { margin-left: 0; width: 100%; justify-content: center; }
}
.vbento-metric { text-align: center; padding: 0 24px; }
.vbento-metric-val {
  display: block;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 900;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.vbento-metric-lbl {
  display: block;
  font-size: 0.7rem;
  color: #475569;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 4px;
}
.vbento-metric-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.08);
  flex-shrink: 0;
}

/* ── Glow overlays ── */
.vbento-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 0% 100%, rgba(108,99,255,0.08) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s;
}
.vbento-card:hover .vbento-glow { opacity: 1; }

.vbento-glow-cyan   { background: radial-gradient(ellipse 70% 60% at 100% 0%,   rgba(62,207,207,0.1)  0%, transparent 60%); }
.vbento-glow-violet { background: radial-gradient(ellipse 70% 60% at 0%   100%, rgba(108,99,255,0.1) 0%, transparent 60%); }
.vbento-glow-wide   { background: radial-gradient(ellipse 50% 80% at 50%  50%,  rgba(108,99,255,0.06) 0%, transparent 60%); }

/* ── Large card gradient stripe on left ── */
.vbento-large::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--grad-brand);
  border-radius: 3px 0 0 3px;
  opacity: 0.7;
}

/* ── Bottom-full horizontal separator ── */
.vbento-bottom-full::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108,99,255,0.4), rgba(62,207,207,0.4), transparent);
}

@media (max-width: 700px) {
  .values-bento {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
  .vbento-large, .vbento-top-right, .vbento-bottom-right, .vbento-bottom-full {
    grid-column: 1 !important;
    grid-row: auto !important;
  }
  .vbento-bottom-right { display: block !important; }
  .vbento-inner-row { flex-direction: column; align-items: flex-start; }
  .vbento-metric-row { margin-left: 0; width: 100%; }
  .vbento-num { font-size: 3rem; }
}

/* ──────────────────────────────────────────────
   13. TECH SECTION
────────────────────────────────────────────── */
.tech-section {
  background: var(--color-bg-2);
  overflow: hidden;
}

.tech-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.tech-text .section-badge { margin-bottom: 20px; }
.tech-text .section-title { margin-bottom: 20px; }
.tech-text .body-text { margin-bottom: 32px; }

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tech-tag {
  font-size: 0.8rem;
  font-weight: 500;
  color: #94a3b8;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  padding: 7px 16px;
  border-radius: 100px;
  transition: all 0.25s ease;
  cursor: pointer;
  user-select: none;
}
.tech-tag:hover, .tech-tag.active {
  color: #ffffff;
  border-color: rgba(62, 207, 207, 0.6);
  background: rgba(62, 207, 207, 0.12);
  box-shadow: 0 0 16px rgba(62, 207, 207, 0.2);
  transform: translateY(-2px);
}

.tech-visual {
  position: relative;
  aspect-ratio: 1 / 0.88;
  min-height: 400px;
}

.tech-canvas {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-card);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(circle at 50% 40%, #101424 0%, #070912 100%);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 0 35px rgba(108, 99, 255, 0.05);
}

.tech-hud-overlay {
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 2;
}

.tech-hud-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(13, 16, 26, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.7);
}

.tech-hud-pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #3ECFCF;
  box-shadow: 0 0 8px #3ECFCF;
  animation: techPulse 2s infinite ease-in-out;
}

@keyframes techPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.25); }
}

.tech-hud-status {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding: 6px 14px;
  background: rgba(13, 16, 26, 0.75);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-family: var(--font-mono);
}

.tech-hud-label {
  font-size: 0.62rem;
  color: var(--color-text-muted);
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.tech-hud-value {
  font-size: 0.78rem;
  font-weight: 600;
  color: #3ECFCF;
  transition: color 0.3s ease;
}

/* ──────────────────────────────────────────────
   14. CONTACT SECTION
────────────────────────────────────────────── */
.contact-section {
  background: var(--color-bg);
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 100%, rgba(108,99,255,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.contact-info .section-badge { margin-bottom: 20px; }
.contact-info .section-title { margin-bottom: 20px; }
.contact-info .body-text { margin-bottom: 40px; }

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(108,99,255,0.1);
  border: 1px solid rgba(108,99,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; stroke: var(--brand-primary); }

.contact-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #475569;
  margin-bottom: 2px;
}

.contact-value {
  font-weight: 600;
  color: #e2e8f0;
  font-size: 1rem;
  transition: color 0.25s;
}
a.contact-value:hover { color: var(--brand-primary); }

/* Contact Form */
.contact-form {
  padding: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 20px; }
.form-row { margin-bottom: 0; }
.form-row .form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #94a3b8;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: #e2e8f0;
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
  appearance: none;
}
.form-input::placeholder { color: #475569; }
.form-input:focus {
  border-color: var(--brand-primary);
  box-shadow: 0 0 0 3px rgba(108,99,255,0.15);
}

.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
  cursor: pointer;
}
.form-select option { background: var(--color-bg-3); color: #e2e8f0; }

.form-textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(46,204,113,0.1);
  border: 1px solid rgba(46,204,113,0.25);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--brand-green);
  margin-top: 16px;
}
.form-success svg { width: 20px; height: 20px; stroke: var(--brand-green); flex-shrink: 0; }

/* ──────────────────────────────────────────────
   15. FOOTER
────────────────────────────────────────────── */
.footer {
  background: var(--color-bg-2);
  border-top: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 200px;
  background: radial-gradient(ellipse, rgba(108,99,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: clamp(40px, 5vw, 80px);
  padding: clamp(50px, 8vw, 80px) 0 clamp(40px, 6vw, 60px);
}

.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-tagline {
  font-size: 0.85rem;
  color: #475569;
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.footer-nav-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-title {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #94a3b8;
  margin-bottom: 4px;
}

.footer-nav-col a {
  font-size: 0.88rem;
  color: #475569;
  transition: color 0.25s;
}
.footer-nav-col a:hover { color: #e2e8f0; }

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy { font-size: 0.82rem; color: #475569; }

/* ──────────────────────────────────────────────
   16. BACK TO TOP
────────────────────────────────────────────── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--grad-brand);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(108,99,255,0.4);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.back-to-top:hover { transform: translateY(-3px); }
.back-to-top svg { width: 18px; height: 18px; stroke: #fff; }

/* ──────────────────────────────────────────────
   17. SCROLL REVEAL ANIMATIONS
────────────────────────────────────────────── */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-left  { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* ──────────────────────────────────────────────
   18. RESPONSIVE
────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .about-grid,
  .tech-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-text .body-text { max-width: 100%; }

  .services-grid { grid-template-columns: 1fr; }

  .divisions-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

  .footer-top { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(3, 1fr); }

  .tech-visual { min-height: 320px; aspect-ratio: 4 / 3; width: 100%; }

  .hero-stats { flex-direction: column; gap: 20px; }
  .stat-divider { width: 80px; height: 1px; margin: 0; }
}

@media (max-width: 700px) {
  .nav-toggle { display: flex; z-index: 1001; }
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(8, 12, 20, 0.97);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 90px 24px 40px;
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .nav-links li {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
  .nav-link {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
    color: #cbd5e1;
    padding: 12px 24px;
    border-radius: 14px;
    transition: color 0.25s, background 0.25s, transform 0.2s;
  }
  .nav-link:hover, .nav-link:active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    transform: scale(1.02);
  }
  .nav-cta {
    display: inline-block !important;
    font-size: 1.1rem !important;
    padding: 14px 36px !important;
    margin-top: 8px;
    width: 100%;
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.4) !important;
  }

  .about-grid { grid-template-columns: 1fr; }
  .about-text { position: static; }
  .about-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  .form-row { grid-template-columns: 1fr; }

  .footer-nav { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { flex-direction: column; text-align: center; }

  .hero {
    min-height: auto;
    padding: 100px var(--gutter) 40px;
  }
  .hero-actions {
    flex-direction: column;
    margin-bottom: 36px;
  }
  .hero-stats {
    margin-bottom: 0;
  }
  .hero-scroll-indicator {
    display: none;
  }
  .ticker-wrapper {
    padding: 12px 0;
  }
  .section {
    padding: clamp(45px, 7vw, 70px) 0;
  }
  .btn { width: 100%; justify-content: center; }

  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero {
    padding: 85px var(--gutter) 28px;
  }
  .hero-title {
    margin-bottom: 20px;
  }
  .hero-subtitle {
    margin-bottom: 32px;
  }
  .section-header {
    margin-bottom: 32px;
  }
  .about-card-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: 1fr; }
  .hero-stats { padding: 20px; }
  .stat-divider { display: none; }
  .contact-form { padding: 24px; }
  .tech-tags { gap: 8px; }
  .tech-tag { font-size: 0.75rem; padding: 6px 12px; }
  .tech-visual { min-height: 300px; aspect-ratio: 1 / 0.85; }
}

.about-feat-card {
  position: relative;
  background: rgba(13, 18, 30, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  padding: 44px 38px 36px;
  overflow: hidden;
  transition: border-color 0.4s cubic-bezier(0.16,1,0.3,1), transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
  cursor: default;
}
.about-feat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 0% 0%, rgba(108,99,255,0.08) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s;
}
.about-feat-card:hover,
.about-feat-card.active-scroll {
  border-color: rgba(108, 99, 255, 0.5);
  transform: translateY(-6px) scale(1.015);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 45px rgba(108, 99, 255, 0.2);
}
.about-feat-card:hover::before,
.about-feat-card.active-scroll::before { opacity: 1; }

.afc-cyan:hover, .afc-cyan.active-scroll   { border-color: rgba(62, 207, 207, 0.5) !important; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 45px rgba(62, 207, 207, 0.2); }
.afc-amber:hover, .afc-amber.active-scroll { border-color: rgba(245, 166, 35, 0.5) !important; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 45px rgba(245, 166, 35, 0.2); }
.afc-green:hover, .afc-green.active-scroll { border-color: rgba(46, 204, 113, 0.5) !important; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 45px rgba(46, 204, 113, 0.2); }

.afc-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; }
.afc-icon { width: 56px; height: 56px; background: linear-gradient(135deg, rgba(108,99,255,0.15) 0%, rgba(62,207,207,0.07) 100%); border: 1px solid rgba(108,99,255,0.22); border-radius: 16px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s; }
.about-feat-card:hover .afc-icon,
.about-feat-card.active-scroll .afc-icon { transform: scale(1.1) rotate(-6deg); box-shadow: 0 0 24px rgba(108,99,255,0.35); }
.afc-cyan .afc-icon  { background: linear-gradient(135deg, rgba(62,207,207,0.15) 0%, rgba(108,99,255,0.07) 100%); border-color: rgba(62,207,207,0.22); }
.afc-amber .afc-icon { background: linear-gradient(135deg, rgba(245,166,35,0.15) 0%, rgba(108,99,255,0.07) 100%); border-color: rgba(245,166,35,0.22); }
.afc-green .afc-icon { background: linear-gradient(135deg, rgba(46,204,113,0.15) 0%, rgba(62,207,207,0.07) 100%); border-color: rgba(46,204,113,0.22); }
.afc-icon svg { width: 28px; height: 28px; }
.afc-num { font-family: 'Outfit', sans-serif; font-size: 3.5rem; font-weight: 900; color: rgba(255,255,255,0.05); line-height: 1; user-select: none; pointer-events: none; }
.afc-title { font-family: 'Outfit', sans-serif; font-size: 1.75rem; font-weight: 800; color: #ffffff; letter-spacing: -0.02em; line-height: 1.25; margin-bottom: 14px; }
.afc-desc  { font-size: 1.08rem; color: #94a3b8; line-height: 1.7; margin-bottom: 28px; }
.afc-bar { height: 4px; background: rgba(255,255,255,0.06); border-radius: 10px; overflow: hidden; }
.afc-bar-fill { height: 100%; width: var(--w, 80%); background: linear-gradient(90deg, #6C63FF, #3ECFCF); border-radius: 10px; transform: scaleX(0); transform-origin: left; transition: transform 0.9s 0.2s cubic-bezier(0.16,1,0.3,1); }
.afc-bar-cyan  { background: linear-gradient(90deg, #3ECFCF, #6C63FF); }
.afc-bar-amber { background: linear-gradient(90deg, #F5A623, #6C63FF); }
.afc-bar-green { background: linear-gradient(90deg, #2ECC71, #3ECFCF); }
.about-feat-card.bar-animated .afc-bar-fill { transform: scaleX(1); }

/* ── 8c. TEAM SECTION ── */
.team-section { background: #0d1320; overflow: hidden; }
.team-ambient { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(108,99,255,0.07) 0%, transparent 55%), radial-gradient(ellipse 40% 40% at 80% 80%, rgba(62,207,207,0.05) 0%, transparent 50%); pointer-events: none; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 16px; }
.team-card { position: relative; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.07); border-radius: 24px; overflow: hidden; transition: border-color 0.4s cubic-bezier(0.16,1,0.3,1), transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s; }
.team-card:hover { border-color: rgba(108,99,255,0.32); transform: translateY(-8px); box-shadow: 0 32px 80px rgba(0,0,0,0.35), 0 0 50px rgba(108,99,255,0.1); }
.team-card-top { position: relative; width: 100%; height: 340px; overflow: hidden; background: rgba(255,255,255,0.02); }
.team-img-wrapper { position: relative; width: 100%; height: 100%; }
.team-img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.6s cubic-bezier(0.16,1,0.3,1); }
.team-card:hover .team-img { transform: scale(1.03); }
.team-card-top::after { display: none; }
.team-img-ring { position: absolute; inset: 0; box-shadow: inset 0 0 0 2px rgba(108,99,255,0.25); transition: box-shadow 0.4s; pointer-events: none; z-index: 2; }
.team-card:hover .team-img-ring { box-shadow: inset 0 0 0 2px rgba(108,99,255,0.6); }
.team-img-ring-cyan  { box-shadow: inset 0 0 0 2px rgba(62,207,207,0.25) !important; }
.team-img-ring-green { box-shadow: inset 0 0 0 2px rgba(46,204,113,0.25) !important; }
.team-card:hover .team-img-ring-cyan  { box-shadow: inset 0 0 0 2px rgba(62,207,207,0.6) !important; }
.team-card:hover .team-img-ring-green { box-shadow: inset 0 0 0 2px rgba(46,204,113,0.6) !important; }
.team-social { position: absolute; top: 14px; right: 14px; z-index: 3; opacity: 0; transform: translateY(-6px); transition: opacity 0.3s, transform 0.3s; }
.team-card:hover .team-social { opacity: 1; transform: translateY(0); }
.team-social-link { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; background: rgba(108,99,255,0.9); border-radius: 10px; color: #fff; transition: background 0.2s, transform 0.2s; backdrop-filter: blur(8px); }
.team-social-link:hover { background: #6C63FF; transform: scale(1.1); }
.team-social-link svg { width: 16px; height: 16px; }
.team-card-body { padding: 22px 24px 26px; position: relative; z-index: 2; }
.team-name { font-family: 'Outfit', sans-serif; font-size: 1.15rem; font-weight: 800; color: #ffffff; letter-spacing: -0.02em; margin-bottom: 4px; }
.team-role { display: inline-block; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; background: linear-gradient(135deg, #6C63FF, #3ECFCF); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 14px; }
.team-bio { font-size: 0.95rem; color: #64748b; line-height: 1.65; margin-bottom: 18px; }
.team-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.team-tags span { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; color: #94a3b8; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); padding: 4px 10px; border-radius: 100px; }
.team-card-glow { position: absolute; inset: 0; pointer-events: none; opacity: 0; transition: opacity 0.4s; background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(108,99,255,0.08) 0%, transparent 60%); }
.team-card:hover .team-card-glow { opacity: 1; }
.team-card-glow-cyan  { background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(62,207,207,0.1) 0%, transparent 60%); }
.team-card-glow-green { background: radial-gradient(ellipse 60% 40% at 50% 100%, rgba(46,204,113,0.08) 0%, transparent 60%); }
.team-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: linear-gradient(90deg, #6C63FF, #3ECFCF); transform: scaleX(0); transform-origin: left; transition: transform 0.4s cubic-bezier(0.16,1,0.3,1); }
#team-member-2::after { background: linear-gradient(90deg, #3ECFCF, #6C63FF); }
#team-member-3::after { background: linear-gradient(90deg, #2ECC71, #3ECFCF); }
.team-card:hover::after { transform: scaleX(1); }

@media (max-width: 900px) { .team-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; } }

/* ── 8d. STANDORTE (LOCATIONS) SECTION ── */
.locations-section {
  position: relative;
  background: #090d16;
  overflow: hidden;
}

.locations-ambient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 20% 30%, rgba(108,99,255,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 70%, rgba(62,207,207,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* Filter Bar */
.locations-filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.locations-filter-pills {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.loc-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-family: var(--font-main);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease-out);
}

.loc-pill:hover {
  background: rgba(255, 255, 255, 0.07);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.16);
}

.loc-pill.active {
  background: rgba(108, 99, 255, 0.15);
  border-color: rgba(108, 99, 255, 0.4);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(108, 99, 255, 0.2);
}

.loc-pill-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #94a3b8;
  transition: background 0.3s;
}

.dot-violet { background: #6C63FF !important; }
.dot-cyan   { background: #3ECFCF !important; }
.dot-green  { background: #2ECC71 !important; }

.loc-map-reset-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #94a3b8;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.loc-map-reset-btn svg { width: 15px; height: 15px; }

.loc-map-reset-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

/* Grid Layout */
.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 28px;
  align-items: stretch;
}

.locations-cards-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Location Card */
.location-card {
  position: relative;
  background: rgba(255, 255, 255, 0.028);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 18px;
  padding: 16px 20px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.35s var(--ease-out);
}

.location-card:hover,
.location-card.active {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(108, 99, 255, 0.35);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3), 0 0 25px rgba(108, 99, 255, 0.08);
}

.location-card.active {
  border-color: rgba(108, 99, 255, 0.5);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35), 0 0 35px rgba(108, 99, 255, 0.15);
}

#loc-card-service.active, #loc-card-service:hover {
  border-color: rgba(62, 207, 207, 0.45);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35), 0 0 35px rgba(62, 207, 207, 0.15);
}

#loc-card-production.active, #loc-card-production:hover {
  border-color: rgba(46, 204, 113, 0.45);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35), 0 0 35px rgba(46, 204, 113, 0.15);
}

.loc-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-bottom: 8px;
}

.loc-card-badge svg { width: 12px; height: 12px; }

.loc-badge-violet { color: #a78bfa; background: rgba(108, 99, 255, 0.12); border: 1px solid rgba(108, 99, 255, 0.25); }
.loc-badge-cyan   { color: #3ECFCF; background: rgba(62, 207, 207, 0.12); border: 1px solid rgba(62, 207, 207, 0.25); }
.loc-badge-green  { color: #2ECC71; background: rgba(46, 204, 113, 0.12); border: 1px solid rgba(46, 204, 113, 0.25); }

.loc-card-header {
  margin-bottom: 6px;
}

.loc-city {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.loc-company {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: #94a3b8;
  margin-top: 1px;
}

.loc-desc {
  font-size: 0.84rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 10px;
}

.loc-card-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.loc-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  color: #94a3b8;
}

.loc-meta-item svg {
  width: 13px;
  height: 13px;
  color: #6C63FF;
  flex-shrink: 0;
}

.loc-card-action {
  display: flex;
  justify-content: flex-end;
}

.loc-card-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #6C63FF;
  transition: transform 0.3s, color 0.3s;
}

.loc-card-btn svg { width: 13px; height: 13px; transition: transform 0.3s; }

.location-card:hover .loc-card-btn svg,
.location-card.active .loc-card-btn svg {
  transform: translateX(4px);
}

.loc-card-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.location-card:hover .loc-card-glow,
.location-card.active .loc-card-glow { opacity: 1; }

.loc-glow-violet { background: radial-gradient(ellipse 60% 50% at 100% 0%, rgba(108, 99, 255, 0.09) 0%, transparent 60%); }
.loc-glow-cyan   { background: radial-gradient(ellipse 60% 50% at 100% 0%, rgba(62, 207, 207, 0.09) 0%, transparent 60%); }
.loc-glow-green  { background: radial-gradient(ellipse 60% 50% at 100% 0%, rgba(46, 204, 113, 0.09) 0%, transparent 60%); }

/* Abstract Map Card Wrapper */
.abstract-map-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 440px;
  background: #090d16;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(16px);
}

/* Floating Top Map Header */
.map-card-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 18px;
  background: rgba(9, 13, 22, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  pointer-events: auto;
}

.map-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: #ffffff;
}

.status-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2ECC71;
  box-shadow: 0 0 10px #2ECC71;
}

.map-info-pill {
  font-size: 0.72rem;
  font-weight: 700;
  color: #6C63FF;
  background: rgba(108, 99, 255, 0.12);
  border: 1px solid rgba(108, 99, 255, 0.25);
  padding: 3px 10px;
  border-radius: 100px;
}

/* Floating Bottom Map Footer */
.map-card-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 18px;
  background: rgba(9, 13, 22, 0.88);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  pointer-events: auto;
}

.map-legend {
  display: flex;
  align-items: center;
  gap: 14px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #94a3b8;
}

.legend-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: inline-block;
}

.map-hint {
  font-size: 0.72rem;
  color: #64748b;
  font-weight: 500;
}

/* Leaflet GeoJSON Container (Tile-free exact Germany Vector Map) */
.locations-leaflet-geojson {
  flex: 1;
  width: 100%;
  height: 100%;
  min-height: 440px;
  background: #090d16 !important;
  z-index: 1;
}

.leaflet-container {
  background: #090d16 !important;
  font-family: var(--font-main) !important;
}

/* GeoJSON Bundesländer Polygons */
.state-geojson-poly {
  transition: fill 0.3s, fill-opacity 0.3s, stroke 0.3s;
  cursor: pointer;
}

.state-geojson-poly:hover {
  fill-opacity: 0.95 !important;
  stroke: rgba(255, 255, 255, 0.4) !important;
}

/* Leaflet Custom DivIcon Pins */
.custom-geo-pin {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: visible !important;
}

.geo-pin-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.geo-pin-pulse {
  position: absolute;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  animation: geoPulse 2.4s infinite;
  pointer-events: none;
}

.pin-violet .geo-pin-pulse { background: rgba(108, 99, 255, 0.35); }
.pin-cyan .geo-pin-pulse   { background: rgba(62, 207, 207, 0.35); }
.pin-green .geo-pin-pulse  { background: rgba(46, 204, 113, 0.35); }

@keyframes geoPulse {
  0% { transform: scale(0.4); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

.geo-pin-icon {
  position: relative;
  width: 26px;
  height: 26px;
  z-index: 2;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.6));
}

.pin-violet .geo-pin-icon { color: #6C63FF; }
.pin-cyan .geo-pin-icon   { color: #3ECFCF; }
.pin-green .geo-pin-icon  { color: #2ECC71; }

.geo-pin-badge {
  position: absolute;
  top: -4px;
  left: 30px;
  background: rgba(13, 19, 32, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 4px 10px;
  border-radius: 8px;
  white-space: nowrap;
  backdrop-filter: blur(12px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.6);
  pointer-events: none;
  z-index: 3;
}

.pin-badge-violet { border-color: rgba(108, 99, 255, 0.45); }
.pin-badge-cyan   { border-color: rgba(62, 207, 207, 0.45); }
.pin-badge-green  { border-color: rgba(46, 204, 113, 0.45); }

.badge-city {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.1;
}

.badge-company {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  color: #94a3b8;
  margin-top: 1px;
}

@media (max-width: 990px) {
  .locations-grid {
    grid-template-columns: 1fr;
  }
  .locations-leaflet-geojson {
    min-height: 380px;
  }
}

/* ──────────────────────────────────────────────
   32. COOKIE BANNER & PREFERENCES MODAL
────────────────────────────────────────────── */

/* Floating Cookie Trigger Button */
.cookie-trigger-btn {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9990;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(13, 19, 32, 0.85);
  backdrop-filter: var(--blur-glass);
  -webkit-backdrop-filter: var(--blur-glass);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 15px rgba(108, 99, 255, 0.2);
  transition: all 0.3s var(--ease-out);
}
.cookie-trigger-btn:hover {
  transform: scale(1.08) translateY(-2px);
  border-color: var(--brand-primary);
  color: #ffffff;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(108, 99, 255, 0.4);
}
.cookie-trigger-btn svg {
  width: 20px;
  height: 20px;
}

/* Cookie Banner Card */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9995;
  width: calc(100% - 48px);
  max-width: 480px;
  background: rgba(13, 19, 32, 0.92);
  backdrop-filter: blur(24px) saturate(1.8);
  -webkit-backdrop-filter: blur(24px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(108, 99, 255, 0.15);
  transform: translateY(120%) scale(0.96);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s var(--ease-out), opacity 0.4s var(--ease-out), visibility 0.4s;
  overflow: hidden;
}
.cookie-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-brand);
}
.cookie-banner.active {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
}

.cookie-banner-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-icon-wrapper {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(108, 99, 255, 0.15);
  border: 1px solid rgba(108, 99, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-secondary);
  flex-shrink: 0;
}
.cookie-banner-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.01em;
}
.cookie-banner-text {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.55;
  margin-bottom: 20px;
}
.cookie-banner-text a {
  color: var(--brand-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-banner-text a:hover {
  color: #ffffff;
}

.cookie-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-btn-group-primary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 18px;
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease-out);
  text-align: center;
}
.cookie-btn-accept {
  background: var(--grad-brand);
  color: #ffffff;
  box-shadow: 0 4px 20px rgba(108, 99, 255, 0.35);
}
.cookie-btn-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 25px rgba(108, 99, 255, 0.5);
  filter: brightness(1.1);
}
.cookie-btn-deny {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
}
.cookie-btn-deny:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  color: #ffffff;
}
.cookie-btn-settings {
  background: transparent;
  border: 1px solid transparent;
  color: #94a3b8;
  font-size: 0.82rem;
  padding: 8px 12px;
}
.cookie-btn-settings:hover {
  color: #ffffff;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s var(--ease-out), visibility 0.35s;
}
.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 13, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cookie-modal-card {
  position: relative;
  width: 100%;
  max-width: 580px;
  max-height: 90vh;
  background: rgba(13, 19, 32, 0.95);
  backdrop-filter: blur(30px) saturate(1.8);
  -webkit-backdrop-filter: blur(30px) saturate(1.8);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7), 0 0 50px rgba(108, 99, 255, 0.2);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s var(--ease-out);
}
.cookie-modal.active .cookie-modal-card {
  transform: scale(1) translateY(0);
}
.cookie-modal-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad-brand);
}

.cookie-modal-header {
  padding: 24px 28px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.cookie-modal-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cookie-modal-close {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #94a3b8;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 1.2rem;
  line-height: 1;
}
.cookie-modal-close:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}

.cookie-modal-body {
  padding: 20px 28px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cookie-modal-intro {
  font-size: 0.88rem;
  color: #94a3b8;
  line-height: 1.55;
}

/* Category item */
.cookie-category {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 16px;
  padding: 18px 20px;
  transition: border-color 0.25s;
}
.cookie-category:hover {
  border-color: rgba(255, 255, 255, 0.15);
}
.cookie-category-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 6px;
}
.cookie-category-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cookie-badge-required {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 3px 8px;
  border-radius: 20px;
  background: rgba(62, 207, 207, 0.15);
  color: var(--brand-secondary);
  border: 1px solid rgba(62, 207, 207, 0.3);
}
.cookie-category-desc {
  font-size: 0.84rem;
  color: #94a3b8;
  line-height: 1.5;
}

/* Switch Toggle UI */
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 26px;
  flex-shrink: 0;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: rgba(255, 255, 255, 0.15);
  transition: 0.3s var(--ease-out);
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
.cookie-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: #ffffff;
  transition: 0.3s var(--ease-out);
  border-radius: 50%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.cookie-toggle input:checked + .cookie-slider {
  background: var(--grad-brand);
  border-color: rgba(108, 99, 255, 0.4);
}
.cookie-toggle input:checked + .cookie-slider:before {
  transform: translateX(20px);
}
.cookie-toggle input:disabled + .cookie-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-modal-footer {
  padding: 16px 28px 24px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 12, 18, 0.5);
}

@media (max-width: 640px) {
  .cookie-banner {
    bottom: 16px;
    right: 16px;
    left: 16px;
    width: auto;
    padding: 20px;
  }
  .cookie-trigger-btn {
    bottom: 16px;
    left: 16px;
    width: 40px;
    height: 40px;
  }
  .cookie-btn-group-primary {
    grid-template-columns: 1fr;
  }
  .cookie-modal-card {
    border-radius: 20px;
  }
  .cookie-modal-header,
  .cookie-modal-body,
  .cookie-modal-footer {
    padding-left: 18px;
    padding-right: 18px;
  }
  .cookie-modal-footer {
    flex-direction: column-reverse;
  }
  .cookie-modal-footer .cookie-btn {
    width: 100%;
  }
}

