@import url('https://fonts.googleapis.com/css2?family=Sora:wght@300;400;500;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,300&display=swap');

:root {
  --primary: #0B4DA1;
  --primary-dark: #083A7A;
  --primary-light: #1A6FD4;
  --accent: #F5A623;
  --accent-dark: #D4891A;
  --accent-light: #FFBB4D;
  --teal: #0E8C72;
  --teal-light: #12B090;
  --white: #FFFFFF;
  --off-white: #F0F5FC;
  --light-gray: #E8EEF8;
  --mid-gray: #9AAAC4;
  --dark-gray: #4A5568;
  --text-primary: #0D1E3C;
  --text-secondary: #3D5173;
  --text-muted: #7A90B2;
  --border: rgba(11,77,161,0.12);
  --shadow-sm: 0 2px 8px rgba(11,77,161,0.08);
  --shadow-md: 0 8px 28px rgba(11,77,161,0.12);
  --shadow-lg: 0 20px 60px rgba(11,77,161,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --nav-h: 80px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6 { font-family: 'Sora', sans-serif; line-height: 1.2; }

a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== UTILITY ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 860px; margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px; border-radius: 50px; font-family: 'Sora', sans-serif;
  font-weight: 600; font-size: 15px; transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-accent { background: var(--accent); color: var(--text-primary); }
.btn-accent:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(245,166,35,0.35); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--off-white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-lg { padding: 18px 36px; font-size: 16px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 14px; border-radius: 50px; font-size: 13px; font-weight: 600;
  font-family: 'Sora', sans-serif;
}
.badge-primary { background: rgba(11,77,161,0.1); color: var(--primary); }
.badge-accent { background: rgba(245,166,35,0.15); color: #B87A10; }
.badge-teal { background: rgba(14,140,114,0.1); color: var(--teal); }
.badge-success { background: #E6F7F0; color: #0B7A48; }

.section-label {
  font-family: 'Sora', sans-serif; font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 12px; display: block;
}
.section-title {
  font-size: clamp(28px, 4vw, 44px); font-weight: 800;
  color: var(--text-primary); margin-bottom: 16px;
}
.section-sub {
  font-size: 18px; color: var(--text-secondary); max-width: 580px;
  line-height: 1.7;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h); transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.navbar.dark { background: rgba(11,30,60,0.95); backdrop-filter: blur(20px); }

.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); gap: 32px;
}

.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-logo-icon {
  width: 44px; height: 44px; background: var(--primary);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.nav-logo-icon::before {
  content: '';
  position: absolute; width: 28px; height: 28px;
  border: 3px solid var(--accent); border-radius: 50%;
  border-bottom-color: transparent;
  top: 4px; right: 4px;
}
.nav-logo-text { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 20px; color: var(--primary); }
.nav-logo-sub { font-size: 10px; color: var(--mid-gray); letter-spacing: 0.08em; font-weight: 600; text-transform: uppercase; }

.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  padding: 8px 14px; border-radius: 8px; font-size: 15px; font-weight: 500;
  color: var(--text-secondary); transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--primary); background: rgba(11,77,161,0.07); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-phone {
  font-family: 'Sora', sans-serif; font-weight: 700; color: var(--primary);
  font-size: 14px; display: flex; align-items: center; gap: 6px;
}
.nav-phone svg { color: var(--accent); }

.nav-hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  cursor: pointer; border-radius: 8px; transition: var(--transition);
}
.nav-hamburger span {
  width: 24px; height: 2px; background: var(--primary);
  border-radius: 2px; transition: var(--transition); display: block;
}

.mobile-menu {
  display: none; position: fixed; inset: 0; background: var(--white);
  z-index: 999; flex-direction: column; padding: 100px 24px 40px;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }
.mobile-menu .nav-links {
  flex-direction: column; align-items: flex-start; width: 100%;
  gap: 4px;
}
.mobile-menu .nav-links a {
  font-size: 20px; width: 100%; padding: 14px 16px; font-weight: 600;
}
.mobile-menu-cta { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  background: linear-gradient(135deg, #050F1F 0%, #0B2A5C 50%, #0D3D7A 100%);
  overflow: hidden; padding: var(--nav-h) 0 60px;
}
.hero-bg-shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.hero-circle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,166,35,0.15) 0%, transparent 70%);
}
.hero-circle-1 { width: 600px; height: 600px; right: -100px; top: -100px; }
.hero-circle-2 { width: 400px; height: 400px; left: -80px; bottom: -80px; background: radial-gradient(circle, rgba(26,111,212,0.2) 0%, transparent 70%); }
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-glow {
  position: absolute; width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,111,212,0.12) 0%, transparent 60%);
  top: 50%; left: 50%; transform: translate(-50%,-50%);
}

