:root {
  --navy: #f0f8ff;
  --navy-light: #e1f0ff;
  --navy-mid: #cce5ff;
  --green: #1a7fd4;
  --green-dark: #1565b0;
  --blue: #004e9a;
  --blue-light: #1a7fd4;
  --orange: #f7941d;
  --sky: #00aeef;
  --sky-light: #4dc8f5;
  --white: #0a1a2e;
  --white-70: rgba(10,26,46,0.65);
  --white-30: rgba(10,26,46,0.3);
  --white-10: rgba(10,26,46,0.08);
  --white-5: rgba(10,26,46,0.04);
  --glass: rgba(255,255,255,0.7);
  --glass-border: rgba(0,78,154,0.2);
  --shadow-green: 0 0 40px rgba(0,174,239,0.15);
  --shadow-blue: 0 0 40px rgba(0,78,154,0.18);
  --text: #0a1a2e;
  --text-muted: rgba(10,26,46,0.6);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

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

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #e1f0ff; }
::-webkit-scrollbar-thumb { background: var(--sky); border-radius: 3px; }

/* Grid lines */
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image:
    linear-gradient(rgba(0,174,239,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,174,239,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none; z-index: 0;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 5%;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,78,154,0.12);
  box-shadow: 0 2px 20px rgba(0,78,154,0.08);
}

.nav-logo {
  display: flex; align-items: center; gap: 12px;
}

.nav-logo-img {
  height: 48px; width: auto;
}

.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a { color: var(--text-muted); text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--sky); }

.nav-cta {
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: white;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0,78,154,0.25);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,78,154,0.35); }

/* ── HERO ── */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 120px 5% 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #e8f4ff 40%, #d0eaff 100%);
}

.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 70% at 70% 50%, rgba(0,174,239,0.12) 0%, transparent 60%),
              radial-gradient(ellipse 50% 50% at 20% 80%, rgba(0,78,154,0.07) 0%, transparent 50%);
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: float 8s ease-in-out infinite;
}
.orb-1 { width: 400px; height: 400px; background: rgba(0,174,239,0.12); top: -100px; right: 10%; animation-delay: 0s; }
.orb-2 { width: 300px; height: 300px; background: rgba(0,78,154,0.08); bottom: 0; right: 30%; animation-delay: -3s; }
.orb-3 { width: 200px; height: 200px; background: rgba(247,148,29,0.06); top: 30%; right: 5%; animation-delay: -5s; }

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

.hero-content { position: relative; z-index: 2; max-width: 680px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,174,239,0.1);
  border: 1px solid rgba(0,174,239,0.3);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 13px; font-weight: 500; color: var(--blue);
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}

.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--sky);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--sky);
  animation: pulse 2s ease infinite;
}

@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }

h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 4.5vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  color: var(--blue);
  animation: fadeUp 0.8s 0.1s ease both;
}

h1 .accent { color: var(--sky); }
h1 .accent-blue { color: #1565b0; }

.hero-sub {
  font-size: 18px; color: var(--text-muted);
  margin-bottom: 16px;
  animation: fadeUp 0.8s 0.2s ease both;
}

.hero-tagline {
  font-family: 'Syne', sans-serif;
  font-size: 16px; font-style: italic;
  color: var(--orange);
  margin-bottom: 40px;
  animation: fadeUp 0.8s 0.3s ease both;
}

.hero-btns {
  display: flex; flex-wrap: wrap; gap: 14px;
  animation: fadeUp 0.8s 0.4s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: white; border: none;
  padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(0,78,154,0.28);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(0,78,154,0.4); }

.btn-secondary {
  background: rgba(0,78,154,0.07);
  color: var(--blue); border: 1.5px solid rgba(0,78,154,0.25);
  padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: all 0.25s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-secondary:hover { background: rgba(0,78,154,0.12); border-color: var(--sky); color: var(--sky); }

.btn-whatsapp {
  background: #25D366;
  color: white; border: none;
  padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.28);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.4); }

.hero-stats {
  position: relative; z-index: 2;
  display: flex; gap: 40px; margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(0,78,154,0.1);
  animation: fadeUp 0.8s 0.5s ease both;
}

