/* ============================
   LIGHTPULSE DIGITAL — style.css
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

:root {
  --cyan: #00f0ff;
  --cyan-dark: #00c4d4;
  --purple: #6c63ff;
  --navy: #0a0f2c;
  --navy-mid: #0d1535;
  --navy-light: #111a40;
  --white: #ffffff;
  --gray-100: #f0f4ff;
  --gray-200: #e2e8f8;
  --gray-400: #8892b0;
  --gray-600: #4a5568;
  --text-dark: #0d1535;
  --text-body: #3a4263;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 4px 24px rgba(0, 240, 255, 0.08);
  --shadow-lg: 0 8px 48px rgba(0, 0, 80, 0.15);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Roboto', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: clip;
}

/* ---- OVERFLOW CONTROL ---- */
section, footer, nav { max-width: 100vw; }
section { overflow: hidden; }
*, *::before, *::after { max-width: 100%; }
img, svg { max-width: 100%; }

/* ---- TYPOGRAPHY ---- */
h1, h2, h3, h4, h5 { font-family: 'Roboto', sans-serif; font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-body); font-size: 1rem; }

.gradient-text {
  background: linear-gradient(135deg, var(--cyan) 0%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 15, 44, 0.92);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 240, 255, 0.12);
  transition: var(--transition);
  width: 100%; box-sizing: border-box; overflow: visible;
}
.navbar.scrolled { background: rgba(10, 15, 44, 0.98); box-shadow: 0 4px 32px rgba(0,0,0,0.3); }

.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 20px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; width: 100%; box-sizing: border-box;
}
.navbar { box-sizing: border-box; }

.nav-logo {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
}
.logo-text {
  font-family: 'Roboto', sans-serif; font-size: 1.15rem; font-weight: 700;
  color: var(--white);
}
.logo-text em { color: var(--cyan); font-style: normal; }

.nav-links {
  display: flex; align-items: center; gap: 8px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(0, 240, 255, 0.08); }
.nav-links a.active { color: var(--cyan); }

.btn-nav {
  background: var(--cyan) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  padding: 10px 20px !important;
  border-radius: 8px !important;
}
.btn-nav:hover { background: var(--white) !important; transform: translateY(-1px); }

.hamburger {
  display: none; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  cursor: pointer; background: rgba(0, 240, 255, 0.1); border: 1.5px solid rgba(0, 240, 255, 0.35);
  border-radius: 8px; padding: 10px 12px; min-width: 44px; min-height: 44px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: #00f0ff; border-radius: 2px; transition: var(--transition); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--cyan); color: var(--navy);
  font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 10px;
  text-decoration: none; border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 240, 255, 0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0, 240, 255, 0.5); background: #00ffff; }
.btn-primary.sm { padding: 10px 20px; font-size: 0.85rem; }
.btn-primary.lg { padding: 18px 40px; font-size: 1.1rem; }
.btn-primary.full-w { width: 100%; justify-content: center; }

.btn-ghost {
  display: inline-flex; align-items: center;
  color: var(--white); border: 1.5px solid rgba(255,255,255,0.3);
  font-family: 'Roboto', sans-serif; font-weight: 600; font-size: 0.95rem;
  padding: 14px 28px; border-radius: 10px;
  text-decoration: none;
  transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); }

/* ---- BADGE / LABELS ---- */
.badge {
  display: inline-flex; align-items: center;
  background: rgba(0, 240, 255, 0.12);
  color: var(--cyan); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em;
  padding: 6px 14px; border-radius: 50px; border: 1px solid rgba(0,240,255,0.25);
  text-transform: uppercase; margin-bottom: 20px;
}

.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cyan); margin-bottom: 12px;
}
.section-label.light { color: var(--cyan); }
.section-label.center { text-align: center; }

