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

:root {
  --blue-50:  #eff6ff;
  --blue-100: #dbeafe;
  --blue-200: #bfdbfe;
  --blue-400: #60a5fa;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-900: #1e3a8a;
  --cyan-400: #22d3ee;
  --cyan-500: #06b6d4;
  --indigo-500: #6366f1;
  --teal-500: #14b8a6;
  --brand:    #1e6fff;
  --brand-dark: #1558e8;
  --brand-light: #93c5fd;
  --accent:   #06b6d4;
  --slate-50:  #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;

  --font: 'Inter', 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow: 0 4px 24px rgba(30,111,255,.08), 0 1px 4px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(30,111,255,.14), 0 4px 16px rgba(0,0,0,.08);
  --shadow-xl: 0 24px 64px rgba(30,111,255,.18), 0 8px 24px rgba(0,0,0,.1);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: var(--white);
  color: var(--slate-800);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }

a { text-decoration: none; color: inherit; }

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
  text-decoration: none;
}
.btn-icon { width: 16px; height: 16px; }

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(30,111,255,.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30,111,255,.45);
  filter: brightness(1.08);
}
.btn-outline {
  background: rgba(255,255,255,.12);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.7);
  transform: translateY(-2px);
}
.btn-plan {
  background: var(--blue-50);
  color: var(--brand);
  border: 1.5px solid var(--blue-100);
}
.btn-plan:hover {
  background: var(--brand);
  color: #fff;
  border-color: var(--brand);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(30,111,255,.3);
}
.btn-lg { padding: 14px 32px; font-size: 1rem; border-radius: var(--radius); }
.btn-full { width: 100%; justify-content: center; }

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: linear-gradient(135deg, var(--brand) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.4s ease;
}
.navbar.scrolled {
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,.08), 0 4px 24px rgba(0,0,0,.06);
  padding: 10px 0;
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-img {
  height: 30px;
  width: auto;
  object-fit: contain;
  /* Pill keeps the logo readable on the dark hero; more padding so corners don't clip the artwork */
  background: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  box-shadow: 0 1px 4px rgba(0,0,0,.12);
  transition: all var(--transition);
}
/* When navbar is white, no background needed */
.navbar.scrolled .logo-img {
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
/* Footer logo — solid white pill so it is clearly visible on the dark footer */
.logo-img-footer {
  height: 30px;
  background: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,.35);
  transition: all var(--transition);
}
.logo-img-footer:hover {
  transform: scale(1.04);
  box-shadow: 0 4px 14px rgba(0,0,0,.4);
}

/* Badge status inline style */
.badge-status-inline {
  font-size: 0.65rem;
  background: #eff6ff;
  color: var(--brand);
  border: 1.5px solid var(--blue-100);
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 700;
  margin-left: 8px;
  vertical-align: middle;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-link {
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  transition: all var(--transition);
}
.nav-link .nav-icon {
  display: none;
}
.nav-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}
.nav-link:hover {
  background: rgba(255,255,255,.15);
  color: #fff;
}
.navbar.scrolled .nav-link { color: var(--slate-600); }
.navbar.scrolled .nav-link:hover { background: var(--blue-50); color: var(--brand); }

.nav-cta { margin-left: 8px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all var(--transition);
}
.navbar.scrolled .hamburger span { background: var(--slate-700); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #0a1628 0%, #0d2352 40%, #0a1f4e 70%, #071440 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,0.7) 0%, rgba(13,35,82,0.5) 50%, rgba(10,22,40,0.8) 100%);
}
.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}
.orb-1 { width: 500px; height: 500px; background: rgba(30,111,255,.18); top: -100px; right: -100px; animation: float 8s ease-in-out infinite; }
.orb-2 { width: 300px; height: 300px; background: rgba(6,182,212,.15); bottom: 100px; left: -50px; animation: float 10s ease-in-out infinite reverse; }
.orb-3 { width: 200px; height: 200px; background: rgba(99,102,241,.12); top: 40%; right: 25%; animation: float 6s ease-in-out infinite 2s; }

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

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 100px;
  padding-bottom: 80px;
  max-width: 760px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.9);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
  animation: slideInDown 0.7s ease both;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)}50%{opacity:.6;transform:scale(1.3)} }

.hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
  animation: slideInUp 0.7s ease 0.1s both;
}
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,.72);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 36px;
  animation: slideInUp 0.7s ease 0.2s both;
}
.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  animation: slideInUp 0.7s ease 0.3s both;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  animation: slideInUp 0.7s ease 0.4s both;
}
.stat { display: flex; flex-direction: column; }
.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.stat-label { font-size: 0.75rem; color: rgba(255,255,255,.55); margin-top: 4px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

.hero-scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-dot {
  width: 30px; height: 50px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: 15px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: rgba(255,255,255,.6);
  border-radius: 2px;
  animation: scrollAnim 2s ease infinite;
}
@keyframes scrollAnim {
  0%   { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(18px); }
}

@keyframes slideInDown { from { opacity:0; transform:translateY(-24px) } to { opacity:1; transform:translateY(0) } }
@keyframes slideInUp   { from { opacity:0; transform:translateY(24px)  } to { opacity:1; transform:translateY(0) } }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-alt { background: var(--slate-50); }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--blue-50), #e0f2fe);
  color: var(--brand);
  border: 1px solid var(--blue-100);
  padding: 5px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -1px;
  color: var(--slate-900);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--slate-500);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== PLANS ===== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.plan-card {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.plan-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}
.plan-card.plan-featured {
  border-color: var(--brand);
  background: linear-gradient(160deg, #fff 60%, #eff6ff 100%);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.plan-badge-top {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--brand), var(--accent));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}
.plan-icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  overflow: hidden;
}
.plan-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.plan-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.plan-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--slate-900);
}
.plan-desc {
  font-size: 0.875rem;
  color: var(--slate-500);
  line-height: 1.65;
  margin-bottom: 22px;
}
.plan-features {
  list-style: none;
  margin-bottom: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--slate-600);
}
.check-icon {
  color: var(--brand);
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  width: 18px; height: 18px;
  background: var(--blue-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-50) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.service-card:hover::before { opacity: 1; }
.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}
.service-icon-wrap svg { width: 28px; height: 28px; }
.service-icon-wrap.blue { background: var(--blue-50); color: var(--brand); }
.service-icon-wrap.cyan { background: #ecfeff; color: var(--cyan-500); }
.service-icon-wrap.indigo { background: #eef2ff; color: var(--indigo-500); }
.service-icon-wrap.teal { background: #f0fdfa; color: var(--teal-500); }

.service-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.service-desc {
  font-size: 0.85rem;
  color: var(--slate-500);
  line-height: 1.65;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 1;
}
.service-list li {
  font-size: 0.8rem;
  color: var(--slate-600);
  padding-left: 14px;
  position: relative;
}
.service-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-size: 0.75rem;
}

/* ===== SOFTWARE DEVELOPMENT ===== */
.software-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.software-feature-card {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: all var(--transition);
}
.software-feature-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.sw-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sw-icon-wrap svg {
  width: 32px;
  height: 32px;
}
.sw-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.sw-head h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  line-height: 1.35;
}
.sw-content p {
  font-size: 0.85rem;
  color: var(--slate-500);
  line-height: 1.65;
  margin-bottom: 16px;
}
.sw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.sw-tags span {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--brand);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
}
/* ===== FEATURED PRODUCT (SmartPOS Pro) ===== */
.software-product-featured {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  margin-top: 32px;
  background: linear-gradient(135deg, #fff 55%, #eff6ff 100%);
  border: 1.5px solid var(--blue-200);
  border-radius: var(--radius-xl);
  padding: 28px 30px;
  box-shadow: var(--shadow);
}
.spf-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: var(--blue-50);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.spf-icon svg { width: 36px; height: 36px; }
.spf-content { flex: 1; }
.spf-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 3px 10px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.spf-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--slate-900);
  margin-bottom: 8px;
}
.spf-content p {
  font-size: 0.9rem;
  color: var(--slate-500);
  line-height: 1.7;
  margin-bottom: 14px;
  max-width: 640px;
}
.spf-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.spf-android {
  font-size: 0.82rem;
  color: var(--slate-500);
}
.spf-android strong { color: var(--brand); }
.software-cta-banner {
  margin-top: 40px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 60%, #0f3fa8 100%);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-xl);
}
.software-cta-banner h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.software-cta-banner p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.75);
  max-width: 460px;
  line-height: 1.6;
}
.software-cta-banner .btn-primary {
  background: white;
  color: var(--brand);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  flex-shrink: 0;
}
.software-cta-banner .btn-primary:hover { background: var(--blue-50); filter: none; }

