/* ════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════ */
:root {
  --pr: #7C3AED;
  --prl: #A78BFA;
  --prd: #5B21B6;
  --ac: #F59E0B;
  --ac2: #10B981;
  --dk: #0A0A0F;
  --dk2: #111118;
  --dk3: #1A1A2E;
  --sf: #16162A;
  --sf2: #1E1E35;
  --bd: rgba(124, 58, 237, 0.22);
  --tx: #F1F0FF;
  --txm: #9CA3AF;
  --txd: #6B7280;
  --gd: linear-gradient(135deg, #7C3AED, #2563EB);
  --glow: 0 0 24px rgba(124, 58, 237, 0.55), 0 0 60px rgba(124, 58, 237, 0.2);
  --r: 16px;
  --r2: 12px;
  --r3: 20px;
  --nav-h: 68px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

/* ════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--dk);
  color: var(--tx);
  line-height: 1.65;
  overflow-x: hidden;
  min-width: 320px;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}
h1, h2, h3, h4, .logo-text, .section-title, .stat-num, .slide-title, .svc-title, .product-name, .blog-title, .mv-title, .brand-name, .modal-title {
  font-family: 'Space Grotesk', sans-serif;
}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--dk);
}
::-webkit-scrollbar-thumb {
  background: var(--pr);
  border-radius: 2px;
}
.grad-text {
  background: var(--gd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .blob,
  .ticker-track,
  .pulse-dot,
  .carousel-slide img {
    animation: none !important;
  }
  .carousel-track,
  .about-carousel-track,
  .reveal,
  .modal-overlay,
  .modal-box {
    transition-duration: 0.01ms !important;
  }
}

/* ════════════════════════════════════════
   ANIMATED BLOBS
════════════════════════════════════════ */
.blob-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: flt 18s ease-in-out infinite alternate;
}
.b1 {
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  background: rgba(124, 58, 237, 0.13);
  top: -15%;
  left: -15%;
  animation-duration: 20s;
}
.b2 {
  width: clamp(250px, 40vw, 500px);
  height: clamp(250px, 40vw, 500px);
  background: rgba(37, 99, 235, 0.09);
  top: 40%;
  right: -10%;
  animation-duration: 25s;
  animation-delay: -8s;
}
.b3 {
  width: clamp(200px, 35vw, 400px);
  height: clamp(200px, 35vw, 400px);
  background: rgba(245, 158, 11, 0.06);
  bottom: -8%;
  left: 30%;
  animation-duration: 22s;
  animation-delay: -4s;
}
@keyframes flt {
  0% { transform: translate(0, 0); }
  100% { transform: translate(35px, 28px); }
}

/* ════════════════════════════════════════
   TOP NAVIGATION
════════════════════════════════════════ */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  padding-top: var(--safe-top);
  background: rgba(10, 10, 15, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--bd);
  transition: background 0.3s;
}
nav.scrolled {
  background: rgba(10, 10, 15, 0.97);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 36px);
  padding-left: max(clamp(18px, 4vw, 36px), var(--safe-left));
  padding-right: max(clamp(18px, 4vw, 36px), var(--safe-right));
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.logo-mark {
  width: 40px;
  height: 40px;
  background: var(--gd);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}
