/* ============================================================
   TEAM NO LIMIT — MASTER STYLESHEET (FINAL)
   Creative Digital Agency · Khourigba, Morocco
   All beam glitch issues resolved · Production-ready
   ============================================================ */

/* --- CSS Custom Properties --- */
:root {
  --purple: #B900FF;
  --deep-violet: #4E0484;
  --mid-purple: #8000CC;
  --bg: #020204;
  --text: #FFFFFF;
  --muted: rgba(255, 255, 255, 0.60);
  --subtle: rgba(255, 255, 255, 0.30);
  --card-bg: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.09);
  --font-heading: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --nav-height: 72px;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
}

/* --- Utility --- */
.gradient-text {
  background: linear-gradient(135deg, var(--purple), #FF00AA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   BACKGROUND SYSTEM (FIXED — No More Glitch Beams)
   ============================================================ */
.bg-root {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 70% at 75% -5%, rgba(120, 0, 200, 0.55) 0%, transparent 58%),
    radial-gradient(ellipse 70% 55% at -5% 85%, rgba(60, 0, 130, 0.65) 0%, transparent 52%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(90, 0, 160, 0.12) 0%, transparent 80%),
    linear-gradient(180deg, #04000e 0%, #020204 45%, #020108 100%);
}

/* ============================================================
   ANIMATED ORBS — Soft, Blurred, Atmospheric
   ============================================================ */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  will-change: transform, opacity;
  pointer-events: none;
}

.o1 {
  width: 820px;
  height: 820px;
  top: -10%;
  right: -10%;
  background: rgba(185, 0, 255, 0.5);
  animation: orbFloat1 16s alternate infinite;
}

.o2 {
  width: 620px;
  height: 620px;
  bottom: -5%;
  left: -8%;
  background: rgba(78, 4, 132, 0.55);
  animation: orbFloat2 11s alternate-reverse infinite;
}

.o3 {
  width: 480px;
  height: 480px;
  top: 40%;
  left: 45%;
  background: rgba(120, 0, 200, 0.35);
  animation: orbPulse 9s ease-in-out infinite;
}

.o4 {
  width: 320px;
  height: 320px;
  top: 10%;
  left: 15%;
  background: rgba(255, 0, 180, 0.28);
  animation: orbFloat1 14s 2s alternate infinite;
}

.o5 {
  width: 260px;
  height: 260px;
  bottom: 15%;
  right: 20%;
  background: rgba(100, 0, 255, 0.38);
  animation: orbFloat2 10s 4s alternate-reverse infinite;
}

.o6 {
  width: 380px;
  height: 380px;
  top: 45%;
  right: 5%;
  background: rgba(185, 0, 255, 0.22);
  filter: blur(110px);
  animation: orbFloat1 14s 3s alternate infinite;
}

@keyframes orbFloat1 {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(50px, 72px) scale(1.14);
  }
}

@keyframes orbFloat2 {
  from {
    transform: translate(0, 0) scale(1.05);
  }
  to {
    transform: translate(-40px, -55px) scale(0.92);
  }
}

@keyframes orbPulse {
  0%, 100% {
    opacity: 0.4;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.08);
  }
}

/* ============================================================
   LIGHT BEAMS — Soft Glow Instead of Hard Lines (FIXED)
   ============================================================ */

