/* ==========================================================================
   GANSS INFORMATION TECHNOLOGY SOLUTIONS OPC - DESIGN SYSTEM
   Dark Navy / Vibrant Cyan / Electric Blue / Slate Clean Architecture
   ========================================================================== */

:root {
  --bg-dark: #0a0f1d;
  --bg-alt: #0d1527;
  --bg-card: #131c31;
  --bg-card-hover: #18233d;
  --bg-surface: #1e293b;
  
  --primary-cyan: #06b6d4;
  --primary-cyan-hover: #0891b2;
  --primary-blue: #3b82f6;
  --primary-blue-hover: #2563eb;
  --accent-purple: #8b5cf6;
  --accent-emerald: #10b981;
  --accent-rose: #f43f5e;
  
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-glow: rgba(6, 182, 212, 0.3);
  --glass-bg: rgba(19, 28, 49, 0.75);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Space Grotesk', var(--font-main);
  --font-mono: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
  
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-main);
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography Utilities */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--text-muted);
}

a {
  color: var(--primary-cyan);
  text-decoration: none;
  transition: color var(--transition-fast);
}

a:hover {
  color: #38bdf8;
}

.text-cyan { color: var(--primary-cyan) !important; }
.text-blue { color: var(--primary-blue) !important; }
.text-purple { color: var(--accent-purple) !important; }
.text-emerald { color: var(--accent-emerald) !important; }
.text-success { color: #22c55e !important; }
.text-rose { color: var(--accent-rose) !important; }
.text-highlight { color: #38bdf8; font-weight: 600; font-size: 1.1rem; }
.font-mono { font-family: var(--font-mono); }
.text-center { text-align: center; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2.5rem; }

.gradient-text {
  background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.section {
  padding: 5rem 0;
  position: relative;
}

.bg-alt {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.section-header {
  max-width: 760px;
  margin: 0 auto 3.5rem;
}

.section-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--primary-cyan);
  background: rgba(6, 182, 212, 0.1);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(6, 182, 212, 0.25);
  margin-bottom: 0.85rem;
}

.section-title {
  font-size: 2.35rem;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
}

/* Glassmorphism Card System */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--glass-shadow);
  transition: transform var(--transition-normal), border-color var(--transition-normal), box-shadow var(--transition-normal);
}

.glass-card:hover {
  border-color: var(--border-glow);
  box-shadow: 0 12px 40px rgba(6, 182, 212, 0.15);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.75rem 1.4rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-decoration: none;
  line-height: 1.2;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-blue) 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(6, 182, 212, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0891b2 0%, #2563eb 100%);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.5);
  transform: translateY(-1px);
  color: #fff;
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-secondary:hover {
  background: #334155;
  border-color: var(--primary-cyan);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--text-main);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
}

.btn-sm {
  padding: 0.5rem 0.9rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 0.9rem 1.8rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

/* Badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.badge-accent {
  background: rgba(6, 182, 212, 0.15);
  color: var(--primary-cyan);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

/* Top Utility Bar */
.top-bar {
  background: #060a14;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8rem;
  padding: 0.45rem 0;
  color: var(--text-muted);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.top-link {
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.top-link:hover {
  color: var(--text-main);
}

.top-btn-link {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 0.8rem;
  font-family: var(--font-main);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: color var(--transition-fast);
}

.top-btn-link:hover {
  color: var(--primary-cyan);
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 15, 29, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-main);
}

.logo-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-blue) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: #fff;
  position: relative;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.4);
}

.signal-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 10px;
  height: 10px;
  background-color: #22c55e;
  border-radius: 50%;
  border: 2px solid var(--bg-dark);
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #fff;
  line-height: 1;
}

.brand-sub {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--primary-cyan);
  text-transform: uppercase;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 1.5rem;
}

.nav-link {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.5rem 0.25rem;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  color: var(--text-main);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-cyan);
  transition: width var(--transition-fast);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-main);
  font-size: 1.25rem;
  padding: 0.4rem 0.65rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  padding: 5.5rem 0 4.5rem;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  opacity: 0.25;
}

