/* =========================================
   SAGISITE - Premium Agency CSS 2026
   Author: SagiSite
   RTL Hebrew Design
========================================= */

/* --- CUSTOM PROPERTIES --- */
:root {
  --bg-primary: #05050f;
  --bg-secondary: #080818;
  --bg-card: rgba(255, 255, 255, 0.035);
  --bg-card-hover: rgba(255, 255, 255, 0.06);

  --blue: #00d4ff;
  --purple: #7b2ff7;
  --cyan: #00ffff;
  --neon: #b44fff;
  --pink: #ff2d9b;

  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.35);

  --border-glass: rgba(255, 255, 255, 0.07);
  --border-glow: rgba(0, 212, 255, 0.25);

  --glow-blue: 0 0 30px rgba(0, 212, 255, 0.35);
  --glow-purple: 0 0 30px rgba(123, 47, 247, 0.35);

  --gradient-main: linear-gradient(135deg, #00d4ff, #7b2ff7);
  --gradient-alt: linear-gradient(135deg, #7b2ff7, #ff2d9b);

  --radius: 20px;
  --radius-sm: 12px;
  --radius-full: 100px;

  --nav-height: 80px;
  --section-pad: clamp(80px, 10vw, 140px);

  --font: 'Heebo', sans-serif;
  --ease-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* Ambient background blobs */
body::before {
  content: '';
  position: fixed;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(123, 47, 247, 0.12) 0%, transparent 70%);
  top: -300px; right: -200px;
  animation: blob-drift 22s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
  bottom: -250px; left: -150px;
  animation: blob-drift 30s ease-in-out infinite reverse;
  pointer-events: none; z-index: 0;
}

@keyframes blob-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -60px) scale(1.08); }
  66% { transform: translate(-25px, 30px) scale(0.93); }
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; font-family: var(--font); }
input, textarea, select { font-family: var(--font); direction: rtl; }

/* --- CONTAINER --- */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  position: relative;
}

/* --- TYPOGRAPHY --- */
.gradient-text {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}

.section-label::before,
.section-label::after {
  content: '';
  display: inline-block;
  width: 36px;
  height: 1px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.section-label::after {
  background: linear-gradient(270deg, var(--blue), transparent);
}

.section-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.section-sub {
  font-size: clamp(15px, 2vw, 18px);
  color: var(--text-secondary);
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: clamp(50px, 6vw, 80px);
}

.section-header .section-sub {
  margin: 0 auto;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 40px;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease-smooth), box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.3s;
}

.btn:hover::after { background: rgba(255,255,255,0.07); }
.btn:hover { transform: translateY(-3px) scale(1.02); }
.btn:active { transform: translateY(-1px) scale(0.99); }

.btn-primary {
  background: var(--gradient-main);
  color: #fff;
  box-shadow: 0 4px 30px rgba(0, 212, 255, 0.35), 0 2px 10px rgba(123, 47, 247, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 8px 50px rgba(0, 212, 255, 0.55), 0 4px 20px rgba(123, 47, 247, 0.4);
}

.btn-ghost {
  background: transparent;
  border: 1px solid var(--border-glass);
  color: var(--text-primary);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  border-color: rgba(0, 212, 255, 0.4);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

/* --- CUSTOM CURSOR (desktop only) --- */
.cursor-outer,
.cursor-inner {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
}

.cursor-outer {
  width: 38px; height: 38px;
  border: 1px solid rgba(0, 212, 255, 0.5);
  transition: opacity 0.3s;
}

.cursor-inner {
  width: 7px; height: 7px;
  background: var(--blue);
  box-shadow: 0 0 8px var(--blue);
}

@media (max-width: 1024px) {
  .cursor-outer, .cursor-inner { display: none; }
}

/* =========================================
   LOADING SCREEN
========================================= */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.loading-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.loading-logo-wrap {
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(20px) scale(0.9);
}

.loading-logo {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 900;
  letter-spacing: -2px;
  margin-bottom: 8px;
}

.loading-logo span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.loading-tagline {
  font-size: 12px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--text-muted);
}

.loading-bar-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.loading-bar {
  width: 280px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
}

.loading-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--gradient-main);
  border-radius: 2px;
  box-shadow: 0 0 12px var(--blue);
  transition: width 0.1s linear;
}

.loading-pct {
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--text-muted);
  font-weight: 300;
}

.loading-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.l-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
}

.l-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, var(--purple), transparent);
  top: -100px; right: -80px;
  animation: float-orb 8s ease-in-out infinite;
}

.l-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, var(--blue), transparent);
  bottom: -80px; left: -80px;
  animation: float-orb 10s ease-in-out infinite reverse;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -40px); }
}

