/* ===== CSS VARIABLES ===== */
:root {
  --color-primary: #0057D9;
  --color-secondary: #071A33;
  --color-background: #F5F9FF;
  --color-accent: #38BDF8;
  --color-text: #0F172A;
  --color-muted: #64748B;
  --color-border: #E2E8F0;
  --color-white: #FFFFFF;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: 0.25s ease;
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 800;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 700;
  line-height: 1.3;
}

p {
  color: var(--color-muted);
  line-height: 1.7;
}

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

section {
  padding: 96px 0;
}

.section-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-subtitle {
  max-width: 600px;
  margin-bottom: 48px;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary);
  color: white;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 18px 40px rgba(0, 87, 217, 0.25);
  transition: 0.25s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 50px rgba(0, 87, 217, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--color-primary);
  border: 1px solid #D7E4FF;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 15px;
  transition: 0.25s ease;
}

.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0, 87, 217, 0.12);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.7);
  transition: 0.3s ease;
}

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

.logo {
  font-size: 20px;
  font-weight: 800;
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  /* Force exact site blue #0057D9 */
  filter: brightness(0) saturate(100%) invert(21%) sepia(96%) saturate(2635%) hue-rotate(211deg) brightness(91%) contrast(101%);
}

.footer .logo-img {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--color-muted);
  transition: 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-primary);
}

.nav-cta {
  background: var(--color-primary);
  color: white !important;
  border-radius: 999px;
  padding: 12px 22px !important;
  font-weight: 700 !important;
  box-shadow: 0 12px 30px rgba(0, 87, 217, 0.25);
}

.nav-cta:hover {
  transform: translateY(-2px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}

.hamburger span {
  width: 24px;
  height: 2.5px;
  background: var(--color-text);
  border-radius: 4px;
  transition: 0.3s ease;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--color-border);
  padding: 24px;
  flex-direction: column;
  gap: 16px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--color-text);
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
}

.mobile-menu .btn-primary {
  text-align: center;
  justify-content: center;
  margin-top: 8px;
}

/* ===== HERO ===== */
.hero {
  padding-top: 160px;
  padding-bottom: 96px;
  background:
    radial-gradient(circle at 75% 20%, rgba(56, 189, 248, 0.20), transparent 35%),
    radial-gradient(circle at 10% 10%, rgba(0, 87, 217, 0.10), transparent 30%),
    linear-gradient(180deg, #FFFFFF 0%, #F5F9FF 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content h1 span {
  color: var(--color-primary);
}

.hero-subtext {
  margin-top: 20px;
  font-size: 17px;
  max-width: 480px;
}

.hero-trust-line {
  margin-top: 12px;
  font-size: 14px;
  color: var(--color-muted);
  font-style: italic;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.hero-badges {
  display: flex;
  gap: 10px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--color-text);
  font-size: 13px;
  font-weight: 500;
}

/* Hero Wi-Fi Visual */
.hero-visual {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wifi-globe {
  position: relative;
  width: 500px;
  height: 500px;
}

.wifi-ring {
  position: absolute;
  border-radius: 50%;
  border: 2.5px solid rgba(0, 87, 217, 0.15);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulseRing 4s ease-in-out infinite;
}

.wifi-ring-1 {
  width: 140px;
  height: 140px;
  border-color: rgba(0, 87, 217, 0.35);
  animation-delay: 0s;
}

.wifi-ring-2 {
  width: 250px;
  height: 250px;
  border-color: rgba(0, 87, 217, 0.22);
  animation-delay: 0.5s;
}

.wifi-ring-3 {
  width: 370px;
  height: 370px;
  border-color: rgba(56, 189, 248, 0.18);
  animation-delay: 1s;
}

.wifi-ring-4 {
  width: 500px;
  height: 500px;
  border-color: rgba(56, 189, 248, 0.10);
  animation-delay: 1.5s;
}

@keyframes pulseRing {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.06); opacity: 0.6; }
}

.wifi-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 16px 50px rgba(0, 87, 217, 0.4);
  z-index: 5;
  animation: coreGlow 3s ease-in-out infinite;
}

@keyframes coreGlow {
  0%, 100% { box-shadow: 0 12px 40px rgba(0, 87, 217, 0.35); }
  50% { box-shadow: 0 12px 60px rgba(0, 87, 217, 0.55), 0 0 80px rgba(56, 189, 248, 0.2); }
}