.logo-mark.has-logo {
  background: transparent;
}
.logo-mark.has-logo::after {
  display: none;
}
.logo-mark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
  pointer-events: none;
}
.logo-mark img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: none;
  z-index: 2;
}
.logo-mark img.loaded {
  display: block;
}
.logo-mark > span {
  position: relative;
  z-index: 1;
}
.logo-mark.has-logo > span {
  display: none;
}
.logo-wordmark {
  display: flex;
  align-items: center;
  min-width: 0;
}
.logo-text {
  font-weight: 700;
  font-size: clamp(16px, 2.5vw, 21px);
  background: var(--gd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.logo-sub {
  font-size: 8px;
  color: var(--txm);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-top: -3px;
}
.nav-links {
  display: none;
  align-items: stretch;
  gap: 2px;
  list-style: none;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}
.nav-dd-trigger {
  color: var(--txm);
  font-size: 13.5px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: block;
  white-space: nowrap;
}
.nav-dd-trigger:hover {
  color: var(--tx);
  background: rgba(124, 58, 237, 0.1);
}
.nav-cta.nav-dd-trigger {
  background: var(--gd) !important;
  color: #fff !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 18px rgba(124, 58, 237, 0.35) !important;
}
.nav-cta.nav-dd-trigger:hover {
  color: #fff !important;
  background: var(--gd) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(124, 58, 237, 0.5) !important;
}
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  padding-top: 8px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.28s ease,
    visibility 0.28s ease,
    transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1100;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-item:last-child .nav-dropdown {
  left: auto;
  right: 0;
  transform: translateY(10px);
}
.nav-item:last-child:hover .nav-dropdown,
.nav-item:last-child:focus-within .nav-dropdown {
  transform: translateY(0);
}
.nav-dropdown-arrow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -9px;
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-bottom: 9px solid rgba(124, 58, 237, 0.55);
  filter: drop-shadow(0 -1px 8px rgba(124, 58, 237, 0.45));
  z-index: 2;
  pointer-events: none;
}
.nav-dropdown-arrow::after {
  content: '';
  position: absolute;
  left: -8px;
  top: 2px;
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid rgba(17, 17, 24, 0.98);
}
.nav-item:last-child .nav-dropdown-arrow {
  left: auto;
  right: 20px;
  margin-left: 0;
}
.nav-dropdown-panel {
  position: relative;
  margin-top: 7px;
  background: rgba(17, 17, 24, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(124, 58, 237, 0.5);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.25);
  padding: 8px 6px;
  min-width: 240px;
}
.nav-dropdown-panel--compact {
  min-width: 210px;
}
.nav-dropdown-panel--wide {
  min-width: 268px;
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--txm);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
  transition: background 0.2s, color 0.2s;
}
.nav-dropdown-item:hover {
  background: rgba(124, 58, 237, 0.14);
  color: var(--tx);
}
.nav-cta + .nav-dropdown .nav-dropdown-item {
  color: var(--txm);
}
.nav-cta + .nav-dropdown .nav-dropdown-item:hover {
  color: var(--tx);
}
.nav-dropdown-item:focus-visible {
  outline: 2px solid var(--prl);
  outline-offset: 1px;
}
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--tx);
  border-radius: 2px;
  transition: all 0.3s;
  transform-origin: center;
  display: block;
}
.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-drawer {
  display: none;
  position: fixed;
  top: calc(var(--nav-h) + var(--safe-top));
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 15, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  padding: 24px clamp(18px, 4vw, 36px);
  padding-bottom: max(24px, var(--safe-bottom));
  padding-left: max(clamp(18px, 4vw, 36px), var(--safe-left));
  padding-right: max(clamp(18px, 4vw, 36px), var(--safe-right));
  gap: 4px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.nav-drawer.open {
  display: flex;
}
.nav-drawer a {
  color: var(--txm);
  font-size: clamp(16px, 4vw, 20px);
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}
.nav-drawer a:hover,
.nav-drawer a:active {
  color: var(--prl);
}
.nav-drawer .d-cta {
  background: var(--gd);
  color: #fff !important;
  padding: 16px 24px;
  border-radius: 12px;
  margin-top: 12px;
  text-align: center;
  font-weight: 700;
  border-bottom: none !important;
}

/* Bottom bar navigation removed — use hamburger / drawer below 1024px */
.bottom-nav {
  display: none !important;
}

/* ════════════════════════════════════════
   SECTION SHARED
════════════════════════════════════════ */
section {
  position: relative;
  z-index: 10;
  padding: clamp(48px, 8vw, 100px) 0;
}
section[id],
.service-card[id],
.mv-card[id],
.product-card[id],
.brand-card[id],
.blog-card[id] {
  scroll-margin-top: calc(var(--nav-h) + var(--safe-top) + 16px);
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 36px);
  padding-left: max(clamp(18px, 4vw, 36px), var(--safe-left));
  padding-right: max(clamp(18px, 4vw, 36px), var(--safe-right));
}
.section-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--prl);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--gd);
  border-radius: 1px;
}
.section-title {
  font-weight: 700;
  font-size: clamp(26px, 5vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  word-wrap: break-word;
}
.section-sub {
  font-size: clamp(14px, 2vw, 16px);
  color: var(--txm);
  line-height: 1.78;
  max-width: 540px;
}
.section-header {
  margin-bottom: clamp(28px, 5vw, 56px);
}
.section-header.center {
  text-align: center;
}
.section-header.center .section-label {
  justify-content: center;
}
.section-header.center .section-sub {
  margin: 0 auto;
}
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.3), transparent);
  margin: 0 clamp(18px, 4vw, 36px);
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
#home {
  padding-top: calc(var(--nav-h) + var(--safe-top) + clamp(24px, 5vw, 48px));
  padding-bottom: clamp(40px, 6vw, 80px);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 56px);
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(124, 58, 237, 0.15);
  border: 1px solid rgba(124, 58, 237, 0.3);
  padding: 7px 15px;
  border-radius: 100px;
  font-size: clamp(10px, 2vw, 12px);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--prl);
  margin-bottom: 18px;
  max-width: 100%;
  flex-wrap: wrap;
}
.pulse-dot {
  width: 6px;
  height: 6px;
  background: var(--ac2);
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero-headline {
  font-weight: 700;
  font-size: clamp(32px, 7vw, 66px);
  line-height: 1.07;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
  word-wrap: break-word;
}
.hero-desc {
  font-size: clamp(14px, 2.2vw, 17px);
  color: var(--txm);
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: clamp(24px, 4vw, 36px);
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 5vw, 44px);
}
.btn-primary {
  background: var(--gd);
  color: #fff;
  padding: clamp(13px, 2vw, 15px) clamp(22px, 3vw, 30px);
  border-radius: 10px;
  font-weight: 700;
  font-size: clamp(14px, 2vw, 16px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 8px 28px rgba(124, 58, 237, 0.38);
  transition: all 0.3s;
  min-height: 48px;
  touch-action: manipulation;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(124, 58, 237, 0.5);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--tx);
  padding: clamp(13px, 2vw, 15px) clamp(22px, 3vw, 30px);
  border-radius: 10px;
  font-weight: 600;
  font-size: clamp(14px, 2vw, 16px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s;
  min-height: 48px;
  touch-action: manipulation;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.28);
}
.hero-stats {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  flex-wrap: wrap;
}
.stat-num {
  font-weight: 700;
  font-size: clamp(24px, 4vw, 32px);
  background: var(--gd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.stat-label {
  font-size: clamp(11px, 1.5vw, 13px);
  color: var(--txd);
  margin-top: 2px;
}

/* Hero carousel */
.hero-carousel {
  position: relative;
  border-radius: var(--r3);
  overflow: hidden;
  height: clamp(220px, 42vw, 440px);
  min-height: 200px;
  border: 1px solid var(--bd);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55);
  touch-action: pan-y;
}
.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72);
  transition: transform 6s ease;
}
.carousel-slide.active img {
  transform: scale(1.04);
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(170deg, rgba(10, 10, 15, 0.12) 0%, rgba(10, 10, 15, 0.85) 100%);
}
.slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: clamp(16px, 3vw, 28px);
}
.slide-cat {
  font-size: clamp(9px, 1.5vw, 11px);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--prl);
  margin-bottom: 5px;
}
.slide-title {
  font-weight: 700;
  font-size: clamp(14px, 2.5vw, 18px);
  color: #fff;
  line-height: 1.3;
}
.c-dots {
  position: absolute;
  bottom: clamp(12px, 2vw, 18px);
  right: clamp(12px, 2vw, 18px);
  display: flex;
  gap: 6px;
  z-index: 5;
  flex-wrap: wrap;
  max-width: 60%;
  justify-content: flex-end;
}
.c-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
  flex-shrink: 0;
}
.c-dot.active {
  background: #fff;
  width: 22px;
  border-radius: 3px;
}
.c-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 clamp(8px, 2vw, 14px);
  z-index: 5;
  pointer-events: none;
}
.c-arrow {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 50%;
  background: rgba(10, 10, 15, 0.55);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  pointer-events: all;
  transition: all 0.2s;
  line-height: 1;
  touch-action: manipulation;
}
.c-arrow:hover {
  background: rgba(124, 58, 237, 0.55);
  border-color: var(--pr);
  box-shadow: var(--glow);
}