/* =========================================
   NAVIGATION
========================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.4s ease, padding 0.3s ease, border-color 0.4s ease;
  padding: 0;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  border-bottom-color: transparent;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-height);
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.nav-logo {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -1px;
  cursor: pointer;
}

.nav-logo span, .footer-logo span, .loading-logo span {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; right: 0; left: 0;
  height: 1px;
  background: var(--gradient-main);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease-smooth);
}

.nav-link:hover { color: var(--text-primary); }
.nav-link:hover::after { transform: scaleX(1); }

.nav-cta-link {
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

.nav-cta-link::after { display: none; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}

.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: rgba(5, 5, 15, 0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  transform: translateX(-100%);
  transition: transform 0.4s var(--ease-smooth);
}

.mobile-menu.active { transform: translateX(0); }

.mobile-menu ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  gap: 40px;
}

.mobile-menu a {
  font-size: 28px;
  font-weight: 700;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--blue); }

/* =========================================
   HERO SECTION
========================================= */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-height);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(0, 212, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 212, 255, 0.025) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

/* Floating Orbs */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}

.orb-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(123, 47, 247, 0.25), transparent 70%);
  top: -150px; left: -100px;
  animation: orb-float 18s ease-in-out infinite;
}

.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.18), transparent 70%);
  bottom: -100px; right: -80px;
  animation: orb-float 24s ease-in-out infinite reverse;
}

.orb-3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(180, 79, 255, 0.2), transparent 70%);
  top: 40%; left: 40%;
  animation: orb-float 14s ease-in-out infinite 5s;
}

@keyframes orb-float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(50px, -60px) scale(1.06); }
  66% { transform: translate(-35px, 40px) scale(0.95); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 5vw, 80px);
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: clamp(40px, 6vh, 80px) clamp(20px, 5vw, 60px);
}

/* Hero Content */
.hero-content {
  flex: 1;
  max-width: 620px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(20px);
}

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

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.6; }
}

.hero-title {
  font-size: clamp(44px, 6.5vw, 88px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -3px;
  margin-bottom: 28px;
  overflow: hidden;
}

.ht-line {
  display: block;
  opacity: 0;
  transform: translateY(70px);
}

.hero-title em {
  font-style: normal;
  display: inline-block;
}

.hero-sub {
  font-size: clamp(15px, 1.8vw, 19px);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(30px);
}

.hero-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(20px);
}

/* Hero Stats */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  opacity: 0;
  transform: translateY(15px);
}

.stat {
  padding: 0 28px;
  text-align: center;
}

.stat:first-child { padding-right: 0; }

.stat-num {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 900;
  letter-spacing: -1px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-lbl {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  white-space: nowrap;
}

.stat-sep {
  width: 1px;
  height: 40px;
  background: var(--border-glass);
  flex-shrink: 0;
}

/* Hero Visual — Mockup Device */
.hero-visual {
  flex: 1;
  max-width: 520px;
  position: relative;
  opacity: 0;
  transform: translateX(-40px);
}

.hero-device {
  position: relative;
  transform-style: preserve-3d;
}

.device-frame {
  background: rgba(10, 10, 30, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  overflow: hidden;
  box-shadow:
    0 0 0 1px rgba(0, 212, 255, 0.1),
    0 40px 80px rgba(0, 0, 0, 0.6),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.device-browser-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.db-dots { display: flex; gap: 6px; }
.db-dots span {
  width: 11px; height: 11px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
}
.db-dots span:nth-child(1) { background: #ff5f57; }
.db-dots span:nth-child(2) { background: #febc2e; }
.db-dots span:nth-child(3) { background: #28c840; }

.db-url {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
}

.db-actions { display: flex; gap: 6px; }
.db-actions span {
  width: 24px; height: 24px;
  border-radius: 6px;
  background: rgba(255,255,255,0.05);
}

.device-screen {
  padding: 0;
  overflow: hidden;
  background: #08081a;
}

/* ── Animated hero device content ── */
.anim-content {
  position: relative;
  width: 100%;
  height: 300px;
  background: #08081a;
  overflow: hidden;
}

/* Ambient glow blobs */
.ac-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(55px);
  animation: ac-glow-pulse 4s ease-in-out infinite;
  pointer-events: none;
}
.ac-g1 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(0,212,255,0.28), transparent 70%);
  top: -20px; left: 5%;
}
.ac-g2 {
  width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(123,47,247,0.32), transparent 70%);
  bottom: -20px; right: 5%;
  animation-delay: -2s;
}
@keyframes ac-glow-pulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.25); }
}