.hero-glow-1 {
  background: var(--primary-cyan);
  top: -100px;
  left: -100px;
}

.hero-glow-2 {
  background: var(--primary-blue);
  bottom: -150px;
  right: -100px;
}

.hero-container {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 1rem;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.25);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-cyan);
  margin-bottom: 1.25rem;
}

.pulse-indicator {
  width: 8px;
  height: 8px;
  background-color: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
  animation: pulse-ring 1.8s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes pulse-ring {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(34, 197, 94, 0); }
}

.hero-title {
  font-size: 3.25rem;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
}

.hero-tagline {
  font-size: 1.25rem;
  font-weight: 500;
  color: #e2e8f0;
  margin-bottom: 1.25rem;
  border-left: 3px solid var(--primary-cyan);
  padding-left: 1rem;
}

.hero-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-badge-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Hero Stats Card / Interactive Visual */
.hero-stats-card {
  padding: 1.75rem;
  border-radius: var(--radius-xl);
  background: rgba(15, 23, 42, 0.85);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.stats-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.terminal-dots {
  display: flex;
  gap: 6px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot-red { background: #ef4444; }
.dot-yellow { background: #eab308; }
.dot-green { background: #22c55e; }

.stats-card-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
}

.status-live {
  font-size: 0.75rem;
  font-weight: 600;
  color: #22c55e;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.pulse-anim {
  font-size: 0.5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.stat-box {
  background: rgba(30, 41, 59, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1rem;
  text-align: center;
}

.stat-val {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.stat-lbl {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 500;
}

.network-pulse-box {
  background: rgba(30, 41, 59, 0.4);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.network-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  margin-bottom: 0.5rem;
}

.progress-bar-bg {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-full);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--primary-cyan), var(--primary-blue));
  border-radius: var(--radius-full);
}

.network-footer-tags {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-dim);
}

.quick-check-widget {
  background: rgba(6, 182, 212, 0.06);
  border: 1px dashed rgba(6, 182, 212, 0.3);
  border-radius: var(--radius-md);
  padding: 1rem;
}

.widget-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.input-with-btn {
  display: flex;
  gap: 0.5rem;
}

.input-with-btn input {
  flex: 1;
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.75rem;
  color: var(--text-main);
  font-size: 0.85rem;
}

.input-with-btn input:focus {
  outline: none;
  border-color: var(--primary-cyan);
}

.quick-check-res {
  margin-top: 0.5rem;
  font-size: 0.8rem;
}

/* Corporate & Legitimacy */
.credential-card {
  text-align: center;
  position: relative;
}

.card-icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.credential-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.card-caption {
  font-size: 0.88rem;
  margin-bottom: 1.25rem;
}

.verified-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #22c55e;
  background: rgba(34, 197, 94, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.mv-card {
  padding: 2.5rem;
}

.mv-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.icon-circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(6, 182, 212, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

/* Executive Leadership */
.leader-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.leader-avatar {
  flex-shrink: 0;
}

.avatar-fallback {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
  border: 2px solid var(--border-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary-cyan);
}

.leader-role-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-cyan);
  display: block;
  margin-bottom: 0.25rem;
}

.leader-name {
  font-size: 1.35rem;
  margin-bottom: 0.2rem;
}

.leader-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.leader-bio {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.leader-focus {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.75rem;
  color: #cbd5e1;
}

/* Core Services */
.service-card {
  display: flex;
  flex-direction: column;
  position: relative;
  border-radius: var(--radius-lg);
}

.featured-service {
  border-color: rgba(6, 182, 212, 0.4);
  background: linear-gradient(180deg, rgba(19, 28, 49, 0.95) 0%, rgba(15, 23, 42, 0.95) 100%);
}

.featured-badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(90deg, var(--primary-cyan), var(--primary-blue));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: rgba(6, 182, 212, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-cyan);
  margin-bottom: 1.25rem;
  transition: all var(--transition-fast);
}

.service-card:hover .service-icon-wrap {
  background: var(--primary-cyan);
  color: #fff;
  transform: scale(1.05);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.service-features {
  list-style: none;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.75rem;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.4rem;
}

.service-action {
  margin-top: auto;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.service-link:hover {
  gap: 0.6rem;
}

/* Internet Subscription Plans */
.plan-toggle-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.plan-toggle {
  background: var(--bg-surface);
  padding: 0.35rem;
  border-radius: var(--radius-full);
  display: flex;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-tab {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all var(--transition-fast);
}

.plan-tab.active {
  background: linear-gradient(135deg, var(--primary-cyan) 0%, var(--primary-blue) 100%);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(6, 182, 212, 0.3);
}

.plan-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 2.25rem 1.75rem;
}

.popular-plan {
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 8px 32px rgba(6, 182, 212, 0.2);
  transform: scale(1.02);
}

.popular-ribbon {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #f59e0b, #ef4444);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.plan-header {
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.plan-tag {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--primary-cyan);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 0.25rem;
}

.plan-name {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.plan-speed {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.3rem;
  margin-bottom: 0.5rem;
}

.speed-num {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text-main);
  line-height: 1;
}

.speed-unit {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary-cyan);
}

.plan-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-muted);
}

.plan-price .amount {
  font-size: 1.5rem;
  color: var(--text-main);
}

.plan-price .period {
  font-size: 0.85rem;
  font-weight: 400;
}

.plan-body {
  flex-grow: 1;
  margin-bottom: 1.75rem;
}

.plan-specs {
  list-style: none;
  font-size: 0.88rem;
}

.plan-specs li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
  color: #cbd5e1;
}

.plan-note-banner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 2rem;
  border-radius: var(--radius-md);
  border-left: 4px solid var(--primary-cyan);
}