/* ════════════════════════════════════════
   TICKER
════════════════════════════════════════ */
.ticker {
  padding: clamp(12px, 2vw, 16px) 0;
  background: var(--sf);
  border-top: 1px solid var(--bd);
  border-bottom: 1px solid var(--bd);
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.ticker-track {
  display: flex;
  animation: tick 30s linear infinite;
  width: max-content;
}
.ticker-item {
  white-space: nowrap;
  padding: 0 clamp(24px, 4vw, 40px);
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 500;
  color: var(--txm);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.ticker-sep {
  color: var(--pr);
  font-size: 16px;
}
@keyframes tick {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
#services {
  background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.03) 50%, transparent);
}
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 2vw, 20px);
}
.services-grid > .service-card {
  min-width: 0;
}
.service-card {
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: clamp(18px, 3vw, 30px);
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
  display: flex;
  gap: clamp(14px, 2vw, 20px);
  align-items: flex-start;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gd);
  opacity: 0;
  transition: opacity 0.35s;
  z-index: 0;
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--prl);
  box-shadow: var(--glow);
}
.service-card:hover::before {
  opacity: 0.05;
}
.service-card > * {
  position: relative;
  z-index: 1;
}
.svc-icon {
  width: clamp(44px, 6vw, 52px);
  height: clamp(44px, 6vw, 52px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(20px, 3vw, 24px);
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.22);
  flex-shrink: 0;
  transition: all 0.3s;
}
.service-card:hover .svc-icon {
  background: rgba(124, 58, 237, 0.25);
  transform: scale(1.08);
}
.svc-info {
  flex: 1;
  min-width: 0;
}
.svc-title {
  font-weight: 700;
  font-size: clamp(14px, 2vw, 16px);
  margin-bottom: 6px;
  color: var(--tx);
  line-height: 1.3;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.svc-desc {
  font-size: clamp(12px, 1.5vw, 13.5px);
  color: var(--txm);
  line-height: 1.7;
  margin: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 10px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--prl);
  transition: gap 0.2s;
}
.svc-link:hover {
  gap: 8px;
}
.svc-arrow {
  font-size: 20px;
  color: var(--prl);
  flex-shrink: 0;
  align-self: center;
  transition: transform 0.2s;
}
.service-card:hover .svc-arrow {
  transform: translateX(4px);
}