.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 32px; font-weight: 800;
  color: var(--sky); line-height: 1;
}
.stat-label { font-size: 13px; color: var(--text-muted); margin-top: 4px; }

.hero-visual {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 50%;
  display: flex; align-items: center; justify-content: center;
  z-index: 1;
}

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

.globe-ring {
  position: absolute;
  border: 1px solid rgba(0,174,239,0.18);
  border-radius: 50%;
  animation: spin linear infinite;
}
.globe-ring:nth-child(1) { inset: 0; border-color: rgba(0,78,154,0.15); animation-duration: 20s; }
.globe-ring:nth-child(2) { inset: 40px; animation-duration: 15s; animation-direction: reverse; }
.globe-ring:nth-child(3) { inset: 100px; animation-duration: 25s; border-color: rgba(247,148,29,0.12); }

@keyframes spin { from { transform: rotateY(0) rotateX(20deg); } to { transform: rotateY(360deg) rotateX(20deg); } }

.globe-center {
  position: absolute; inset: 150px;
  background: radial-gradient(circle, rgba(0,174,239,0.18) 0%, rgba(240,248,255,0.8) 70%);
  border-radius: 50%;
  border: 2px solid rgba(0,174,239,0.3);
  box-shadow: 0 0 60px rgba(0,174,239,0.15), inset 0 0 40px rgba(0,174,239,0.08);
  display: flex; align-items: center; justify-content: center;
}

.globe-center-text {
  text-align: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 14px;
  color: var(--blue);
}

.float-card {
  position: absolute;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0,174,239,0.2);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 13px;
  white-space: nowrap;
  animation: floatCard 4s ease-in-out infinite;
  box-shadow: 0 4px 20px rgba(0,78,154,0.1);
}
.float-card:nth-child(5) { top: 60px; right: 40px; animation-delay: 0s; }
.float-card:nth-child(6) { bottom: 100px; left: 20px; animation-delay: -2s; }
.float-card:nth-child(7) { top: 200px; left: 0; animation-delay: -1s; }

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

.float-card-label { color: var(--text-muted); font-size: 11px; }
.float-card-value { color: var(--sky); font-weight: 700; font-size: 18px; margin-top: 2px; }

/* ── SECTIONS ── */
section { position: relative; z-index: 2; padding: 100px 5%; }

.section-badge {
  display: inline-block;
  background: rgba(0,174,239,0.08);
  border: 1px solid rgba(0,174,239,0.25);
  color: var(--blue);
  padding: 5px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 16px;
}

h2 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--blue);
}

.section-lead { font-size: 17px; color: var(--text-muted); max-width: 560px; }

.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,174,239,0.25), transparent);
  margin: 0 5%;
  position: relative; z-index: 2;
}

/* PACKAGES */
#home-packages { background: linear-gradient(180deg, #ffffff 0%, #f0f8ff 100%); }
#business-packages { background: #f0f8ff; }

.packages-header { text-align: center; margin-bottom: 60px; }
.packages-header .section-lead { margin: 0 auto; }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 1200px; margin: 0 auto;
}

.pkg-card {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,78,154,0.1);
  border-radius: 20px;
  padding: 32px 28px;
  transition: all 0.3s;
  position: relative; overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,78,154,0.06);
}

.pkg-card::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,174,239,0.03) 0%, transparent 60%);
  border-radius: inherit;
}

.pkg-card:hover {
  border-color: rgba(0,174,239,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,78,154,0.12), 0 0 30px rgba(0,174,239,0.08);
}

.pkg-card.featured {
  border-color: rgba(0,174,239,0.4);
  background: linear-gradient(135deg, rgba(0,78,154,0.05), rgba(0,174,239,0.05));
  box-shadow: 0 4px 30px rgba(0,174,239,0.15);
}

.pkg-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--orange);
  color: white; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.pkg-badge.best { background: var(--sky); color: white; }

.pkg-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0,78,154,0.2);
}

.pkg-name {
  font-family: 'Syne', sans-serif;
  font-size: 20px; font-weight: 700;
  margin-bottom: 4px; color: var(--blue);
}
.pkg-tagline { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }

.pkg-speed {
  font-family: 'Syne', sans-serif;
  font-size: 48px; font-weight: 800;
  color: var(--sky); line-height: 1; margin-bottom: 4px;
}
.pkg-speed span { font-size: 18px; color: var(--text-muted); }

.pkg-divider { height: 1px; background: rgba(0,78,154,0.08); margin: 20px 0; }

.pkg-features { list-style: none; margin-bottom: 28px; }
.pkg-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-muted);
  padding: 6px 0;
}
.pkg-features li::before {
  content: '✓';
  width: 20px; height: 20px;
  background: rgba(0,174,239,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--sky); font-weight: 700;
  flex-shrink: 0;
}

.pkg-price {
  font-family: 'Syne', sans-serif;
  font-size: 28px; font-weight: 800;
  margin-bottom: 4px; color: var(--blue);
}
.pkg-price span { color: var(--text-muted); font-size: 14px; font-weight: 400; }
.pkg-price-from { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }

.btn-pkg {
  width: 100%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  color: white; border: none;
  padding: 13px; border-radius: 10px;
  font-size: 14px; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: all 0.25s; display: block; text-align: center;
  box-shadow: 0 4px 16px rgba(0,78,154,0.2);
}
.btn-pkg:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,78,154,0.35); }

.btn-pkg.green {
  background: linear-gradient(135deg, var(--sky), #4dc8f5);
  color: white;
  box-shadow: 0 4px 16px rgba(0,174,239,0.25);
}
.btn-pkg.green:hover { box-shadow: 0 8px 24px rgba(0,174,239,0.4); }

/* CLIENTS */
#clients { background: linear-gradient(180deg, #f0f8ff 0%, #ffffff 100%); }

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px; margin-top: 50px;
  max-width: 900px; margin-left: auto; margin-right: auto;
}

.client-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,78,154,0.1);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 2px 16px rgba(0,78,154,0.06);
}

.client-card:hover {
  border-color: rgba(0,174,239,0.3);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,78,154,0.1);
}

.client-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin: 0 auto 14px;
}

.client-name {
  font-family: 'Syne', sans-serif;
  font-weight: 700; font-size: 15px; color: var(--blue);
}
.client-sector { font-size: 12px; color: var(--text-muted); margin-top: 4px; }

.clients-trust-banner {
  margin-top: 50px;
  background: linear-gradient(135deg, rgba(0,78,154,0.06), rgba(0,174,239,0.04));
  border: 1px solid rgba(0,174,239,0.2);
  border-radius: 16px;
  padding: 24px 32px;
  text-align: center;
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.clients-trust-banner p { color: var(--text-muted); font-size: 15px; }
.clients-trust-banner strong { color: var(--sky); }

/* COVERAGE */
#coverage { background: #ffffff; }

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: start;
  max-width: 1100px; margin: 0 auto;
}

.coverage-areas {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: 32px;
}

.area-pill {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,78,154,0.1);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 14px;
  display: flex; align-items: center; gap: 8px;
  transition: all 0.2s;
  color: var(--text-muted);
  box-shadow: 0 2px 10px rgba(0,78,154,0.05);
}
.area-pill:hover { border-color: rgba(0,174,239,0.3); color: var(--sky); }
.area-pill::before { content: '📍'; font-size: 14px; }

.industrial-area {
  margin-top: 20px;
  background: linear-gradient(135deg, rgba(247,148,29,0.07), rgba(247,148,29,0.03));
  border: 1px solid rgba(247,148,29,0.22);
  border-radius: 12px;
  padding: 16px 20px;
  display: flex; align-items: center; gap: 12px;
}
.industrial-area p { font-size: 14px; color: var(--text-muted); }
.industrial-area strong { color: var(--orange); }

.coverage-map {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,174,239,0.18);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  min-height: 400px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,78,154,0.08);
}

.coverage-map::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(0,174,239,0.06) 0%, transparent 70%);
}