/* Central hub */
.ac-hub {
  position: absolute;
  top: 44%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px; height: 100px;
}
.ac-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.ac-ring-outer {
  width: 100px; height: 100px;
  border: 1.5px solid rgba(0,212,255,0.18);
  border-top-color: rgba(0,212,255,0.9);
  border-right-color: rgba(123,47,247,0.5);
  animation: ac-spin 7s linear infinite;
}
.ac-ring-inner {
  width: 72px; height: 72px;
  border: 1.5px solid rgba(123,47,247,0.18);
  border-top-color: rgba(123,47,247,0.9);
  border-right-color: rgba(255,45,155,0.5);
  animation: ac-spin 4.5s linear infinite reverse;
}
@keyframes ac-spin {
  from { transform: translate(-50%,-50%) rotate(0deg); }
  to   { transform: translate(-50%,-50%) rotate(360deg); }
}

.ac-core {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(0,212,255,0.07);
  display: flex; align-items: center; justify-content: center;
}
.ac-core-text {
  font-family: monospace;
  font-size: 15px;
  font-weight: 900;
  background: linear-gradient(135deg, #00d4ff, #7b2ff7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative; z-index: 1;
}
.ac-core-pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: rgba(0,212,255,0.12);
  animation: ac-pulse 2.2s ease-out infinite;
}
@keyframes ac-pulse {
  0%   { transform: scale(1); opacity: 0.9; }
  100% { transform: scale(2.5); opacity: 0; }
}

