/* ================================================================
   landing.css  –  Sabri Mohammed Yousef Company
   Fantasy Night Mode (default) + Light Mode toggle
   Colors: Neon Cyan + Neon Pink + Deep Blue
   ================================================================ */

/* ── Night Mode Variables (default) ────────────────────────────── */
:root {
  --neon-cyan:    #00f2fe;
  --neon-pink:    #fe0979;
  --magic-purple: #c084fc;
  --star-gold:    #fcd34d;
  --deep-blue:    #b9e6ff;

  --shadow-cyan:  rgba(0, 242, 254, 0.4);
  --shadow-pink:  rgba(254, 9, 121, 0.5);

  --card-bg:      rgba(15, 23, 42, 0.85);
  --glass-border: rgba(0, 242, 254, 0.25);

  --text-dark:    #f1f5f9;
  --text-dim:     #94a3b8;

  --bg-body:      #080d18;
  --bg-section:   rgba(10, 16, 35, 0.9);
  --bg-card:      rgba(15, 25, 45, 0.82);
  --border-light: rgba(0, 242, 254, 0.2);

  --shadow:    0 8px 32px rgba(0,0,0,.5), 0 0 12px rgba(0,242,254,.15);
  --shadow-lg: 0 20px 50px rgba(0,0,0,.6), 0 0 22px rgba(254,9,121,.2);

  --radius:        14px;
  --radius-sm:     8px;
  --transition:    .35s cubic-bezier(.2,.9,.4,1.05);
  --font-ar:       'Noto Kufi Arabic', sans-serif;
  --font-en:       'DM Sans', sans-serif;
  --font-display:  'Playfair Display', 'Noto Kufi Arabic', serif;
  --header-height: 80px;
}

/* ── Light Mode ─────────────────────────────────────────────────── */
body.light-mode {
  --neon-cyan:    #0099c8;
  --neon-pink:    #e0006b;
  --deep-blue:    #003c6e;
  --star-gold:    #d4a017;

  --shadow-cyan:  rgba(0,153,200,.25);
  --shadow-pink:  rgba(224,0,107,.3);

  --card-bg:      rgba(255,255,255,.92);
  --glass-border: rgba(0,153,200,.2);

  --text-dark:    #0b2340;
  --text-dim:     #2e4a6a;

  --bg-body:      #eef5ff;
  --bg-section:   rgba(226,238,255,.7);
  --bg-card:      rgba(255,255,255,.85);
  --border-light: rgba(0,153,200,.18);

  --shadow:    0 8px 28px rgba(0,0,0,.06), 0 0 10px rgba(0,153,200,.15);
  --shadow-lg: 0 20px 48px rgba(0,0,0,.1), 0 0 18px rgba(224,0,107,.15);
}

/* ── Reset ──────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-en);
  background: var(--bg-body);
  color: var(--text-dark);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background .3s, color .2s;
  padding-top: var(--header-height);
}
body.rtl { font-family: var(--font-ar); direction: rtl; }
img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }

/* ── Utility ────────────────────────────────────────────────────── */
.container { width: min(92%, 1200px); margin: 0 auto; }
.section    { padding: 90px 0; }
.mt-20      { margin-top: 20px; }

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity  .6s ease calc(var(--delay,0s)),
    transform .6s ease calc(var(--delay,0s));
}
.reveal.visible { opacity: 1; transform: none; }

/* ── Section headings ───────────────────────────────────────────── */
.sec-head { text-align: center; margin-bottom: 56px; }

.sec-title {
  font-family:  var(--font-display);
  font-size:    clamp(1.75rem, 3.8vw, 2.6rem);
  font-weight:  800;
  letter-spacing: -.02em;
  line-height:  1.2;
  /* gradient text */
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink), var(--star-gold));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
}