/* Beam 1 — Wide, blurred, radial gradient instead of 2px hard line */
.bg-beam {
  position: absolute;
  top: -20%;
  right: 20%;
  width: 180px;
  height: 180%;
  background: radial-gradient(
    ellipse 8% 90% at 50% 50%,
    rgba(185, 0, 255, 0.18) 0%,
    rgba(185, 0, 255, 0.06) 30%,
    transparent 70%
  );
  transform: rotate(18deg);
  transform-origin: center;
  filter: blur(40px);
  animation: beamGlow 8s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

/* Beam 2 — Mirrored, slightly different color and timing */
.bg-beam-2 {
  position: absolute;
  top: -20%;
  left: 20%;
  width: 140px;
  height: 180%;
  background: radial-gradient(
    ellipse 6% 90% at 50% 50%,
    rgba(120, 0, 200, 0.12) 0%,
    rgba(120, 0, 200, 0.04) 40%,
    transparent 70%
  );
  transform: rotate(-18deg);
  transform-origin: center;
  filter: blur(50px);
  animation: beamGlow2 10s 2s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes beamGlow {
  0%, 100% {
    opacity: 0.4;
    filter: blur(40px);
  }
  50% {
    opacity: 0.75;
    filter: blur(35px);
  }
}

@keyframes beamGlow2 {
  0%, 100% {
    opacity: 0.3;
    filter: blur(50px);
  }
  50% {
    opacity: 0.6;
    filter: blur(42px);
  }
}

/* ============================================================
   SUBTLE GRID — Low opacity, radial fade mask
   ============================================================ */
.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(185, 0, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(185, 0, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   NOISE TEXTURE — Minimal, subtle grain
   ============================================================ */
.noise {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.025;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   CURSOR GLOW — Desktop only, follows mouse with lerp
   ============================================================ */
.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 0, 255, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  will-change: left, top;
}

/* ============================================================
   NAVBAR — Fixed, frosted glass on scroll
   ============================================================ */
#nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition:
    background 0.35s ease,
    border-color 0.35s ease,
    backdrop-filter 0.35s ease,
    box-shadow 0.35s ease;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(2, 2, 4, 0.82);
  border-color: rgba(185, 0, 255, 0.15);
  backdrop-filter: blur(32px) saturate(1.8) brightness(1.05);
  -webkit-backdrop-filter: blur(32px) saturate(1.8) brightness(1.05);
  box-shadow:
    0 1px 0 rgba(185, 0, 255, 0.12),
    0 8px 40px rgba(0, 0, 0, 0.7);
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-logo-img {
  height: 38px;
  width: auto;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.3s;
  padding: 0.25rem 0;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  right: 50%;
  height: 1.5px;
  background: linear-gradient(90deg, var(--purple), #FF00AA);
  transition: left 0.3s ease, right 0.3s ease;
}

.nav-links a:hover::after {
  left: 0;
  right: 0;
}

.nav-links a.nav-active {
  color: var(--text);
}

.nav-links a.nav-active::after {
  left: 0;
  right: 0;
}

.nav-cta {
  display: inline-flex !important;
}

/* ============================================================
   HAMBURGER — Animated to X
   ============================================================ */
.burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
  cursor: pointer;
  z-index: 1100;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.burger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.burger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================================
   MOBILE MENU — Full screen, slide in from right
   ============================================================ */
.mob-menu {
  position: fixed;
  inset: 0;
  z-index: 1050;
  display: none;
}

.mob-menu.open {
  display: block;
}

.mob-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  animation: fadeIn 0.3s ease;
}

.mob-menu-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 360px);
  background: rgba(2, 2, 4, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border-left: 1px solid rgba(185, 0, 255, 0.15);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
  padding: 2rem;
  animation: slideInRight 0.4s var(--spring);
}

.mob-menu-panel nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.mob-menu-panel a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--muted);
  transition: color 0.3s;
}

.mob-menu-panel a:hover {
  color: var(--purple);
}

.mob-menu-panel .btn-p {
  font-size: 1rem;
  font-family: var(--font-body);
  padding: 0.8rem 2rem;
}

.mob-socials {
  display: flex;
  gap: 1.5rem;
  color: var(--muted);
}

.mob-socials a:hover {
  color: var(--purple);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

/* ============================================================
   BUTTON SYSTEM — Purple gradient, WhatsApp green, Ghost
   ============================================================ */
.btn-p,
.btn-g,
.btn-wa,
.btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.75rem 1.75rem;
  border-radius: 100px;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
}

/* Primary Purple Button */
.btn-p {
  background: linear-gradient(135deg, var(--purple), var(--deep-violet));
  color: var(--text);
  box-shadow: 0 0 28px rgba(185, 0, 255, 0.35);
}

.btn-p:hover {
  box-shadow: 0 0 50px rgba(185, 0, 255, 0.55);
  transform: translateY(-2px);
}

.btn-p:active {
  transform: scale(0.97) translateY(1px);
}

/* Shimmer sweep animation */
.btn-p::after {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  transform: skewX(-25deg);
  transition: left 0.7s ease;
}

.btn-p:hover::after {
  left: 150%;
}

/* Ghost Button */
.btn-g {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn-g:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--purple);
  box-shadow: 0 0 20px rgba(185, 0, 255, 0.2);
}

/* WhatsApp Green Button */
.btn-wa {
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: white;
}

.btn-wa:hover {
  box-shadow: 0 0 30px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
}

