/* ============================================================
   HaloSoft — Elite 10/10 Styles
   Signature: Clash Display + Cabinet Grotesk · cinematic motion
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');
/* Signature display stack — loaded from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* ─── TOKENS ─────────────────────────────────────────── */
/* ─── DARK MODE (default) ────────────────────────────── */
:root {
  --bg:          #080810;
  --surface:     #0f0f1a;
  --surface2:    #17172a;
  --surface3:    #1e1e32;
  --border:      rgba(255,255,255,0.06);
  --border-glow: rgba(124,92,252,0.28);
  --accent:      #7c5cfc;
  --accent-2:    #a78bfa;
  --accent-3:    #e879f9;
  --accent-glow: rgba(124,92,252,0.22);
  --text:        #eeeef5;
  --text-muted:  #8888a8;
  --text-dim:    #4f4f6b;
  --green:       #10b981;
  --white:       #ffffff;
  --radius-sm:   8px;
  --radius-md:   14px;
  --radius-lg:   22px;
  --radius-xl:   32px;
  --shadow-card: 0 4px 32px rgba(0,0,0,0.5);
  --shadow-glow: 0 0 60px rgba(124,92,252,0.16);
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition:  all 0.32s var(--ease-out);
  --font-display: 'Bebas Neue', 'Syne', sans-serif;
  --font-body:    'Outfit', 'DM Sans', system-ui, sans-serif;
}

/* ─── LIGHT MODE ─────────────────────────────────────── */
[data-theme="light"] {
  --bg:          #f5f5ff;
  --surface:     #ffffff;
  --surface2:    #ededfc;
  --surface3:    #e2e2f8;
  --border:      rgba(0,0,0,0.08);
  --border-glow: rgba(124,92,252,0.2);
  --accent:      #6c47f5;
  --accent-2:    #7c5cfc;
  --accent-3:    #d946ef;
  --accent-glow: rgba(124,92,252,0.15);
  --text:        #13131f;
  --text-muted:  #555570;
  --text-dim:    #9999b8;
  --green:       #059669;
  --white:       #13131f;
  --shadow-card: 0 4px 32px rgba(0,0,0,0.1);
  --shadow-glow: 0 0 60px rgba(124,92,252,0.1);
}

/* ─── SMOOTH THEME TRANSITION ────────────────────────── */
body, body * {
  transition: background-color 0.35s ease, color 0.35s ease,
              border-color 0.35s ease, box-shadow 0.35s ease !important;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--accent), var(--accent-3)); border-radius: 3px; }

h1,h2,h3,h4 { font-family: var(--font-body); line-height:1.15; letter-spacing:-0.02em; }
h1 { font-family: var(--font-display); letter-spacing: 0.01em; }

/* ─── SCROLL PROGRESS BAR ────────────────────────────── */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px var(--accent);
}

/* ─── BUTTONS ────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent) 0%, #6a3fd4 100%);
  color: #fff;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.01em;
  will-change: transform;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover {
  box-shadow: 0 8px 36px rgba(124,92,252,0.5), 0 0 0 1px rgba(124,92,252,0.4);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text);
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  border: 1px solid rgba(255,255,255,0.14);
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  will-change: transform;
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent-2);
  background: rgba(124,92,252,0.1);
  box-shadow: 0 0 20px rgba(124,92,252,0.15);
}

/* ─── HOVER RING (visual pulse on card enter) ────────── */
.hover-ring {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid var(--accent);
  opacity: 0.6;
  animation: ringExpand 0.6s var(--ease-out) forwards;
  pointer-events: none;
}
@keyframes ringExpand {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.04); opacity: 0; }
}

/* ─── NAVIGATION ─────────────────────────────────────── */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(8,8,16,0.7);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  padding: 18px 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  transition: transform 0.4s var(--ease-out), background 0.3s;
}
nav.scrolled {
  background: rgba(8,8,16,0.92);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
nav.hidden {
  transform: translateY(-100%);
}
.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  text-decoration: none;
  letter-spacing: 0.06em;
}
.logo-img {
  width: 34px; height: 34px;
  object-fit: contain;
  border-radius: 8px;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out);
  border-radius: 2px;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--white); }
.nav-links .btn-primary { padding: 10px 22px; font-size: 14px; }
.nav-links .btn-primary::after { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1100;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.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 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 130px 52px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Floating orbs — signature visual identity */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
  transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}
.hero-orb-1 {
  width: 600px; height: 600px;
  top: -200px; left: -160px;
  background: radial-gradient(circle at 40% 40%, rgba(124,92,252,0.18), transparent 65%);
  filter: blur(40px);
}
.hero-orb-2 {
  width: 500px; height: 500px;
  bottom: -100px; right: -140px;
  background: radial-gradient(circle at 60% 60%, rgba(232,121,249,0.14), transparent 65%);
  filter: blur(50px);
}
.hero-orb-3 {
  width: 300px; height: 300px;
  top: 30%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(124,92,252,0.12), transparent 70%);
  filter: blur(30px);
  animation: orbPulse 8s ease-in-out infinite alternate;
}
@keyframes orbPulse {
  0%   { transform: translate(-50%,-50%) scale(1); opacity: 0.6; }
  100% { transform: translate(-50%,-50%) scale(1.3); opacity: 1; }
}

/* Noise grain overlay for depth */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

/* Grid lines */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,92,252,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,92,252,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  max-width: 960px;
  margin-bottom: 56px;
  position: relative;
  z-index: 1;
  will-change: transform;
}

/* Entrance animations — heroIn for hero children */
.hero-content > * {
  animation: heroIn 0.8s var(--ease-out) both;
}
.hero-trust-badges { animation-delay: 0.1s; }
.hero h1           { animation-delay: 0.25s; }
.hero-sub-rotate   { animation-delay: 0.4s; }
.hero-buttons      { animation-delay: 0.55s; }
.hero-social-proof { animation-delay: 0.7s; }
@keyframes heroIn {
  from { opacity:0; transform: translateY(24px); }
  to   { opacity:1; transform: translateY(0); }
}

.hero-trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--surface);
  backdrop-filter: blur(8px);
  letter-spacing: 0.02em;
}
.trust-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 8px var(--green);
}
@keyframes pulse {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:0.5; transform:scale(0.75); }
}

/* SIGNATURE: Display headline with Bebas Neue */
.hero h1 {
  font-size: clamp(64px, 9vw, 130px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.03em;
  margin-bottom: 28px;
  color: var(--white);
  text-transform: uppercase;
}
.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--accent-2) 0%, var(--accent) 40%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  line-height: 1;
}

/* Scramble subtitle */
.hero-sub-rotate {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  min-height: 54px;
  font-weight: 400;
}
.scramble-char { color: var(--accent-2); opacity: 0.7; }

/* Legacy .hero p for subtitle fallback */
.hero p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 640px;
  margin-left: auto; margin-right: auto;
}