.map-pulse {
  width: 120px; height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(0,174,239,0.4);
  display: flex; align-items: center; justify-content: center;
  position: relative; margin-bottom: 24px;
}
.map-pulse::before, .map-pulse::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0,174,239,0.2);
  animation: radar 3s ease-out infinite;
}
.map-pulse::before { inset: -20px; animation-delay: 0s; }
.map-pulse::after { inset: -40px; animation-delay: 0.5s; }

@keyframes radar {
  from { transform: scale(0.8); opacity: 0.8; }
  to { transform: scale(1.5); opacity: 0; }
}

.map-pulse-inner { font-size: 40px; }
.map-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 20px; margin-bottom: 8px; color: var(--blue); }
.map-sub { font-size: 14px; color: var(--text-muted); margin-bottom: 28px; }

/* FEATURES */
#features { background: linear-gradient(180deg, #f0f8ff 0%, #ffffff 100%); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px; margin-top: 50px;
}

.feature-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,78,154,0.08);
  border-radius: 18px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 2px 16px rgba(0,78,154,0.05);
}
.feature-card:hover {
  border-color: rgba(0,174,239,0.3);
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0,78,154,0.1);
}

.feature-icon { font-size: 36px; margin-bottom: 16px; display: block; }
.feature-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 16px; margin-bottom: 8px; color: var(--blue); }
.feature-desc { font-size: 13px; color: var(--text-muted); }

/* WHY US */
#why-us { background: #ffffff; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px; margin-top: 50px;
}

.why-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,78,154,0.08);
  border-radius: 18px;
  padding: 32px 28px;
  display: flex; gap: 20px;
  transition: all 0.3s;
  box-shadow: 0 2px 16px rgba(0,78,154,0.05);
}
.why-card:hover {
  border-color: rgba(0,174,239,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,78,154,0.1);
}

.why-icon {
  width: 56px; height: 56px; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(0,78,154,0.08), rgba(0,174,239,0.08));
  border: 1px solid rgba(0,174,239,0.2);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}

.why-title { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 17px; margin-bottom: 8px; color: var(--blue); }
.why-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* INDUSTRIES */
#industries { background: linear-gradient(180deg, #f0f8ff 0%, #ffffff 100%); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px; margin-top: 50px;
}

.industry-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,78,154,0.08);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(0,78,154,0.04);
}
.industry-card:hover {
  border-color: rgba(0,174,239,0.3);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,78,154,0.1);
}

.industry-icon { font-size: 32px; margin-bottom: 12px; display: block; }
.industry-name { font-family: 'Syne', sans-serif; font-weight: 600; font-size: 14px; color: var(--blue); }

/* CUSTOM SOLUTIONS */
#custom-solutions { background: #f0f8ff; }

.custom-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
  max-width: 1100px; margin: 0 auto;
}

.custom-list {
  list-style: none; margin-top: 28px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}

.custom-list li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text-muted);
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(0,78,154,0.08);
  border-radius: 8px;
  padding: 10px 14px;
  transition: all 0.2s;
}
.custom-list li:hover { border-color: rgba(0,174,239,0.25); color: var(--blue); }
.custom-list li::before { content: '→'; color: var(--sky); font-weight: 700; }

.custom-visual {
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(0,174,239,0.15);
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  box-shadow: 0 4px 24px rgba(0,78,154,0.08);
}

.services-available {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-top: 24px;
}

.serv-item {
  background: rgba(0,78,154,0.05);
  border: 1px solid rgba(0,78,154,0.1);
  border-radius: 12px;
  padding: 16px 12px;
  text-align: center;
  font-size: 12px; color: var(--text-muted);
  transition: all 0.2s;
}
.serv-item:hover { border-color: rgba(0,174,239,0.3); background: rgba(0,174,239,0.05); color: var(--blue); }
.serv-item .si-icon { font-size: 24px; display: block; margin-bottom: 8px; }

/* TEAM */
#team { background: linear-gradient(180deg, #ffffff 0%, #f0f8ff 100%); }

.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px; max-width: 800px; margin: 50px auto 0;
}

.team-card {
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(0,78,154,0.1);
  border-radius: 24px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,78,154,0.07);
}

.team-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--sky));
}

.team-card:hover {
  border-color: rgba(0,174,239,0.3);
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,78,154,0.12);
}