/* Small Button Variant */
.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.825rem;
}

/* ============================================================
   SECTIONS — Spacing and backgrounds
   ============================================================ */
.section {
  padding: 7rem 5%;
  position: relative;
  z-index: 1;
}

.sdark {
  background: rgba(0, 0, 0, 0.35);
}

.spitch {
  background: linear-gradient(
    180deg,
    rgba(30, 0, 50, 0.5) 0%,
    transparent 50%,
    rgba(30, 0, 50, 0.5) 100%
  );
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  font-size: 1.1rem;
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.tagline-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--purple);
  font-size: 0.8em;
}

/* ============================================================
   SCROLL REVEAL — Blur to clear, staggered delays
   ============================================================ */
.sr {
  opacity: 0;
  transform: translateY(40px);
  filter: blur(4px);
  transition:
    opacity 0.7s var(--ease-out-expo),
    transform 0.7s var(--ease-out-expo),
    filter 0.7s var(--ease-out-expo);
}

.sr.in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.sd1 {
  transition-delay: 0.08s;
}

.sd2 {
  transition-delay: 0.16s;
}

.sd3 {
  transition-delay: 0.24s;
}

/* Hero reveal animations */
.rv {
  opacity: 0;
  transform: translateY(30px);
  animation: revUp 0.8s var(--ease-out-expo) forwards;
}

.rv-1 {
  animation-delay: 0.12s;
}

.rv-2 {
  animation-delay: 0.24s;
}

.rv-3 {
  animation-delay: 0.36s;
}

.rv-4 {
  animation-delay: 0.48s;
}

.rv-5 {
  animation-delay: 0.35s;
}

.rv-6 {
  animation-delay: 0.6s;
}

@keyframes revUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   HERO — Full viewport, 2-column grid
   ============================================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 7rem 5% 3rem;
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

/* Hero Copy */
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  border: 1px solid rgba(185, 0, 255, 0.32);
  font-size: 0.85rem;
  color: var(--muted);
  width: fit-content;
  background: rgba(185, 0, 255, 0.05);
}

.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  display: inline-block;
  animation: dotPulse 1.8s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(185, 0, 255, 0.6);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(185, 0, 255, 0);
  }
}

.hero-line {
  display: block;
}

.shimmer-text {
  background: linear-gradient(
    90deg,
    #B900FF,
    #FF00AA,
    #ffffff,
    #FF00AA,
    #B900FF
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmerText 5s linear infinite;
}

@keyframes shimmerText {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 300% center;
  }
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 480px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.hs {
  display: flex;
  flex-direction: column;
}

.hsn {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--purple), #FF00AA);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hsl {
  font-size: 0.85rem;
  color: var(--subtle);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hs-divider {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, transparent, var(--purple), transparent);
}

/* Hero Visual — Logo with orbital rings */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-logo {
  width: min(280px, 60vw);
  height: auto;
  border-radius: 12px;
  position: relative;
  z-index: 2;
  animation:
    logoFloat 6.5s ease-in-out infinite,
    logoGlow 4s alternate infinite;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-logo:hover {
  transform: scale(1.04);
  animation-play-state: paused;
  box-shadow: 0 0 80px rgba(185, 0, 255, 0.7) !important;
}

@keyframes logoFloat {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-22px);
  }
}

@keyframes logoGlow {
  from {
    box-shadow: 0 0 40px rgba(185, 0, 255, 0.35);
  }
  to {
    box-shadow: 0 0 70px rgba(185, 0, 255, 0.65);
  }
}

/* Orbital Rings & Dots */
.logo-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  height: 320px;
  pointer-events: none;
  z-index: 1;
}

.ring-a,
.ring-b,
.ring-c {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(185, 0, 255, 0.12);
  transform: translate(-50%, -50%);
}

.ring-a {
  width: 250px;
  height: 250px;
  animation: ringPulse 4s ease-in-out infinite;
}

.ring-b {
  width: 300px;
  height: 300px;
  animation: ringPulse 4s 0.5s ease-in-out infinite;
}

.ring-c {
  width: 350px;
  height: 350px;
  animation: ringPulse 4s 1s ease-in-out infinite;
}

@keyframes ringPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.4;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.8;
  }
}

.orbital-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, #FF00AA, var(--purple));
  box-shadow: 0 0 16px rgba(185, 0, 255, 0.7);
}