.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.hero-social-proof {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-dim);
  font-size: 13px;
  font-weight: 500;
}
.avatar-stack { display: flex; }
.avatar-stack .av {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; color: #fff;
  margin-left: -9px;
}
.avatar-stack .av:first-child { margin-left: 0; }
.stars-small { color: #fbbf24; font-size: 13px; letter-spacing: 2px; }

/* ─── VIDEO SHOWCASE ─────────────────────────────────── */
.video-showcase {
  width: 100%; max-width: 1100px;
  position: relative; z-index: 1;
  will-change: transform;
  animation: heroIn 1s var(--ease-out) 0.5s both;
}
.video-container {
  position: relative;
  border-radius: var(--radius-xl);
  background: var(--surface);
  border: 1px solid var(--border-glow);
  padding: 50px 40px 40px;
  box-shadow: var(--shadow-card), var(--shadow-glow), 0 0 0 1px rgba(124,92,252,0.08);
}
.video-container::before {
  content: '● ● ●';
  position: absolute;
  top: 18px; left: 24px;
  font-size: 10px; letter-spacing: 5px;
  color: var(--text-dim);
  pointer-events: none;
}
.video-wrapper {
  width: 100%; max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0,0,0,0.7);
  background: #000;
  aspect-ratio: 16/9;
  position: relative;
}
.video-wrapper video {
  width: 100%; height: 100%;
  display: block; object-fit: cover;
  position: absolute; top:0; left:0;
}

/* ─── LOGOS SECTION ──────────────────────────────────── */
.logos-section {
  padding: 72px 0;
  background: var(--surface);
  text-align: center;
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.logos-section::before {
  display: none;
}
.logos-section p {
  font-size: 11px; color: var(--text-muted); margin-bottom: 36px;
  font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  padding: 0 50px; position: relative; z-index: 1;
  background: linear-gradient(135deg, var(--accent-2), var(--text-muted));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.logos-scroll-container {
  width: 100%; overflow: hidden; position: relative; z-index: 1;
}
.logos-scroll-container::before,
.logos-scroll-container::after {
  content: ''; position: absolute; top:0; width: 160px; height: 100%; z-index: 2; pointer-events: none;
}
.logos-scroll-container::before { left:0;  background: linear-gradient(to right, var(--surface), transparent); }
.logos-scroll-container::after  { right:0; background: linear-gradient(to left,  var(--surface), transparent); }
.logos-track { display:flex; animation: scroll 28s linear infinite; width: fit-content; }
.logos-track:hover { animation-play-state: paused; }
@keyframes scroll { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
.logo-item { padding: 24px 80px; display:flex; align-items:center; justify-content:center; }
.logo-item img {
  height: 140px; width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1) opacity(1);
  transition: transform 0.35s ease, filter 0.35s ease;
}
.logo-item:hover img { transform: scale(1.3); filter: brightness(0) invert(1) opacity(1) drop-shadow(0 0 8px rgba(255,255,255,0.8)); }

/* ─── STATS SECTION ──────────────────────────────────── */
.stats-section { padding: 100px 52px; background: var(--bg); }
.stats-container {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  position: relative;
}
.stats-container::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(124,92,252,0.06), transparent 70%);
  pointer-events: none;
}
.stat-item {
  padding: 52px 32px;
  background: var(--surface);
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s;
  position: relative;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--surface2); }
.stat-number {
  font-family: var(--font-display);
  font-size: 64px; font-weight: 400;
  background: linear-gradient(135deg, var(--white) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  margin-bottom: 10px; line-height: 1;
  letter-spacing: 0.02em;
}
.stat-label { font-size: 14px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.02em; }

/* ─── ABOUT SECTION ──────────────────────────────────── */
.about-section { padding: 120px 52px; background: var(--surface); }
.about-container { max-width: 1200px; margin: 0 auto; }
.about-content { max-width: 800px; margin: 0 auto 60px; text-align: center; }
.about-content h2 { font-size: 52px; color: var(--white); margin-bottom: 28px; }
.about-content p  { font-size: 18px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; }
.social-links     { display:flex; gap:16px; justify-content:center; margin-top: 40px; }
.social-link {
  display:inline-flex; align-items:center; gap:10px;
  padding: 12px 24px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  text-decoration: none; color: var(--text-muted);
  font-weight: 600; font-size: 15px;
  transition: var(--transition);
}
.social-link:hover {
  border-color: var(--accent); color: var(--accent-2);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px var(--accent-glow);
}
.social-icon-img { width:20px; height:20px; }

/* ─── FEATURES SECTION ───────────────────────────────── */
.features-section { padding: 120px 52px; background: var(--bg); }
.feature-row {
  max-width: 1200px; margin: 0 auto 120px;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-content h2 { font-size: 46px; color: var(--white); margin-bottom: 20px; }
.feature-content p  { font-size: 17px; color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.feature-image {
  width: 100%; height: 380px;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  position: relative;
}
.feature-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(8,8,16,0.6));
  pointer-events: none;
}
.feature-image img { width:100%; height:100%; object-fit:cover; transition: transform 0.7s var(--ease-out); }
.feature-image:hover img { transform: scale(1.05); }

/* ─── SERVICES SECTION ───────────────────────────────── */
.services-section { padding: 120px 52px; background: var(--surface); }
.section-title { text-align:center; margin-bottom: 72px; }
.section-title h2 { font-size: 52px; color: var(--white); margin-bottom: 16px; }
.section-title p  { font-size: 19px; color: var(--text-muted); max-width: 600px; margin: 0 auto; }
.services-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.service-card {
  background: var(--surface2);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
  position: relative; overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}
.service-card::before {
  content: '';
  position: absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--accent-3), transparent);
  opacity: 0; transition: opacity 0.35s;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover {
  border-color: rgba(124,92,252,0.3);
  box-shadow: 0 24px 56px rgba(0,0,0,0.35), 0 0 0 1px rgba(124,92,252,0.1);
}
.service-icon { font-size: 38px; margin-bottom: 20px; display: block; }
.service-card h3 { font-size: 21px; color: var(--white); margin-bottom: 14px; }
.service-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* ─── PROJECTS ───────────────────────────────────────── */
.projects-section { padding: 120px 52px; background: var(--bg); }
.projects-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 24px;
}
.project-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: border-color 0.3s, box-shadow 0.3s;
  display: flex; flex-direction: column;
  transform-style: preserve-3d;
  will-change: transform;
  cursor: pointer;
}
.project-card:hover {
  border-color: rgba(124,92,252,0.4);
  box-shadow: 0 28px 72px rgba(0,0,0,0.55), 0 0 0 1px rgba(124,92,252,0.15), var(--shadow-glow);
}
.project-image { width:100%; height:220px; overflow:hidden; position:relative; }
.project-image img { width:100%; height:100%; object-fit:cover; transition: transform 0.6s var(--ease-out); }
.project-card:hover .project-image img { transform: scale(1.07); }
.project-image-overlay {
  position: absolute; inset:0;
  background: rgba(124,92,252,0.5);
  display:flex; align-items:center; justify-content:center;
  opacity:0; transition: opacity 0.3s;
  font-size: 13px; font-weight: 700; color:#fff;
  letter-spacing: 1px; text-transform: uppercase;
  backdrop-filter: blur(4px);
}
.project-card:hover .project-image-overlay { opacity:1; }
.project-info { padding: 26px; flex:1; display:flex; flex-direction:column; }
.project-tags { display:flex; gap:8px; flex-wrap:wrap; margin-bottom:14px; }
.project-tag {
  display:inline-block; padding: 4px 12px;
  background: rgba(124,92,252,0.08);
  border: 1px solid rgba(124,92,252,0.18);
  border-radius: 50px; font-size: 11px; font-weight: 700;
  color: var(--accent-2); letter-spacing: 0.02em;
}
.project-info h3 { font-size:19px; color:var(--white); margin-bottom:10px; }
.project-info p  { font-size:13px; color:var(--text-muted); line-height:1.65; margin-bottom:16px; flex:1; }
.project-result  { font-size:12px; color:var(--green); font-weight:700; margin-bottom:16px; }
.project-result::before { content:'↑ '; }
.project-link {
  color: var(--accent-2); text-decoration:none; font-weight:700; font-size:13px;
  display:inline-flex; align-items:center; gap:6px; transition:color 0.2s;
}
.project-link:hover { color:var(--white); }

