/* ========== CSS VARIABLES ========== */
:root {
  --bg: #090c14;
  --bg2: #0d1120;
  --surface: #111827;
  --surface2: #1a2236;
  --border: rgba(255,255,255,0.08);
  --accent: #00d4ff;
  --accent2: #7c3aed;
  --accent3: #f59e0b;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --gradient: linear-gradient(135deg, #00d4ff, #7c3aed);
  --gradient2: linear-gradient(135deg, #7c3aed, #f59e0b);
  --font-display: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ========== CONTAINER ========== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== NAV ========== */
.nav-wrap {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(9,12,20,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.5rem; font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--text);
}
.logo-z {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem; list-style: none;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500;
  color: var(--text-muted);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-cta {
  background: var(--gradient) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  border: 1px solid var(--accent) !important;
  padding: 8px 20px !important;
  border-radius: 50px !important;
  color: var(--accent) !important;
}
.nav-cta:hover { opacity: 0.8; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: var(--transition); }

/* ========== BUTTONS ========== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient);
  color: white !important; font-family: var(--font-display);
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.3px;
  padding: 14px 32px; border-radius: 50px;
  border: none; cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 0 30px rgba(0,212,255,0.25);
  -webkit-text-fill-color: white !important;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 50px rgba(0,212,255,0.4); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--text-muted); font-weight: 500; font-size: 0.95rem;
  padding: 14px 24px; border-radius: 50px;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.btn-ghost:hover { color: var(--text); border-color: var(--accent); }

.btn-ghost-white {
  display: inline-flex; align-items: center; gap: 8px;
  color: white; font-weight: 500; font-size: 0.95rem;
  padding: 14px 32px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.4);
  transition: var(--transition);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.1); }
.btn-full { width: 100%; justify-content: center; }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding: 120px 24px 80px;
  max-width: 1200px; margin: 0 auto;
}
.hero-bg {
  position: fixed; inset: 0; z-index: -1; overflow: hidden;
}
.grid-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 60px 60px;
}
.orb {
  position: absolute; border-radius: 50%;
  filter: blur(80px); opacity: 0.15;
}
.orb1 { width: 600px; height: 600px; background: #7c3aed; top: -200px; right: -100px; animation: orbFloat 8s ease-in-out infinite; }
.orb2 { width: 400px; height: 400px; background: #00d4ff; bottom: -100px; left: -100px; animation: orbFloat 10s ease-in-out infinite reverse; }
.orb3 { width: 300px; height: 300px; background: #f59e0b; top: 50%; left: 40%; animation: orbFloat 12s ease-in-out infinite; }

@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-30px) scale(1.05); }
}

.hero-content { flex: 1; max-width: 600px; }
.hero-visual { flex: 1; display: flex; justify-content: center; align-items: center; position: relative; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.3);
  color: var(--accent); font-size: 0.85rem; font-weight: 500;
  padding: 8px 18px; border-radius: 50px; margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -2px;
  animation: fadeUp 0.6s 0.1s ease both;
  margin-bottom: 1.5rem;
}
.gradient-text {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  color: var(--text-muted); font-size: 1.1rem; line-height: 1.8;
  animation: fadeUp 0.6s 0.2s ease both; margin-bottom: 2rem;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  animation: fadeUp 0.6s 0.3s ease both; margin-bottom: 3rem;
}
.hero-stats {
  display: flex; align-items: center; gap: 2rem;
  animation: fadeUp 0.6s 0.4s ease both;
}
.stat { display: flex; flex-direction: column; }
.stat-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--text); }
.stat-label { font-size: 0.8rem; color: var(--text-muted); }
.stat-divider { width: 1px; height: 40px; background: var(--border); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Device Mockup */
.device-mockup {
  width: 320px; height: 220px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.05);
  animation: fadeUp 0.8s 0.3s ease both;
}
.device-screen { padding: 16px; height: 100%; }
.screen-top { display: flex; gap: 6px; margin-bottom: 14px; }
.screen-top span { width: 10px; height: 10px; border-radius: 50%; background: var(--border); }
.screen-top span:nth-child(1) { background: #ff5f57; }
.screen-top span:nth-child(2) { background: #ffbd2e; }
.screen-top span:nth-child(3) { background: #28c840; }
.sc-bar { height: 30px; background: linear-gradient(90deg, var(--accent2), var(--accent)); border-radius: 8px; margin-bottom: 12px; opacity: 0.8; }
.sc-line { height: 8px; background: var(--surface2); border-radius: 4px; margin-bottom: 8px; }
.w80 { width: 80%; }
.w60 { width: 60%; }
.w90 { width: 90%; }
.w50 { width: 50%; }
.sc-cards { display: flex; gap: 8px; margin-bottom: 10px; }
.sc-card { flex: 1; height: 40px; border-radius: 8px; opacity: 0.7; }
.sc-card.blue { background: linear-gradient(135deg, var(--accent), var(--accent2)); }
.sc-card.orange { background: linear-gradient(135deg, var(--accent3), #ef4444); }
.sc-graph { display: flex; align-items: flex-end; gap: 6px; height: 40px; }
.bar { flex: 1; border-radius: 4px 4px 0 0; background: var(--accent); opacity: 0.6; }
.b1 { height: 60%; }
.b2 { height: 80%; }
.b3 { height: 45%; }
.b4 { height: 100%; background: var(--accent); opacity: 0.9; }
.b5 { height: 70%; }

/* Float Cards */
.float-card {
  position: absolute;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 16px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow);
  font-size: 0.82rem;
  white-space: nowrap;
}
.float-card strong { display: block; font-size: 0.85rem; margin-bottom: 2px; }
.float-card small { color: var(--accent); font-weight: 600; }
.fc-icon { font-size: 1.4rem; }
.fc1 { top: 10px; right: -30px; animation: floatAnim 4s ease-in-out infinite; }
.fc2 { bottom: 30px; right: -40px; animation: floatAnim 4s 1.5s ease-in-out infinite; }
.fc3 { bottom: -20px; left: 10px; animation: floatAnim 4s 0.8s ease-in-out infinite; }

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

/* ========== SERVICES OVERVIEW ========== */
.services-overview {
  padding: 100px 0;
  background: var(--bg2);
  position: relative;
}
.section-label {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; line-height: 1.1; letter-spacing: -1px;
  margin-bottom: 1rem;
}
.accent { color: var(--accent); }
.section-sub {
  color: var(--text-muted); font-size: 1.05rem; max-width: 580px;
  margin-bottom: 3.5rem;
}
.services-overview .section-title,
.services-overview .section-sub { text-align: center; margin-left: auto; margin-right: auto; }
.services-overview .section-label { text-align: center; }

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.scard {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: var(--transition);
  opacity: 0;
  transform: translateY(30px);
}
.scard.visible { opacity: 1; transform: translateY(0); }
.scard:hover { border-color: var(--accent); transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,212,255,0.1); }
.scard.featured {
  background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(124,58,237,0.08));
  border-color: rgba(0,212,255,0.3);
}
.scard-badge {
  position: absolute; top: -12px; right: 24px;
  background: var(--gradient); color: white;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1px;
  padding: 4px 14px; border-radius: 50px;
}
.scard-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.scard h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; }
.scard p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; line-height: 1.7; }
.scard-list { list-style: none; margin-bottom: 1.5rem; }
.scard-list li { color: var(--text-muted); font-size: 0.85rem; padding: 4px 0; display: flex; align-items: center; gap: 8px; }
.scard-list li::before { content: '✓'; color: var(--accent); font-weight: 700; font-size: 0.8rem; }
.scard-link { color: var(--accent); font-weight: 600; font-size: 0.88rem; transition: var(--transition); }
.scard-link:hover { opacity: 0.7; }

.services-cta { text-align: center; margin-top: 3rem; }

/* ========== WHY US ========== */
.why-us { padding: 100px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-left .section-sub { max-width: 100%; margin-bottom: 2rem; }

.why-features { display: flex; flex-direction: column; gap: 1.5rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; }
.why-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gradient); flex-shrink: 0; margin-top: 6px; }
.why-item strong { display: block; font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.why-item p { color: var(--text-muted); font-size: 0.9rem; }

.why-visual {
  display: grid; grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto auto auto auto;
  gap: 1rem; position: relative;
}
.why-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem; position: relative;
  transition: var(--transition);
}
.why-block:hover { border-color: var(--accent); }
.wb-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--accent); opacity: 0.3; margin-bottom: 0.5rem; }
.wb-text { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; }
.wb1 { grid-column: 1; }
.wb2 { grid-column: 2; background: linear-gradient(135deg, rgba(0,212,255,0.08), rgba(124,58,237,0.08)); border-color: rgba(0,212,255,0.2); }
.wb3 { grid-column: 1; }
.wb4 { grid-column: 2; background: linear-gradient(135deg, rgba(124,58,237,0.08), rgba(245,158,11,0.08)); border-color: rgba(124,58,237,0.2); }
.process-arrow {
  font-size: 1.5rem; color: var(--accent); opacity: 0.4;
  display: flex; align-items: center; justify-content: center;
  grid-column: 1 / 3;
}
.pa1 { grid-row: 2; }
.pa2 { grid-row: 4; }
.pa3 { grid-row: 6; }
.wb1 { grid-row: 1; }
.wb2 { grid-row: 1; }
.pa1 { grid-row: 2; }
.wb3 { grid-row: 3; }
.wb4 { grid-row: 3; }
.pa2 { grid-row: 4; }