.dot-1 {
  animation: orbit1 6s linear infinite;
}

.dot-2 {
  animation: orbit2 8s linear infinite;
}

.dot-3 {
  animation: orbit3 10s linear infinite;
}

@keyframes orbit1 {
  0% {
    transform: rotate(0deg) translateX(120px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(120px) rotate(-360deg);
  }
}

@keyframes orbit2 {
  0% {
    transform: rotate(0deg) translateX(160px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(160px) rotate(-360deg);
  }
}

@keyframes orbit3 {
  0% {
    transform: rotate(0deg) translateX(200px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(200px) rotate(-360deg);
  }
}

/* Scroll Cue */
.scroll-cue {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
}

.sc-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--subtle);
}

.sc-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(to bottom, var(--purple), transparent);
  animation: scrollLine 2s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollLine {
  0%, 100% {
    transform: scaleY(0);
  }
  50% {
    transform: scaleY(1);
  }
}

/* ============================================================
   ABOUT SECTION — Mission/Vision + Value Cards
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-body {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.mv-card {
  background: var(--card-bg);
  border-left: 3px solid var(--purple);
  border-radius: 0 12px 12px 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.mv-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.mv-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.about-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.about-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

/* Value Cards — Top border reveal on hover */
.value-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 0, 255, 0.4);
  box-shadow: 0 0 30px rgba(185, 0, 255, 0.15);
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  right: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--purple),
    #FF00AA,
    transparent
  );
  transition: left 0.5s ease, right 0.5s ease;
}

.value-card:hover::before {
  left: 0;
  right: 0;
}

.vc-icon {
  font-size: 1.8rem;
  display: block;
  margin-bottom: 0.6rem;
}

.value-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.value-card p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================================
   WHY CHOOSE US — 4-column grid, same top-border hover
   ============================================================ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(185, 0, 255, 0.4);
  box-shadow: 0 0 30px rgba(185, 0, 255, 0.15);
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  right: 100%;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--purple),
    #FF00AA,
    transparent
  );
  transition: left 0.5s ease, right 0.5s ease;
}

.why-card:hover::before {
  left: 0;
  right: 0;
}

.why-icon {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.6rem;
}

.why-card h4 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.why-card p {
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
}

/* ============================================================
   FEATURED WORK — Filter tabs + media grid + IG banner
   ============================================================ */
.fw-filters {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.fw-tab {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  border: 1px solid var(--border);
  background: var(--card-bg);
  transition: all 0.3s ease;
  cursor: pointer;
}

.fw-tab:hover {
  border-color: rgba(185, 0, 255, 0.4);
  color: var(--text);
}

.fw-active {
  background: linear-gradient(135deg, var(--purple), var(--deep-violet));
  color: var(--text);
  border-color: transparent;
  box-shadow: 0 0 24px rgba(185, 0, 255, 0.4);
}

/* Media Grid */
.fw-grid {
  display: grid;
  grid-template-columns: 1fr 1.28fr 1fr;
  gap: 1.5rem;
}

.mcard {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition:
    border-color 0.4s ease,
    box-shadow 0.4s ease,
    transform 0.4s ease;
  position: relative;
  will-change: transform;
}

.mcard:hover {
  border-color: rgba(185, 0, 255, 0.45);
  box-shadow:
    0 0 0 1px rgba(185, 0, 255, 0.15),
    0 20px 60px rgba(185, 0, 255, 0.25),
    0 40px 80px rgba(0, 0, 0, 0.5);
  transform: translateY(-8px);
}

/* Click feedback */
.mcard:active {
  transform: translateY(-4px) scale(0.98);
  transition:
    border-color 0.1s ease,
    box-shadow 0.1s ease,
    transform 0.1s ease;
}

/* Keyboard accessibility */
.mcard:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 4px;
  border-radius: 16px;
}

/* Card Thumbnail */
.mcard-thumb {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.mcard-thumb-featured {
  height: 370px;
}

.mcard-thumb-poster {
  aspect-ratio: 1 / 1;
  height: auto;
}

.mcard-thumb-poster-featured {
  aspect-ratio: 4 / 5;
  height: auto;
}

.mcard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}

.mcard:hover .mcard-img {
  transform: scale(1.06);
}

.mcard-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.mcard:hover .mcard-overlay {
  opacity: 1;
  pointer-events: auto;
}