.sec-line {
  width: 80px; height: 4px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  border-radius: 4px;
  margin: 14px auto 0;
  box-shadow: 0 0 8px var(--neon-cyan);
  animation: lineGlow 2.5s infinite alternate;
}
@keyframes lineGlow {
  from { width: 70px;  box-shadow: 0 0 6px  var(--neon-cyan); }
  to   { width: 110px; box-shadow: 0 0 14px var(--neon-pink); }
}

.sec-hint,
.sec-sub {
  margin-top: 12px;
  color: var(--text-dim);
  font-size: .95rem;
  max-width: 640px;
  margin-inline: auto;
}

/* ── WhatsApp / CTA buttons ─────────────────────────────────────── */
.btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
  color: #fff !important;
  font-weight: 700;
  font-size: .92rem;
  padding: 12px 26px;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 18px var(--shadow-cyan);
  position: relative;
  overflow: hidden;
}
.btn-wa::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 80%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.35), transparent);
  transition: left .5s;
}
.btn-wa:hover::before { left: 140%; }
.btn-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 22px var(--neon-pink), 0 4px 20px var(--shadow-cyan);
}
.btn-wa i { font-size: 1.15em; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--neon-cyan);
  color: var(--neon-cyan);
  background: rgba(0,0,0,.35);
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: .92rem;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
body.light-mode .btn-outline { background: rgba(255,255,255,.55); }
.btn-outline:hover {
  border-color: var(--neon-pink);
  color: var(--neon-pink);
  transform: translateY(-3px);
  box-shadow: 0 0 18px var(--shadow-pink);
}

/* ── HEADER ──────────────────────────────────────────────────────── */
.site-header {
  position: fixed;
  inset-inline: 0; top: 0;
  z-index: 1000;
  background: transparent;
  transition: background .35s, box-shadow .35s, backdrop-filter .35s;
  height: var(--header-height);
}
.site-header.scrolled {
  background: var(--card-bg);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow);
}

.hdr-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  height: 100%;
  padding: 0 5%;
}

/* Logo */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  text-decoration: none;
}
.logo-img {
  height: 80px; width: auto;
  filter: drop-shadow(0 0 6px var(--neon-cyan));
}
.logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.25;
  max-width: 300px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* Nav */
.main-nav {
  display: flex;
  gap: 2px;
  flex: 1;
  justify-content: center;
  flex-wrap: nowrap;
}
.main-nav a {
  color: var(--text-dark);
  font-size: .82rem;
  font-weight: 600;
  padding: 7px 11px;
  border-radius: 40px;
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.main-nav a:hover,
.main-nav a.active {
  color: var(--neon-cyan);
  background: rgba(0,242,254,.1);
}

/* Header right side */
.hdr-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-sw {
  display: flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.07);
  border: 1px solid var(--border-light);
  padding: 5px 12px;
  border-radius: 40px;
  font-size: .82rem;
}
.lang-sw span { color: var(--border-light); }
.lang-sw a { color: var(--text-dim); font-weight: 600; transition: color .2s; }
.lang-sw a.active { color: var(--neon-pink); }
.lang-sw a:hover  { color: var(--neon-cyan); }

/* Theme toggle buttons */
.theme-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 40px;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  border: 1.5px solid;
  transition: .2s;
  white-space: nowrap;
}
.theme-btn-light { border-color: var(--neon-cyan); color: var(--neon-cyan); }
.theme-btn-light:hover { background: var(--neon-pink); color: #fff; border-color: var(--neon-pink); }
.theme-btn-dark  { border-color: var(--neon-pink); color: var(--neon-pink); }
.theme-btn-dark:hover  { background: var(--neon-cyan); color: #080d18; border-color: var(--neon-cyan); }

body:not(.light-mode) .theme-btn-light { display: flex; }
body:not(.light-mode) .theme-btn-dark  { display: none;  }
body.light-mode .theme-btn-light        { display: none;  }
body.light-mode .theme-btn-dark         { display: flex;  }

.hdr-wa { display: none !important; } /* floating WA handles this */

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none;
  cursor: pointer; padding: 6px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--neon-cyan);
  border-radius: 2px;
  box-shadow: 0 0 4px var(--neon-cyan);
  transition: .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(90vh - var(--header-height));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 60%, rgba(0,242,254,.07) 0%, transparent 65%),
    radial-gradient(ellipse 50% 40% at 80% 30%, rgba(254,9,121,.08) 0%, transparent 65%),
    repeating-linear-gradient(
      -45deg,
      rgba(0,242,254,.025) 0,
      rgba(0,242,254,.025) 1px,
      transparent 0,
      transparent 50%
    );
  background-size: auto, auto, 30px 30px;
}