/* ========== TESTIMONIALS ========== */
.testimonials { padding: 100px 0; background: var(--bg2); }
.testimonials .section-label, .testimonials .section-title { text-align: center; margin-left: auto; margin-right: auto; }
.testimonials .section-title { margin-bottom: 3rem; }

.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testi-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: var(--transition);
}
.testi-card:hover { border-color: var(--accent); transform: translateY(-4px); }
.featured-testi {
  background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(124,58,237,0.06));
  border-color: rgba(0,212,255,0.25);
}
.testi-stars { color: var(--accent3); font-size: 1rem; margin-bottom: 1rem; }
.testi-card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.8; margin-bottom: 1.5rem; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gradient); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 800; font-size: 1.1rem; color: white; flex-shrink: 0;
}
.testi-author strong { display: block; font-size: 0.9rem; margin-bottom: 2px; }
.testi-author small { color: var(--text-muted); font-size: 0.78rem; }

/* ========== CTA BANNER ========== */
.cta-banner {
  padding: 80px 24px;
  background: linear-gradient(135deg, #0f1929, #1a0a3d);
  text-align: center; position: relative; overflow: hidden;
}
.cta-orb {
  position: absolute; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0,212,255,0.15), transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-inner h2 { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 800; margin-bottom: 1rem; }
.cta-inner p { color: var(--text-muted); font-size: 1.05rem; margin-bottom: 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ========== CONTACT ========== */
.contact { padding: 100px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-left .section-sub { max-width: 100%; }
.contact-left p { color: var(--text-muted); margin-bottom: 2rem; }

.contact-details { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: center; gap: 1rem; }
.ci-icon { font-size: 1.5rem; width: 50px; height: 50px; background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item small { display: block; color: var(--text-dim); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2px; }
.contact-item strong { font-size: 0.95rem; }
.contact-item a { color: var(--text); transition: var(--transition); }
.contact-item a:hover { color: var(--accent); }

.contact-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem;
}
.form-group { margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: var(--bg);
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  color: var(--text); font-family: var(--font-body); font-size: 0.95rem;
  padding: 12px 16px; transition: var(--transition);
  outline: none; resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,212,255,0.1); }
.form-group select { appearance: none; cursor: pointer; }
.form-group option { background: var(--surface); }

.form-success { background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.3); border-radius: var(--radius-sm); padding: 14px; color: var(--accent); font-weight: 500; margin-top: 1rem; font-size: 0.9rem; }

/* ========== FOOTER ========== */
.footer { background: var(--bg2); border-top: 1px solid var(--border); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo { font-size: 1.4rem; display: inline-block; margin-bottom: 1rem; }
.footer-brand p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.8; max-width: 280px; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-links a { width: 38px; height: 38px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--text-muted); font-size: 0.75rem; font-weight: 700; transition: var(--transition); text-transform: uppercase; }
.social-links a:hover { border-color: var(--accent); color: var(--accent); }
.footer-col h4 { font-family: var(--font-display); font-weight: 700; font-size: 0.95rem; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.75rem; }
.footer-col ul li a { color: var(--text-muted); font-size: 0.875rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--border); padding: 1.5rem 24px; text-align: center; }
.footer-bottom p { color: var(--text-dim); font-size: 0.82rem; }