/* Orbiting tech nodes */
.ac-node {
  position: absolute;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 9px 11px;
  font-size: 9px;
  color: var(--text-secondary);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.ac-node i {
  font-size: 15px;
  background: linear-gradient(135deg, #00d4ff, #7b2ff7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ac-n1 { top: 6%;  left: 6%;  animation: ac-float 3.2s ease-in-out infinite; }
.ac-n2 { top: 6%;  right: 6%; animation: ac-float 3.8s ease-in-out infinite 0.6s; }
.ac-n3 { bottom: 18%; left: 6%;  animation: ac-float 4.1s ease-in-out infinite 1.1s; }
.ac-n4 { bottom: 18%; right: 6%; animation: ac-float 3.5s ease-in-out infinite 1.7s; }
@keyframes ac-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

/* Floating particles */
.ac-particle {
  position: absolute;
  border-radius: 50%;
  animation: ac-drift linear infinite;
  pointer-events: none;
}
.ac-p1 { width:3px; height:3px; background:#00d4ff; left:32%; top:75%; opacity:.7; animation-duration:5.2s; }
.ac-p2 { width:2px; height:2px; background:#7b2ff7; left:58%; top:28%; opacity:.5; animation-duration:7s;   animation-delay:-2.5s; }
.ac-p3 { width:3px; height:3px; background:#ff2d9b; left:72%; top:62%; opacity:.6; animation-duration:6.1s; animation-delay:-1s; }
.ac-p4 { width:2px; height:2px; background:#00d4ff; left:18%; top:38%; opacity:.7; animation-duration:8.3s; animation-delay:-3.5s; }
.ac-p5 { width:3px; height:3px; background:#7b2ff7; left:47%; top:82%; opacity:.5; animation-duration:6.7s; animation-delay:-4.2s; }
.ac-p6 { width:2px; height:2px; background:#00d4ff; left:83%; top:22%; opacity:.6; animation-duration:5.8s; animation-delay:-1.8s; }
@keyframes ac-drift {
  0%   { transform: translateY(0)    translateX(0);   opacity: 0; }
  15%  { opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translateY(-90px) translateX(12px); opacity: 0; }
}

/* Bottom metrics bar */
.ac-metrics {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  display: flex;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.03);
  border-top: 1px solid rgba(255,255,255,0.07);
}
.ac-metric {
  flex: 1;
  display: flex; flex-direction: column; gap: 4px;
}
.acm-value {
  font-size: 13px; font-weight: 700;
  background: linear-gradient(135deg, #00d4ff, #7b2ff7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.acm-bar {
  height: 3px; border-radius: 3px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}
.acm-fill {
  height: 100%;
  background: linear-gradient(90deg, #00d4ff, #7b2ff7);
  border-radius: 3px;
  width: 0;
}
.acm-p100 { animation: acm-grow-100 1.8s ease-out 0.3s forwards; }
.acm-p98  { animation: acm-grow-98  1.8s ease-out 0.6s forwards; }
.acm-p95  { animation: acm-grow-95  1.8s ease-out 0.9s forwards; }
@keyframes acm-grow-100 { to { width: 100%; } }
@keyframes acm-grow-98  { to { width: 98%;  } }
@keyframes acm-grow-95  { to { width: 95%;  } }
.acm-label {
  font-size: 9px;
  color: var(--text-muted);
}

.device-glow-ring {
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: var(--gradient-main);
  opacity: 0.15;
  filter: blur(8px);
  z-index: -1;
  animation: ring-pulse 4s ease-in-out infinite;
}

@keyframes ring-pulse {
  0%, 100% { opacity: 0.12; filter: blur(8px); }
  50% { opacity: 0.25; filter: blur(14px); }
}

.device-shadow {
  position: absolute;
  bottom: -40px; left: 10%; right: 10%;
  height: 40px;
  background: radial-gradient(ellipse, rgba(0,212,255,0.2), transparent 70%);
  filter: blur(20px);
}

/* Floating Badges around device */
.device-floating-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(10, 10, 30, 0.85);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  white-space: nowrap;
  z-index: 10;
}

.device-floating-badge i {
  color: var(--blue);
  font-size: 14px;
}

.fb-1 { top: 15%; right: -30px; animation: fb-float 5s ease-in-out infinite; }
.fb-2 { bottom: 25%; right: -20px; animation: fb-float 6s ease-in-out infinite 1s; }
.fb-3 { top: 10%; left: -20px; animation: fb-float 7s ease-in-out infinite 2s; }

@keyframes fb-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  z-index: 5;
}

.scroll-mouse {
  width: 22px; height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-wheel {
  width: 3px; height: 8px;
  background: var(--blue);
  border-radius: 3px;
  animation: scroll-wheel 2s ease-in-out infinite;
}

@keyframes scroll-wheel {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(12px); opacity: 0; }
}

.scroll-hint span {
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* =========================================
   ABOUT SECTION
========================================= */
#about {
  position: relative;
  padding: var(--section-pad) 0;
  background: var(--bg-secondary);
  overflow: hidden;
}

.wave-top, .wave-bottom {
  position: absolute;
  width: 100%;
  left: 0; right: 0;
  line-height: 0;
  z-index: 2;
}

.wave-top { top: -1px; }
.wave-bottom { bottom: -1px; }
.wave-top svg, .wave-bottom svg { width: 100%; }

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

/* About content */
#about-content { opacity: 0; transform: translateX(60px); }
#about-visual { opacity: 0; transform: translateX(-60px); }

.about-text {
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

.af-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  opacity: 0;
  transform: translateY(20px);
}

.af-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid rgba(0, 212, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 18px;
  flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.af-item:hover .af-icon {
  background: rgba(0, 212, 255, 0.2);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.af-text h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text-primary);
}

.af-text p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* About Graphic */
.av-graphic {
  position: relative;
  width: 380px;
  height: 380px;
  margin: 0 auto;
}

.av-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}

.av-ring-1 {
  width: 100%; height: 100%;
  border-color: rgba(0, 212, 255, 0.12);
  animation: ring-spin 25s linear infinite;
}

.av-ring-2 {
  width: 75%; height: 75%;
  border-color: rgba(123, 47, 247, 0.2);
  animation: ring-spin 18s linear infinite reverse;
}

.av-ring-3 {
  width: 50%; height: 50%;
  border-color: rgba(0, 212, 255, 0.25);
  animation: ring-spin 12s linear infinite;
}

@keyframes ring-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.av-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px; height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(0,212,255,0.15), rgba(123,47,247,0.2));
  border: 1px solid rgba(0, 212, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(0, 212, 255, 0.2), inset 0 0 30px rgba(0,212,255,0.05);
}

.av-center-icon {
  font-size: 36px;
  background: var(--gradient-main);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.av-orbit-dot {
  position: absolute;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 12px var(--blue);
  top: 50%; left: 50%;
}

.dot-1 {
  animation: orbit-1 25s linear infinite;
}

.dot-2 {
  background: var(--purple);
  box-shadow: 0 0 12px var(--purple);
  animation: orbit-2 18s linear infinite reverse;
}

.dot-3 {
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon);
  animation: orbit-3 12s linear infinite;
}

@keyframes orbit-1 {
  from { transform: rotate(0deg) translateX(190px) rotate(0deg) translate(-50%, -50%); }
  to { transform: rotate(360deg) translateX(190px) rotate(-360deg) translate(-50%, -50%); }
}

@keyframes orbit-2 {
  from { transform: rotate(0deg) translateX(143px) rotate(0deg) translate(-50%, -50%); }
  to { transform: rotate(360deg) translateX(143px) rotate(-360deg) translate(-50%, -50%); }
}

@keyframes orbit-3 {
  from { transform: rotate(60deg) translateX(95px) rotate(-60deg) translate(-50%, -50%); }
  to { transform: rotate(420deg) translateX(95px) rotate(-420deg) translate(-50%, -50%); }
}

.av-badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  background: rgba(10, 10, 30, 0.9);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  white-space: nowrap;
}

.av-badge i { color: var(--blue); }

.av-b1 { top: 5%; right: 0; animation: fb-float 5s ease-in-out infinite; }
.av-b2 { bottom: 5%; right: 5%; animation: fb-float 6s ease-in-out infinite 1s; }
.av-b3 { top: 40%; left: -10px; animation: fb-float 7s ease-in-out infinite 2s; }

/* =========================================
   SERVICES SECTION
========================================= */
#services {
  padding: var(--section-pad) 0;
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: clamp(28px, 3vw, 40px);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.4s ease, background 0.4s ease;
  transform-style: preserve-3d;
  opacity: 0;
  transform: translateY(40px);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.service-card:hover { border-color: rgba(0, 212, 255, 0.25); background: var(--bg-card-hover); }
.service-card:hover::before { opacity: 1; }

/* Gradient border on hover using mask */
.service-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: calc(var(--radius) + 1px);
  background: var(--gradient-main);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s;
  pointer-events: none;
}

.service-card:hover::after { opacity: 1; }

/* Glow that follows mouse */
.sc-glow {
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.12), transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}

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

.sc-number {
  position: absolute;
  top: 20px;
  left: 24px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--text-muted);
  opacity: 0.5;
}

.sc-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.12), rgba(123, 47, 247, 0.1));
  border: 1px solid rgba(0, 212, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--blue);
  margin-bottom: 22px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover .sc-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.25);
}