/* Orbit Dots */
.orbit-dot {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: white;
  display: grid;
  place-items: center;
  color: var(--color-primary);
  box-shadow: 0 10px 30px rgba(7, 26, 51, 0.14);
  z-index: 6;
  animation: orbitFloat 6s ease-in-out infinite;
  border: 2px solid var(--color-border);
}

.orbit-dot-1 { top: 5%; left: 50%; transform: translateX(-50%); animation-delay: 0s; }
.orbit-dot-2 { top: 20%; right: 8%; animation-delay: 1s; }
.orbit-dot-3 { bottom: 20%; right: 5%; animation-delay: 2s; }
.orbit-dot-4 { bottom: 5%; left: 50%; transform: translateX(-50%); animation-delay: 3s; }
.orbit-dot-5 { bottom: 20%; left: 5%; animation-delay: 4s; }
.orbit-dot-6 { top: 20%; left: 8%; animation-delay: 5s; }

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

.orbit-dot-1, .orbit-dot-4 {
  animation-name: orbitFloatCenter;
}

@keyframes orbitFloatCenter {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: white;
  padding: 12px;
}

/* Floating Cards */
.float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.8);
  border-radius: 22px;
  padding: 14px 18px;
  box-shadow: 0 18px 50px rgba(7, 26, 51, 0.14);
  z-index: 10;
  animation: floatSoft 5s ease-in-out infinite;
}

.float-card-1 {
  left: 0;
  top: 50%;
}

.float-card-2 {
  right: 2%;
  bottom: 60px;
  animation-delay: 2.5s;
}

.float-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 2px;
}

.float-card p {
  font-size: 12px;
  color: var(--color-muted);
  line-height: 1.4;
}

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

/* ===== PEOPLE WE CONNECT ===== */
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.customer-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(7, 26, 51, 0.08);
  transition: 0.25s ease;
}

.customer-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(0, 87, 217, 0.15);
}

.customer-card-img {
  height: 220px;
  width: 100%;
  overflow: hidden;
}

.customer-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease;
}

.customer-card:hover .customer-card-img img {
  transform: scale(1.05);
}

.customer-card-img .img-placeholder {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
}

.customer-card:hover .customer-card-img .img-placeholder {
  transform: scale(1.05);
  transition: 0.3s ease;
}

.customer-card-body {
  padding: 24px;
}

.customer-card-body h3 {
  margin-bottom: 8px;
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-image {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(7, 26, 51, 0.14);
  height: 100%;
  min-height: 380px;
  max-height: 520px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image .img-placeholder {
  background: linear-gradient(135deg, #071A33, #0057D9);
}

.about-text p {
  margin-bottom: 20px;
}

.highlight-boxes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.highlight-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 20px;
  padding: 16px 20px;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.highlight-box i {
  color: var(--color-primary);
}

/* Team - Expanded Cards */
.team-section {
  margin-top: 64px;
}

.team-section h3 {
  margin-bottom: 32px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.team-grid-expanded {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}

.team-card-expanded {
  display: grid;
  grid-template-columns: 280px 1fr;
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(7, 26, 51, 0.08);
  transition: 0.25s ease;
}

.team-card-expanded:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 87, 217, 0.12);
}

.team-card-expanded-img {
  height: 100%;
  min-height: 320px;
  overflow: hidden;
}

.team-card-expanded-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-expanded-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.team-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
  width: fit-content;
}

.team-card-expanded-body h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
}

.team-card-expanded-body .role {
  font-size: 14px;
  color: var(--color-primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card-expanded-body p {
  font-size: 14px;
  margin-bottom: 16px;
}

.team-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.team-highlights span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--color-background);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-text);
}

.team-highlights span i {
  color: var(--color-primary);
}

/* ===== SERVICES ===== */
.services-section {
  background: var(--color-background);
}

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

.service-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 28px;
  padding: 28px;
  transition: 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 87, 217, 0.35);
  box-shadow: 0 24px 60px rgba(0, 87, 217, 0.12);
}

.service-icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0057D9, #38BDF8);
  color: white;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 22px;
}

.service-card h3 {
  margin-bottom: 10px;
}