.svc-popup {
  display: none;
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  width: clamp(220px, 25vw, 270px);
  background: rgba(22, 22, 42, 0.98);
  border: 1px solid var(--prl);
  border-radius: 14px;
  padding: 18px;
  z-index: 500;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  box-shadow: var(--glow);
  backdrop-filter: blur(16px);
}
.svc-popup::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 7px solid transparent;
  border-top-color: var(--prl);
}
.svc-popup-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--prl);
  margin-bottom: 7px;
}
.svc-popup-text {
  font-size: 12px;
  color: var(--txm);
  line-height: 1.65;
}
.svc-popup-list {
  margin-top: 8px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.svc-popup-list li {
  font-size: 11.5px;
  color: var(--txm);
  display: flex;
  align-items: center;
  gap: 5px;
}
.svc-popup-list li::before {
  content: '✦';
  font-size: 7px;
  color: var(--pr);
  flex-shrink: 0;
}

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-carousel-wrap {
  border-radius: var(--r3);
  overflow: visible;
}
.about-carousel-inner {
  border-radius: var(--r3);
  overflow: hidden;
  border: 1px solid var(--bd);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}
.about-carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  touch-action: pan-y;
}
.about-carousel-track .carousel-slide {
  min-width: 100%;
  height: clamp(220px, 42vw, 370px);
  min-height: 200px;
}
.about-carousel-track .carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.68);
}
.about-badge {
  position: absolute;
  background: rgba(22, 22, 42, 0.96);
  border: 1px solid var(--bd);
  border-radius: 14px;
  padding: clamp(12px, 2vw, 16px) clamp(14px, 2vw, 20px);
  backdrop-filter: blur(12px);
  z-index: 20;
  max-width: calc(100% - 24px);
}
.about-badge.ab1 {
  bottom: clamp(-12px, -2vw, -22px);
  right: clamp(-12px, -2vw, -22px);
}
.about-badge.ab2 {
  top: clamp(-12px, -2vw, -22px);
  left: clamp(-12px, -2vw, -22px);
}
.ab-icon {
  font-size: clamp(18px, 2.5vw, 22px);
  margin-bottom: 3px;
}
.ab-val {
  font-weight: 700;
  font-size: clamp(18px, 2.5vw, 22px);
  color: var(--tx);
}
.ab-label {
  font-size: clamp(9px, 1.2vw, 11px);
  color: var(--txd);
}
.about-cdots {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 5;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 90%;
}
.mv-cards {
  display: grid;
  gap: clamp(14px, 2vw, 18px);
  margin-top: clamp(20px, 3vw, 34px);
}
.mv-card {
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  padding: clamp(16px, 2.5vw, 24px);
  display: flex;
  gap: clamp(14px, 2vw, 18px);
  align-items: flex-start;
  transition: all 0.3s;
}
.mv-card:hover {
  border-color: var(--pr);
  transform: translateX(4px);
}
.mv-icon {
  width: clamp(36px, 5vw, 42px);
  height: clamp(36px, 5vw, 42px);
  border-radius: 10px;
  background: rgba(124, 58, 237, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(16px, 2.2vw, 19px);
  flex-shrink: 0;
}
.mv-title {
  font-weight: 700;
  font-size: clamp(13px, 1.8vw, 15px);
  margin-bottom: 5px;
}
.mv-text {
  font-size: clamp(12px, 1.5vw, 13px);
  color: var(--txm);
  line-height: 1.72;
}
.about-lead {
  font-size: clamp(13.5px, 1.8vw, 15px);
  color: var(--txm);
  line-height: 1.85;
  margin-bottom: clamp(20px, 3vw, 28px);
}

/* ════════════════════════════════════════
   PRODUCTS
════════════════════════════════════════ */
.products-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 2vw, 24px);
}
.product-card {
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: var(--r3);
  padding: clamp(22px, 4vw, 38px);
  position: relative;
  overflow: hidden;
  transition: all 0.35s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 55px rgba(0, 0, 0, 0.3);
  border-color: var(--prl);
}
.product-tag {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  display: inline-block;
}
.tag-health {
  background: rgba(16, 185, 129, 0.1);
  color: #10B981;
  border: 1px solid rgba(16, 185, 129, 0.2);
}
.tag-edu {
  background: rgba(59, 130, 246, 0.1);
  color: #3B82F6;
  border: 1px solid rgba(59, 130, 246, 0.2);
}
.product-name {
  font-weight: 700;
  font-size: clamp(20px, 3vw, 24px);
  margin-bottom: 10px;
  word-wrap: break-word;
}
.product-desc {
  font-size: clamp(13px, 1.8vw, 14px);
  color: var(--txm);
  line-height: 1.78;
  margin-bottom: 20px;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: clamp(13px, 1.8vw, 14px);
  font-weight: 600;
  color: var(--prl);
  transition: gap 0.2s;
  word-break: break-word;
}
.product-link:hover {
  gap: 14px;
}
.product-glyph {
  position: absolute;
  bottom: -28px;
  right: -16px;
  font-size: clamp(80px, 12vw, 115px);
  opacity: 0.05;
  line-height: 1;
  pointer-events: none;
}