/* ─── TESTIMONIALS ───────────────────────────────────── */
.testimonials-section { padding: 120px 52px; background: var(--surface); }
.testimonials-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.testimonial-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: border-color 0.3s, box-shadow 0.3s;
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute; top: 20px; right: 28px;
  font-size: 80px; color: rgba(124,92,252,0.1);
  font-family: Georgia, serif; line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  border-color: rgba(124,92,252,0.3);
  box-shadow: 0 20px 48px rgba(0,0,0,0.3);
}
.testimonial-stars { color:#fbbf24; font-size:17px; letter-spacing:2px; margin-bottom:18px; }
.testimonial-text {
  font-size:15px; color:var(--text-muted); line-height:1.8; margin-bottom:24px;
  font-style:italic;
}
.testimonial-author { display:flex; align-items:center; gap:14px; }
.author-avatar {
  width:46px; height:46px; border-radius:50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:15px; color:#fff; flex-shrink:0;
}
.author-name  { font-size:14px; font-weight:700; color:var(--white); }
.author-role  { font-size:12px; color:var(--text-dim); }

/* ─── PROCESS SECTION ────────────────────────────────── */
.process-section {
  padding: 120px 52px; background: var(--bg);
  overflow: hidden; position: relative;
}
.process-section::before {
  content: '';
  position: absolute; top:50%; left:50%;
  transform: translate(-50%,-50%);
  width: 700px; height: 350px;
  background: radial-gradient(ellipse, rgba(124,92,252,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.process-section .section-title { margin-bottom: 80px; }
.process-steps {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(5,1fr);
  gap: 0; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 96px;
  left: calc(10% + 18px); right: calc(10% + 18px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
  transform: scaleX(0); transform-origin: left;
  transition: transform 1.4s cubic-bezier(0.23,1,0.32,1);
}
.process-section.line-animate .process-steps::before { transform: scaleX(1); }
.process-steps::after {
  content: '';
  position: absolute; top: 89px;
  left: calc(10% + 18px);
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--accent-2);
  box-shadow: 0 0 12px rgba(232,121,249,0.8);
  opacity: 0;
}
.process-section.line-animate .process-steps::after {
  opacity: 1;
  animation: dotTravel 1.6s cubic-bezier(0.23,1,0.32,1) forwards;
}
@keyframes dotTravel {
  0%   { left: calc(10% + 18px); opacity: 1; }
  85%  { opacity: 1; }
  100% { left: calc(90% - 18px); opacity: 0; }
}

.process-step {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; padding: 0 12px; position: relative;
  transition: transform 0.4s var(--ease-out);
}
.process-step:hover { transform: translateY(-8px); }
.process-step-icon {
  font-size: 28px;
  margin-bottom: 14px;
  animation: floatIcon 3s ease-in-out infinite;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(124,92,252,0.4));
}
.process-step:nth-child(2) .process-step-icon { animation-delay: 0.4s; }
.process-step:nth-child(3) .process-step-icon { animation-delay: 0.8s; }
.process-step:nth-child(4) .process-step-icon { animation-delay: 1.2s; }
.process-step:nth-child(5) .process-step-icon { animation-delay: 1.6s; }
@keyframes floatIcon {
  0%,100% { transform: translateY(0px); }
  50%      { transform: translateY(-7px); }
}
.process-step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--surface2);
  border: 1.5px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 18px; font-weight: 400;
  color: var(--accent-2); letter-spacing: 0.04em;
  margin-bottom: 24px;
  transition: var(--transition);
  position: relative; z-index: 1;
  animation: pulseRing 2.8s ease-in-out infinite;
}
.process-step:nth-child(2) .process-step-num { animation-delay: 0.4s; }
.process-step:nth-child(3) .process-step-num { animation-delay: 0.8s; }
.process-step:nth-child(4) .process-step-num { animation-delay: 1.2s; }
.process-step:nth-child(5) .process-step-num { animation-delay: 1.6s; }
@keyframes pulseRing {
  0%,100% { box-shadow: 0 0 0 0 rgba(124,92,252,0.4); }
  50%      { box-shadow: 0 0 0 10px rgba(124,92,252,0); }
}
.process-step:hover .process-step-num {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  box-shadow: 0 0 32px rgba(124,92,252,0.65);
  transform: scale(1.15) rotate(5deg);
  animation: none;
}
.process-step.fade-up { transition-delay: var(--step-delay, 0ms); }
.process-step-title {
  font-size: 16px; font-weight: 700; color: var(--white); margin-bottom: 10px;
  transition: color 0.3s;
}
.process-step:hover .process-step-title { color: var(--accent-2); }
.process-step-desc  { font-size: 12px; color: var(--text-muted); line-height: 1.65; }

/* ─── FOUNDER SECTION ────────────────────────────────── */
.founder-section { padding: 100px 52px; background: var(--surface); }
.founder-container {
  max-width: 900px; margin: 0 auto;
  display: grid; grid-template-columns: auto 1fr;
  gap: 60px; align-items: center;
  background: var(--surface2);
  border: 1px solid var(--border-glow);
  border-radius: var(--radius-xl);
  padding: 56px; position: relative; overflow: hidden;
}
.founder-container::before {
  content: '';
  position: absolute; top:-60px; right:-60px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(124,92,252,0.12), transparent 70%);
  pointer-events: none;
}
.founder-avatar-wrap { display:flex; flex-direction:column; align-items:center; gap:14px; }
.founder-avatar {
  width: 96px; height: 96px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 32px; color: #fff;
  border: 3px solid rgba(124,92,252,0.4);
  box-shadow: 0 0 40px rgba(124,92,252,0.3);
}
.founder-tag {
  font-size: 11px; font-weight: 700; color: var(--accent-2);
  background: rgba(124,92,252,0.1);
  border: 1px solid rgba(124,92,252,0.2);
  padding: 4px 14px; border-radius: 50px;
  letter-spacing: 1px; text-transform: uppercase;
}
.founder-content blockquote {
  font-size: 20px; font-style: italic;
  color: var(--white); line-height: 1.65; margin-bottom: 20px; position: relative;
}
.founder-content blockquote::before {
  content: '"'; font-size: 60px; color: var(--accent);
  line-height: 0; vertical-align: -24px; margin-right: 6px; font-style: normal;
}
.founder-content p { font-size: 15px; color: var(--text-muted); line-height: 1.75; }
.founder-name { margin-top:20px; font-size:15px; font-weight:700; color:var(--white); }
.founder-role-label { font-size:12px; color:var(--text-dim); }