/* Action Orb */
.mcard-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.65);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.35s var(--spring);
  z-index: 3;
}

.mcard-orb-lg {
  width: 82px;
  height: 82px;
}

.mcard:hover .mcard-orb {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.mcard-hint {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  font-size: 0.85rem;
  font-weight: 500;
  color: white;
  opacity: 0;
  transition: all 0.35s ease;
  z-index: 3;
  white-space: nowrap;
}

.mcard:hover .mcard-hint {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Badges */
.mcard-badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  z-index: 3;
}

.badge-reel {
  background: rgba(185, 0, 255, 0.8);
  color: white;
}

.badge-poster {
  background: rgba(30, 90, 220, 0.75);
  color: white;
}

.mcard-featured-pill {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 3;
  background: linear-gradient(135deg, #FFD700, #FF8C00);
  color: #000;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
}

/* Card Footer */
.mcard-footer {
  padding: 1rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mcard-meta {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--muted);
}

.mcard-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  color: var(--subtle);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  background: var(--card-bg);
  border: 1px solid var(--border);
}

/* Instagram Follow Banner */
.ig-banner {
  margin-top: 3rem;
  background: linear-gradient(
    135deg,
    rgba(185, 0, 255, 0.1),
    rgba(255, 0, 180, 0.08)
  );
  border: 1px solid rgba(185, 0, 255, 0.2);
  border-radius: 20px;
  padding: 1.5rem 2rem;
}

.ig-banner-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.ig-avatar {
  width: 44px;
  height: 44px;
  border-radius: 8px;
}

.ig-banner-text {
  display: flex;
  flex-direction: column;
}

.ig-handle {
  font-weight: 600;
}

.ig-follow-text {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ============================================================
   SERVICES — Numbered list with slide-in border
   ============================================================ */
.srv-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.srv-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition:
    padding-left 0.35s ease,
    border-color 0.35s ease;
}

.srv-item:hover {
  border-color: rgba(185, 0, 255, 0.4);
  padding-left: 2.5rem;
}

.srv-item::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(to bottom, var(--purple), #FF00AA);
  border-radius: 2px;
  transition: width 0.35s var(--spring);
}

.srv-item:hover::after {
  width: 3px;
}

.srv-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(185, 0, 255, 0.3);
  line-height: 1;
  flex-shrink: 0;
  transition:
    color 0.35s ease,
    -webkit-text-stroke-color 0.35s ease;
}

.srv-item:hover .srv-num {
  -webkit-text-stroke-color: var(--purple);
  color: rgba(185, 0, 255, 0.15);
}

.srv-content h4 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  transition: color 0.35s ease;
}

.srv-item:hover .srv-content h4 {
  color: var(--purple);
}

.srv-content p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.srv-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.srv-tags span {
  font-size: 0.7rem;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  background: rgba(185, 0, 255, 0.1);
  color: rgba(185, 0, 255, 0.8);
  border: 1px solid rgba(185, 0, 255, 0.2);
}

/* ============================================================
   VALUES GRID — 4-columns, same card style
   ============================================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

/* ============================================================
   CONSULTATION — Pitch slideshow + Tally form
   ============================================================ */
.pitch-slideshow {
  position: relative;
  max-width: 680px;
  margin: 0 auto 3rem;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  border: 1px solid var(--border);
}

.pitch-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.pitch-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.pitch-slide.active {
  opacity: 1;
}

.pitch-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: white;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s ease;
}

.pitch-nav:hover {
  background: rgba(185, 0, 255, 0.4);
  border-color: var(--purple);
}

.pitch-prev {
  left: 1rem;
}

.pitch-next {
  right: 1rem;
}

.pitch-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.pitch-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.3s ease;
}

.pitch-dot.active {
  background: var(--purple);
  width: 24px;
  border-radius: 4px;
}

.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  align-items: start;
  margin-top: 2rem;
}

.consult-left {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.consult-chip {
  display: inline-flex;
  width: fit-content;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: rgba(185, 0, 255, 0.1);
  border: 1px solid rgba(185, 0, 255, 0.25);
  font-size: 0.85rem;
  color: var(--purple);
}

.consult-left h3 {
  margin-bottom: 0.25rem;
}

.consult-left p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.consult-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.consult-checklist li {
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.consult-note {
  font-size: 0.85rem;
  color: var(--subtle);
}

/* Tally Form Wrapper */
.tally-wrap {
  background: rgba(185, 0, 255, 0.04);
  border: 1px solid rgba(185, 0, 255, 0.18);
  border-radius: 20px;
  padding: 2rem 2rem 1rem;
  overflow: hidden;
  position: relative;
}

.tally-wrap::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--purple),
    transparent
  );
}