/* ---- ORB BACKGROUNDS ---- */
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); pointer-events: none;
}
.orb-1 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(0,240,255,0.18) 0%, transparent 70%); top: -100px; left: -80px; }
.orb-2 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(108,99,255,0.2) 0%, transparent 70%); top: 20%; right: 0; }
.orb-3 { width: 350px; height: 350px; background: radial-gradient(circle, rgba(0,240,255,0.1) 0%, transparent 70%); bottom: 10%; left: 30%; }
.orb-4 { width: 400px; height: 400px; background: radial-gradient(circle, rgba(108,99,255,0.15) 0%, transparent 70%); top: -100px; right: 0; }
.orb-5 { width: 300px; height: 300px; background: radial-gradient(circle, rgba(0,240,255,0.12) 0%, transparent 70%); bottom: 0; left: 20%; }
.orb-6 { width: 500px; height: 500px; background: radial-gradient(circle, rgba(0,240,255,0.12) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%, -50%); }

/* ---- GRID OVERLAY ---- */
.grid-overlay {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,240,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,240,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
  position: relative; min-height: 100vh;
  background: var(--navy);
  display: flex; align-items: center;
  padding-top: 72px; overflow: hidden;
  width: 100%;
}
.hero-bg { position: absolute; inset: 0; }

.hero-content {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
  width: 100%; box-sizing: border-box;
}

.hero-text .badge { margin-bottom: 20px; }
.hero-text h1 { color: var(--white); margin-bottom: 20px; }
.hero-text p { color: rgba(255,255,255,0.7); max-width: 480px; font-size: 1.05rem; margin-bottom: 36px; }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats { display: flex; align-items: center; gap: 32px; }
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: 'Roboto', sans-serif; font-size: 2rem; font-weight: 800; color: var(--cyan); }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.55); max-width: 140px; line-height: 1.4; }
.stat-div { width: 1px; height: 48px; background: rgba(0,240,255,0.25); }

/* Phone mockup */
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; height: 520px; }

.phone-mockup { position: relative; z-index: 2; }