@media (max-width: 900px) {
  .software-layout { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .software-product-featured { flex-direction: column; align-items: flex-start; }
  .software-cta-banner { flex-direction: column; text-align: center; }
}

/* ===== CORE SERVICES (TECH & NETWORK) ===== */
.core-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.core-card {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.core-card:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.core-card-featured {
  border-color: var(--brand);
  background: linear-gradient(160deg, #fff 60%, #eff6ff 100%);
  box-shadow: var(--shadow-lg);
}
.core-card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  padding: 6px;
}
.core-card-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.core-card-icon svg {
  width: 32px;
  height: 32px;
}
.core-card-icon .core-card-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.core-card-body { display: flex; flex-direction: column; flex: 1; }
.core-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--brand);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
}
.core-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 10px;
}
.core-desc {
  font-size: 0.85rem;
  color: var(--slate-500);
  line-height: 1.65;
  margin-bottom: 16px;
}
.core-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 22px;
  flex: 1;
}
.core-list li {
  font-size: 0.82rem;
  color: var(--slate-600);
  padding-left: 16px;
  position: relative;
}
.core-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-size: 0.78rem;
}

/* ===== COVERAGE ===== */
.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.coverage-map-visual { position: relative; }
.map-bg {
  background: linear-gradient(135deg, var(--blue-50) 0%, #e0f2fe 100%);
  border: 1.5px solid var(--blue-100);
  border-radius: var(--radius-xl);
  height: 360px;
  position: relative;
  overflow: hidden;
}
.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30,111,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30,111,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.map-connections {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.coverage-area-dot {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 3;
  cursor: default;
}
.area-pulse {
  width: 16px; height: 16px;
  background: var(--brand);
  border-radius: 50%;
  position: relative;
}
.area-pulse::before, .area-pulse::after {
  content: '';
  position: absolute;
  inset: -4px;
  background: rgba(30,111,255,.3);
  border-radius: 50%;
  animation: areaPulse 2.4s ease infinite;
}
.area-pulse::after { animation-delay: 1.2s; }
@keyframes areaPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(2.8); opacity: 0; }
}
.area-label {
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--brand);
  background: white;
  padding: 3px 8px;
  border-radius: 6px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--blue-100);
}

.coverage-list { display: flex; flex-direction: column; gap: 20px; }
.coverage-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.coverage-item:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow);
  transform: translateX(4px);
}
.coverage-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue-100);
  line-height: 1;
  flex-shrink: 0;
}
.coverage-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 5px;
}
.coverage-info p {
  font-size: 0.82rem;
  color: var(--slate-500);
  line-height: 1.6;
  margin-bottom: 10px;
}
.coverage-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--brand);
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  padding: 2px 10px;
  border-radius: 50px;
}

/* ===== SHOP ===== */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}
.shop-item {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
}
.shop-item:hover {
  border-color: var(--blue-200);
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}
.shop-icon {
  width: 64px; height: 64px;
  margin: 0 auto 18px;
}
.shop-item-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 10px;
}
.shop-item-desc {
  font-size: 0.85rem;
  color: var(--slate-500);
  line-height: 1.65;
}
.shop-cta-banner {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-dark) 60%, #0f3fa8 100%);
  border-radius: var(--radius-xl);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: var(--shadow-xl);
}
.shop-banner-content h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.shop-banner-content p {
  font-size: 0.9rem;
  color: rgba(255,255,255,.75);
  max-width: 440px;
  line-height: 1.65;
}
.shop-cta-banner .btn-primary {
  background: white;
  color: var(--brand);
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
  flex-shrink: 0;
}
.shop-cta-banner .btn-primary:hover { background: var(--blue-50); filter: none; }

/* ===== WHY US ===== */
.why-us {
  background: linear-gradient(135deg, #0a1628 0%, #0d2352 50%, #071440 100%);
}
.why-us .section-badge { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.2); color: var(--cyan-400); }
.why-us .section-title { color: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--transition);
  backdrop-filter: blur(8px);
}
.why-card:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(30,111,255,.4);
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(30,111,255,.2);
}
.why-icon { font-size: 2.2rem; margin-bottom: 16px; }
.why-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.why-card p { font-size: 0.85rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ===== CONTACT ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.contact-card:hover { border-color: var(--blue-200); box-shadow: var(--shadow); }
.contact-icon {
  width: 44px; height: 44px;
  background: var(--blue-50);
  color: var(--brand);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-icon.whatsapp-icon { background: #dcfce7; color: #16a34a; }
.contact-detail { display: flex; flex-direction: column; }
.contact-label { font-size: 0.72rem; font-weight: 600; color: var(--slate-400); text-transform: uppercase; letter-spacing: .5px; }
.contact-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--slate-800);
  transition: color var(--transition);
}
.contact-value:hover { color: var(--brand); }
.contact-areas h4 {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
}
.area-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  font-size: 0.8rem;
  font-weight: 500;
  background: var(--blue-50);
  color: var(--brand);
  border: 1px solid var(--blue-100);
  padding: 5px 14px;
  border-radius: 50px;
}