.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  left: var(--x); bottom: -20px;
  width: var(--s); height: var(--s);
  background: radial-gradient(circle, var(--neon-cyan), var(--neon-pink));
  border-radius: 50%;
  opacity: .35;
  filter: blur(1px);
  animation: float-up 12s calc(var(--d) * 1s) infinite ease-in-out;
}
@keyframes float-up {
  0%   { transform: translateY(0)    rotate(0deg);   opacity: .35; }
  100% { transform: translateY(-120vh) rotate(540deg); opacity: 0;   }
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 40px 24px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(8px);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  font-size: .75rem;
  font-weight: 700;
  padding: 7px 20px;
  border-radius: 60px;
  margin-bottom: 26px;
  letter-spacing: .1em;
  text-transform: uppercase;
  box-shadow: 0 0 12px rgba(0,242,254,.2);
}

/* Title – main heading */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--deep-blue) 0%, var(--neon-cyan) 50%, var(--neon-pink) 100%);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

/* Subtitle */
.hero-sub {
  color: var(--text-dim);
  font-size: clamp(.92rem, 1.8vw, 1.1rem);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 600px;
  margin-inline: auto;
}

/* CTA buttons row */
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary-wa {
  font-size: .97rem;
  padding: 14px 30px;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-wheel {
  width: 26px; height: 42px;
  border: 2px solid var(--neon-cyan);
  border-radius: 14px;
  box-shadow: 0 0 8px var(--neon-cyan);
  position: relative;
}
.scroll-wheel::after {
  content: '';
  position: absolute;
  top: 7px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 9px;
  background: var(--neon-pink);
  border-radius: 2px;
  animation: scroll-dot 2s infinite;
}
@keyframes scroll-dot {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(16px); }
}

/* ── STATS BAR ───────────────────────────────────────────────────── */
.stats-bar {
  display: flex;
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
}
.stat-item {
  flex: 1;
  text-align: center;
  padding: 32px 16px;
  border-inline-end: 1px solid var(--border-light);
  transition: background .25s, transform .25s;
}
.stat-item:last-child { border-inline-end: none; }
.stat-item:hover {
  background: rgba(0,242,254,.04);
  transform: translateY(-4px);
}
.stat-num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-lbl {
  display: block;
  font-size: .72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .1em;
}

/* ── ABOUT ───────────────────────────────────────────────────────── */
.about-sec { background: var(--bg-section); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-text p {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 28px;
  line-height: 1.8;
}

/* Milestones */
.milestones { display: flex; flex-direction: column; gap: 14px; }
.milestone-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border-radius: 50px;
  padding: 11px 20px;
  border: 1px solid var(--border-light);
  transition: border-color .25s, box-shadow .25s;
}
.milestone-item:hover {
  border-color: var(--neon-pink);
  box-shadow: 0 0 12px var(--shadow-pink);
}
.ms-year {
  min-width: 44px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
  color: #fff;
  font-weight: 800;
  font-size: .78rem;
  padding: 5px 12px;
  border-radius: 40px;
  text-align: center;
  flex-shrink: 0;
}
.ms-text { color: var(--text-dark); font-size: .9rem; }