.tally-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 60% 40% at 50% 0%,
    rgba(185, 0, 255, 0.06),
    transparent
  );
  pointer-events: none;
}

/* ============================================================
   CONTACT — Channel cards + CTA box
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

/* Channel Cards */
.chan-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.3rem;
  border-radius: 14px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  font-family: var(--font-body);
  text-align: left;
  width: 100%;
}

.chan-card:hover {
  transform: translateX(6px);
  border-color: rgba(185, 0, 255, 0.5);
}

.chan-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(185, 0, 255, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.chan-card:hover::before {
  opacity: 1;
}

.chan-wa:hover {
  border-color: #25D366;
}

.chan-icon {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.chan-body {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.chan-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--subtle);
}

.chan-value {
  font-weight: 500;
  font-size: 0.95rem;
}

.chan-arrow {
  color: var(--subtle);
  transition: all 0.35s ease;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.chan-card:hover .chan-arrow {
  color: var(--purple);
  transform: translateX(4px);
}

.copy-feedback {
  color: #25D366 !important;
  font-size: 0.8rem !important;
  font-weight: 600;
  display: none;
}

.copy-feedback.show {
  display: block;
}

/* CTA Box */
.cta-box {
  background: rgba(185, 0, 255, 0.05);
  border: 1px solid rgba(185, 0, 255, 0.18);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
  position: relative;
  overflow: hidden;
}

.cta-orb-deco {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(185, 0, 255, 0.2), transparent);
  pointer-events: none;
}

.cta-logo {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}

.cta-box h3 {
  font-size: 1.4rem;
}

.cta-box p {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 80%;
  color: var(--subtle);
  font-size: 0.8rem;
  margin: 0.3rem 0;
}

.cta-divider::before,
.cta-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--border),
    transparent
  );
}

.cta-box .btn-wa,
.cta-box .btn-p,
.cta-box .btn-g {
  width: 100%;
}

.cta-loc-text {
  font-size: 0.75rem;
  color: var(--subtle);
  margin-top: 0.3rem;
}

/* ============================================================
   FOOTER — Brand + Nav links + Bottom bar
   ============================================================ */
.footer {
  padding: 4rem 5% 0;
  border-top: 1px solid var(--border);
  z-index: 1;
  position: relative;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-logo {
  width: 40px;
  height: auto;
  border-radius: 8px;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.footer-desc {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-loc {
  color: var(--subtle);
  font-size: 0.85rem;
}

.footer-socials {
  display: flex;
  gap: 1rem;
  margin-top: 0.5rem;
  color: var(--subtle);
}

.footer-socials a {
  transition: color 0.3s ease;
}

.footer-socials a:hover {
  color: var(--purple);
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-link-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-link-col h5 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--subtle);
  margin-bottom: 0.3rem;
}

.footer-link-col a,
.footer-link-col span {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.3s;
}

.footer-link-col a:hover {
  color: var(--purple);
}

.footer-bar {
  border-top: 1px solid var(--border);
  padding: 1.5rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--subtle);
  max-width: 1200px;
  margin: 0 auto;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON — Dual pulse rings + tooltip
   ============================================================ */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 9990;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.wa-float:hover {
  transform: scale(1.14);
  box-shadow: 0 6px 30px rgba(37, 211, 102, 0.65);
}

.wa-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: waPulse 2.6s ease-out infinite;
}

.wa-pulse-2 {
  animation-delay: 1.3s;
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }
  100% {
    transform: scale(1.7);
    opacity: 0;
  }
}

.wa-tip {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%);
  background: #1a1a1a;
  color: white;
  font-size: 0.78rem;
  white-space: nowrap;
  padding: 0.5rem 0.95rem;
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.wa-float:hover .wa-tip {
  opacity: 1;
}