/* ════════════════════════════════════════
   BRANDS
════════════════════════════════════════ */
#brands {
  background: var(--sf);
}
.brands-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 2vw, 16px);
  margin-top: clamp(28px, 4vw, 48px);
}
.brand-card {
  background: var(--dk2);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  overflow: hidden;
  transition: all 0.35s;
  cursor: default;
}
.brand-card:hover {
  border-color: var(--prl);
  box-shadow: var(--glow);
  transform: translateY(-3px);
}
.brand-card-inner {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
}
.brand-logo-strip {
  width: clamp(110px, 18vw, 150px);
  min-height: clamp(64px, 10vw, 80px);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 1.5vw, 12px);
  box-sizing: border-box;
}
.brand-logo-strip--betwinner {
  background: #1E3D0A;
}
.brand-logo-strip--bcgame {
  background: #000000;
}
.brand-logo-strip--betano {
  background: #FFFFFF;
}
.brand-logo-strip--campeonbet {
  background: #000000;
}
.brand-logo-strip--rainbet {
  background: #0C0C8A;
}
.brand-logo-strip img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 56px;
  object-fit: contain;
  object-position: center;
}
.brand-divider {
  width: 1px;
  background: var(--bd);
  align-self: stretch;
  flex-shrink: 0;
}
.brand-info {
  flex: 1;
  min-width: 0;
  padding: clamp(12px, 2vw, 18px) clamp(14px, 2.5vw, 20px);
}
.brand-name {
  font-weight: 700;
  font-size: clamp(13px, 2vw, 15px);
  margin-bottom: 3px;
  word-wrap: break-word;
}
.brand-cat {
  font-size: clamp(10px, 1.5vw, 11px);
  color: var(--txd);
  margin-bottom: 5px;
}
.brand-desc {
  font-size: clamp(11.5px, 1.5vw, 13px);
  color: var(--txm);
  line-height: 1.6;
}