/* ========== PAGE HERO ========== */
.page-hero {
  padding: 140px 24px 80px;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .hero-title { font-size: clamp(2.5rem, 6vw, 4.5rem); }
.page-hero .hero-sub { margin: 1rem auto 2.5rem; }

.services-nav-pills {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.75rem;
  max-width: 800px; margin: 0 auto;
}
.pill {
  background: var(--surface); border: 1px solid var(--border);
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 500; color: var(--text-muted);
  transition: var(--transition);
}
.pill:hover { border-color: var(--accent); color: var(--accent); }

/* ========== SERVICE SECTIONS ========== */
.service-section { padding: 80px 0; border-top: 1px solid var(--border); }
.alt-bg { background: var(--bg2); }
.ss-header { display: flex; align-items: center; gap: 1.5rem; margin-bottom: 3rem; }
.ss-icon { font-size: 2.5rem; width: 70px; height: 70px; background: rgba(0,212,255,0.1); border: 1px solid rgba(0,212,255,0.2); border-radius: 18px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.ss-header .section-title { margin-bottom: 0; }

.service-group { margin-bottom: 2.5rem; }
.sg-title { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--text-muted); margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 0.75rem; }
.sg-title::before { content: ''; width: 4px; height: 20px; background: var(--gradient); border-radius: 4px; }

.service-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 0.75rem;
}
.si-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 14px 18px;
  display: flex; align-items: center; gap: 12px;
  font-size: 0.9rem; color: var(--text-muted);
  transition: var(--transition);
}
.si-card:hover { border-color: var(--accent); color: var(--text); background: rgba(0,212,255,0.04); }
.si-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gradient); flex-shrink: 0; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 50px; }
  .why-right { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero { flex-direction: column; text-align: center; gap: 60px; }
  .hero-stats { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-visual { width: 100%; }
  .fc1, .fc2, .fc3 { display: none; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 72px; left: 0; right: 0;
    background: var(--bg2); border-bottom: 1px solid var(--border);
    flex-direction: column; gap: 0; padding: 1rem 0;
    transform: translateY(-100%); opacity: 0; visibility: hidden;
    transition: var(--transition);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 14px 24px; }
  .nav-cta { margin: 0.5rem 24px !important; border-radius: 10px !important; }

  .service-cards { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-overview, .why-us, .testimonials, .contact { padding: 70px 0; }
  .service-section { padding: 60px 0; }
  .ss-header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .service-items { grid-template-columns: 1fr; }
}

/* ========== WHATSAPP FLOAT BUTTON ========== */
.wa-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 10px 36px rgba(37,211,102,0.6); }
.wa-tooltip {
  position: absolute; right: 70px;
  background: var(--surface); color: var(--text);
  font-size: 0.8rem; font-weight: 600;
  padding: 6px 14px; border-radius: 50px;
  border: 1px solid var(--border);
  white-space: nowrap; opacity: 0; pointer-events: none;
  transition: var(--transition);
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ========== HERO TAGLINE ========== */
.hero-tagline {
  font-family: var(--font-display);
  font-size: 1rem; font-weight: 600;
  color: var(--accent);
  margin-bottom: 0.75rem;
  animation: fadeUp 0.6s 0.15s ease both;
  letter-spacing: 0.2px;
}
.stat-icon { font-size: 1.4rem; margin-bottom: 4px; display: block; }
.stat { display: flex; flex-direction: column; align-items: center; text-align: center; }
.stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; max-width: 110px; line-height: 1.4; }

/* ========== GBP SECTION ========== */
.gbp-section { padding: 100px 0; background: var(--bg); }
.gbp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.gbp-features { display: flex; flex-direction: column; gap: 1.25rem; }
.gbp-feat { display: flex; align-items: flex-start; gap: 1rem; }
.gbp-feat-icon {
  font-size: 1.3rem; width: 46px; height: 46px; flex-shrink: 0;
  background: rgba(0,212,255,0.08); border: 1px solid rgba(0,212,255,0.2);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
}
.gbp-feat strong { display: block; font-size: 0.95rem; margin-bottom: 2px; }
.gbp-feat p { color: var(--text-muted); font-size: 0.87rem; }

.gbp-right { display: flex; justify-content: center; align-items: center; position: relative; }
.gbp-mockup { position: relative; }
.gbp-card {
  background: white; border-radius: 18px; padding: 20px;
  width: 300px; box-shadow: 0 30px 70px rgba(0,0,0,0.5);
  color: #111;
}
.gbp-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.gbp-logo-circle {
  width: 48px; height: 48px; border-radius: 12px;
  background: linear-gradient(135deg,#00d4ff,#7c3aed);
  display: flex; align-items: center; justify-content: center;
  color: white; font-family: var(--font-display); font-weight: 800; font-size: 1.3rem;
  flex-shrink: 0;
}
.gbp-biz-name { font-weight: 800; font-size: 1rem; color: #111; }
.gbp-biz-cat { font-size: 0.78rem; color: #666; }
.gbp-stars-row { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.gbp-stars { color: #f59e0b; font-size: 1rem; }
.gbp-review-count { font-size: 0.78rem; color: #1a73e8; font-weight: 600; }
.gbp-info-rows { display: flex; flex-direction: column; gap: 7px; margin-bottom: 16px; }
.gbp-info-row { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: #444; }
.gbp-open { color: #0d9e46; font-weight: 600; }
.gbp-actions { display: flex; gap: 8px; }
.gbp-action-btn {
  flex: 1; text-align: center; padding: 8px 4px;
  border: 1px solid #dadce0; border-radius: 8px;
  font-size: 0.78rem; color: #1a73e8; font-weight: 600; cursor: pointer;
  background: #f8f9fa;
}
.gbp-rank-badge {
  position: absolute; top: -18px; right: -18px;
  background: linear-gradient(135deg,#f59e0b,#ef4444);
  color: white; font-size: 0.78rem; font-weight: 700;
  padding: 8px 16px; border-radius: 50px;
  box-shadow: 0 4px 20px rgba(245,158,11,0.4);
  display: flex; align-items: center; gap: 6px;
  animation: floatAnim 3s ease-in-out infinite;
}

/* ========== WHY CHOOSE ZENORATECH ========== */
.why-choose { padding: 100px 0; background: var(--bg2); }
.why-choose-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.wc-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.75rem;
  transition: var(--transition);
}
.wc-card:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,212,255,0.08); }
.wc-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }
.wc-card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 0.6rem; }
.wc-card p { color: var(--text-muted); font-size: 0.87rem; line-height: 1.7; }

/* ========== BLOG TEASER ========== */
.blog-teaser { padding: 100px 0; background: var(--bg); }
.blog-teaser .section-label,
.blog-teaser .section-title { text-align: center; margin-left: auto; margin-right: auto; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.blog-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
  transition: var(--transition); display: flex; flex-direction: column; gap: 0.75rem;
}
.blog-card:hover { border-color: var(--accent); transform: translateY(-5px); }
.featured-blog {
  background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(124,58,237,0.06));
  border-color: rgba(0,212,255,0.25);
}
.blog-tag {
  display: inline-block; background: rgba(0,212,255,0.1);
  border: 1px solid rgba(0,212,255,0.25); color: var(--accent);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 50px;
  width: fit-content;
}
.blog-card h3 { font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; line-height: 1.4; }
.blog-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.7; flex: 1; }
.blog-meta { display: flex; gap: 1rem; color: var(--text-dim); font-size: 0.78rem; }

/* ========== FAQ ========== */
.faq-section { padding: 100px 0; background: var(--bg2); }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 1rem; }
.faq-item {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--accent); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 20px 24px; background: none; border: none; cursor: pointer;
  color: var(--text); font-family: var(--font-body); font-size: 0.97rem; font-weight: 600;
  text-align: left; gap: 1rem;
}
.faq-icon {
  font-size: 1.4rem; color: var(--accent); flex-shrink: 0;
  transition: var(--transition); line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1); }