.phone-frame {
  width: 260px; height: 480px;
  background: linear-gradient(145deg, #1a2040, #0d1535);
  border-radius: 36px;
  border: 2px solid rgba(0,240,255,0.3);
  box-shadow: 0 0 60px rgba(0,240,255,0.15), 0 30px 80px rgba(0,0,0,0.5);
  overflow: hidden; padding: 12px;
}

.phone-screen { height: 100%; background: #0f1729; border-radius: 26px; overflow: hidden; display: flex; flex-direction: column; }

.chat-header { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: #128C7E; }
.chat-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.chat-name { font-size: 0.85rem; font-weight: 600; color: white; }
.chat-status { font-size: 0.7rem; color: rgba(255,255,255,0.7); }

.chat-msgs { flex: 1; padding: 14px 12px; display: flex; flex-direction: column; gap: 8px; overflow: hidden; }

.msg {
  max-width: 80%; padding: 8px 12px; border-radius: 12px;
  font-size: 0.75rem; line-height: 1.4; color: white;
  animation: fadeInUp 0.4s ease forwards;
}
.msg-in { background: #262d40; border-bottom-left-radius: 4px; align-self: flex-start; }
.msg-out { background: #128C7E; border-bottom-right-radius: 4px; align-self: flex-end; }

.msg.typing { background: #262d40; display: flex; gap: 4px; align-items: center; padding: 12px 14px; }
.msg.typing span { width: 6px; height: 6px; background: rgba(255,255,255,0.5); border-radius: 50%; animation: bounce 1.2s infinite; }
.msg.typing span:nth-child(2) { animation-delay: 0.2s; }
.msg.typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes bounce { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-5px); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.phone-glow {
  position: absolute; inset: -20px; z-index: -1;
  background: radial-gradient(ellipse at center, rgba(0,240,255,0.2) 0%, transparent 70%);
}

/* Float cards */
.float-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0,240,255,0.2);
  border-radius: 12px; padding: 12px 16px;
  display: flex; align-items: center; gap: 10px;
  color: white; font-size: 0.8rem; font-weight: 600;
  font-family: 'Roboto', sans-serif;
  animation: float 4s ease-in-out infinite;
}
.fc-icon { font-size: 1.2rem; }
.fc-1 { top: 30px; right: 0px; animation-delay: 0s; }
.fc-2 { bottom: 100px; left: -30px; animation-delay: 1.5s; }
.fc-3 { bottom: 30px; right: 0px; animation-delay: 0.8s; }

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

/* ============================
   SERVICES INTRO
   ============================ */
.services-intro { padding: 100px 0; background: var(--gray-100); }
.services-intro .container { text-align: center; }
.services-intro h2 { margin-bottom: 60px; }

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

.service-card {
  background: white; border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1.5px solid rgba(0,0,80,0.08);
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
  opacity: 0; transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(0,240,255,0.3); }
.service-card:hover::before { opacity: 1; }
.service-card.featured { border-color: rgba(0,240,255,0.3); background: linear-gradient(135deg, #f8fdff 0%, #f0f8ff 100%); }
.service-card.featured::before { opacity: 1; }

.service-icon { width: 56px; height: 56px; margin-bottom: 20px; }
.service-icon svg { width: 100%; height: 100%; }

.service-card h3 { margin-bottom: 12px; color: var(--text-dark); }
.service-card p { font-size: 0.9rem; margin-bottom: 24px; }

.card-link {
  color: var(--cyan); font-weight: 700; font-size: 0.88rem;
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.card-link:hover { gap: 10px; }

/* ============================
   DARK BANNER
   ============================ */
.dark-section { background: var(--navy); }
.dark-banner {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #0d1a40 100%);
  padding: 80px 0;
}
.dark-banner-bg { position: absolute; inset: 0; }
.dark-banner-top { text-align: center; margin-bottom: 60px; }
.dark-banner-top h2.light { color: var(--white); }
.dark-banner-top h2.light em { color: var(--cyan); font-style: normal; }

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

.dark-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(0,240,255,0.12);
  border-radius: var(--radius); padding: 32px 24px;
  transition: var(--transition);
}
.dark-card:hover { background: rgba(0,240,255,0.06); border-color: rgba(0,240,255,0.3); transform: translateY(-4px); }
.dark-card-icon { width: 48px; height: 48px; margin-bottom: 16px; }
.dark-card-icon svg { width: 100%; height: 100%; }
.dark-card h4 { color: var(--white); margin-bottom: 10px; font-size: 1.05rem; }
.dark-card p { color: rgba(255,255,255,0.55); font-size: 0.88rem; }

/* ============================
   STATS
   ============================ */
.stats-section { padding: 80px 0; background: white; }
.stats-top { text-align: center; margin-bottom: 40px; }
.stats-row { display: flex; align-items: center; justify-content: center; gap: 80px; }
.big-stat { text-align: center; display: flex; flex-direction: column; align-items: center; }
.big-num { font-family: 'Roboto', sans-serif; font-size: clamp(3rem, 6vw, 5rem); font-weight: 800; background: linear-gradient(135deg, var(--cyan), var(--purple)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.big-label { font-size: 1rem; color: var(--gray-400); margin-top: 4px; text-align: center; }
.stats-divider { width: 1px; height: 80px; background: linear-gradient(to bottom, transparent, rgba(0,240,255,0.4), transparent); }

/* ============================
   AUTOMATE SECTION
   ============================ */
.services-automate { padding: 100px 0; background: var(--gray-100); }
.services-automate .container { text-align: center; }
.services-automate h2 { margin-bottom: 60px; }

/* ============================
   CLIENTS
   ============================ */
.clients-section { padding: 60px 0; background: white; border-top: 1px solid var(--gray-200); }
.clients-row { display: flex; justify-content: center; align-items: center; gap: 40px; flex-wrap: wrap; margin-top: 24px; }
.client-logo { opacity: 0.6; transition: var(--transition); filter: grayscale(0.3); }
.client-logo:hover { opacity: 1; }

/* ============================
   FOOTER
   ============================ */
.footer {
  background: var(--navy); position: relative; padding: 80px 0 40px;
  border-top: 1px solid rgba(0,240,255,0.12);
}
.footer-glow { position: absolute; top: 0; left: 0; right: 0; width: 100%; height: 2px; background: linear-gradient(90deg, transparent, var(--cyan), transparent); }

.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; margin-bottom: 60px; }

.footer-brand p { color: rgba(255,255,255,0.45); font-size: 0.88rem; margin-top: 16px; max-width: 240px; line-height: 1.7; }

.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-link { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.6); display: flex; align-items: center; justify-content: center; text-decoration: none; transition: var(--transition); }
.social-link svg { width: 16px; height: 16px; }
.social-link:hover { background: var(--cyan); color: var(--navy); }

.footer-col h5 { color: var(--white); font-size: 0.9rem; font-family: 'Roboto', sans-serif; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.45); text-decoration: none; font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--cyan); }
.footer-col ul li { color: rgba(255,255,255,0.45); font-size: 0.88rem; }

.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 32px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { color: rgba(255,255,255,0.35); font-size: 0.82rem; }

/* ============================
   PAGE HERO (inner pages)
   ============================ */
.page-hero {
  position: relative; overflow: hidden;
  padding: 140px 0 80px;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-bg { position: absolute; inset: 0; }

.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-subtitle { color: rgba(255,255,255,0.65); font-size: 1.1rem; max-width: 540px; }

.short-hero { padding: 140px 0 80px; text-align: center; }
.short-hero .page-subtitle { margin: 0 auto; }

/* About hero two-col */
.page-hero-content { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.page-hero-text h1 { margin-bottom: 20px; }
.page-hero-text p { color: rgba(255,255,255,0.65); max-width: 480px; }

.about-img-placeholder {
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(0,240,255,0.2);
  background: rgba(0,240,255,0.04);
  height: 320px; display: flex; align-items: center; justify-content: center;
}
.img-inner { display: flex; flex-direction: column; align-items: center; gap: 16px; color: rgba(255,255,255,0.4); font-size: 0.9rem; }

/* ============================
   WHO WE ARE
   ============================ */
.who-section { padding: 100px 0; }
.who-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.who-text h2 { margin-bottom: 20px; }
.who-text p { margin-bottom: 16px; }

.who-features { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.who-feature { display: flex; gap: 16px; align-items: flex-start; }
.feature-check { width: 32px; height: 32px; flex-shrink: 0; margin-top: 2px; }
.feature-check svg { width: 100%; height: 100%; }
.who-feature h4 { margin-bottom: 6px; }
.who-feature p { font-size: 0.88rem; }

.who-visual { display: flex; align-items: center; justify-content: center; }
.gear-visual { width: 100%; max-width: 320px; aspect-ratio: 1; animation: spin-slow 20s linear infinite; }

@keyframes spin-slow { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

/* ============================
   WHY CHOOSE US
   ============================ */
.why-section { padding: 100px 0; position: relative; overflow: hidden; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; z-index: 2; }
.why-left h2.light { color: var(--white); margin-bottom: 40px; }

.why-items { display: flex; flex-direction: column; gap: 28px; }
.why-item { display: flex; gap: 16px; align-items: flex-start; }
.why-icon { width: 40px; height: 40px; flex-shrink: 0; margin-top: 2px; }
.why-icon svg { width: 100%; height: 100%; }
.why-item h4 { color: var(--white); margin-bottom: 8px; }
.why-item p { color: rgba(255,255,255,0.55); font-size: 0.88rem; }

/* Google card visual */
.google-card-visual { display: flex; align-items: center; justify-content: center; height: 100%; }
.google-card {
  background: white; border-radius: 16px; padding: 24px;
  width: 100%; max-width: 320px;
  box-shadow: 0 20px 80px rgba(0,0,0,0.4);
}
.gc-header { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.gc-logo { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, #4285f4, #34a853, #fbbc04, #ea4335); display: flex; align-items: center; justify-content: center; font-size: 1.4rem; font-weight: 900; color: white; font-family: 'Roboto', sans-serif; }
.gc-title { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); }
.gc-stars { color: #ffc107; font-size: 0.85rem; }
.gc-stars span { color: var(--gray-400); font-size: 0.78rem; margin-left: 4px; }
.gc-body { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.gc-stat { font-size: 0.88rem; color: var(--text-body); }
.gc-num { font-weight: 700; color: var(--text-dark); margin-right: 6px; }
.gc-badge { background: linear-gradient(135deg, rgba(0,240,255,0.1), rgba(108,99,255,0.1)); color: var(--navy); font-size: 0.82rem; font-weight: 700; padding: 8px 14px; border-radius: 8px; text-align: center; }

/* ============================
   SERVICE DETAIL (services.html)
   ============================ */
.service-detail { padding: 100px 0; }
.service-detail.alt-bg { background: var(--gray-100); }

.service-detail-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.service-detail-grid.reverse { direction: rtl; }
.service-detail-grid.reverse > * { direction: ltr; }

.service-tag {
  display: inline-flex; align-items: center;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em;
  padding: 6px 14px; border-radius: 50px; text-transform: uppercase;
  margin-bottom: 16px;
}
.service-tag.cyan { background: rgba(0,240,255,0.12); color: #007a88; border: 1px solid rgba(0,240,255,0.3); }
.service-tag.purple { background: rgba(108,99,255,0.12); color: var(--purple); border: 1px solid rgba(108,99,255,0.3); }

.service-detail-text h2 { margin-bottom: 16px; }
.service-detail-text p { margin-bottom: 24px; }

.service-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.service-list li { display: flex; align-items: center; gap: 10px; font-size: 0.92rem; color: var(--text-body); }
.service-list li::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); flex-shrink: 0; }

/* WhatsApp visual */
.wa-screen {
  background: #0f1729; border-radius: 16px; overflow: hidden; max-width: 340px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3); border: 1.5px solid rgba(0,240,255,0.2);
}
.wa-header { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: #128C7E; }
.wa-avatar { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,0.3); }
.wa-name { font-size: 0.9rem; font-weight: 600; color: white; }
.wa-online { font-size: 0.72rem; color: rgba(255,255,255,0.7); }
.wa-msgs { padding: 16px 14px; display: flex; flex-direction: column; gap: 10px; }
.wa-msg { max-width: 80%; padding: 10px 14px; border-radius: 12px; font-size: 0.82rem; line-height: 1.4; color: white; }
.wa-msg.in { background: #262d40; border-bottom-left-radius: 4px; align-self: flex-start; }
.wa-msg.out { background: #128C7E; border-bottom-right-radius: 4px; align-self: flex-end; }
.wa-time { font-size: 0.72rem; color: rgba(255,255,255,0.35); text-align: center; margin-top: 4px; }

/* Booking visual */
.booking-card {
  background: white; border-radius: 16px; padding: 24px; max-width: 340px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12); border: 1.5px solid var(--gray-200);
}
.bk-title { font-family: 'Roboto', sans-serif; font-weight: 700; font-size: 1rem; margin-bottom: 12px; }
.bk-service { font-size: 0.85rem; color: var(--text-body); margin-bottom: 16px; }
.bk-calendar { border: 1px solid var(--gray-200); border-radius: 10px; padding: 14px; margin-bottom: 16px; }
.cal-header { font-weight: 700; font-size: 0.88rem; margin-bottom: 12px; text-align: center; }
.cal-days { display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; text-align: center; font-size: 0.78rem; }
.cal-days span { padding: 5px; border-radius: 6px; color: var(--text-body); }
.cal-days .taken { background: var(--gray-200); color: var(--gray-400); }
.cal-days .selected { background: var(--cyan); color: var(--navy); font-weight: 700; }
.bk-time { display: flex; gap: 8px; margin-bottom: 16px; }
.bk-time span { padding: 8px 12px; border-radius: 8px; border: 1.5px solid var(--gray-200); font-size: 0.8rem; cursor: pointer; transition: var(--transition); }
.bk-time .time-sel { border-color: var(--cyan); background: rgba(0,240,255,0.08); color: #007a88; font-weight: 700; }
.bk-btn { background: var(--navy); color: white; text-align: center; padding: 12px; border-radius: 10px; font-size: 0.88rem; font-weight: 700; }

/* Browser visual */
.browser-frame { background: #1a1a2e; border-radius: 12px; overflow: hidden; max-width: 340px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.browser-bar { display: flex; align-items: center; gap: 10px; padding: 12px 16px; background: #0f0f1a; }
.browser-dots { display: flex; gap: 6px; }
.browser-dots span { width: 10px; height: 10px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #ffbd2e; }
.browser-dots span:nth-child(3) { background: #28c840; }
.browser-url { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.4); font-size: 0.75rem; padding: 4px 10px; border-radius: 6px; flex: 1; }
.browser-content { padding: 20px; }
.bc-hero { font-family: 'Roboto', sans-serif; font-size: 1rem; font-weight: 700; color: white; margin-bottom: 16px; }
.bc-hero small { display: block; color: var(--cyan); font-size: 0.75rem; font-weight: 400; margin-top: 4px; }
.bc-row { display: flex; gap: 8px; margin-bottom: 12px; }
.bc-box { flex: 1; height: 48px; border-radius: 8px; background: rgba(255,255,255,0.06); }
.bc-box.cyan { background: rgba(0,240,255,0.15); border: 1px solid rgba(0,240,255,0.3); }
.bc-line { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.1); margin-bottom: 8px; }
.bc-line.short { width: 60%; }

/* Google visual */
.gv-card { background: white; border-radius: 16px; padding: 24px; max-width: 340px; box-shadow: 0 20px 60px rgba(0,0,0,0.12); }
.gv-logo { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, #4285f4, #34a853, #fbbc04, #ea4335); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 900; color: white; margin-bottom: 12px; }
.gv-name { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.gv-stars { color: #ffc107; font-size: 0.9rem; margin-bottom: 4px; }
.gv-cat { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 16px; }
.gv-stats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.gv-stat { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-body); }
.gv-rank { background: rgba(0,240,255,0.1); color: #007a88; font-size: 0.82rem; font-weight: 700; padding: 10px; border-radius: 8px; text-align: center; }

/* ============================
   CTA SECTION
   ============================ */
.cta-section { padding: 100px 0; position: relative; overflow: hidden; }
.cta-inner { text-align: center; position: relative; z-index: 2; }
.cta-inner h2.light { color: var(--white); margin-bottom: 16px; }
.cta-inner p.light { color: rgba(255,255,255,0.6); margin-bottom: 40px; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ============================
   CASE STUDIES
   ============================ */
.cases-section { padding: 100px 0; }
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }

.case-card { background: white; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1.5px solid var(--gray-200); transition: var(--transition); }
.case-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }

.case-header { padding: 40px 30px; display: flex; align-items: flex-start; justify-content: space-between; }
.case-header.cyan-bg { background: linear-gradient(135deg, #0a0f2c, #0d1a40); }
.case-header.purple-bg { background: linear-gradient(135deg, #1a0a3c, #2d1a60); }
.case-tag { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cyan); background: rgba(0,240,255,0.12); padding: 4px 12px; border-radius: 50px; }

.case-body { padding: 28px 28px 32px; }
.case-body h3 { margin-bottom: 12px; }
.case-body p { font-size: 0.88rem; margin-bottom: 24px; }

.case-results { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; padding: 16px; background: var(--gray-100); border-radius: 10px; }
.result-item { display: flex; align-items: center; gap: 12px; }
.result-num { font-family: 'Roboto', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--cyan); min-width: 70px; }
.result-item span { font-size: 0.82rem; color: var(--text-body); }

.case-body blockquote { border-left: 3px solid var(--cyan); padding-left: 16px; font-style: italic; font-size: 0.85rem; color: var(--gray-400); }

/* ============================
   CONTACT
   ============================ */
.contact-section { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; }
.contact-form-wrap h2 { margin-bottom: 10px; }
.contact-form-wrap > p { margin-bottom: 36px; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); }
.form-group input, .form-group select, .form-group textarea {
  padding: 13px 16px; border-radius: 10px;
  border: 1.5px solid var(--gray-200);
  font-family: 'Roboto', sans-serif; font-size: 0.92rem;
  color: var(--text-dark); background: white;
  transition: var(--transition); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,240,255,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 0.8rem; color: var(--gray-400); text-align: center; }

.contact-info-card {
  background: var(--navy); border-radius: var(--radius-lg); padding: 36px;
  border: 1px solid rgba(0,240,255,0.15);
  height: fit-content; position: sticky; top: 100px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 10px; }
.contact-info-card > p { color: rgba(255,255,255,0.55); font-size: 0.88rem; margin-bottom: 28px; }

.info-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-icon { width: 36px; height: 36px; flex-shrink: 0; }
.info-icon svg { width: 100%; height: 100%; }
.info-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 4px; }
.info-val { font-size: 0.88rem; color: rgba(255,255,255,0.75); }

.whatsapp-cta {
  background: rgba(18, 140, 126, 0.15); border: 1px solid rgba(18,140,126,0.3);
  border-radius: 12px; padding: 20px; display: flex; align-items: center; gap: 14px;
}
.wa-cta-icon { width: 40px; height: 40px; background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; flex-shrink: 0; }
.wa-cta-title { color: white; font-weight: 700; font-size: 0.92rem; }
.wa-cta-sub { color: rgba(255,255,255,0.5); font-size: 0.78rem; }
.wa-cta-btn { margin-left: auto; background: #25d366; color: white; font-size: 0.8rem; font-weight: 700; padding: 8px 14px; border-radius: 8px; text-decoration: none; white-space: nowrap; transition: var(--transition); flex-shrink: 0; }
.wa-cta-btn:hover { background: #20bd5a; }

/* ============================
   PARTICLES
   ============================ */
.particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle { position: absolute; border-radius: 50%; background: rgba(0,240,255,0.5); animation: particle-float linear infinite; }

@keyframes particle-float {
  0% { transform: translateY(100vh) scale(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-10vh) scale(1); opacity: 0; }
}

/* ============================
   SCROLL ANIMATIONS
   ============================ */
.animate-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.animate-in.visible { opacity: 1; transform: translateY(0); }

/* ============================
   MOBILE RESPONSIVE
   ============================ */
@media (max-width: 968px) {
  .hero-content { grid-template-columns: 1fr; gap: 60px; padding: 80px 24px; }
  .hero-visual { height: 400px; }
  .services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .dark-banner-grid { grid-template-columns: 1fr; }
  .stats-row { flex-direction: column; gap: 40px; }
  .stats-divider { width: 80px; height: 1px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .who-grid, .why-grid, .service-detail-grid, .contact-grid, .page-hero-content { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-grid.reverse { direction: ltr; }
  .cases-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background: #0a0f2c;
    padding: 16px 24px 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(0,240,255,0.15);
    box-shadow: 0 12px 40px rgba(0,0,0,0.5);
    box-sizing: border-box;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; font-size: 1rem; border-radius: 8px; width: 100%; display: block; }
  .hamburger { display: flex !important; visibility: visible !important; opacity: 1 !important; }
  .navbar { background: rgba(10, 15, 44, 0.98); overflow: visible; }
  .nav-inner { padding: 0 16px; }
}

@media (max-width: 600px) {
  .hero-stats { flex-direction: column; gap: 20px; align-items: flex-start; }
  .stat-div { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-cta { flex-direction: column; }
  .fc-1, .fc-2, .fc-3 { display: none; }
}