/* ════════════════════════════════════════
   BLOG
════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(14px, 2vw, 24px);
}
.blog-card {
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: var(--r);
  overflow: hidden;
  transition: all 0.35s;
  cursor: pointer;
}
.blog-card:hover {
  transform: translateY(-6px);
  border-color: var(--prl);
  box-shadow: var(--glow);
}
.blog-img {
  height: clamp(170px, 28vw, 210px);
  min-height: 160px;
  position: relative;
  overflow: hidden;
}
.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.62);
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-img img {
  transform: scale(1.06);
}
.blog-img-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(36px, 5vw, 44px);
  opacity: 0.75;
  z-index: 2;
  pointer-events: none;
}
.blog-glow-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gd);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 100px;
  z-index: 3;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.3s;
}
.blog-card:hover .blog-glow-tag {
  opacity: 1;
  transform: translateY(0);
}
.blog-body {
  padding: clamp(16px, 2.5vw, 24px);
}
.blog-cat {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--prl);
  margin-bottom: 8px;
}
.blog-title {
  font-weight: 700;
  font-size: clamp(14px, 2.2vw, 17px);
  margin-bottom: 8px;
  line-height: 1.33;
}
.blog-excerpt {
  font-size: clamp(12px, 1.5vw, 13px);
  color: var(--txm);
  line-height: 1.72;
  margin-bottom: 16px;
}
.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: clamp(10.5px, 1.5vw, 12px);
  color: var(--txd);
  flex-wrap: wrap;
}
.blog-read {
  color: var(--prl);
  font-weight: 600;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  font-size: inherit;
  padding: 4px 0;
  touch-action: manipulation;
}

/* ════════════════════════════════════════
   ARTICLE MODAL
════════════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 5, 10, 0.94);
  z-index: 3000;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  -webkit-overflow-scrolling: touch;
  padding: var(--safe-top) var(--safe-right) var(--safe-bottom) var(--safe-left);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--sf);
  min-height: 100%;
  min-height: 100dvh;
  transform: translateY(32px);
  transition: transform 0.4s;
  max-width: 800px;
  margin: 0 auto;
}
.modal-overlay.open .modal-box {
  transform: translateY(0);
}
.modal-hero-img {
  width: 100%;
  height: clamp(200px, 35vw, 300px);
  object-fit: cover;
  filter: brightness(0.65);
}
.modal-close {
  position: fixed;
  top: max(16px, var(--safe-top));
  right: max(16px, var(--safe-right));
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(10, 10, 15, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3001;
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition: all 0.2s;
  touch-action: manipulation;
}
.modal-close:hover {
  background: rgba(124, 58, 237, 0.5);
  border-color: var(--pr);
}
.modal-content {
  padding: clamp(22px, 4vw, 40px);
  padding-bottom: max(clamp(22px, 4vw, 40px), calc(var(--safe-bottom) + 16px));
}
.modal-cat {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--prl);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal-cat::before {
  content: '';
  width: 18px;
  height: 2px;
  background: var(--gd);
  border-radius: 1px;
}
.modal-title {
  font-weight: 700;
  font-size: clamp(20px, 4vw, 30px);
  line-height: 1.2;
  margin-bottom: 12px;
  word-wrap: break-word;
}
.modal-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: var(--txd);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.modal-body p {
  font-size: clamp(14px, 2vw, 15.5px);
  color: var(--txm);
  line-height: 1.85;
  margin-bottom: 18px;
}
.modal-body h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 2.5vw, 20px);
  color: var(--tx);
  margin: 26px 0 10px;
}
.modal-body ul,
.modal-body ol {
  margin: 0 0 18px 20px;
  color: var(--txm);
  font-size: clamp(13px, 1.8vw, 15px);
  line-height: 1.85;
}
.modal-body li {
  margin-bottom: 5px;
}
.modal-body blockquote {
  border-left: 3px solid var(--pr);
  padding: 14px 18px;
  background: rgba(124, 58, 237, 0.08);
  border-radius: 0 10px 10px 0;
  margin: 22px 0;
  font-style: italic;
  color: var(--txm);
}
.modal-body strong {
  color: var(--tx);
}
.modal-body a {
  color: var(--prl);
  word-break: break-word;
}

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 4vw, 60px);
}
.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 2vw, 18px);
}
.cinfo-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(12px, 2vw, 16px);
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: var(--r2);
  padding: clamp(14px, 2.5vw, 20px);
  transition: border-color 0.2s;
}
.cinfo-item:hover {
  border-color: var(--pr);
}
.cinfo-icon {
  width: clamp(38px, 5vw, 44px);
  height: clamp(38px, 5vw, 44px);
  border-radius: 11px;
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid rgba(124, 58, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(15px, 2.2vw, 18px);
  flex-shrink: 0;
}
.cinfo-label {
  font-size: clamp(9.5px, 1.3vw, 11px);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--txd);
  margin-bottom: 4px;
}
.cinfo-val {
  font-size: clamp(13px, 1.8vw, 14px);
  color: var(--tx);
  line-height: 1.65;
  word-break: break-word;
}
.cinfo-val a {
  color: var(--prl);
}
.contact-form {
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: var(--r3);
  padding: clamp(22px, 4vw, 40px);
}
.form-group {
  margin-bottom: clamp(14px, 2vw, 20px);
}
.form-group label {
  display: block;
  font-size: clamp(10px, 1.3vw, 11.5px);
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--txd);
  margin-bottom: 7px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  max-width: 100%;
  background: var(--dk2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: clamp(12px, 2vw, 14px) 15px;
  color: var(--tx);
  font-size: clamp(14px, 1.8vw, 15px);
  font-family: inherit;
  outline: none;
  transition: all 0.2s;
  -webkit-appearance: none;
  appearance: none;
  min-height: 48px;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--pr);
  background: rgba(124, 58, 237, 0.04);
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.custom-select {
  position: relative;
  width: 100%;
  user-select: none;
}

.custom-select__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #111118;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 13px 15px;
  color: #9ca3af;
  font-size: 15px;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 48px;
}

.custom-select__trigger:hover {
  border-color: rgba(124, 58, 237, 0.4);
}

.custom-select.open .custom-select__trigger {
  border-color: #7c3aed;
  background: #16162a;
  box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.12);
}

.custom-select.open .custom-select__trigger svg {
  transform: rotate(180deg);
}

.custom-select__trigger svg {
  transition: transform 0.2s;
  flex-shrink: 0;
}

.custom-select__options {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #16162a;
  border: 1px solid rgba(124, 58, 237, 0.4);
  border-radius: 10px;
  overflow: hidden;
  z-index: 100;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  max-height: 280px;
  overflow-y: auto;
  display: none;
}

/* Required: panel hidden until .open (see .custom-select.open below) */
/* Belt-and-suspenders if another rule overrides display */
.custom-select:not(.open) .custom-select__options {
  display: none !important;
}

.custom-select.open .custom-select__options {
  display: block !important;
  animation: dropdownFade 0.2s ease;
}