/* About visual — 2×2 icon grid */
.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: 400px;
  margin: 0 auto;
  aspect-ratio: 1;
  position: relative;
}
.av-card {
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 16px;
  transition: var(--transition);
}
.av-card:hover {
  transform: translateY(-6px);
  border-color: var(--neon-pink);
  box-shadow: 0 0 20px var(--shadow-pink);
}
.av-card i {
  font-size: 1.9rem;
  filter: drop-shadow(0 0 7px var(--neon-cyan));
}
.ac1 i { color: #00c4f5; }
.ac2 i { color: #ff6060; }
.ac3 i { color: var(--star-gold); }
.ac4 i { color: #4fe86a; }
.av-card span {
  font-size: .8rem;
  font-weight: 700;
  color: var(--neon-cyan);
  text-align: center;
}
.av-center-logo {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 8px var(--bg-section), 0 0 28px var(--neon-cyan);
  z-index: 2;
}
.av-center-logo i {
  font-size: 1.6rem; color: #fff;
  animation: spin-slow 14s linear infinite;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

/* ── SERVICES ────────────────────────────────────────────────────── */
.services-sec { background: var(--bg-section); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 960px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.svc-card {
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0; inset-inline-start: 0; inset-inline-end: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-pink));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}
.svc-card:hover::before { transform: scaleX(1); }
.svc-card:hover {
  transform: translateY(-8px);
  border-color: var(--neon-pink);
  box-shadow: 0 0 28px rgba(0,242,254,.15);
}

/* Icon in a circle */
.svc-icon {
  width: 64px; height: 64px;
  background: rgba(0,242,254,.08);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 18px;
  flex-shrink: 0;
  filter: drop-shadow(0 0 8px var(--neon-cyan));
  transition: background .3s;
}
.svc-card:hover .svc-icon {
  background: rgba(254,9,121,.12);
}

.svc-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--neon-cyan);
  line-height: 1.3;
}
body.light-mode .svc-card h3 { color: var(--deep-blue); }

.svc-card p {
  color: var(--text-dim);
  font-size: .88rem;
  line-height: 1.7;
  flex: 1;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--neon-pink);
  font-weight: 700;
  font-size: .85rem;
  transition: gap .2s;
}
.svc-link:hover { gap: 12px; }
.svc-link i { font-size: 1em; }

/* ── GALLERY ─────────────────────────────────────────────────────── */
.gallery-sec { background: var(--bg-section); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
}
.gal-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.gal-item:hover {
  border-color: var(--neon-cyan);
  box-shadow: 0 0 22px rgba(0,242,254,.4);
  transform: translateY(-4px) scale(1.01);
}
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s;
}
.gal-item:hover img { transform: scale(1.07); }

.gal-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(0,242,254,.45), rgba(254,9,121,.45));
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s;
}
.gal-item:hover .gal-overlay { opacity: 1; }
.gal-overlay i {
  font-size: 2rem; color: #fff;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.5));
}

.placeholder {
  background: var(--bg-card);
  border: 1px dashed var(--border-light);
}
.gal-placeholder {
  display: flex; flex-direction: column;
  align-items: center; gap: 10px;
  color: var(--text-dim);
}
.gal-placeholder i { font-size: 2rem; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed; inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.88);
  backdrop-filter: blur(16px);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lb-img-wrap {
  max-width: 90vw; max-height: 90vh;
  text-align: center;
}
.lb-img-wrap img {
  max-width: 100%; max-height: 78vh;
  border-radius: 12px;
  border: 2px solid var(--neon-cyan);
  box-shadow: 0 0 40px rgba(0,242,254,.4);
}
.lb-img-wrap p { color: var(--neon-pink); margin-top: 12px; font-size: .9rem; }