.note-icon {
  font-size: 1.75rem;
}

.note-text {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Coverage Section */
.coverage-tool-card {
  max-width: 960px;
  margin: 0 auto;
  padding: 2.5rem;
}

.coverage-input-bar {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.search-field {
  position: relative;
  flex: 1;
}

.search-icon {
  position: absolute;
  top: 50%;
  left: 1.2rem;
  transform: translateY(-50%);
  color: var(--text-dim);
  font-size: 1rem;
}

.search-field input {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 0.9rem 2.8rem;
  font-size: 1rem;
  color: var(--text-main);
  font-family: var(--font-main);
  transition: border-color var(--transition-fast);
}

.search-field input:focus {
  outline: none;
  border-color: var(--primary-cyan);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.2);
}

.clear-btn {
  position: absolute;
  top: 50%;
  right: 1.2rem;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  font-size: 1rem;
}

.area-chips {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.chip-label {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.area-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-family: var(--font-main);
  font-size: 0.8rem;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.area-chip:hover {
  background: rgba(6, 182, 212, 0.15);
  border-color: var(--primary-cyan);
  color: #fff;
}

.coverage-result-box {
  background: var(--bg-surface);
  border: 1px solid rgba(6, 182, 212, 0.4);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.res-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.res-title {
  font-size: 1.2rem;
  color: #fff;
}

.res-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.35rem 0.8rem;
  border-radius: var(--radius-full);
}

.res-status-badge.available {
  background: rgba(34, 197, 94, 0.15);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

.res-status-badge.contact {
  background: rgba(234, 179, 8, 0.15);
  color: #eab308;
  border: 1px solid rgba(234, 179, 8, 0.3);
}

.res-tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.res-tech-item {
  background: rgba(15, 23, 42, 0.6);
  padding: 0.75rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.res-action-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
}

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

.hub-item {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 1.25rem;
}

.hub-icon {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.hub-item h4 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}

.hub-item p {
  font-size: 0.82rem;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.tech-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  margin-right: 0.3rem;
  margin-bottom: 0.3rem;
}

.fiber-tag { background: rgba(6, 182, 212, 0.2); color: var(--primary-cyan); }
.wireless-tag { background: rgba(59, 130, 246, 0.2); color: var(--primary-blue); }
.dia-tag { background: rgba(168, 85, 247, 0.2); color: var(--accent-purple); }
.vsat-tag { background: rgba(16, 185, 129, 0.2); color: var(--accent-emerald); }

/* Enterprise Section */
.enterprise-split {
  align-items: center;
  gap: 3.5rem;
}

.enterprise-lead {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.enterprise-perks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.perk-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}

.perk-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: rgba(30, 41, 59, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.perk-item h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.perk-item p {
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Forms */
.form-card {
  padding: 2.25rem;
}

.form-header {
  margin-bottom: 1.5rem;
}

.form-header h3 {
  font-size: 1.35rem;
  margin-bottom: 0.35rem;
}

.form-header p {
  font-size: 0.85rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #cbd5e1;
  margin-bottom: 0.35rem;
}

.req {
  color: var(--accent-rose);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  color: var(--text-main);
  font-family: var(--font-main);
  transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-cyan);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.15);
}

.form-group textarea {
  resize: vertical;
}

.form-status-msg {
  margin-top: 1rem;
  font-size: 0.88rem;
  text-align: center;
}

/* Support Section */
.support-channels-grid {
  margin-bottom: 2rem;
}

.support-channel-card {
  padding: 1.75rem;
}

.channel-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.support-channel-card h4 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.support-channel-card p {
  font-size: 0.82rem;
  margin-bottom: 0.75rem;
}

.channel-action {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--primary-cyan);
}

.ticket-card {
  max-width: 880px;
  margin: 0 auto;
}

.ticket-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1rem;
}

/* Contact & Offices */
.location-card {
  position: relative;
  padding: 2.25rem;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--primary-cyan);
  background: rgba(6, 182, 212, 0.1);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
}

.badge-branch {
  color: var(--primary-blue);
  background: rgba(59, 130, 246, 0.1);
}

.location-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.loc-address {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  display: flex;
  gap: 0.6rem;
}

.loc-details {
  background: rgba(30, 41, 59, 0.4);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.detail-row:last-child {
  margin-bottom: 0;
}

.detail-label {
  color: var(--text-dim);
}

.detail-val {
  color: var(--text-main);
  font-weight: 500;
}

.location-actions {
  display: flex;
  gap: 0.75rem;
}

/* Footer */
.footer {
  background: #050811;
  border-top: 1px solid var(--border-subtle);
  padding: 4.5rem 0 2rem;
}

.footer-top {
  margin-bottom: 3.5rem;
}

.footer-tagline-text {
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-reg-list {
  font-size: 0.78rem;
  color: var(--text-dim);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer-heading {
  font-size: 1.05rem;
  color: #fff;
  margin-bottom: 1.25rem;
}

.footer-links, .footer-contact-list {
  list-style: none;
  font-size: 0.85rem;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.footer-links a:hover {
  color: var(--primary-cyan);
  padding-left: 4px;
}

.footer-contact-list li {
  margin-bottom: 0.65rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

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

.footer-subtext {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 0.25rem;
}

.footer-admin-link {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-dim);
  font-family: var(--font-main);
  font-size: 0.78rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.footer-admin-link:hover {
  border-color: var(--primary-cyan);
  color: var(--primary-cyan);
}

/* Modals */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 10, 20, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: modalFadeIn 0.25s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2.5rem;
  position: relative;
  animation: modalSlideUp 0.3s ease;
}

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

.modal-card-sm {
  max-width: 480px;
}

.modal-card-lg {
  max-width: 1000px;
}

.modal-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.35rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.modal-header {
  margin-bottom: 2rem;
}

.modal-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-cyan);
  margin-bottom: 0.35rem;
}

.modal-title {
  font-size: 1.75rem;
  margin-bottom: 0.35rem;
}

.modal-subtitle {
  font-size: 0.9rem;
}

/* Wizard Steps */
.wizard-steps {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 2.25rem;
}

.wizard-steps::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 1;
}

.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  position: relative;
  z-index: 2;
}

.step-num {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--text-dim);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: all var(--transition-fast);
}