.faq-answer p { padding: 0 24px 20px; color: var(--text-muted); font-size: 0.92rem; line-height: 1.8; }

/* ========== RESPONSIVE UPDATES ========== */
@media (max-width: 1024px) {
  .gbp-grid { grid-template-columns: 1fr; gap: 50px; }
  .gbp-right { justify-content: flex-start; }
  .why-choose-grid { grid-template-columns: repeat(2,1fr); }
  .blog-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .why-choose-grid { grid-template-columns: 1fr 1fr; }
  .gbp-card { width: 100%; }
  .wa-float { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}
@media (max-width: 480px) {
  .why-choose-grid { grid-template-columns: 1fr; }
}

/* ========== BLOG PAGE ========== */
.active-pill { border-color: var(--accent) !important; color: var(--accent) !important; }
.blog-full-grid { display: flex; flex-direction: column; gap: 2.5rem; }

.blog-featured-card {
  background: var(--surface); border: 1px solid rgba(0,212,255,0.25);
  border-radius: var(--radius); padding: 2.5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  background: linear-gradient(135deg, rgba(0,212,255,0.05), rgba(124,58,237,0.05));
}
.bfc-content h2 { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; margin: 1rem 0; line-height: 1.3; }
.bfc-content p { color: var(--text-muted); line-height: 1.8; font-size: 0.93rem; }

.blog-illustration {
  background: var(--surface2); border-radius: 18px;
  height: 220px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.bi-map { position: relative; width: 100%; height: 100%; }
.bi-pin { position: absolute; font-size: 1.8rem; animation: floatAnim 3s ease-in-out infinite; }
.pin1 { top: 30%; left: 25%; animation-delay: 0s; }
.pin2 { top: 50%; left: 55%; animation-delay: 0.8s; }
.pin3 { top: 25%; left: 65%; animation-delay: 1.5s; }
.bi-grid-line { position: absolute; background: rgba(0,212,255,0.1); }
.bi-grid-line { width: 100%; height: 1px; top: 50%; }
.bi-grid-line.v { width: 1px; height: 100%; top: 0; left: 50%; }
.bi-badge {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg,#00d4ff,#7c3aed); color: white;
  font-size: 0.78rem; font-weight: 700; padding: 6px 16px; border-radius: 50px;
  white-space: nowrap;
}

.blog-posts-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }

.blog-newsletter {
  background: linear-gradient(135deg, #0f1929, #1a0a3d);
  border-radius: var(--radius); padding: 2.5rem;
  border: 1px solid rgba(0,212,255,0.2);
}
.newsletter-inner { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.newsletter-icon { font-size: 2.5rem; flex-shrink: 0; }
.newsletter-inner h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-bottom: 4px; }
.newsletter-inner p { color: var(--text-muted); font-size: 0.88rem; }
.newsletter-form { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-left: auto; }
.newsletter-form input {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 50px; color: var(--text); font-family: var(--font-body);
  padding: 12px 20px; font-size: 0.9rem; outline: none; width: 240px;
}
.newsletter-form input:focus { border-color: var(--accent); }

@media (max-width: 1024px) {
  .blog-featured-card { grid-template-columns: 1fr; }
  .bfc-visual { display: none; }
  .blog-posts-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .blog-posts-grid { grid-template-columns: 1fr; }
  .newsletter-inner { flex-direction: column; align-items: flex-start; }
  .newsletter-form { margin-left: 0; width: 100%; }
  .newsletter-form input { width: 100%; }
}

/* ========== GBP CASE STUDY (Real Result) ========== */
.gbp-case-study { display: flex; flex-direction: column; gap: 1rem; }

.gbp-keyword-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(124,58,237,0.12); border: 1px solid rgba(124,58,237,0.35);
  color: #c4b5fd; font-size: 0.82rem; font-weight: 700;
  padding: 8px 18px; border-radius: 50px; width: fit-content;
  letter-spacing: 0.3px;
}

.gbp-serp-card {
  background: white; border-radius: 16px;
  overflow: hidden; box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.gbp-serp-header {
  background: #f8f9fa; padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid #e8eaed;
}
.gbp-google-logo {
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 1.3rem; letter-spacing: -1px;
  color: #4285f4;
}
.gbp-google-logo span:nth-child(1) { color: #ea4335; }
.gbp-google-logo span:nth-child(2) { color: #fbbc04; }
.gbp-google-logo span:nth-child(3) { color: #4285f4; }
.gbp-google-logo span:nth-child(4) { color: #34a853; }
.gbp-google-logo span:nth-child(5) { color: #ea4335; }
.gbp-serp-label {
  font-size: 0.72rem; color: #666; font-weight: 600;
  background: #e8f0fe; color: #1a73e8; padding: 3px 10px; border-radius: 50px;
}

.gbp-places-list { display: flex; flex-direction: column; }
.gbp-place-row {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 14px 16px; border-bottom: 1px solid #f1f3f4;
  transition: background 0.2s;
}
.gbp-place-row:last-child { border-bottom: none; }
.gbp-place-first { background: #f0fdf4; border-left: 3px solid #34a853; }
.gbp-place-rank {
  width: 26px; height: 26px; border-radius: 50%;
  background: #34a853; color: white;
  font-size: 0.78rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 2px;
}
.rank2 { background: #dadce0; color: #444; }
.gbp-place-info { flex: 1; }
.gbp-place-name { font-weight: 700; font-size: 0.9rem; color: #111; margin-bottom: 3px; }
.gbp-place-meta { display: flex; align-items: center; gap: 4px; margin-bottom: 2px; }
.gbp-place-stars { color: #fbbc04; font-size: 0.78rem; }
.gbp-place-rating { font-weight: 700; font-size: 0.78rem; color: #111; }
.gbp-place-reviews { font-size: 0.72rem; color: #666; }
.gbp-place-location { font-size: 0.75rem; color: #555; margin-top: 2px; }
.gbp-place-status { font-size: 0.72rem; color: #0d9e46; font-weight: 600; margin-top: 2px; }
.gbp-place-badge-wrap { display: flex; align-items: center; }
.gbp-no1-badge {
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: white; font-size: 0.72rem; font-weight: 800;
  padding: 5px 10px; border-radius: 50px;
  animation: floatAnim 3s ease-in-out infinite;
  white-space: nowrap;
}

.gbp-result-label {
  display: flex; align-items: flex-start; gap: 1rem;
  background: rgba(0,212,255,0.06); border: 1px solid rgba(0,212,255,0.2);
  border-radius: 14px; padding: 16px;
}
.gbp-result-icon { font-size: 1.5rem; flex-shrink: 0; }
.gbp-result-label strong { display: block; font-size: 0.92rem; margin-bottom: 4px; }
.gbp-result-label p { color: var(--text-muted); font-size: 0.84rem; line-height: 1.6; }

/* ========== SOCIAL LINKS – FOOTER ========== */
.social-links { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); color: white;
  transition: var(--transition); flex-shrink: 0;
}
.sl-instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: transparent !important; }
.sl-instagram:hover { transform: translateY(-3px) scale(1.1); box-shadow: 0 8px 20px rgba(220,39,67,0.4); }
.sl-facebook { background: #1877f2; border-color: transparent !important; }
.sl-facebook:hover { transform: translateY(-3px) scale(1.1); box-shadow: 0 8px 20px rgba(24,119,242,0.4); }
.sl-linkedin { background: #0a66c2; border-color: transparent !important; }
.sl-linkedin:hover { transform: translateY(-3px) scale(1.1); box-shadow: 0 8px 20px rgba(10,102,194,0.4); }
.sl-whatsapp { background: #25d366; border-color: transparent !important; }
.sl-whatsapp:hover { transform: translateY(-3px) scale(1.1); box-shadow: 0 8px 20px rgba(37,211,102,0.4); }

/* ========== SOCIAL LINKS – CONTACT SECTION ========== */
.contact-social { margin-top: 2rem; }
.contact-social-label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--text-dim); margin-bottom: 1rem;
}
.contact-social-icons { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.csi {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600; color: white;
  transition: var(--transition); border: none;
}
.csi span { white-space: nowrap; }
.csi-instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.csi-instagram:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(220,39,67,0.35); }
.csi-facebook { background: #1877f2; }
.csi-facebook:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(24,119,242,0.35); }
.csi-linkedin { background: #0a66c2; }
.csi-linkedin:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(10,102,194,0.35); }
.csi-whatsapp { background: #25d366; }
.csi-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.35); }

/* ========== FLOATING SOCIAL SIDEBAR ========== */
.social-sidebar {
  position: fixed; left: 0; top: 50%; transform: translateY(-50%);
  z-index: 98; display: flex; flex-direction: column; gap: 0;
}
.ssb-link {
  display: flex; align-items: center; gap: 0;
  width: 44px; height: 44px; color: white;
  overflow: hidden; transition: width 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.ssb-link:hover { width: 140px; border-radius: 0 8px 8px 0; }
.ssb-link svg { flex-shrink: 0; width: 44px; display: flex; align-items: center; justify-content: center; padding: 12px; }
.ssb-label {
  font-size: 0.82rem; font-weight: 700; white-space: nowrap;
  opacity: 0; transform: translateX(-10px);
  transition: all 0.25s ease; pointer-events: none;
}
.ssb-link:hover .ssb-label { opacity: 1; transform: translateX(0); }
.ssb-instagram { background: linear-gradient(180deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.ssb-facebook { background: #1877f2; }
.ssb-linkedin { background: #0a66c2; }
.ssb-whatsapp { background: #25d366; }

@media (max-width: 768px) {
  .social-sidebar { display: none; }
  .contact-social-icons { gap: 0.5rem; }
  .csi span { display: none; }
  .csi { padding: 10px 14px; border-radius: 50%; }
}

/* ========== GBP REAL IMAGE ========== */
.gbp-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
  border: 1px solid rgba(0,212,255,0.15);
}
.gbp-result-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  transition: transform 0.4s ease;
}
.gbp-image-wrap:hover .gbp-result-img { transform: scale(1.02); }
.gbp-img-badge {
  position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, #00d4ff, #7c3aed);
  color: white; font-size: 0.82rem; font-weight: 700;
  padding: 8px 22px; border-radius: 50px;
  white-space: nowrap; box-shadow: 0 4px 20px rgba(0,212,255,0.4);
  letter-spacing: 0.3px;
}

/* ========== MOBILE HERO FIX ========== */
@media (max-width: 1024px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 100px 24px 60px;
    gap: 50px;
    min-height: auto;
  }
  .hero-content { max-width: 100%; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; flex-wrap: wrap; gap: 1.5rem; }
  .stat-divider { display: none; }

  /* Show a simplified visual on tablet */
  .hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .device-mockup {
    width: 280px;
    height: 190px;
  }
  .fc1, .fc2, .fc3 { display: none; }
}

@media (max-width: 768px) {
  .hero {
    padding: 90px 20px 50px;
    gap: 40px;
  }
  .hero-title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
    letter-spacing: -1px;
  }
  .hero-tagline { font-size: 0.9rem; }
  .hero-sub { font-size: 0.95rem; }

  /* Hide device mockup on small phones, show stats only */
  .hero-visual { display: none; }

  /* Stats as a row of pills on mobile */
  .hero-stats {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  .stat {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 8px 16px;
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }
  .stat-icon { font-size: 1rem; margin-bottom: 0; }
  .stat-label { font-size: 0.78rem; max-width: none; line-height: 1.3; }

  .hero-badge { font-size: 0.78rem; padding: 6px 14px; }
  .hero-actions { gap: 0.75rem; }
  .btn-primary, .btn-ghost { padding: 12px 24px; font-size: 0.88rem; }
}

@media (max-width: 480px) {
  .hero { padding: 85px 16px 40px; }
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 0.5rem; }
  .stat { padding: 6px 12px; }
  .stat-label { font-size: 0.72rem; }
}

/* ========== FORM ERROR MESSAGE ========== */
.form-error {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.3);
  border-radius: var(--radius-sm);
  padding: 14px; color: #f87171;
  font-weight: 500; margin-top: 1rem; font-size: 0.9rem;
}