.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 32px; font-weight: 800; color: white;
  box-shadow: 0 0 24px rgba(0,78,154,0.25);
  border: 3px solid rgba(0,174,239,0.3);
}

.team-name { font-family: 'Syne', sans-serif; font-weight: 800; font-size: 22px; margin-bottom: 6px; color: var(--blue); }
.team-role { color: var(--sky); font-weight: 600; font-size: 14px; margin-bottom: 16px; }
.team-bio { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

/* DEVELOPED BY */
#developed-by {
  background: #f0f8ff;
  border-top: 1px solid rgba(0,78,154,0.08);
}

.dev-card {
  max-width: 700px; margin: 0 auto;
  text-align: center;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(0,78,154,0.12);
  border-radius: 24px;
  padding: 50px 40px;
  position: relative; overflow: hidden;
  box-shadow: 0 4px 30px rgba(0,78,154,0.08);
}

.dev-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(0,174,239,0.04) 0%, transparent 60%);
}

.dev-logo {
  width: 80px; height: 80px;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Syne', sans-serif; font-weight: 800; font-size: 24px; color: white;
  margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(0,78,154,0.2);
}

.dev-title { font-family: 'Syne', sans-serif; font-size: 28px; font-weight: 800; margin-bottom: 8px; color: var(--blue); }
.dev-sub { color: var(--text-muted); margin-bottom: 28px; }

.dev-services {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center;
  margin-bottom: 28px;
}

.dev-tag {
  background: rgba(0,78,154,0.06);
  border: 1px solid rgba(0,78,154,0.15);
  color: var(--blue);
  padding: 6px 14px; border-radius: 100px;
  font-size: 13px; font-weight: 500;
}

.dev-tagline { font-style: italic; color: var(--sky); font-size: 15px; font-weight: 600; }
.dev-link { display: inline-block; margin-top: 16px; color: var(--sky); font-weight: 600; text-decoration: none; font-size: 15px; }
.dev-link:hover { color: var(--blue); text-decoration: underline; }

/* FINAL CTA */
#final-cta {
  background: linear-gradient(135deg, rgba(0,78,154,0.06) 0%, rgba(0,174,239,0.04) 100%);
  border-top: 1px solid rgba(0,174,239,0.15);
  border-bottom: 1px solid rgba(0,174,239,0.15);
  text-align: center;
}

.cta-box { max-width: 800px; margin: 0 auto; }

.cta-contacts {
  display: flex; gap: 30px; justify-content: center;
  flex-wrap: wrap; margin: 40px 0;
}

.contact-item {
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(0,78,154,0.1);
  border-radius: 14px;
  padding: 20px 28px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 2px 16px rgba(0,78,154,0.06);
}

.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.contact-icon.blue { background: rgba(0,78,154,0.1); }
.contact-icon.green { background: rgba(37,211,102,0.12); }

.contact-label { font-size: 12px; color: var(--text-muted); margin-bottom: 2px; }
.contact-nums { font-family: 'Syne', sans-serif; font-weight: 700; font-size: 15px; line-height: 1.6; color: var(--blue); }

/* FOOTER */
footer {
  background: var(--blue);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 30px 5%;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
  position: relative; z-index: 2;
}

.footer-left { font-size: 14px; color: rgba(255,255,255,0.75); }
.footer-left strong { color: var(--sky-light); }
.footer-right { display: flex; gap: 24px; }
.footer-right a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-right a:hover { color: white; }

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.section-intro { margin-bottom: 60px; }

/* MOBILE */
.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  width: 24px; height: 2px;
  background: var(--blue); border-radius: 2px;
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .coverage-grid { grid-template-columns: 1fr; }
  .custom-grid { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-stats { gap: 24px; }
  .hero-content { max-width: 100%; }
}

@media (max-width: 600px) {
  section { padding: 70px 5%; }
  .hero-btns { flex-direction: column; }
  .btn-primary, .btn-secondary, .btn-whatsapp { justify-content: center; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .cta-contacts { flex-direction: column; }
  .dev-card { padding: 36px 24px; }
  .team-grid { grid-template-columns: 1fr; }
}