.service-card h3 {
  font-size: 21px;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.service-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

.sc-arrow {
  position: absolute;
  bottom: 24px;
  left: 24px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 13px;
  transition: background 0.3s, transform 0.3s;
}

.service-card:hover .sc-arrow {
  background: rgba(0, 212, 255, 0.15);
  transform: translateX(-4px);
}

/* =========================================
   PORTFOLIO SECTION
========================================= */
#portfolio {
  padding: var(--section-pad) 0;
  position: relative;
  background: var(--bg-secondary);
  overflow: hidden;
}

.portfolio-bg-glow {
  position: absolute;
  width: 800px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(123, 47, 247, 0.08), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

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

.pcard {
  display: block;
  text-decoration: none;
  color: inherit;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s var(--ease-smooth), border-color 0.3s, box-shadow 0.4s;
  cursor: pointer;
  opacity: 0;
  transform: translateY(50px);
}

.pcard:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 212, 255, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(0,212,255,0.08);
}

/* Portfolio preview area */
.pcard-preview {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid var(--border-glass);
}

.pcard-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
  transition: transform 0.5s ease;
}

.pcard:hover .pcard-img {
  transform: scale(1.04);
}

.pp-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: rgba(15, 15, 35, 0.95);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 2;
}

.pp-dots { display: flex; gap: 5px; }
.pp-dots span {
  width: 9px; height: 9px; border-radius: 50%;
}
.pp-dots span:nth-child(1) { background: #ff5f57; }
.pp-dots span:nth-child(2) { background: #febc2e; }
.pp-dots span:nth-child(3) { background: #28c840; }

.pp-url {
  flex: 1;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 3px 10px;
  text-align: center;
}

.dark-bar { background: #0a0a1e; }
.pp-body { height: calc(100% - 32px); overflow: hidden; }

/* ── FITNESS PREVIEW ── */
.fitness-preview { background: #0d0d1a; }
.fit-hero {
  position: relative;
  height: 120px;
  overflow: hidden;
}
.fit-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a0a00, #2d1000);
}
.fit-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,80,0,0.3), rgba(200,0,50,0.2));
}
.fit-text {
  position: relative;
  z-index: 1;
  padding: 14px 14px 0;
  color: white;
}
.fit-label {
  font-size: 7px;
  letter-spacing: 3px;
  color: rgba(255,120,0,0.8);
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 600;
}
.fit-name { font-size: 16px; font-weight: 900; letter-spacing: -0.5px; }
.fit-sub { font-size: 9px; color: rgba(255,255,255,0.6); margin-bottom: 8px; }
.fit-btn {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, #ff6b00, #c80032);
  border-radius: 30px;
  font-size: 8px;
  font-weight: 700;
  color: white;
}
.fit-cards {
  display: flex;
  gap: 6px;
  padding: 8px 12px;
}
.fc-item {
  flex: 1;
  height: 28px;
  background: rgba(255,80,0,0.12);
  border: 1px solid rgba(255,80,0,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fc-item span { font-size: 8px; color: rgba(255,120,0,0.8); font-weight: 600; }

/* ── HANDYMAN PREVIEW ── */
.handyman-preview { background: #0a0e1a; }
.hm-hero {
  position: relative;
  height: 120px;
}
.hm-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0a1628, #0e2040);
}
.hm-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,80,200,0.25), rgba(0,50,150,0.15));
}
.hm-text {
  position: relative;
  z-index: 1;
  padding: 12px;
  text-align: center;
  color: white;
}
.hm-icon-wrap {
  font-size: 18px;
  color: rgba(100,180,255,0.9);
  margin-bottom: 5px;
}
.hm-name { font-size: 14px; font-weight: 900; letter-spacing: -0.5px; }
.hm-sub { font-size: 8px; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.hm-btn {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, #0066ff, #0040cc);
  border-radius: 30px;
  font-size: 8px;
  font-weight: 700;
  color: white;
}
.hm-icons-row {
  display: flex;
  justify-content: space-around;
  padding: 8px 10px;
}
.hm-ic {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.hm-ic i { font-size: 11px; color: rgba(100,160,255,0.8); }
.hm-ic span { font-size: 7px; color: rgba(255,255,255,0.4); }

/* ── BEAUTY PREVIEW ── */
.beauty-preview { background: #1a0f14; }
.bt-hero {
  position: relative;
  height: 120px;
}
.bt-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2d0a1f, #1a0514);
}
.bt-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(220,80,140,0.3), rgba(255,180,200,0.1));
}
.bt-text {
  position: relative;
  z-index: 1;
  padding: 12px;
  text-align: center;
  color: white;
}
.bt-top { font-size: 7px; color: rgba(255,180,200,0.7); letter-spacing: 1px; margin-bottom: 4px; }
.bt-name { font-size: 15px; font-weight: 900; color: #fff; letter-spacing: 0px; }
.bt-sub { font-size: 8px; color: rgba(255,200,220,0.6); margin-bottom: 6px; }
.bt-btn {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, #e060a0, #c03070);
  border-radius: 30px;
  font-size: 8px;
  font-weight: 700;
  color: white;
}
.bt-services {
  display: flex;
  gap: 6px;
  padding: 8px 12px;
}
.bt-svc {
  flex: 1;
  height: 24px;
  background: rgba(220,80,140,0.12);
  border: 1px solid rgba(220,80,140,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: rgba(255,160,200,0.8);
  font-weight: 600;
}

/* ── STARTUP PREVIEW ── */
.startup-preview { background: #07091a; }
.st-hero {
  position: relative;
  height: 120px;
}
.st-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #070718, #100730);
}
.st-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(80,0,255,0.2), rgba(0,180,255,0.15));
}
.st-text {
  position: relative;
  z-index: 1;
  padding: 10px 12px;
  color: white;
}
.st-badge {
  display: inline-block;
  padding: 2px 8px;
  background: rgba(100,0,255,0.25);
  border: 1px solid rgba(100,0,255,0.4);
  border-radius: 20px;
  font-size: 7px;
  font-weight: 700;
  color: rgba(150,100,255,0.9);
  letter-spacing: 1px;
  margin-bottom: 5px;
}
.st-name { font-size: 17px; font-weight: 900; letter-spacing: -0.5px; margin-bottom: 2px; }
.st-sub { font-size: 8px; color: rgba(200,180,255,0.6); margin-bottom: 7px; }
.st-btn {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, #6600ff, #00aaff);
  border-radius: 30px;
  font-size: 8px;
  font-weight: 700;
  color: white;
}
.st-features {
  display: flex;
  gap: 6px;
  padding: 8px 12px;
}
.st-feat {
  flex: 1;
  height: 24px;
  background: rgba(100,0,255,0.1);
  border: 1px solid rgba(100,0,255,0.2);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  color: rgba(180,140,255,0.8);
  font-weight: 600;
}