/* ============================================================
   MEDIA MODAL — Instagram embed or poster image
   ============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  animation: fadeIn 0.35s ease;
}

.modal-panel {
  position: relative;
  z-index: 1;
  background: #0a0a10;
  border: 1px solid rgba(185, 0, 255, 0.3);
  border-radius: 20px;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(185, 0, 255, 0.3),
    0 32px 80px rgba(0, 0, 0, 0.8),
    0 0 60px rgba(185, 0, 255, 0.15);
  animation: modalIn 0.45s var(--spring);
}

@keyframes modalIn {
  from {
    transform: translateY(28px) scale(0.97);
    opacity: 0;
  }
  to {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
}

.modal-header h3 {
  font-size: 1.2rem;
}

.modal-header p {
  font-size: 0.85rem;
  color: var(--muted);
}

.modal-close {
  font-size: 1.6rem;
  color: var(--muted);
  padding: 0.3rem 0.6rem;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.modal-close:hover {
  color: white;
  background: rgba(255, 255, 255, 0.08);
}

.modal-body {
  overflow-y: auto;
  max-height: 60vh;
  display: flex;
  justify-content: center;
  background: #000;
}

.modal-body img {
  width: 100%;
  max-height: 72vh;
  object-fit: contain;
  border-radius: 0;
}

.modal-body .instagram-media {
  margin: 0 auto !important;
  max-width: 100% !important;
  min-width: 326px !important;
  width: 100% !important;
}

.modal-body-reel {
  display: flex;
  justify-content: center;
  padding: 0;
}

.modal-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.modal-footer a {
  color: var(--purple);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.3s ease;
}

.modal-footer a:hover {
  color: white;
}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet — 1100px */
@media (max-width: 1100px) {
  .fw-grid {
    grid-template-columns: 1fr 1fr;
  }

  .mcard:nth-child(2),
  .mcard:nth-child(5) {
    grid-column: span 2;
  }
}

/* Small Tablet — 900px */
@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .burger {
    display: flex;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-copy {
    align-items: center;
  }

  .hero-badge {
    margin: 0 auto;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-logo {
    width: min(200px, 50vw);
  }

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

  .about-right {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .fw-filters {
    gap: 0.5rem;
  }

  .fw-tab {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
  }

  /* Hide beams on smaller screens to avoid any visual clutter */
  .bg-beam,
  .bg-beam-2 {
    opacity: 0.15;
  }
}

/* Mobile — 650px */
@media (max-width: 650px) {
  .section {
    padding: 5rem 5%;
  }

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

  .mcard:nth-child(2),
  .mcard:nth-child(5) {
    grid-column: span 1;
  }

  .about-right {
    grid-template-columns: 1fr;
  }

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

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

  .hero-stats {
    flex-direction: column;
    gap: 0.8rem;
  }

  .hs-divider {
    width: 40px;
    height: 1px;
  }

  .footer-bar {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .bg-beam,
  .bg-beam-2 {
    display: none;
  }

  .srv-num {
    font-size: 2.5rem;
  }

  .pitch-nav {
    width: 36px;
    height: 36px;
    font-size: 1.3rem;
  }

  .mcard-thumb {
    height: 240px;
  }

  .mcard-thumb-featured {
    height: 280px;
  }

  .hero-logo {
    width: min(160px, 45vw);
  }

  .logo-rings {
    width: 240px;
    height: 240px;
  }

  .ring-a {
    width: 180px;
    height: 180px;
  }

  .ring-b {
    width: 220px;
    height: 220px;
  }

  .ring-c {
    width: 260px;
    height: 260px;
  }
}

/* ============================================================
   REDUCED MOTION — Accessibility
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .sr {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .rv {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .bg-beam,
  .bg-beam-2 {
    animation: none;
    opacity: 0.2;
  }

  .orb {
    animation: none;
  }

  .scroll-cue {
    display: none;
  }

  .shimmer-text {
    animation: none;
    background: linear-gradient(135deg, var(--purple), #FF00AA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
}

/* ============================================================
   HIGH-DPI SCREENS — Crisp rendering
   ============================================================ */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .noise {
    opacity: 0.015;
  }

  .bg-beam,
  .bg-beam-2 {
    filter: blur(55px);
  }
}

/* ============================================================
   PRINT STYLES — Clean output
   ============================================================ */
@media print {
  .bg-root,
  .cursor-glow,
  .wa-float,
  .scroll-cue,
  .bg-beam,
  .bg-beam-2,
  .bg-grid,
  .noise,
  .modal {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  .section {
    padding: 2rem 0;
  }

  a {
    color: var(--purple);
  }
}