@keyframes dropdownFade {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.custom-option {
  padding: 12px 16px;
  color: #f1f0ff;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.custom-option:last-child {
  border-bottom: none;
}

.custom-option:hover {
  background: rgba(124, 58, 237, 0.2);
  color: #a78bfa;
}

.custom-option.selected {
  background: rgba(124, 58, 237, 0.15);
  color: #a78bfa;
  font-weight: 600;
}

.custom-option:first-child {
  color: #6b7280;
}
.form-group textarea {
  height: clamp(100px, 15vw, 130px);
  resize: vertical;
  min-height: 100px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(12px, 2vw, 16px);
}
.btn-submit {
  width: 100%;
  background: var(--gd);
  color: #fff;
  border: none;
  padding: clamp(14px, 2vw, 16px);
  border-radius: 10px;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 700;
  min-height: 52px;
  transition: all 0.3s;
  font-family: inherit;
  touch-action: manipulation;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.45);
}
.form-success {
  color: #10b981;
  font-size: 14px;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 0;
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
  background: var(--dk2);
  border-top: 1px solid var(--bd);
  padding: clamp(40px, 6vw, 68px) clamp(18px, 4vw, 36px) clamp(24px, 3vw, 32px);
  padding-left: max(clamp(18px, 4vw, 36px), var(--safe-left));
  padding-right: max(clamp(18px, 4vw, 36px), var(--safe-right));
  position: relative;
  z-index: 10;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 48px);
  margin-bottom: clamp(32px, 5vw, 54px);
}
.footer-brand-col {
  max-width: 100%;
}
.footer-desc {
  font-size: clamp(12.5px, 1.8vw, 13.5px);
  color: var(--txd);
  line-height: 1.78;
  margin-top: 14px;
  max-width: 340px;
}
.footer-socials {
  display: flex;
  gap: 9px;
  margin-top: 20px;
  flex-wrap: wrap;
}
.social-btn {
  width: 44px;
  height: 44px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--bd);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--txm);
  transition: all 0.2s;
}
.social-btn svg {
  display: block;
  width: 18px;
  height: 18px;
}
.social-btn:hover {
  background: rgba(124, 58, 237, 0.15);
  border-color: var(--pr);
  color: var(--prl);
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.3);
}
.footer-links-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 3vw, 32px);
}
.footer-col h4 {
  font-weight: 700;
  font-size: clamp(12.5px, 1.8vw, 14px);
  color: var(--tx);
  margin-bottom: clamp(12px, 2vw, 18px);
}
.footer-col-sub {
  margin-top: clamp(18px, 2.5vw, 24px);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1.2vw, 11px);
}
.footer-links li a {
  color: var(--txd);
  font-size: clamp(12.5px, 1.7vw, 13.5px);
  transition: all 0.2s;
  display: block;
  padding: 2px 0;
  word-break: break-word;
}
.footer-links li a:hover {
  color: var(--prl);
  padding-left: 4px;
}
.footer-bottom {
  border-top: 1px solid var(--bd);
  padding-top: clamp(20px, 3vw, 28px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-copy {
  font-size: clamp(11.5px, 1.5vw, 12.5px);
  color: var(--txd);
  word-break: break-word;
}
.footer-copy a {
  color: var(--prl);
}
.footer-legal {
  display: flex;
  gap: clamp(12px, 2vw, 20px);
  flex-wrap: wrap;
}
.footer-legal a {
  font-size: clamp(10.5px, 1.4vw, 11.5px);
  color: var(--txd);
  transition: color 0.2s;
}
.footer-legal a:hover {
  color: var(--tx);
}

/* ════════════════════════════════════════
   REVEAL ANIMATION
════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════════════════════
   WHATSAPP FLOAT
════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #ffffff;
  padding: 14px 20px 14px 16px;
  border-radius: 50px;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: all 0.3s ease;
  animation: whatsappPulse 2.5s infinite;
}

.whatsapp-float:hover {
  background: #128c7e;
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55);
  animation: none;
}

.whatsapp-float__label {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

@keyframes whatsappPulse {
  0% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  }

  50% {
    box-shadow:
      0 6px 24px rgba(37, 211, 102, 0.45),
      0 0 0 10px rgba(37, 211, 102, 0.1);
  }

  100% {
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: 0;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 18px;
    padding: 14px;
    border-radius: 50%;
  }

  .whatsapp-float__label {
    display: none;
  }
}

/* ════════════════════════════════════════
   ▸ TABLET  768px – 1023px
════════════════════════════════════════ */
@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }
  .hamburger {
    display: flex;
  }
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
  .brands-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand-col {
    grid-column: 1 / -1;
  }
  .footer-links-cols {
    display: contents;
  }
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .svc-arrow {
    display: none;
  }
}