/* ── RESTAURANT PREVIEW ── */
.restaurant-preview { background: #1a0c05; }
.rs-hero {
  position: relative;
  height: 120px;
}
.rs-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2d1500, #1a0800);
}
.rs-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,100,0,0.3), rgba(180,60,0,0.2));
}
.rs-text {
  position: relative;
  z-index: 1;
  padding: 10px 12px;
  text-align: center;
  color: white;
}
.rs-pre { font-size: 7px; color: rgba(255,180,80,0.7); letter-spacing: 1px; margin-bottom: 4px; }
.rs-name { font-size: 16px; font-weight: 900; letter-spacing: -0.3px; }
.rs-sub { font-size: 8px; color: rgba(255,200,120,0.6); margin-bottom: 6px; }
.rs-btn {
  display: inline-block;
  padding: 4px 12px;
  background: linear-gradient(135deg, #c87000, #8b4000);
  border-radius: 30px;
  font-size: 8px;
  font-weight: 700;
  color: white;
}
.rs-menu {
  display: flex;
  gap: 6px;
  padding: 8px 12px;
}
.rs-mi {
  flex: 1;
  height: 28px;
  background: rgba(200,100,0,0.1);
  border: 1px solid rgba(200,100,0,0.2);
  border-radius: 6px;
}

/* Portfolio card info */
.pcard-info {
  padding: 22px 24px;
}

.pcard-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: var(--radius-full);
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 10px;
}