.lb-close, .lb-prev, .lb-next {
  position: fixed;
  width: 46px; height: 46px;
  background: rgba(0,242,254,.18);
  border: 1px solid var(--neon-cyan);
  color: var(--neon-cyan);
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: .2s;
  z-index: 10000;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover {
  background: var(--neon-pink);
  border-color: var(--neon-pink);
  color: #fff;
}
.lb-close { top: 22px; right: 22px; }
.lb-prev  { left: 22px; top: 50%; transform: translateY(-50%); }
.lb-next  { right: 22px; top: 50%; transform: translateY(-50%); }
.rtl .lb-prev { left: auto; right: 22px; }
.rtl .lb-next { right: auto; left: 22px; }

/* ── CLIENTS ─────────────────────────────────────────────────────── */
.clients-sec { background: var(--bg-section); }

/* Marquee */
.clients-track-wrap { overflow: hidden; margin-bottom: 44px; padding: 8px 0; }
.clients-track {
  display: flex; gap: 20px;
  animation: marquee 32s linear infinite;
  width: max-content;
}
.clients-track:hover { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.rtl .clients-track { animation-name: marquee-rtl; }
@keyframes marquee-rtl { to { transform: translateX(50%); } }

.client-chip {
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
  color: #fff;
  font-weight: 700;
  font-size: .82rem;
  padding: 8px 22px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 2px 10px var(--shadow-cyan);
}

/* Static grid */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 14px;
}
.client-card {
  background: var(--bg-card);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 18px 14px;
  text-align: center;
  font-size: .82rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  transition: var(--transition);
}
.client-card:hover {
  border-color: var(--neon-pink);
  color: var(--neon-cyan);
  transform: translateY(-4px);
  box-shadow: 0 0 14px var(--shadow-pink);
}

/* ── VALUES ──────────────────────────────────────────────────────── */
.values-sec { background: var(--bg-section); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .values-grid { grid-template-columns: 1fr; } }

.val-card {
  background: var(--bg-card);
  backdrop-filter: blur(8px);
  border-radius: var(--radius);
  padding: 34px 22px 28px;
  text-align: center;
  border-bottom: 3px solid var(--neon-cyan);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.val-card:hover {
  transform: translateY(-7px);
  border-bottom-color: var(--neon-pink);
  box-shadow: 0 0 22px rgba(0,242,254,.15);
}

/* Icon wrapper */
.val-icon {
  width: 60px; height: 60px;
  background: rgba(0,242,254,.08);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  filter: drop-shadow(0 0 7px var(--neon-cyan));
  flex-shrink: 0;
}
.val-card h3 {
  font-family: var(--font-display);
  font-size: .98rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--deep-blue), var(--neon-cyan));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1.3;
}
body.light-mode .val-card h3 { color: var(--deep-blue); background: none; }
.val-card p { color: var(--text-dim); font-size: .85rem; line-height: 1.7; }

/* ── POLICIES ────────────────────────────────────────────────────── */
.policies-sec { background: var(--bg-section); }

.policies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) { .policies-grid { grid-template-columns: 1fr; } }

.pol-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid var(--border-light);
  transition: var(--transition);
}
.pol-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon-pink);
  box-shadow: 0 0 20px var(--shadow-pink);
}

/* Icon circle */
.pol-icon {
  width: 52px; height: 52px;
  background: rgba(0,242,254,.08);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.pol-body { flex: 1; min-width: 0; }
.pol-body h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
}
.pol-body p {
  color: var(--text-dim);
  font-size: .87rem;
  line-height: 1.65;
  margin-bottom: 14px;
}
.pol-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 40px;
  transition: .25s;
}
.pol-btn:hover {
  gap: 11px;
  box-shadow: 0 0 14px var(--neon-cyan);
}

/* ── FOOTER ──────────────────────────────────────────────────────── */
.site-footer {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--glass-border);
  position: relative;
}
.footer-wave { line-height: 0; }
.footer-wave svg { width: 100%; height: 55px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  gap: 44px;
  padding: 56px 0 38px;
}

.footer-brand {}
.footer-logo {
  height: 100px; width: auto;
  filter: drop-shadow(0 0 6px var(--neon-cyan));
}
.footer-brand > p:first-of-type {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 800;
  margin-top: 12px;
  background: linear-gradient(135deg, var(--deep-blue), var(--neon-cyan));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  line-height: 1.3;
}
.footer-tagline {
  font-size: .82rem;
  color: var(--text-dim);
  margin: 6px 0 16px;
}