/* ════════════════════════════════════════
   ▸ DESKTOP  1024px+
════════════════════════════════════════ */
@media (min-width: 1024px) {
  .hamburger {
    display: none;
  }
  .nav-drawer {
    display: none !important;
  }
  .nav-links {
    display: flex;
  }
  .services-grid {
    grid-template-columns: repeat(4, 1fr);
    display: grid;
  }
  .service-card {
    flex-direction: column;
    gap: 0;
    overflow: visible;
    align-items: stretch;
  }
  .svc-icon {
    margin-bottom: 16px;
  }
  .svc-arrow {
    display: none;
  }
  .svc-popup {
    display: block;
  }
  .service-card:hover .svc-popup {
    opacity: 1;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
  }
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  .products-grid {
    grid-template-columns: 1fr 1fr;
  }
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .contact-wrap {
    grid-template-columns: 1fr 1fr;
  }
  .footer-top {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    display: grid;
  }
  .footer-brand-col {
    grid-column: auto;
  }
  .footer-links-cols {
    display: contents;
  }
  .hero-actions {
    flex-wrap: nowrap;
  }
}

/* ════════════════════════════════════════
   ▸ LARGE DESKTOP  1280px+
════════════════════════════════════════ */
@media (min-width: 1280px) {
  .brands-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ════════════════════════════════════════
   ▸ MOBILE ONLY  < 768px
════════════════════════════════════════ */
@media (max-width: 767.98px) {
  body {
    padding-bottom: 0;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .hero-actions {
    flex-direction: column;
  }
  .about-badge.ab1 {
    bottom: -10px;
    right: -10px;
  }
  .about-badge.ab2 {
    top: -10px;
    left: -10px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
  .footer-brand-col,
  .footer-links-cols {
    grid-column: auto;
  }
}

/* Extra-narrow phones + brand row readability */
@media (max-width: 479.98px) {
  .brand-card-inner {
    flex-direction: column;
    align-items: stretch;
  }
  .brand-divider {
    width: 100%;
    height: 1px;
  }
  .brand-logo-strip {
    width: 100%;
    max-width: none;
    min-height: 72px;
  }
  .brand-logo-strip img {
    max-height: 64px;
  }
  .hero-carousel {
    height: clamp(200px, 52vw, 320px);
  }
}

/* Short viewports (landscape phones) */
@media (max-height: 500px) and (orientation: landscape) {
  #home {
    padding-top: calc(var(--nav-h) + var(--safe-top) + 16px);
    padding-bottom: 24px;
  }
  .hero-carousel {
    height: min(220px, 40vh);
  }
  .about-carousel-track .carousel-slide {
    height: min(200px, 45vh);
  }
}

/* ════════════════════════════════════════
   LEGAL PAGES (privacy, terms, cookies)
════════════════════════════════════════ */
.legal-page-wrap {
  padding-top: calc(var(--nav-h) + var(--safe-top) + clamp(24px, 5vw, 48px));
  padding-bottom: clamp(48px, 8vw, 100px);
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: clamp(20px, 4vw, 32px);
  padding: 12px 20px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(124, 58, 237, 0.08);
  color: var(--tx);
  font-size: clamp(14px, 1.8vw, 15px);
  font-weight: 600;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.legal-back:hover {
  background: rgba(124, 58, 237, 0.15);
  border-color: rgba(124, 58, 237, 0.45);
  transform: translateX(-2px);
}
.legal-hero-sub {
  max-width: 640px;
}
.legal-prose {
  max-width: 800px;
}
.legal-prose h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(17px, 2.4vw, 21px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--tx);
  margin-top: clamp(28px, 5vw, 44px);
  margin-bottom: 12px;
}
.legal-prose h2:first-of-type {
  margin-top: clamp(8px, 2vw, 16px);
}
.legal-prose p,
.legal-prose li {
  font-size: clamp(14px, 1.85vw, 16px);
  color: var(--txm);
  line-height: 1.78;
}
.legal-prose p {
  margin-bottom: 14px;
}
.legal-prose ul {
  margin: 10px 0 18px 1.25rem;
  padding: 0;
}
.legal-prose li {
  margin-bottom: 8px;
}
.legal-prose a {
  color: var(--prl);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal-prose a:hover {
  color: var(--tx);
}
.legal-prose code {
  font-family: ui-monospace, 'Cascadia Code', 'Segoe UI Mono', monospace;
  font-size: 0.92em;
  background: rgba(124, 58, 237, 0.12);
  padding: 2px 7px;
  border-radius: 4px;
  color: var(--prl);
}
.legal-contact-block {
  margin-top: 8px;
  padding: clamp(16px, 3vw, 22px);
  background: var(--sf);
  border: 1px solid var(--bd);
  border-radius: var(--r3);
}
.legal-contact-block p {
  margin-bottom: 8px;
}
.legal-contact-block p:last-child {
  margin-bottom: 0;
}