.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.hero-content { color: var(--white); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,166,35,0.15); border: 1px solid rgba(245,166,35,0.3);
  color: var(--accent-light); padding: 8px 16px; border-radius: 50px;
  font-size: 13px; font-weight: 600; margin-bottom: 28px;
}
.hero-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
.hero-title { font-size: clamp(36px, 5vw, 58px); font-weight: 800; line-height: 1.1; margin-bottom: 24px; }
.hero-title .accent-text { color: var(--accent); }
.hero-title .teal-text { color: #5DD4BB; }
.hero-desc { font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.75); margin-bottom: 36px; max-width: 500px; }
.hero-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.hero-stats { display: flex; gap: 32px; margin-top: 48px; padding-top: 36px; border-top: 1px solid rgba(255,255,255,0.1); }
.hero-stat-num { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800; color: var(--white); }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.55); }

.hero-visual { position: relative; }
.hero-card-stack { position: relative; }
.plan-card-display {
  background: rgba(255,255,255,0.07); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12); border-radius: 24px;
  padding: 28px; color: var(--white); position: relative; overflow: hidden;
}
.plan-card-display::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary-light));
}
.plan-card-popular-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: var(--text-primary);
  padding: 5px 12px; border-radius: 50px; font-size: 11px;
  font-weight: 700; margin-bottom: 16px;
}
.plan-card-speed { font-size: 48px; font-weight: 800; font-family: 'Sora', sans-serif; }
.plan-card-speed span { font-size: 20px; opacity: 0.7; }
.plan-card-price { font-size: 28px; font-weight: 700; color: var(--accent); }
.plan-card-price small { font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 400; }
.plan-features { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.8); }
.plan-features li::before { content: '✓'; width: 20px; height: 20px; background: rgba(93,212,187,0.2); color: #5DD4BB; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700; flex-shrink: 0; }

.floating-stat {
  position: absolute; background: var(--white); border-radius: 14px;
  padding: 12px 16px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 10px;
}
.floating-stat-1 { top: -20px; right: -20px; }
.floating-stat-2 { bottom: 20px; left: -30px; }
.floating-stat-icon {
  width: 36px; height: 36px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 18px;
}
.floating-stat-num { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px; color: var(--text-primary); }
.floating-stat-lbl { font-size: 11px; color: var(--text-muted); }

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--off-white); padding: 24px 0; border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.trust-bar-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; }
.trust-item-icon { font-size: 22px; }
.trust-item-text { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 14px; color: var(--text-secondary); }

/* ===== PLANS SECTION ===== */
.plans-section { padding: 100px 0; background: var(--white); }
.plans-header { text-align: center; margin-bottom: 60px; }
.plans-toggle {
  display: inline-flex; align-items: center; gap: 0; margin-top: 28px;
  background: var(--light-gray); border-radius: 50px; padding: 4px;
}
.plans-toggle-btn {
  padding: 10px 24px; border-radius: 50px; font-family: 'Sora', sans-serif;
  font-weight: 600; font-size: 14px; color: var(--text-secondary);
  transition: var(--transition); cursor: pointer;
}
.plans-toggle-btn.active { background: var(--primary); color: var(--white); box-shadow: var(--shadow-sm); }