.pcard-info h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.pcard-info p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 14px;
}

.pcard-stats {
  display: flex;
  gap: 16px;
}

.pcard-stats span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.pcard-stats i { color: var(--blue); }

/* =========================================
   WHY CHOOSE US
========================================= */
#why-us {
  padding: var(--section-pad) 0;
  position: relative;
  overflow: hidden;
}

.why-decoration {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 212, 255, 0.05), transparent 70%);
  top: 50%; left: -200px;
  transform: translateY(-50%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.why-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateY(30px);
}

.why-card:hover {
  border-color: rgba(0, 212, 255, 0.2);
  background: var(--bg-card-hover);
  transform: translateY(-6px);
}

.wc-num {
  font-size: 64px;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  position: absolute;
  top: 10px; left: 20px;
  letter-spacing: -3px;
  pointer-events: none;
}

.wc-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(123, 47, 247, 0.08));
  border: 1px solid rgba(0, 212, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--blue);
  margin-bottom: 20px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.why-card:hover .wc-icon {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 0 22px rgba(0, 212, 255, 0.22);
}

.why-card h3 {
  font-size: 19px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.why-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* CTA Banner */
.why-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(28px, 4vw, 48px) clamp(28px, 4vw, 60px);
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.06), rgba(123, 47, 247, 0.08));
  border: 1px solid rgba(0, 212, 255, 0.12);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.97);
}

.why-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.5), transparent);
}

.why-cta-content h3 {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 900;
  margin-bottom: 8px;
}

.why-cta-content p {
  font-size: clamp(14px, 1.5vw, 16px);
  color: var(--text-secondary);
}

/* =========================================
   CONTACT SECTION
========================================= */
#contact {
  padding: var(--section-pad) 0;
  background: var(--bg-secondary);
  position: relative;
  overflow: hidden;
}

.contact-bg-glow {
  position: absolute;
  width: 700px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(123, 47, 247, 0.08), transparent 70%);
  top: 50%; right: -200px;
  transform: translateY(-50%);
  pointer-events: none;
}

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

#contact-info { opacity: 0; transform: translateX(50px); }
.contact-form { opacity: 0; transform: translateX(-50px); }

.ci-item {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
}

.ci-icon {
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(0, 212, 255, 0.08);
  border: 1px solid rgba(0, 212, 255, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--blue);
  flex-shrink: 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.ci-icon.wa-icon { color: #25d366; border-color: rgba(37,211,102,0.25); background: rgba(37,211,102,0.08); }
.ci-item:hover .ci-icon { background: rgba(0, 212, 255, 0.15); box-shadow: 0 0 20px rgba(0, 212, 255, 0.15); }

a.ci-item-link {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.25s, transform 0.25s;
  padding: 10px 12px;
  margin: -10px -12px 18px;
}
a.ci-item-link:hover {
  background: rgba(0, 212, 255, 0.06);
  transform: translateX(-4px);
}
a.ci-item-link:hover .ci-icon {
  background: rgba(0, 212, 255, 0.15);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
}

.ci-detail h4 { font-size: 13px; font-weight: 500; color: var(--text-muted); margin-bottom: 4px; }
.ci-detail a, .ci-detail span {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  transition: color 0.3s;
}
.ci-detail a:hover { color: var(--blue); }

.contact-social {
  display: flex;
  gap: 12px;
  margin-top: 36px;
}

.cs-link {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: var(--text-secondary);
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}

.cs-link:hover {
  background: rgba(0, 212, 255, 0.1);
  color: var(--blue);
  border-color: rgba(0, 212, 255, 0.25);
  transform: translateY(-3px);
}

/* Form */
.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 48px);
  position: relative;
}

.contact-form::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
}

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

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.input-wrap {
  position: relative;
}

.input-icon {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 15px;
  pointer-events: none;
  transition: color 0.3s;
  z-index: 1;
}

.input-wrap textarea ~ .input-icon { top: 18px; transform: none; }

.input-wrap input,
.input-wrap textarea,
.input-wrap select {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-sm);
  padding: 14px 16px 14px 44px;
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  -webkit-appearance: none;
  appearance: none;
}

.input-wrap textarea {
  resize: vertical;
  min-height: 110px;
  padding-top: 16px;
}

.input-wrap select {
  cursor: pointer;
}