/* ===== PREMIUM STORY ===== */
.premium-story {
  background:
    linear-gradient(rgba(7, 26, 51, 0.88), rgba(7, 26, 51, 0.88)),
    linear-gradient(135deg, #071A33, #0057D9);
  background-size: cover;
  background-position: center;
  color: white;
}

.premium-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.premium-story h2 {
  color: white;
  margin-bottom: 20px;
}

.premium-story .section-label {
  color: var(--color-accent);
}

.premium-story p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 28px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 28px;
  padding: 28px;
  color: white;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.checklist-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
}

.checklist-item i {
  color: var(--color-accent);
  font-size: 18px;
}

/* Equipment Slider */
.equipment-slider {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  border: 3px solid rgba(255, 255, 255, 0.15);
}

.equipment-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: grab;
}

.equipment-track.grabbing {
  cursor: grabbing;
  transition: none;
}

.equipment-slide {
  min-width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.equipment-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

.equipment-slide .img-placeholder {
  background: linear-gradient(135deg, rgba(0, 87, 217, 0.4), rgba(56, 189, 248, 0.3));
  font-size: 14px;
}

.equipment-controls {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.eq-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: none;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: var(--color-secondary);
  transition: 0.25s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.eq-arrow:hover {
  background: white;
  transform: scale(1.1);
}

.equipment-dots {
  display: flex;
  gap: 8px;
}

.eq-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
  padding: 0;
}

.eq-dot.active {
  background: white;
  transform: scale(1.3);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* ===== PLANS ===== */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.plan-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 30px;
  padding: 32px;
  box-shadow: 0 18px 50px rgba(7, 26, 51, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: 0.25s ease;
}

.plan-card:hover {
  transform: translateY(-4px);
}

.plan-card.featured {
  background: var(--color-secondary);
  color: white;
  border-color: rgba(56, 189, 248, 0.35);
  box-shadow: 0 28px 80px rgba(0, 87, 217, 0.22);
}

.plan-card.featured p {
  color: rgba(255, 255, 255, 0.7);
}

.plan-card.featured .plan-price {
  color: var(--color-accent);
}

.plan-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 12px;
  color: inherit;
}

.plan-price {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 12px;
  line-height: 1.1;
}

.plan-card p {
  font-size: 14px;
  margin-bottom: 0;
  flex: 1;
}

.plan-card .btn-primary {
  width: 100%;
  justify-content: center;
  font-size: 14px;
  padding: 12px 20px;
}

.plan-card.featured .btn-primary {
  background: var(--color-accent);
  color: var(--color-secondary);
}

/* Plan Icons */
.plan-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(0, 87, 217, 0.1), rgba(56, 189, 248, 0.1));
  display: grid;
  place-items: center;
  color: var(--color-primary);
  margin-bottom: 18px;
  border: 1px solid rgba(0, 87, 217, 0.15);
}

.plan-icon.featured-icon {
  background: linear-gradient(135deg, rgba(56, 189, 248, 0.2), rgba(0, 87, 217, 0.15));
  color: var(--color-accent);
  border-color: rgba(56, 189, 248, 0.3);
}

.plan-card.featured .plan-icon {
  background: rgba(56, 189, 248, 0.15);
  border-color: rgba(56, 189, 248, 0.3);
  color: var(--color-accent);
}

/* Plan Dot (connection point) */
.plan-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--color-primary);
  margin-top: 20px;
  position: relative;
  box-shadow: 0 0 0 4px rgba(0, 87, 217, 0.15);
  animation: dotPulse 2s ease-in-out infinite;
}

.plan-card.featured .plan-dot {
  background: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2);
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0, 87, 217, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(0, 87, 217, 0.08); }
}

/* Plans Wrapper */
.plans-wrapper {
  position: relative;
}

/* SVG Paths */
.plans-paths {
  margin-top: -8px;
  margin-bottom: -8px;
}

.plans-svg {
  width: 100%;
  height: auto;
  display: block;
}

.plan-path {
  stroke-dashoffset: 0;
  animation: dashFlow 3s linear infinite;
}

@keyframes dashFlow {
  0% { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: -28; }
}

/* Big CTA Button */
.plans-cta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.plans-cta-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--color-primary);
  color: white;
  border-radius: 999px;
  padding: 18px 36px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 20px 50px rgba(0, 87, 217, 0.3);
  transition: 0.3s ease;
  text-decoration: none;
}

.plans-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 26px 60px rgba(0, 87, 217, 0.4);
}

.plans-cta-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
}

.plans-cta-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.plans-cta-text strong {
  font-size: 17px;
  font-weight: 700;
}