/* ─── PRICING ────────────────────────────────────────── */
.pricing-section { padding: 120px 52px; background: var(--bg); }
.pricing-section .section-title h2 {
  background: linear-gradient(135deg, var(--white) 0%, var(--accent-2) 60%, var(--accent-3) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  filter: drop-shadow(0 0 40px rgba(124,92,252,0.4));
}
.pricing-urgency { text-align:center; margin-bottom: 52px; }
.pricing-urgency-badge {
  display: inline-flex; align-items:center; gap:8px;
  padding: 9px 22px;
  background: rgba(251,191,36,0.07);
  border: 1px solid rgba(251,191,36,0.22);
  border-radius: 50px; font-size: 13px; font-weight: 600; color: #fbbf24;
}
.pricing-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; align-items: start;
}
.pricing-card {
  background: var(--surface);
  padding: 44px 36px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  transition: border-color 0.35s, box-shadow 0.35s;
  position: relative; overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}
.pricing-card::after {
  content: '';
  position: absolute; inset:0; border-radius: var(--radius-xl);
  background: linear-gradient(135deg, transparent 30%, rgba(124,92,252,0.07) 50%, transparent 70%);
  background-size: 250% 250%; background-position: 200% 200%;
  transition: background-position 0.7s ease; pointer-events: none;
}
.pricing-card:hover::after { background-position: -50% -50%; }
.pricing-card:hover { border-color: var(--accent); box-shadow: 0 0 0 1px var(--accent), 0 32px 72px rgba(124,92,252,0.2); }
.pricing-card.featured {
  background: linear-gradient(160deg, #160d2e 0%, #0a0818 100%);
  border-color: var(--accent);
  transform: scale(1.04);
  box-shadow: 0 0 0 1px var(--accent), 0 32px 72px rgba(124,92,252,0.25);
}
.pricing-card.featured:hover { transform: scale(1.04) translateY(-8px); }
.pricing-badge {
  display:inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white; padding: 6px 18px; border-radius: 50px;
  font-size: 11px; font-weight: 700; margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 1px;
}
.pricing-title { font-size: 22px; font-weight: 700; color: var(--white); margin-bottom: 14px; }
.pricing-price-prefix { font-size: 13px; color: var(--text-dim); display:block; margin-bottom:4px; }
.pricing-price {
  font-family: var(--font-display); font-size: 64px; font-weight: 400;
  color: var(--white); margin-bottom: 6px; line-height: 1; letter-spacing: 0.02em;
}
.pricing-card.featured .pricing-price {
  background: linear-gradient(135deg, var(--white), var(--accent-2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.pricing-savings {
  display:inline-block;
  background: rgba(16,185,129,0.08); border: 1px solid rgba(16,185,129,0.18);
  color: var(--green); font-size: 12px; font-weight: 700;
  padding: 4px 14px; border-radius: 50px; margin-bottom: 28px;
}
.pricing-features { list-style:none; margin-bottom:32px; text-align:left; }
.pricing-features li {
  padding: 11px 0; border-bottom: 1px solid var(--border);
  font-size: 14px; color: var(--text-muted);
  display:flex; align-items:center; gap:10px;
}
.pricing-features li::before {
  content:'';
  width:18px; height:18px; min-width:18px;
  background: rgba(16,185,129,0.1) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 12 10'%3E%3Cpath d='M1 5l3.5 3.5L11 1' stroke='%2310b981' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/10px no-repeat;
  border: 1px solid rgba(16,185,129,0.2); border-radius:50%; flex-shrink:0;
}
.pricing-features li:last-child { border-bottom:none; }
.pricing-card .btn-primary,
.pricing-card .btn-secondary { width:100%; justify-content:center; }

/* ─── CTA SECTION ────────────────────────────────────── */
.cta-section {
  padding: 120px 52px;
  background: var(--surface);
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content:''; position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%); width:700px; height:400px;
  background: radial-gradient(ellipse, rgba(124,92,252,0.1), transparent 70%);
  pointer-events:none;
}
.cta-content { max-width:800px; margin:0 auto; position:relative; }
.cta-content h2 { font-size: 54px; color: var(--white); margin-bottom: 20px; }
.cta-content p  { font-size: 19px; color: var(--text-muted); margin-bottom: 40px; line-height: 1.7; }
.cta-buttons { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* ─── COLOR BLOCKS ───────────────────────────────────── */
.color-blocks { display:grid; grid-template-columns:repeat(4,1fr); height:360px; }
.color-block { position:relative; overflow:hidden; }
.color-block img { width:100%; height:100%; object-fit:cover; transition:transform 0.7s var(--ease-out); filter:brightness(0.6); }
.color-block:hover img { transform:scale(1.1); filter:brightness(0.85); }
.color-block-overlay {
  position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 25%, rgba(124,92,252,0.6) 100%);
  display:flex; flex-direction:column; align-items:center; justify-content:flex-end;
  padding: 28px 20px; color:white; text-align:center;
}
.color-block-overlay h3 { font-size:20px; font-weight:700; margin-bottom:5px; }
.color-block-overlay p  { font-size:12px; opacity:0.8; }

/* ─── INFO SECTION ───────────────────────────────────── */
.info-section { padding: 120px 52px; background: var(--bg); }
.info-grid {
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:repeat(3,1fr); gap:20px;
}
.info-item {
  padding: 36px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: border-color 0.3s, box-shadow 0.3s;
  transform-style: preserve-3d; will-change: transform;
  position: relative;
}
.info-item::before {
  content:''; position:absolute; top:0; left:0; right:0; height:1px;
  background: linear-gradient(90deg, transparent, var(--accent-3), transparent);
  opacity:0; transition: opacity 0.35s;
}
.info-item:hover::before { opacity:1; }
.info-item:hover {
  border-color: rgba(124,92,252,0.3);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.info-item h3 { font-size:21px; color:var(--white); margin-bottom:14px; }
.info-item p  { font-size:14px; color:var(--text-muted); line-height:1.75; }

/* ─── FAQ ────────────────────────────────────────────── */
.faq-section { padding: 120px 52px; background: var(--surface); }
.faq-container { max-width:880px; margin:0 auto; }
.faq-item {
  background: var(--surface2); border: 1px solid var(--border);
  padding: 28px 32px; margin-bottom: 10px;
  border-radius: var(--radius-md); cursor: pointer; transition: var(--transition);
}
.faq-item:hover { border-color: rgba(124,92,252,0.3); }
.faq-item.active { border-color: var(--accent); background: var(--surface3); }
.faq-question {
  font-size: 17px; font-weight: 700; color: var(--white);
  display:flex; justify-content:space-between; align-items:center; gap:16px;
}
.faq-question span { font-size:22px; color:var(--accent); transition:transform 0.3s; flex-shrink:0; }
.faq-item.active .faq-question span { transform:rotate(45deg); }
.faq-answer { font-size:15px; color:var(--text-muted); line-height:1.8; margin-top:16px; display:none; }
.faq-item.active .faq-answer { display:block; }

/* ─── CONTACT ────────────────────────────────────────── */
.contact-section { padding: 120px 52px; background: var(--bg); }
.contact-container {
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns: 1fr 1.1fr; gap:80px;
}
.contact-info h2 { font-size: 48px; color: var(--white); margin-bottom: 20px; }
.contact-info p  { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 40px; }
.contact-details { display:flex; flex-direction:column; gap:22px; }
.contact-detail { display:flex; align-items:center; gap:16px; font-size:14px; color:var(--text-muted); }
.contact-detail a { color:inherit; text-decoration:none; }
.contact-detail a:hover { color:var(--accent-2); }
.contact-icon {
  width:46px; height:46px; background:var(--surface);
  border:1px solid var(--border); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  font-size:18px; color:var(--accent-2); flex-shrink:0;
}
.contact-form {
  background: var(--surface); border: 1px solid var(--border-glow);
  padding: 48px; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
}
.form-group { margin-bottom:22px; }
.form-group label { display:block; font-size:13px; font-weight:600; color:var(--text-muted); margin-bottom:8px; letter-spacing:0.02em; }
.form-group input,
.form-group textarea {
  width:100%; padding:14px 18px; font-size:15px;
  background:var(--surface2); border:1.5px solid var(--border);
  border-radius: var(--radius-sm); color:var(--text);
  transition: border-color 0.25s, box-shadow 0.25s;
  font-family: var(--font-body);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color:var(--text-dim); }
.form-group input:focus,
.form-group textarea:focus {
  outline:none; border-color:var(--accent);
  box-shadow: 0 0 0 3px rgba(124,92,252,0.15);
}
.form-group textarea { min-height:140px; resize:vertical; }

/* ─── FOOTER ─────────────────────────────────────────── */
footer { padding: 80px 52px 40px; background: var(--surface); border-top: 1px solid var(--border); }
.footer-main {
  max-width:1200px; margin:0 auto 60px;
  display:grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap:60px;
}
.footer-about p { font-size:14px; color:var(--text-muted); line-height:1.75; margin-top:16px; max-width:260px; }
.footer-column h4 { font-size:12px; font-weight:700; color:var(--white); margin-bottom:20px; letter-spacing:1.5px; text-transform:uppercase; }
.footer-links { display:flex; flex-direction:column; gap:12px; }
.footer-links a { color:var(--text-muted); text-decoration:none; font-size:14px; transition:color 0.2s; }
.footer-links a:hover { color:var(--accent-2); }
.footer-bottom {
  max-width:1200px; margin:0 auto; padding-top:40px;
  border-top:1px solid var(--border);
  display:flex; justify-content:center; align-items:center;
}
.footer-bottom p { font-size:13px; color:var(--text-dim); }
.footer-social { display:flex; gap:10px; justify-content:center; }
.social-icon {
  width:38px; height:38px; background:var(--surface2);
  border:1px solid var(--border); border-radius:8px;
  display:flex; align-items:center; justify-content:center;
  color:var(--text-muted); text-decoration:none;
  font-size:14px; font-weight:700; transition:var(--transition);
  padding:6px; overflow:hidden;
}
.social-icon img {
  width:100%; height:100%;
  object-fit:contain; display:block;
  transition:filter 0.25s ease;
}
.social-icon:hover {
  background:var(--accent); border-color:var(--accent); color:white; transform:translateY(-3px);
  box-shadow: 0 8px 24px rgba(124,92,252,0.4);
}
/* GitHub logo is black — invert in dark mode */
.social-icon.github img { filter: invert(1); }
[data-theme="light"] .social-icon.github img { filter: invert(0); }

/* Discord & LinkedIn icons — force larger size to match Instagram/GitHub visually */
.social-icon.discord,
.social-icon.linkedin {
  width: 46px;
  height: 46px;
  padding: 0px;
}
.social-icon.discord img,
.social-icon.linkedin img {
  width: 100%;
  height: 100%;
  transform: scale(1.5);
  transform-origin: center;
}

/* ─── CASE STUDY EXPAND ──────────────────────────────── */
.case-study-details {
  max-height:0; overflow:hidden;
  transition: max-height 0.5s var(--ease-out), opacity 0.4s ease;
  opacity:0; margin-bottom:0;
}
.project-card.expanded .case-study-details { max-height:300px; opacity:1; margin-bottom:16px; }
.case-row {
  display:grid; grid-template-columns: 80px 1fr;
  gap:10px; padding:10px 0;
  border-bottom:1px solid var(--border); font-size:12px;
}
.case-row:last-child { border-bottom:none; }
.case-label {
  font-weight:800; color:var(--accent-2);
  font-size:10px; text-transform:uppercase; letter-spacing:0.8px; padding-top:2px;
}
.case-val { color:var(--text-muted); line-height:1.55; }

/* ─── CURSOR GLOW ────────────────────────────────────── */
.cursor-glow {
  position:fixed; width:160px; height:160px;
  background: radial-gradient(circle, rgba(124,92,252,0.18) 0%, rgba(232,121,249,0.06) 40%, transparent 70%);
  pointer-events:none;
  transform:translate(-50%,-50%);
  z-index:9998; border-radius:50%;
  mix-blend-mode: screen;
}
[data-theme="light"] .cursor-glow {
  background: radial-gradient(circle, rgba(108,71,245,0.1) 0%, rgba(217,70,239,0.04) 40%, transparent 70%);
  mix-blend-mode: multiply;
}

/* ─── FADE-UP ────────────────────────────────────────── */
.fade-up {
  opacity:0;
  transform: translateY(28px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}
.fade-up.visible { opacity:1; transform:translateY(0); }

/* SAFETY NET: if JS fails, still show content after 2s */
@media (prefers-reduced-motion: no-preference) {
  .fade-up { animation: fadeUpSafe 0.7s var(--ease-out) 2s both; }
}
@keyframes fadeUpSafe {
  from { opacity:0; transform:translateY(28px); }
  to   { opacity:1; transform:translateY(0); }
}



/* ─── PRESERVE 3D CARDS ──────────────────────────────── */
.service-card, .testimonial-card, .project-card,
.info-item, .pricing-card { transform-style:preserve-3d; }

/* ─── TABLET ≤ 968px ─────────────────────────────────── */
@media (max-width: 968px) {
  .hamburger { display:flex; }
  .nav-container { padding:0 20px; }
  .nav-links {
    display:none; position:fixed; inset:0;
    background:rgba(8,8,16,0.97); backdrop-filter:blur(20px);
    flex-direction:column; align-items:center; justify-content:center;
    gap:28px; z-index:999;
  }
  .nav-links.open { display:flex; }
  .nav-links a { font-size:24px; font-weight:600; color:var(--text); }
  .nav-links a::after { display:none; }
  .nav-links .btn-primary { padding:14px 44px; font-size:17px; }

  .hero { padding:110px 24px 64px; }
  .hero h1 { font-size: clamp(48px, 12vw, 80px); }

  .video-showcase { padding:0 16px; }
  .video-container { padding:32px 16px; }

  .logos-section { padding:48px 0; }
  .logo-item { padding:12px 44px; }
  .logo-item img { height:90px; }
  .logos-scroll-container::before, .logos-scroll-container::after { width:80px; }

  .stats-section { padding:64px 24px; }
  .stats-container { grid-template-columns:repeat(2,1fr); }
  .stat-item { border-right:none; border-bottom:1px solid var(--border); padding:36px 24px; }
  .stat-item:nth-child(odd) { border-right:1px solid var(--border); }
  .stat-number { font-size:52px; }

  .about-section { padding:80px 24px; }
  .about-content h2 { font-size:38px; }

  .features-section { padding:72px 24px; }
  .feature-row { grid-template-columns:1fr; gap:28px; margin-bottom:64px; }
  .feature-row.reverse { direction:ltr; }
  .feature-content h2 { font-size:34px; }
  .feature-image { height:260px; }

  .services-section { padding:72px 24px; }
  .section-title h2 { font-size:38px; }
  .services-grid { grid-template-columns:repeat(2,1fr); gap:16px; }

  .projects-section { padding:72px 24px; }
  .projects-grid { grid-template-columns:1fr; gap:20px; }

  .testimonials-section { padding:72px 24px; }
  .testimonials-grid { grid-template-columns:1fr; gap:16px; }

  .color-blocks { grid-template-columns:repeat(2,1fr); height:auto; }
  .color-block { height:220px; }

  .cta-section { padding:72px 24px; }
  .cta-content h2 { font-size:38px; }
  .cta-buttons { flex-direction:column; align-items:stretch; max-width:340px; margin:0 auto; }
  .cta-buttons .btn-primary, .cta-buttons .btn-secondary { width:100%; justify-content:center; }

  .pricing-section { padding:72px 24px; }
  .pricing-grid { grid-template-columns:1fr; max-width:480px; margin:0 auto; }
  .pricing-card.featured { transform:scale(1); }

  .info-section { padding:72px 24px; }
  .info-grid { grid-template-columns:1fr; gap:14px; }

  .faq-section { padding:72px 24px; }
  .faq-item { padding:22px 20px; }
  .faq-question { font-size:15px; }

  .process-section { padding:72px 24px; }
  .process-steps { grid-template-columns:1fr 1fr; gap:40px; }
  .process-steps::before { display:none; }

  .founder-section { padding:72px 24px; }
  .founder-container { grid-template-columns:1fr; gap:32px; padding:36px 28px; }
  .founder-avatar-wrap { flex-direction:row; }
  .founder-content blockquote { font-size:17px; }

  .contact-section { padding:72px 24px; }
  .contact-container { grid-template-columns:1fr; gap:40px; }
  .contact-info h2 { font-size:36px; }
  .contact-form { padding:32px 24px; }

  footer { padding:56px 24px 32px; }
  .footer-main { grid-template-columns:1fr 1fr; gap:36px 24px; }
  .footer-about { grid-column:1/-1; }
  .footer-bottom { flex-direction:column; gap:16px; text-align:center; }
  .footer-social { justify-content:center; }
}

/* ─── MOBILE ≤ 480px ─────────────────────────────────── */
@media (max-width: 480px) {
  .nav-container { padding:0 16px; }
  .logo span { font-size:22px; }
  .logo-img { width:28px; height:28px; }

  .hero { padding:90px 16px 48px; }
  .hero h1 { font-size:clamp(44px, 14vw, 64px); }
  .hero-buttons { flex-direction:column; align-items:stretch; }
  .hero-buttons .btn-primary, .hero-buttons .btn-secondary { width:100%; justify-content:center; }
  .hero-trust-badges { gap:6px; }
  .trust-badge { font-size:11px; padding:5px 12px; }

  .video-showcase { padding:0 4px; }
  .video-container { padding:16px 8px; border-radius:16px; }

  .logos-section p { font-size:10px; }
  .logo-item { padding:8px 24px; }
  .logo-item img { height:64px; }
  .logos-scroll-container::before, .logos-scroll-container::after { width:48px; }

  .stats-container { grid-template-columns:repeat(2,1fr); }
  .stat-number { font-size:42px; }
  .stat-label { font-size:12px; }

  .about-content h2 { font-size:30px; }
  .social-links { flex-direction:column; align-items:stretch; }
  .social-link { justify-content:center; }

  .features-section { padding:52px 16px; }
  .feature-content h2 { font-size:28px; }
  .feature-image { height:200px; }
  .feature-content .btn-primary { width:100%; justify-content:center; }

  .services-section { padding:52px 16px; }
  .section-title h2 { font-size:28px; }
  .section-title p { font-size:15px; }
  .services-grid { grid-template-columns:1fr; gap:12px; }
  .service-card { padding:24px 18px; display:flex; align-items:flex-start; gap:16px; text-align:left; }
  .service-icon { font-size:30px; margin-bottom:0; flex-shrink:0; }
  .service-card h3 { font-size:16px; }
  .service-card p { font-size:13px; }

  .projects-section { padding:52px 16px; }
  .projects-grid { display:flex; flex-direction:row; overflow-x:auto; scroll-snap-type:x mandatory; -webkit-overflow-scrolling:touch; gap:14px; padding-bottom:12px; margin:0 -16px; padding-left:16px; padding-right:16px; }
  .projects-grid::-webkit-scrollbar { display:none; }
  .project-card { flex:0 0 78vw; max-width:300px; scroll-snap-align:start; }
  .project-image { height:170px; }

  .testimonials-section { padding:52px 16px; }
  .testimonial-card { padding:26px 18px; }

  .pricing-section { padding:52px 16px; }
  .pricing-grid { max-width:100%; }
  .pricing-card { padding:28px 20px; }
  .pricing-price { font-size:50px; }

  .color-blocks { grid-template-columns:repeat(2,1fr); }
  .color-block { height:150px; }
  .color-block-overlay h3 { font-size:15px; }
  .color-block-overlay p { font-size:11px; }

  .cta-section { padding:52px 16px; }
  .cta-content h2 { font-size:28px; }

  .info-section { padding:52px 16px; }
  .info-item { padding:24px 18px; }

  .faq-section { padding:52px 16px; }
  .faq-item { padding:18px 14px; }
  .faq-question { font-size:14px; }
  .faq-answer { font-size:14px; }

  .process-steps { grid-template-columns:1fr; gap:32px; }
  .founder-container { padding:28px 18px; }
  .founder-content blockquote { font-size:15px; }

  .contact-section { padding:52px 16px; }
  .contact-info h2 { font-size:30px; }
  .contact-form { padding:24px 16px; }
  .form-group input, .form-group textarea { font-size:16px; }

  footer { padding:44px 16px 24px; }
  .footer-main { grid-template-columns:1fr 1fr; gap:28px 20px; }
  .footer-bottom p { font-size:12px; }
}

/* ─── WHATSAPP FLOAT ─────────────────────────────────── */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  z-index: 9997;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  animation: waPulse 2.5s ease-in-out infinite;
}
.whatsapp-float:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37,211,102,0.65);
  animation: none;
}
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 24px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 24px rgba(37,211,102,0.45), 0 0 0 12px rgba(37,211,102,0); }
}