.wizard-step.active .step-num {
  background: var(--primary-cyan);
  border-color: var(--primary-cyan);
  color: #fff;
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.5);
}

.wizard-step.completed .step-num {
  background: #22c55e;
  border-color: #22c55e;
  color: #fff;
}

.step-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-dim);
}

.wizard-step.active .step-title {
  color: var(--text-main);
}

.step-heading {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
}

.modal-footer-nav {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border-subtle);
}

.modal-footer-nav.between {
  justify-content: space-between;
}

.terms-box {
  background: rgba(30, 41, 59, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin-top: 1rem;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.82rem;
  color: #cbd5e1;
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  accent-color: var(--primary-cyan);
}

/* Success Card */
.success-icon-wrap {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.ref-badge-card {
  background: rgba(6, 182, 212, 0.1);
  border: 1px dashed rgba(6, 182, 212, 0.4);
  border-radius: var(--radius-md);
  padding: 1rem;
  margin: 1.5rem 0;
}

.ref-lbl {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ref-code {
  font-size: 1.35rem;
  color: var(--primary-cyan);
}

.success-next-steps {
  font-size: 0.85rem;
  line-height: 1.6;
}

/* Admin Dashboard Portal */
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  border-bottom: 1px solid var(--border-subtle);
  padding-bottom: 1.25rem;
  margin-bottom: 1.5rem;
}

.admin-title-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.admin-title-wrap i {
  font-size: 2rem;
}

.admin-title-wrap h3 {
  font-size: 1.35rem;
  margin-bottom: 0.15rem;
}

.admin-title-wrap p {
  font-size: 0.82rem;
}

.admin-actions-bar {
  display: flex;
  gap: 0.5rem;
}

.admin-nav-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 1.5rem;
}

.admin-tab {
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.admin-tab.active {
  color: var(--primary-cyan);
  border-bottom-color: var(--primary-cyan);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  text-align: left;
}

.admin-table th {
  background: rgba(30, 41, 59, 0.7);
  color: #cbd5e1;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border-subtle);
}

.admin-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  color: var(--text-main);
}

.admin-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.table-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
}