/* ===== FORM ===== */
.contact-form {
  background: var(--white);
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 36px 32px;
  box-shadow: var(--shadow);
}
.form-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 24px;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--slate-600);
  margin-bottom: 6px;
  letter-spacing: .3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--slate-200);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.875rem;
  color: var(--slate-800);
  background: var(--slate-50);
  transition: all var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(30,111,255,.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-success {
  display: none;
  text-align: center;
  padding: 14px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-sm);
  color: #166534;
  font-size: 0.875rem;
  font-weight: 500;
  margin-top: 12px;
}

/* ===== FOOTER ===== */
.footer { background: var(--slate-900); padding: 72px 0 0; }
.footer-container {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand { }
.footer-logo { margin-bottom: 16px; }
.footer-tagline {
  font-size: 0.85rem;
  color: var(--slate-400);
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 280px;
}
.footer-contact-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-contact-links a {
  font-size: 0.85rem;
  color: var(--slate-400);
  transition: color var(--transition);
}
.footer-contact-links a:hover { color: var(--cyan-400); }
.footer-heading {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem;
  color: var(--slate-400);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cyan-400); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--slate-500);
}

/* ===== SCROLL ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .plans-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .core-services-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .coverage-layout { grid-template-columns: 1fr; }
  .coverage-map-visual { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-cta-banner { flex-direction: column; text-align: center; }
}
@media (max-width: 768px) {
  .nav-cta { display: none; }
  .hamburger { display: flex; position: relative; z-index: 1002; }
  /* Fade + Scale pop with blurred (blind) page behind */
  .nav-links {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(13,35,82,.88);
    backdrop-filter: blur(24px) saturate(1.2);
    -webkit-backdrop-filter: blur(24px) saturate(1.2);
    align-items: center;
    justify-content: center;
    gap: 20px;
    z-index: 1001;
    transform: scale(.92);
    opacity: 0;
    visibility: hidden;
    transition: transform .45s cubic-bezier(.22,.61,.36,1), opacity .35s ease, visibility 0s linear .45s;
    pointer-events: none;
  }
  .nav-links.open {
    transform: scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: transform .45s cubic-bezier(.22,.61,.36,1), opacity .3s ease, visibility 0s;
  }
  .nav-links.open .nav-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    width: 100%;
    max-width: 340px;
    min-height: 58px;
    font-size: 1.3rem;
    color: #fff;
    padding: 10px 20px;
    animation: menuLink .5s cubic-bezier(.22,.61,.36,1) both;
  }
  .nav-links.open .nav-link .nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255,255,255,.08);
    color: var(--brand-light);
    transition: all .3s cubic-bezier(.22,.61,.36,1);
  }
  .nav-links.open .nav-link .nav-icon svg {
    width: 20px;
    height: 20px;
  }
  .nav-links.open .nav-link:nth-child(1) { animation-delay: .14s; }
  .nav-links.open .nav-link:nth-child(2) { animation-delay: .20s; }
  .nav-links.open .nav-link:nth-child(3) { animation-delay: .26s; }
  .nav-links.open .nav-link:nth-child(4) { animation-delay: .32s; }
  .nav-links.open .nav-link:nth-child(5) { animation-delay: .38s; }
  .nav-links.open .nav-link:hover {
    background: rgba(255,255,255,.10);
    color: #fff;
  }
  .nav-links.open .nav-link:hover .nav-icon {
    background: var(--brand);
    color: #fff;
    transform: translateX(4px);
  }
  .navbar.menu-open #logo-link { display: none; }
  .navbar.menu-open {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  @keyframes menuLink {
    from { opacity: 0; transform: translateY(12px) scale(.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
  }
  .hero-content { padding-top: 120px; }
  .services-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .footer-container { grid-template-columns: 1fr 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 6px; text-align: center; }
}
@media (max-width: 480px) {
  .section { padding: 64px 0; }
  .hero-stats { gap: 14px; }
  .stat-number { font-size: 1.5rem; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-container { grid-template-columns: 1fr; }
  .contact-form { padding: 24px 18px; }
  .shop-cta-banner { padding: 28px 22px; }
}