.plans-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

.plan-card {
  border: 2px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px 24px; transition: var(--transition); position: relative;
  background: var(--white); display: flex; flex-direction: column;
}
.plan-card:hover { border-color: var(--primary-light); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan-card.popular {
  border-color: var(--primary); background: var(--primary);
  color: var(--white); transform: scale(1.03);
}
.plan-card.popular:hover { transform: scale(1.03) translateY(-6px); }

.popular-label {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: var(--text-primary); padding: 5px 16px;
  border-radius: 50px; font-size: 11px; font-weight: 700; white-space: nowrap;
  font-family: 'Sora', sans-serif;
}

.plan-icon { font-size: 28px; margin-bottom: 16px; }
.plan-name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 18px; margin-bottom: 4px; }
.plan-speed-val { font-size: 52px; font-weight: 800; font-family: 'Sora', sans-serif; line-height: 1; }
.plan-speed-unit { font-size: 16px; font-weight: 500; opacity: 0.7; }
.plan-price { margin-top: 12px; }
.plan-price-num { font-family: 'Sora', sans-serif; font-weight: 800; font-size: 28px; color: var(--accent); }
.plan-card.popular .plan-price-num { color: var(--accent-light); }
.plan-price-period { font-size: 14px; color: var(--text-muted); }
.plan-card.popular .plan-price-period { color: rgba(255,255,255,0.6); }
.plan-divider { border: none; border-top: 1px solid var(--border); margin: 20px 0; }
.plan-card.popular .plan-divider { border-color: rgba(255,255,255,0.15); }
.plan-feature-list { list-style: none; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.plan-feature-list li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.plan-card.popular .plan-feature-list li { color: rgba(255,255,255,0.85); }
.plan-feature-list li .check { width: 18px; height: 18px; border-radius: 50%; background: var(--off-white); color: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 10px; font-weight: 700; flex-shrink: 0; }
.plan-card.popular .plan-feature-list li .check { background: rgba(255,255,255,0.15); color: #5DD4BB; }
.plan-cta { margin-top: 24px; }

/* ===== FEATURES ===== */
.features-section { padding: 100px 0; background: var(--off-white); }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.feature-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; border: 1px solid var(--border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.feature-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: var(--transition);
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-icon {
  width: 60px; height: 60px; border-radius: 16px; margin-bottom: 20px;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
}
.feature-icon.blue { background: rgba(11,77,161,0.1); }
.feature-icon.amber { background: rgba(245,166,35,0.1); }
.feature-icon.teal { background: rgba(14,140,114,0.1); }
.feature-title { font-family: 'Sora', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.feature-desc { font-size: 15px; color: var(--text-secondary); line-height: 1.65; }

/* ===== COVERAGE ===== */
.coverage-section { padding: 100px 0; background: var(--white); }
.coverage-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.coverage-map {
  background: linear-gradient(135deg, #EBF3FF, #D4E6FF);
  border-radius: var(--radius-xl); padding: 40px; aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.coverage-map-placeholder {
  width: 100%; height: 100%; background: url("data:image/svg+xml,%3Csvg width='400' height='400' viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='200' cy='200' r='120' fill='none' stroke='%230B4DA1' stroke-width='1' stroke-dasharray='8 4' opacity='0.3'/%3E%3Ccircle cx='200' cy='200' r='80' fill='none' stroke='%230B4DA1' stroke-width='1' opacity='0.2'/%3E%3Ccircle cx='200' cy='200' r='40' fill='rgba(11,77,161,0.1)'/%3E%3Ccircle cx='200' cy='200' r='15' fill='%230B4DA1'/%3E%3Ccircle cx='160' cy='150' r='8' fill='%23F5A623'/%3E%3Ccircle cx='250' cy='170' r='8' fill='%23F5A623'/%3E%3Ccircle cx='140' cy='240' r='8' fill='%23F5A623'/%3E%3Ccircle cx='260' cy='250' r='8' fill='%23F5A623'/%3E%3Ccircle cx='200' cy='280' r='8' fill='%23F5A623'/%3E%3C/svg%3E") center/contain no-repeat;
}
.coverage-areas { margin-top: 28px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.coverage-area-tag {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; background: var(--off-white); border-radius: 10px;
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
}
.coverage-area-tag::before { content: '📍'; font-size: 14px; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 100px 0; background: var(--off-white); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 60px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; border: 1px solid var(--border); position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-quote {
  font-size: 40px; line-height: 1; color: var(--accent); margin-bottom: 16px;
  font-family: 'Sora', sans-serif; font-weight: 800;
}
.testimonial-text { font-size: 15px; line-height: 1.7; color: var(--text-secondary); margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Sora', sans-serif; font-weight: 700; font-size: 16px; color: var(--white);
}
.testimonial-name { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 15px; }
.testimonial-role { font-size: 12px; color: var(--text-muted); }
.testimonial-stars { color: var(--accent); margin-bottom: 16px; font-size: 14px; }

/* ===== CONTACT ===== */
.contact-section { padding: 100px 0; background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.contact-info-card {
  background: var(--primary); color: var(--white); border-radius: var(--radius-xl);
  padding: 48px 40px; position: sticky; top: 100px;
}
.contact-info-title { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.contact-info-sub { font-size: 15px; color: rgba(255,255,255,0.7); margin-bottom: 36px; }
.contact-info-items { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: rgba(255,255,255,0.12); display: flex; align-items: center;
  justify-content: center; font-size: 20px; flex-shrink: 0;
}
.contact-info-label { font-size: 12px; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
.contact-info-value { font-size: 15px; color: var(--white); font-weight: 500; margin-top: 2px; }

.contact-form { background: var(--off-white); border-radius: var(--radius-xl); padding: 48px 40px; border: 1px solid var(--border); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-family: 'Sora', sans-serif; font-weight: 600; font-size: 13px; color: var(--text-primary); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 14px 16px; border-radius: var(--radius);
  border: 1.5px solid var(--border); background: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 15px; color: var(--text-primary);
  transition: var(--transition); outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px rgba(11,77,161,0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }

/* ===== FOOTER ===== */
.footer { background: #050F1F; color: var(--white); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.footer-brand { }
.footer-brand-logo { margin-bottom: 16px; }
.footer-brand-logo .nav-logo-text { color: var(--white); }
.footer-brand-logo .nav-logo-sub { color: rgba(255,255,255,0.4); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin-bottom: 24px; max-width: 280px; }
.footer-social { display: flex; gap: 10px; }
.footer-social-btn {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center; font-size: 16px;
  transition: var(--transition);
}
.footer-social-btn:hover { background: var(--primary); border-color: var(--primary); }

.footer-heading { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 14px; color: var(--white); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); }

.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 14px; }
.footer-contact-icon { font-size: 16px; margin-top: 2px; }
.footer-contact-text { font-size: 14px; color: rgba(255,255,255,0.6); }

.footer-bottom {
  margin-top: 60px; padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom-text { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0; background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(245,166,35,0.15) 0%, transparent 60%);
}
.cta-banner-inner { position: relative; z-index: 2; text-align: center; color: var(--white); }
.cta-banner-title { font-size: clamp(28px, 4vw, 46px); font-weight: 800; margin-bottom: 16px; }
.cta-banner-sub { font-size: 18px; color: rgba(255,255,255,0.7); margin-bottom: 36px; }
.cta-banner-actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  padding: calc(var(--nav-h) + 60px) 0 80px;
  background: linear-gradient(135deg, #050F1F 0%, #0B2A5C 100%);
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 60px; background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.page-hero-content { text-align: center; color: var(--white); position: relative; z-index: 2; }
.page-hero-title { font-size: clamp(32px, 5vw, 56px); font-weight: 800; margin-bottom: 16px; }
.page-hero-sub { font-size: 18px; color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; }
.page-hero-breadcrumb {
  display: flex; align-items: center; gap: 8px; justify-content: center;
  margin-bottom: 20px; font-size: 13px; color: rgba(255,255,255,0.5);
}
.page-hero-breadcrumb a { color: var(--accent); }
.page-hero-breadcrumb span { color: rgba(255,255,255,0.3); }

/* ===== FAQ ===== */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 12px; overflow: hidden; }
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; transition: var(--transition);
  font-family: 'Sora', sans-serif; font-weight: 600; font-size: 16px;
  background: var(--white);
}
.faq-question:hover { background: var(--off-white); }
.faq-arrow { width: 28px; height: 28px; border-radius: 50%; background: var(--off-white); display: flex; align-items: center; justify-content: center; transition: var(--transition); flex-shrink: 0; }
.faq-item.open .faq-arrow { background: var(--primary); color: var(--white); transform: rotate(180deg); }
.faq-answer { padding: 0 24px; max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; font-size: 15px; color: var(--text-secondary); line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 400px; padding: 0 24px 20px; }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 32px; right: 32px; z-index: 9999;
  background: var(--primary); color: var(--white); padding: 16px 24px;
  border-radius: var(--radius); font-size: 15px; font-weight: 500;
  box-shadow: var(--shadow-lg); transform: translateY(100px); opacity: 0;
  transition: var(--transition); max-width: 320px;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast.success { background: var(--teal); }
.toast.error { background: #C53030; }

/* ===== ANIMATIONS ===== */
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.6; transform: scale(0.9); } }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

.animate-float { animation: float 4s ease-in-out infinite; }
.fade-up { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== WHATSAPP FAB ===== */
.whatsapp-fab {
  position: fixed; bottom: 28px; right: 28px; z-index: 998;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4); transition: var(--transition);
  text-decoration: none;
}
.whatsapp-fab:hover { transform: scale(1.1); box-shadow: 0 12px 32px rgba(37,211,102,0.5); }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 28px; left: 28px; z-index: 998;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: none; align-items: center; justify-content: center; font-size: 18px;
  box-shadow: var(--shadow-md); transition: var(--transition); cursor: pointer;
}
.back-to-top.show { display: flex; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ===== ADDITIONAL RESPONSIVE REFINEMENTS ===== */
@media (max-width: 640px) {
  .container {
    padding: 0 20px;
  }
  .page-hero {
    padding: calc(var(--nav-h) + 40px) 0 50px;
  }
  .btn {
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
  .btn-sm {
    padding: 8px 16px;
  }
  .btn-lg {
    padding: 14px 28px;
  }
  .hero-stats {
    justify-content: space-between;
    gap: 16px;
  }
  .hero-stat-num {
    font-size: 22px;
  }
  .hero-stat-label {
    font-size: 11px;
  }
  .plans-toggle {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    background: transparent;
    padding: 0;
  }
  .plans-toggle-btn {
    background: var(--light-gray);
    padding: 8px 18px;
  }
  .plan-card {
    padding: 24px 16px;
  }
  .plan-speed-val {
    font-size: 40px;
  }
  .feature-card {
    padding: 28px 20px;
  }
  .contact-info-card {
    padding: 28px 24px;
  }
  .contact-form {
    padding: 28px 24px;
  }
}

@media (max-width: 360px) {
  :root {
    --nav-h: 60px;
  }
  .container {
    padding: 0 16px;
  }
  .btn {
    font-size: 13px;
    padding: 10px 18px;
  }
  .btn-lg {
    font-size: 14px;
    padding: 12px 24px;
  }
  .page-hero-title {
    font-size: 28px;
  }
  .page-hero-sub {
    font-size: 15px;
  }
  .section-title {
    font-size: 24px;
  }
  .hero-title {
    font-size: 32px;
  }
  .hero-desc {
    font-size: 15px;
  }
  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .plan-card .plan-name {
    font-size: 16px;
  }
  .plan-price-num {
    font-size: 24px;
  }
  .feature-title {
    font-size: 18px;
  }
  .testimonial-card {
    padding: 24px;
  }
  .footer-grid {
    gap: 24px;
  }
  .footer-desc {
    font-size: 13px;
  }
  .whatsapp-fab {
    width: 48px;
    height: 48px;
    font-size: 24px;
    bottom: 20px;
    right: 20px;
  }
  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 16px;
    bottom: 20px;
    left: 20px;
  }
  .comparison-table-wrapper {
    font-size: 12px;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 6px 8px;
  }
}

/* Ensure comparison table doesn't overflow on any screen */
.comparison-table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Better tap targets on mobile */
@media (hover: none) and (pointer: coarse) {
  .nav-links a,
  .btn,
  .footer-links a,
  .faq-question {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* FIX: Keep mobile menu links visible */
.mobile-menu .nav-links {
    display: flex !important;
}

/* FIX: Prevent background scrolling when menu is open */
body.menu-open {
    overflow: hidden;
}

/* ===== ABOUT PAGE SPECIFICS ===== */
.about-section { padding: 80px 0; }
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 100px; }
.about-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.about-text { color: var(--text-secondary); line-height: 1.8; margin-bottom: 20px; }

.stat-box { border-radius: var(--radius-lg); padding: 36px 24px; text-align: center; }
.stat-box.primary { background: var(--primary); color: white; }
.stat-box.accent { background: var(--accent); color: var(--text-primary); }
.stat-box.teal { background: var(--teal); color: white; }
.stat-box.outline { background: var(--off-white); border: 1px solid var(--border); }
.stat-number { font-size: 48px; font-weight: 800; font-family: 'Sora', sans-serif; }
.stat-box.outline .stat-number { color: var(--primary); }
.stat-label { font-size: 14px; margin-top: 8px; }
.stat-box.primary .stat-label, .stat-box.teal .stat-label { color: rgba(255,255,255,0.7); }
.stat-box.accent .stat-label { color: rgba(0,0,0,0.6); }
.stat-box.outline .stat-label { color: var(--text-muted); }

.values-wrapper { margin-bottom: 100px; }
.team-wrapper { margin-bottom: 100px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 60px; }
  .hero-visual { display: none; }
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .contact-info-card { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .nav-links, .nav-phone, .nav-cta .btn { display: none; }
  .nav-hamburger { display: flex; }
  .plans-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .plan-card.popular { transform: scale(1); }
  .features-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .trust-bar-inner { gap: 24px; }
  .contact-form { padding: 32px 24px; }
  .contact-info-card { padding: 36px 28px; }
}

@media (max-width: 480px) {
  .plans-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-banner-actions { flex-direction: column; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .coverage-areas { grid-template-columns: 1fr; }
}

/* ==========================================================================
   About Section: Story & Stats Responsive Layout
   ========================================================================== */

/* 1. Mobile-First Layout (Default) */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr; /* 1 column layout for mobile */
  gap: 2.5rem; /* Space between the text and the stats */
  margin-bottom: 4rem;
}

.about-stats-grid {
  display: grid;
  /* Automatically fits columns based on screen width, down to 140px */
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); 
  gap: 1.5rem;
}

/* Optional: Base styling for the stat boxes if you don't have it yet */
.stat-box {
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  background-color: #f8f9fa; /* Light fallback background */
  border: 1px solid #eaeaea;
  transition: transform 0.3s ease;
}

.stat-box:hover {
  transform: translateY(-5px);
}

.stat-number {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.9rem;
  color: #666;
}

/* 2. Tablet Layout (Screens larger than 768px) */
@media (min-width: 768px) {
  .about-stats-grid {
    /* Lock stats into a perfect 2x2 grid on medium screens */
    grid-template-columns: repeat(2, 1fr); 
  }
}

/* 3. Desktop Layout (Screens larger than 992px) */
@media (min-width: 992px) {
  .about-story-grid {
    /* Split the main section into 2 equal columns */
    grid-template-columns: 1fr 1fr; 
    align-items: center; /* Vertically align text and stats */
    gap: 4rem;
  }
}

/* ==========================================================================
   Support Page Responsive Layouts
   ========================================================================== */

/* 1. Mobile-First Layout (Default) */
.support-channels-grid,
.setup-guides-grid,
.ticket-layout-grid {
  display: grid;
  grid-template-columns: 1fr; /* Single column on mobile */
  gap: 1.5rem;
}

.support-channels-grid {
  margin-bottom: 5rem; /* 80px equivalent */
}

/* 2. Tablet Layout (Screens larger than 768px) */
@media (min-width: 768px) {
  .support-channels-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .setup-guides-grid {
    /* 2 columns on medium screens so cards aren't stretched too wide */
    grid-template-columns: repeat(2, 1fr); 
  }
}

/* 3. Desktop Layout (Screens larger than 992px) */
@media (min-width: 992px) {
  .support-channels-grid,
  .setup-guides-grid {
    /* Full 3-column layout on large screens */
    grid-template-columns: repeat(3, 1fr); 
  }

  .ticket-layout-grid {
    /* Asymmetrical 2-column layout for the ticket form */
    grid-template-columns: 1fr 1.5fr; 
    align-items: start;
    gap: 3.75rem; /* 60px equivalent */
  }
}

/* ==========================================================================
   Support Page Responsive Layouts
   ========================================================================== */

/* 1. Mobile-First Layout (Default) */
.support-channels-grid,
.setup-guides-grid,
.ticket-layout-grid {
  display: grid;
  grid-template-columns: 1fr; /* Single column on mobile */
  gap: 1.5rem;
}

.support-channels-grid {
  margin-bottom: 5rem; /* 80px equivalent */
}

/* 2. Tablet Layout (Screens larger than 768px) */
@media (min-width: 768px) {
  .support-channels-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  
  .setup-guides-grid {
    /* 2 columns on medium screens so cards aren't stretched too wide */
    grid-template-columns: repeat(2, 1fr); 
  }
}

/* 3. Desktop Layout (Screens larger than 992px) */
@media (min-width: 992px) {
  .support-channels-grid,
  .setup-guides-grid {
    /* Full 3-column layout on large screens */
    grid-template-columns: repeat(3, 1fr); 
  }

  .ticket-layout-grid {
    /* Asymmetrical 2-column layout for the ticket form */
    grid-template-columns: 1fr 1.5fr; 
    align-items: start;
    gap: 3.75rem; /* 60px equivalent */
  }
}

/* ==========================================================================
   Contact Page Responsive Layouts
   ========================================================================== */

/* 1. Mobile-First Layout (Default) */
.contact-cards-grid {
  display: grid;
  grid-template-columns: 1fr; /* Single column for mobile */
  gap: 1.5rem;
  margin-bottom: 5rem; /* 80px equivalent */
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr; /* Stacks the info card above the form */
  gap: 3rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr; /* Stacks Name and Phone inputs */
  gap: 1rem;
}

/* 2. Tablet Layout (Screens larger than 768px) */
@media (min-width: 768px) {
  .contact-cards-grid {
    grid-template-columns: repeat(2, 1fr); /* 2x2 grid for contact cards */
  }
  
  .form-row {
    grid-template-columns: repeat(2, 1fr); /* Side-by-side inputs */
  }
}

/* 3. Desktop Layout (Screens larger than 992px) */
@media (min-width: 992px) {
  .contact-cards-grid {
    grid-template-columns: repeat(4, 1fr); /* Full 4-column row */
  }

  .contact-inner {
    grid-template-columns: 1fr 1.5fr; /* Info on left, form on right */
    align-items: start;
    gap: 4rem;
  }
}