.plans-cta-text small {
  font-size: 13px;
  opacity: 0.8;
  font-weight: 400;
}

/* ===== COVERAGE ===== */
.coverage-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
}

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

.stat-card {
  background: white;
  border-radius: 24px;
  border: 1px solid var(--color-border);
  padding: 28px;
  text-align: center;
  transition: 0.25s ease;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0, 87, 217, 0.1);
}

.stat-card i {
  font-size: 32px;
  color: var(--color-primary);
  margin-bottom: 14px;
}

.stat-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--color-text);
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: white;
  border-radius: 28px;
  border: 1px solid var(--color-border);
  padding: 28px;
  box-shadow: 0 18px 50px rgba(7, 26, 51, 0.07);
  transition: 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
}

.testimonial-card .quote {
  font-size: 16px;
  color: var(--color-text);
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.6;
}

.testimonial-card .author {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-primary);
}

.testimonial-card .author-role {
  font-size: 13px;
  color: var(--color-muted);
}

/* ===== CTA ===== */
.cta-section {
  padding: 48px 0 96px;
}

.cta-inner {
  background:
    radial-gradient(circle at 20% 20%, rgba(56, 189, 248, 0.25), transparent 35%),
    radial-gradient(circle at 80% 50%, rgba(0, 87, 217, 0.30), transparent 40%),
    var(--color-secondary);
  color: white;
  border-radius: 36px;
  padding: 80px 48px;
  text-align: center;
}

.cta-inner h2 {
  color: white;
  margin-bottom: 16px;
}

.cta-inner p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-buttons .btn-primary {
  background: white;
  color: var(--color-primary);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn-secondary {
  border-color: rgba(255, 255, 255, 0.3);
  color: white;
  background: transparent;
}

.cta-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ===== PLATFORMS ===== */
.platforms-section {
  background: var(--color-background);
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.platform-card {
  background: white;
  border: 1px solid var(--color-border);
  border-radius: 24px;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  transition: 0.25s ease;
  box-shadow: 0 8px 30px rgba(7, 26, 51, 0.06);
}

.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px rgba(0, 87, 217, 0.1);
  border-color: rgba(0, 87, 217, 0.2);
}

.platform-card img {
  height: 80px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
}

.platform-card p {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-secondary);
  color: white;
  padding: 72px 0 32px;
}

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

.footer-brand p {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 12px;
  font-size: 14px;
  max-width: 280px;
}

.footer h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.footer-links a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 10px;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  background: var(--color-primary);
  color: white;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 45px rgba(0, 87, 217, 0.35);
  z-index: 1000;
  transition: 0.25s ease;
  font-size: 26px;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 22px 55px rgba(0, 87, 217, 0.45);
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .wifi-globe {
    width: 400px;
    height: 400px;
  }

  .wifi-ring-3 { width: 300px; height: 300px; }
  .wifi-ring-4 { width: 400px; height: 400px; }

  .about-image {
    min-height: 320px;
    max-height: 420px;
  }

  .team-card-expanded {
    grid-template-columns: 220px 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .premium-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .plans-paths {
    display: none;
  }

  .plans-cta {
    margin-top: 32px;
  }

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

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    padding-top: 130px;
    padding-bottom: 64px;
  }

  .hero h1 {
    font-size: 42px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .wifi-globe {
    width: 300px;
    height: 300px;
  }

  .wifi-ring-1 { width: 100px; height: 100px; }
  .wifi-ring-2 { width: 170px; height: 170px; }
  .wifi-ring-3 { width: 240px; height: 240px; }
  .wifi-ring-4 { width: 300px; height: 300px; }

  .wifi-core {
    width: 70px;
    height: 70px;
  }

  .orbit-dot {
    width: 36px;
    height: 36px;
  }

  .about-image {
    min-height: 280px;
    max-height: 360px;
  }

  .team-card-expanded {
    grid-template-columns: 1fr;
  }

  .team-card-expanded-img {
    min-height: 280px;
  }

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

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

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

  .plans-paths {
    display: none;
  }

  .plans-cta {
    margin-top: 32px;
  }

  .plans-cta-btn {
    padding: 16px 24px;
    gap: 12px;
  }

  .plans-cta-text strong {
    font-size: 15px;
  }

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

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-inner {
    padding: 48px 24px;
    border-radius: 24px;
  }

}