.footer-col h4 {
  color: var(--neon-cyan);
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0; inset-inline-start: 0;
  width: 32px; height: 2px;
  background: var(--neon-pink);
  border-radius: 2px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { color: var(--text-dim); font-size: .88rem; transition: color .2s; }
.footer-col a:hover { color: var(--neon-cyan); }
.footer-col p {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .87rem; color: var(--text-dim);
  margin-bottom: 9px; line-height: 1.5;
}
.footer-col p i { color: var(--neon-cyan); flex-shrink: 0; margin-top: 2px; }

.social-row {
  display: flex; gap: 10px; margin-top: 18px;
}
.social-row a {
  width: 38px; height: 38px;
  background: rgba(0,242,254,.08);
  border: 1px solid var(--border-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--neon-cyan);
  font-size: .9rem;
  transition: .25s;
}
.social-row a:hover {
  background: var(--neon-pink);
  border-color: var(--neon-pink);
  color: #fff;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  text-align: center;
  padding: 20px 0;
  font-size: .78rem;
  color: var(--text-dim);
}

/* ── FLOATING WhatsApp ───────────────────────────────────────────── */
.wa-fab {
  position: fixed;
  bottom: 26px;
  inset-inline-end: 26px;
  z-index: 999;
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-pink));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 1.55rem;
  box-shadow: 0 4px 22px var(--shadow-cyan);
  transition: var(--transition);
}
.wa-fab:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 30px var(--neon-pink);
}
.wa-pulse {
  position: absolute; inset: -7px;
  border: 2px solid var(--neon-cyan);
  border-radius: 50%;
  animation: wa-ring 2.2s infinite;
}
@keyframes wa-ring {
  0%   { transform: scale(1);   opacity: .7; }
  100% { transform: scale(1.55); opacity: 0;  }
}

/* ── BACK TO TOP ─────────────────────────────────────────────────── */
.back-top {
  position: fixed;
  bottom: 92px;
  inset-inline-end: 26px;
  z-index: 998;
  width: 42px; height: 42px;
  background: var(--bg-card);
  border: 1.5px solid var(--neon-cyan);
  color: var(--neon-cyan);
  border-radius: 50%;
  display: none;
  align-items: center; justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(8px);
  font-size: .85rem;
  transition: .25s;
}
.back-top:hover {
  background: var(--neon-pink);
  border-color: var(--neon-pink);
  color: #fff;
  transform: translateY(-4px);
}
.back-top.show { display: flex; }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .main-nav { gap: 0; }
  .main-nav a { font-size: .78rem; padding: 6px 9px; }
  .logo-text { font-size: .95rem; max-width: 150px; }
  .logo-img  { height: 46px; }
}

@media (max-width: 768px) {
  :root { --header-height: 70px; }

  .main-nav {
    display: none;
    flex-direction: column;
    position: fixed;
    inset-block: 0;
    inset-inline-start: 0;
    width: 260px;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    padding: 90px 24px 24px;
    z-index: 999;
    overflow-y: auto;
    gap: 4px;
  }
  .main-nav.open { display: flex; }
  .main-nav a {
    font-size: .95rem;
    padding: 11px 0;
    border-bottom: 1px solid var(--border-light);
    white-space: normal;
  }
  .hamburger { display: flex; }
  .theme-btn { padding: 5px 12px; font-size: .75rem; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .stats-bar { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; border-inline-end: none; border-bottom: 1px solid var(--border-light); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-col h4::after { left: 50%; transform: translateX(-50%); }
  .footer-brand, .footer-col { text-align: center; }
  .social-row { justify-content: center; }
}

@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .hero-title { font-size: 1.9rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .clients-grid { grid-template-columns: 1fr 1fr; }
  .btn-wa, .btn-outline { font-size: .85rem; padding: 10px 20px; }
  .hero-btns { gap: 10px; }
}