/* ─── FOOTER NEWSLETTER ──────────────────────────────── */
.footer-newsletter {
  border-top: 1px solid var(--border);
  padding: 48px 0;
  margin-bottom: 40px;
}
.newsletter-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  padding: 0 24px;
}
.newsletter-text h4 {
  font-size: 20px; font-weight: 700; color: var(--white); margin-bottom: 6px;
}
.newsletter-text p { font-size: 14px; color: var(--text-muted); }
.newsletter-form {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.newsletter-form input {
  padding: 12px 20px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--surface2);
  color: var(--white); font-size: 14px; outline: none;
  min-width: 260px;
  transition: border-color 0.2s;
}
.newsletter-form input:focus { border-color: var(--accent); }
.newsletter-form input::placeholder { color: var(--text-dim); }

/* ─── SCROLL PROGRESS BAR COLOR ─────────────────────── */
.scroll-progress {
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
}

@media (max-width: 768px) {
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form { width: 100%; }
  .newsletter-form input { min-width: 0; flex: 1; }
}

/* ─── LIGHT MODE OVERRIDES ───────────────────────────── */
[data-theme="light"] .hero {
  background: linear-gradient(135deg, #f0efff 0%, #faf5ff 50%, #f0f8ff 100%);
}
[data-theme="light"] .hero-orb-1 {
  background: radial-gradient(circle, rgba(108,71,245,0.18) 0%, transparent 70%);
}
[data-theme="light"] .hero-orb-2 {
  background: radial-gradient(circle, rgba(217,70,239,0.14) 0%, transparent 70%);
}
[data-theme="light"] .hero-orb-3 {
  background: radial-gradient(circle, rgba(99,102,241,0.12) 0%, transparent 70%);
}
[data-theme="light"] .video-container {
  background: linear-gradient(135deg, #ede9fe, #fce7f3);
  border-color: rgba(124,92,252,0.2);
}
[data-theme="light"] .trust-badge {
  background: rgba(108,71,245,0.08);
  border-color: rgba(108,71,245,0.2);
  color: var(--text-muted);
}
[data-theme="light"] .dot { background: #6c47f5; }
[data-theme="light"] nav {
  background: rgba(245,245,255,0.85);
  border-bottom-color: rgba(0,0,0,0.08);
}
[data-theme="light"] nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
[data-theme="light"] nav.hidden {
  background: rgba(255,255,255,0.97);
}
[data-theme="light"] .nav-links a { color: var(--text-muted); }
[data-theme="light"] .nav-links a:hover { color: var(--accent); }
[data-theme="light"] .stat-item {
  background: #ffffff;
  border-color: rgba(0,0,0,0.07);
}
[data-theme="light"] .service-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.07);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
}
[data-theme="light"] .service-card:hover {
  border-color: var(--accent);
}
[data-theme="light"] .pricing-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
[data-theme="light"] .pricing-card.featured {
  background: linear-gradient(135deg, #f3f0ff, #fdf4ff);
  border-color: var(--accent);
}
[data-theme="light"] .testimonial-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.07);
}
[data-theme="light"] .project-card {
  background: #ffffff;
  border-color: rgba(0,0,0,0.07);
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
}
[data-theme="light"] .faq-item {
  background: #ffffff;
  border-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .faq-item.active {
  border-color: var(--accent);
  background: #f8f6ff;
}
[data-theme="light"] .contact-form form {
  background: #ffffff;
}
[data-theme="light"] input,
[data-theme="light"] textarea {
  background: #f5f5ff !important;
  border-color: rgba(0,0,0,0.1) !important;
  color: var(--text) !important;
}
[data-theme="light"] input:focus,
[data-theme="light"] textarea:focus {
  border-color: var(--accent) !important;
}
[data-theme="light"] footer {
  background: #f0f0fb;
  border-top: 1px solid rgba(0,0,0,0.07);
}
[data-theme="light"] .footer-main {
  border-color: rgba(0,0,0,0.06);
}
[data-theme="light"] .footer-about p {
  color: var(--text-muted);
}
[data-theme="light"] .footer-column h4 {
  color: var(--text);
}
[data-theme="light"] .footer-links a {
  color: var(--text-muted);
}
[data-theme="light"] .footer-links a:hover {
  color: var(--accent);
}
[data-theme="light"] .footer-bottom {
  border-top-color: rgba(0,0,0,0.08);
}
[data-theme="light"] .social-icon {
  background: #ffffff;
  border-color: rgba(0,0,0,0.1);
  color: var(--text-muted);
}
[data-theme="light"] .social-icon:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
[data-theme="light"] .footer-newsletter {
  border-top-color: rgba(0,0,0,0.07);
}
[data-theme="light"] footer p[style],
[data-theme="light"] footer div[style] > p {
  color: #666688 !important;
}
[data-theme="light"] footer a[style] {
  color: #888899 !important;
}
[data-theme="light"] footer div[style] {
  border-top-color: rgba(0,0,0,0.08) !important;
}
[data-theme="light"] .logo span {
  color: var(--text);
}
[data-theme="light"] .info-item {
  background: #ffffff;
  border-color: rgba(0,0,0,0.07);
}
[data-theme="light"] .process-step-num {
  background: #f0eeff;
  border-color: var(--accent);
}
[data-theme="light"] .author-avatar {
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
}
[data-theme="light"] .logos-section {
  background: #f0f0fa;
  border-color: rgba(0,0,0,0.07);
}
[data-theme="light"] .logos-scroll-container::before {
  background: linear-gradient(to right, #f0f0fa, transparent);
}
[data-theme="light"] .logos-scroll-container::after {
  background: linear-gradient(to left, #f0f0fa, transparent);
}
[data-theme="light"] .logo-item img {
  filter: brightness(0) opacity(0.7);
}
[data-theme="light"] .logo-item:hover img {
  filter: brightness(0) opacity(1);
}
[data-theme="light"] .color-block-overlay { background: linear-gradient(to top, rgba(0,0,0,0.75), transparent); }
[data-theme="light"] .founder-section { background: #eeeeff; }
[data-theme="light"] .founder-container { background: #ffffff; border-color: rgba(0,0,0,0.08); }
[data-theme="light"] .scramble-char { color: var(--accent-3); }
[data-theme="light"] .hero h1 { color: #13131f; }
[data-theme="light"] .hero-sub-rotate { color: var(--text-muted); }
[data-theme="light"] .hero-social-proof span { color: var(--text-muted); }
[data-theme="light"] .av {
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: #fff;
  border-color: #f5f5ff;
}
[data-theme="light"] .contact-section { background: #f0f0fb; }
[data-theme="light"] .contact-info h2 { color: var(--text); }
[data-theme="light"] .contact-info p { color: var(--text-muted); }
[data-theme="light"] .contact-detail strong { color: var(--text); }
[data-theme="light"] .contact-form form {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.07);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
}
[data-theme="light"] label { color: var(--text-muted); }
[data-theme="light"] .faq-question { color: var(--text); }
[data-theme="light"] .faq-answer { color: var(--text-muted); }
[data-theme="light"] .section-title h2 { color: var(--text); }
[data-theme="light"] .section-title p { color: var(--text-muted); }
[data-theme="light"] .process-step-title { color: var(--text); }
[data-theme="light"] .process-step-desc { color: var(--text-muted); }
[data-theme="light"] .process-steps::before {
  background: linear-gradient(90deg, var(--accent), var(--accent-2), var(--accent-3));
}
[data-theme="light"] .testimonial-text { color: var(--text-muted); }
[data-theme="light"] .author-name { color: var(--text); }
[data-theme="light"] .author-role { color: var(--text-muted); }
[data-theme="light"] .stat-number { color: var(--accent); }
[data-theme="light"] .stat-label { color: var(--text-muted); }
[data-theme="light"] .service-icon { filter: none; }
[data-theme="light"] .service-card h3 { color: var(--text); }
[data-theme="light"] .service-card p { color: var(--text-muted); }
[data-theme="light"] .pricing-title { color: var(--text); }
[data-theme="light"] .pricing-price { color: var(--accent); }
[data-theme="light"] .pricing-features li { color: var(--text-muted); }
[data-theme="light"] .pricing-savings { color: var(--green); }
[data-theme="light"] .case-label { color: var(--accent); }
[data-theme="light"] .case-val { color: var(--text-muted); }
[data-theme="light"] .project-info h3 { color: var(--text); }
[data-theme="light"] .project-info p { color: var(--text-muted); }
[data-theme="light"] .info-item h3 { color: var(--text); }
[data-theme="light"] .info-item p { color: var(--text-muted); }
[data-theme="light"] .features-section { background: #f8f8ff; }
[data-theme="light"] .feature-content h2 { color: var(--text); }
[data-theme="light"] .feature-content p { color: var(--text-muted); }
[data-theme="light"] .about-section { background: #ffffff; }
[data-theme="light"] .about-content h2 { color: var(--text); }
[data-theme="light"] .about-content p { color: var(--text-muted); }
[data-theme="light"] .services-section { background: #f8f8ff; }
[data-theme="light"] .projects-section { background: #ffffff; }
[data-theme="light"] .testimonials-section { background: #f8f8ff; }
[data-theme="light"] .faq-section { background: #ffffff; }
[data-theme="light"] .process-section { background: #f8f8ff; }
[data-theme="light"] .pricing-section { background: #ffffff; }
[data-theme="light"] .cta-content h2 { color: var(--text); }
[data-theme="light"] .cta-content p { color: var(--text-muted); }
[data-theme="light"] .hover-ring { border-color: var(--accent); }
[data-theme="light"] .pricing-urgency-badge {
  background: rgba(108,71,245,0.08);
  color: var(--accent);
  border: 1px solid rgba(108,71,245,0.2);
}
[data-theme="light"] .project-tag {
  background: rgba(108,71,245,0.08);
  color: var(--accent);
}
[data-theme="light"] .founder-content blockquote { color: var(--text); }
[data-theme="light"] .founder-content p { color: var(--text-muted); }
[data-theme="light"] .founder-name { color: var(--text); }
[data-theme="light"] .founder-role-label { color: var(--text-muted); }
[data-theme="light"] .newsletter-form input {
  background: #ededfc !important;
  border-color: rgba(0,0,0,0.1) !important;
}
[data-theme="light"] .scroll-progress {
  background: linear-gradient(90deg, var(--accent), var(--accent-3));
}
[data-theme="light"] .btn-secondary {
  color: var(--text);
  border-color: rgba(0,0,0,0.15);
}
[data-theme="light"] .btn-secondary:hover {
  background: rgba(0,0,0,0.05);
}
[data-theme="light"] .cta-section {
  background: linear-gradient(135deg, #f0eeff 0%, #fdf4ff 100%);
}
[data-theme="light"] .stats-section { background: #f8f8ff; }
[data-theme="light"] .gradient-text {
  background: linear-gradient(135deg, #6c47f5 0%, #d946ef 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ─── THEME TOGGLE SWITCH ────────────────────────────── */
.theme-toggle {
  cursor: pointer;
  flex-shrink: 0;
  user-select: none;
}
.toggle-track {
  width: 68px; height: 34px;
  border-radius: 50px;
  background: linear-gradient(160deg, #2c2c52 0%, #1a1a35 50%, #0e0e22 100%);
  border: 2px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
  transition: background 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease;
  box-shadow: inset 0 3px 12px rgba(0,0,0,0.7), 0 2px 10px rgba(0,0,0,0.5), inset 0 0 24px rgba(60,40,160,0.2);
}

/* Stars (visible in dark mode) */
.toggle-stars {
  position: absolute; inset: 0;
  transition: opacity 0.4s ease;
  opacity: 1;
}
.toggle-stars span {
  position: absolute;
  background: #fff; border-radius: 50%;
  animation: starTwinkle 2s ease-in-out infinite;
}
.toggle-stars span:nth-child(1) { width:2.5px; height:2.5px; top:6px;  left:10px; animation-delay:0s; }
.toggle-stars span:nth-child(2) { width:1.5px; height:1.5px; top:16px; left:17px; animation-delay:0.5s; }
.toggle-stars span:nth-child(3) { width:2px;   height:2px;   top:9px;  left:25px; animation-delay:1s; }
.toggle-stars span:nth-child(4) { width:1.5px; height:1.5px; top:21px; left:9px;  animation-delay:1.5s; }
.toggle-stars span:nth-child(5) { width:2px;   height:2px;   top:13px; left:20px; animation-delay:0.8s; }
@keyframes starTwinkle {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:0.15; transform:scale(0.4); }
}

/* Clouds (visible in light mode) */
.toggle-clouds {
  position: absolute; inset: 0;
  transition: opacity 0.4s ease;
  opacity: 0;
}
.toggle-clouds span {
  position: absolute;
  background: rgba(255,255,255,0.92);
  border-radius: 50px;
}
.toggle-clouds span:nth-child(1) {
  width: 22px; height: 9px;
  top: 12px; left: 5px;
  box-shadow: 0 -5px 0 3px rgba(255,255,255,0.92);
}
.toggle-clouds span:nth-child(2) {
  width: 15px; height: 7px;
  top: 15px; left: 14px;
  box-shadow: 0 -4px 0 2px rgba(255,255,255,0.92);
}

/* Thumb */
.toggle-thumb {
  position: absolute;
  top: 4px; left: 4px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: #cfc0ee;
  box-shadow: 0 2px 10px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.08), 2px 2px 6px rgba(0,0,0,0.4);
  transition: transform 0.45s cubic-bezier(0.34,1.56,0.64,1), background 0.4s ease, box-shadow 0.4s ease;
  overflow: visible;
  z-index: 2;
}

/* Sun */
.toggle-sun {
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, #fcd34d 40%, #f59e0b 100%);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Moon — crescent using clip/shadow trick like reference image */
.toggle-moon {
  position: absolute; inset: 0;
  border-radius: 50%;
  opacity: 1;
  transition: opacity 0.3s ease;
  background: radial-gradient(circle at 42% 42%, #ddd0f5 50%, #b8a9e0 100%);
  overflow: hidden;
}
/* Dark overlay shifted to create crescent shape */
.toggle-moon::before {
  content: '';
  position: absolute;
  top: -3px; left: 4px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #1a1a35;
}

/* ── LIGHT MODE STATE ── */
[data-theme="light"] .toggle-track {
  background: linear-gradient(160deg, #5bc8f5 0%, #87ceeb 50%, #aaddf5 100%);
  border-color: rgba(255,255,255,0.55);
  box-shadow: inset 0 2px 8px rgba(0,100,180,0.15), 0 2px 10px rgba(0,0,0,0.1);
}
[data-theme="light"] .toggle-stars { opacity: 0; }
[data-theme="light"] .toggle-clouds { opacity: 1; }
[data-theme="light"] .toggle-thumb {
  transform: translateX(34px);
  background: #fff9e6;
  box-shadow: 0 2px 10px rgba(245,158,11,0.5), 0 0 0 1px rgba(255,200,0,0.2);
}
[data-theme="light"] .toggle-sun  { opacity: 1; }
[data-theme="light"] .toggle-moon { opacity: 0; }