.table-badge.pending { background: rgba(234, 179, 8, 0.2); color: #eab308; }
.table-badge.verified { background: rgba(34, 197, 94, 0.2); color: #22c55e; }
.table-badge.open { background: rgba(6, 182, 212, 0.2); color: var(--primary-cyan); }

.empty-state {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-dim);
}

.empty-state i {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

/* Toast Alerts */
.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.toast {
  background: var(--bg-surface);
  border-left: 4px solid var(--primary-cyan);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 280px;
  max-width: 400px;
  animation: toastSlide 0.3s ease;
}

@keyframes toastSlide {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

.toast.success { border-left-color: #22c55e; }
.toast.error { border-left-color: #ef4444; }

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .hero-title {
    font-size: 2.75rem;
  }
  
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .coverage-hubs-grid {
    grid-template-columns: 1fr;
  }

  .enterprise-split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar-left, .top-bar-right {
    justify-content: center;
    width: 100%;
  }

  .navbar-container {
    height: 64px;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border-subtle);
    padding: 1.5rem;
    display: none;
    flex-direction: column;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    gap: 1rem;
  }

  .check-cov-nav {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .section {
    padding: 3.5rem 0;
  }

  .section-title {
    font-size: 1.85rem;
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

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

  .leader-card {
    flex-direction: column;
  }

  .coverage-input-bar {
    flex-direction: column;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .modal-card {
    padding: 1.5rem;
  }

  .toast-container {
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
  }
}