.input-wrap input:focus,
.input-wrap textarea:focus,
.input-wrap select:focus {
  border-color: rgba(0, 212, 255, 0.4);
  background: rgba(0, 212, 255, 0.03);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.06);
}

.input-wrap input:focus ~ .input-icon { color: var(--blue); }

.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
  color: var(--text-muted);
}

.input-glow {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-sm);
  pointer-events: none;
  opacity: 0;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.15);
  transition: opacity 0.3s;
}

.select-wrap::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%; left: 16px;
  transform: translateY(-50%);
  color: var(--text-muted);
  font-size: 11px;
  pointer-events: none;
}

/* Submit Button */
.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 18px;
  font-size: 17px;
  position: relative;
}

.btn-loader {
  width: 22px; height: 22px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: none;
}

@keyframes spin { to { transform: rotate(360deg); } }

.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  padding: 16px;
  background: rgba(0, 200, 100, 0.08);
  border: 1px solid rgba(0, 200, 100, 0.2);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: #00c864;
}

.form-success i { font-size: 22px; }

/* =========================================
   FOOTER
========================================= */
#footer {
  position: relative;
  background: var(--bg-primary);
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  width: 600px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(123, 47, 247, 0.06), transparent 70%);
  top: 0; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.footer-top-wave {
  line-height: 0;
  overflow: hidden;
}
.footer-top-wave svg { width: 100%; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: clamp(30px, 4vw, 60px);
  padding: 60px 0 50px;
}

.footer-logo {
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.fs-link {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-secondary);
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}

.fs-link:hover {
  background: rgba(0, 212, 255, 0.1);
  color: var(--blue);
  border-color: rgba(0, 212, 255, 0.25);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  font-size: 14px;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-col ul li a:hover { color: var(--blue); }

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

.footer-contact a,
.footer-contact span {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}

.footer-contact a:hover { color: var(--blue); }
.footer-contact i { color: var(--blue); width: 16px; }

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

.footer-bottom p {
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-bottom-links a:hover { color: var(--blue); }

/* =========================================
   FLOATING ACTION BUTTONS
========================================= */
.fab-container {
  position: fixed;
  bottom: 32px;
  left: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s, transform 0.4s;
}

.fab-container.visible {
  opacity: 1;
  transform: translateY(0);
}

.fab-btn {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
  text-decoration: none;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.fab-btn:hover { transform: scale(1.1); }

.fab-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.fab-wa:hover { box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5); }

.fab-call {
  background: var(--gradient-main);
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.35);
}

.fab-call:hover { box-shadow: 0 8px 30px rgba(0, 212, 255, 0.5); }

.fab-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(0, 212, 255, 0.4);
  animation: fab-pulse-anim 2s ease-out infinite;
}

@keyframes fab-pulse-anim {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.5); opacity: 0; }
}

.fab-tooltip {
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10, 10, 30, 0.92);
  border: 1px solid var(--border-glass);
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  backdrop-filter: blur(10px);
  transition: opacity 0.2s;
}

.fab-btn:hover .fab-tooltip { opacity: 1; }

/* =========================================
   WAVE DIVIDERS
========================================= */
.wave-top svg path,
.wave-bottom svg path { opacity: 0.8; }

/* =========================================
   RESPONSIVE — TABLET (≤1024px)
========================================= */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: block; }

  .hero-inner { flex-direction: column; text-align: center; }
  .hero-visual { width: 100%; max-width: 420px; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; }
  .stat:first-child { padding-right: 28px; }

  .fb-1, .fb-2, .fb-3 { display: none; }

  .about-grid { grid-template-columns: 1fr; }
  .av-graphic { width: 280px; height: 280px; }
  #about-content { order: 1; text-align: center; }
  #about-visual { order: 2; }

  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }

  .about-features { grid-template-columns: 1fr; }
  .af-item { justify-content: flex-start; }
}

/* =========================================
   RESPONSIVE — MOBILE (≤640px)
========================================= */
@media (max-width: 640px) {
  :root { --nav-height: 70px; }

  .hero-title { letter-spacing: -2px; }
  .hero-stats { flex-wrap: wrap; justify-content: center; gap: 20px; }
  .stat-sep { display: none; }
  .stat { padding: 0 16px; }

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

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

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .why-cta { flex-direction: column; gap: 24px; text-align: center; }

  .fab-container { bottom: 20px; left: 20px; }

  .section-label { font-size: 10px; letter-spacing: 2px; }
}

/* =========================================
   UTILITY
========================================= */
::selection {
  background: rgba(0, 212, 255, 0.3);
  color: white;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--blue), var(--purple));
  border-radius: 3px;
}

/* Prevent animation on mobile for performance */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}
