/* ================================================================
   SMARTEC INTERNET PERU — Design System CSS
   ================================================================ */

/* === 1. VARIABLES === */
:root {
  --navy:         #0A2540;
  --blue:         #1B5EBD;
  --blue-light:   #E8F4FF;
  --orange:       #F55F25;
  --orange-soft:  #FF8C5A;
  --white:        #FFFFFF;
  --off-white:    #F8FAFB;
  --gray-bg:      #F5F7FA;
  --gray-text:    #4A5568;
  --text:         #1A202C;
  --green:        #22C55E;
  --border:       #E2E8F0;

  --font-d: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-b: 'DM Sans', system-ui, sans-serif;
  --font-m: 'JetBrains Mono', monospace;

  --max-w:     1280px;
  --pad-x:     clamp(20px, 4vw, 48px);
  --sec-py:    clamp(56px, 7vw, 96px);

  --shadow-sm: 0 2px 8px rgba(10,37,64,0.06);
  --shadow-md: 0 4px 20px rgba(10,37,64,0.10);
  --shadow-lg: 0 8px 40px rgba(10,37,64,0.18);

  --r:    12px;
  --r-sm: 8px;
  --r-lg: 20px;
  --r-f:  9999px;
  --t:    0.25s ease;
}

/* === 2. RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* === 3. CONTAINER === */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* === 4. SECTION LABELS === */
.section-label {
  display: inline-block;
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.section-title {
  font-family: var(--font-d);
  font-size: clamp(26px, 3.8vw, 44px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.12;
  margin-bottom: 14px;
  text-wrap: pretty;
}
.section-sub {
  font-size: clamp(14px, 1.6vw, 17px);
  color: var(--gray-text);
  line-height: 1.7;
  max-width: 580px;
}

/* === 5. BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--r-sm);
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  transition: all var(--t);
  white-space: nowrap;
  cursor: pointer;
}
.btn-lg { padding: 14px 26px; font-size: 15px; }
.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(245,95,37,0.30);
}
.btn-orange:hover {
  background: #e0521a;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,95,37,0.42);
}
.btn-orange:active { transform: scale(0.97); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.75);
}
.btn-blue { background: var(--blue); color: var(--white); }
.btn-blue:hover { background: #154faa; transform: translateY(-1px); }
.btn-outline-blue {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline-blue:hover { background: var(--blue-light); }
.btn-green { background: #25D366; color: var(--white); box-shadow: 0 4px 16px rgba(37,211,102,0.3); }
.btn-green:hover { background: #1ebf5b; transform: translateY(-1px); }
.btn-full { width: 100%; justify-content: center; }

/* === 6. NAVBAR === */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.navbar.scrolled {
  background: rgba(8,28,56,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(255,255,255,0.06);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.navbar__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 15px var(--pad-x);
}
.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo-text__main {
  font-family: var(--font-d);
  font-weight: 800;
  font-size: 16px;
  color: var(--white);
  letter-spacing: 0.05em;
  display: block;
  line-height: 1.1;
}
.logo-text__sub {
  font-family: var(--font-b);
  font-size: 9px;
  font-weight: 500;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: block;
}
.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.navbar__links a {
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  transition: color var(--t);
}
.navbar__links a:hover { color: var(--white); }
.navbar__actions { display: flex; align-items: center; gap: 10px; }
.navbar__wa { padding: 9px 16px; font-size: 13px; }
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  padding: 2px;
}
.navbar__toggle span {
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
  display: block;
}
.navbar__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.navbar__toggle.open span:nth-child(2) { opacity: 0; }
.navbar__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(8,28,56,0.98);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 12px var(--pad-x) 24px;
}
.mobile-menu.open { display: flex; }
.mobile-menu__links { display: flex; flex-direction: column; margin-bottom: 16px; }
.mobile-menu__links li a {
  display: block;
  padding: 12px 0;
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color var(--t);
}
.mobile-menu__links li a:hover { color: var(--orange-soft); }
.mobile-menu__wa {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--orange);
  color: var(--white);
  padding: 14px 18px;
  border-radius: var(--r-sm);
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 700;
  margin-top: 4px;
  transition: background var(--t);
}
.mobile-menu__wa:hover { background: #e0521a; }

/* === 7. HERO === */
.hero {
  position: relative;
  min-height: 100svh;
  background: var(--navy);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 72px;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.55;
  pointer-events: none;
}
.hero__glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 700px 500px at 65% -5%, rgba(27,94,189,0.13) 0%, transparent 65%),
    radial-gradient(ellipse 450px 350px at 5% 85%, rgba(245,95,37,0.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero__landscape {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  line-height: 0;
}
.hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: var(--sec-py) var(--pad-x) calc(var(--sec-py) + 80px);
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 14px;
  background: rgba(245,95,37,0.10);
  border: 1px solid rgba(245,95,37,0.22);
  border-radius: var(--r-f);
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 600;
  color: var(--orange-soft);
  margin-bottom: 24px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--orange);
  border-radius: 50%;
  animation: blink 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes blink {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.35); }
}
.hero__h1 {
  font-family: var(--font-d);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 20px;
  text-wrap: pretty;
}
.hero__h1 em {
  font-style: normal;
  color: var(--orange);
}
.hero__sub {
  font-size: clamp(14px, 1.5vw, 17px);
  color: rgba(255,255,255,0.65);
  line-height: 1.72;
  margin-bottom: 32px;
  max-width: 500px;
}
.hero__sub strong { color: rgba(255,255,255,0.9); }
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero__stats { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }
.hero__stat { display: flex; flex-direction: column; gap: 2px; }
.hero__stat-num {
  font-family: var(--font-d);
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
}
.hero__stat-lbl {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.hero__stat-sep { color: rgba(255,255,255,0.2); font-size: 20px; }

/* Hero Widget */
.hero__widget {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}
.widget-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 26px;
  width: 100%;
  max-width: 370px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), 0 4px 12px rgba(0,0,0,0.18);
}
.widget-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 16px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
}
.widget-card__head span {
  font-family: var(--font-d);
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.widget-card__lbl {
  font-family: var(--font-d);
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-text);
  margin-bottom: 8px;
  display: block;
}
.widget-card__select {
  width: 100%;
  padding: 11px 36px 11px 13px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  margin-bottom: 10px;
  transition: border-color var(--t);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 7L11 1' stroke='%234A5568' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  cursor: pointer;
}
.widget-card__select:focus { outline: none; border-color: var(--blue); }
.widget-card__result {
  display: none;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 12px;
  padding: 11px 13px;
  background: rgba(34,197,94,0.07);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--r-sm);
  font-size: 13px;
  color: var(--text);
  animation: fadeIn 0.3s ease;
}
.widget-card__result.visible { display: flex; }
.result-check { color: var(--green); font-size: 17px; font-weight: 800; }
.result-link { color: var(--blue); font-weight: 700; margin-left: auto; font-size: 12px; }
.hero__price-pill {
  display: flex;
  align-items: baseline;
  gap: 4px;
  background: rgba(245,95,37,0.09);
  border: 1px solid rgba(245,95,37,0.18);
  border-radius: var(--r-f);
  padding: 9px 20px;
}
.hero__price-from { font-size: 12px; color: rgba(255,255,255,0.5); }
.hero__price-num { font-family: var(--font-m); font-size: 30px; font-weight: 700; color: var(--orange-soft); }
.hero__price-period { font-size: 13px; color: rgba(255,255,255,0.45); }

/* === 8. STATS BAR === */
.stats-bar {
  background: #07182E;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.stats-bar__inner {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
}
.stat-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 36px 48px;
  flex: 1;
  min-width: 160px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.07);
}
.stat-block:last-child { border-right: none; }
.stat-block__num {
  font-family: var(--font-d);
  font-size: 40px;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-block__lbl {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

/* === 9. BENEFITS === */
.benefits { padding: var(--sec-py) 0; background: var(--white); }
.benefits__hd { text-align: center; margin-bottom: 56px; }
.benefits__hd .section-sub { margin: 0 auto; }
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  padding: 26px;
  border-radius: var(--r);
  border: 1px solid var(--border);
  background: var(--white);
  transition: all var(--t);
}
.benefit-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.benefit-icon {
  width: 46px; height: 46px;
  background: var(--blue-light);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.benefit-title {
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.benefit-desc {
  font-size: 13.5px;
  color: var(--gray-text);
  line-height: 1.65;
}

/* === 10. COVERAGE === */
.coverage { padding: var(--sec-py) 0; background: var(--gray-bg); }
.coverage__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.coverage__map {
  background: #06142A;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(27,94,189,0.15);
}
.coverage__map svg { width: 100%; height: auto; display: block; }
.coverage__hd { margin-bottom: 24px; }
.coverage__zones {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 20px;
  margin-bottom: 24px;
}
.zone-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  color: var(--text);
  font-weight: 500;
}
.zone-dot {
  width: 7px; height: 7px;
  background: var(--green);
  border-radius: 50%;
  flex-shrink: 0;
}
.coverage__note {
  font-size: 13px;
  color: var(--gray-text);
  font-style: italic;
  line-height: 1.65;
  margin-bottom: 16px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: var(--r-sm);
  border-left: 3px solid var(--blue);
}

/* === 11. PLANS === */
.plans { padding: var(--sec-py) 0; background: var(--white); }
.plans__hd { text-align: center; margin-bottom: 32px; }
.plans__toggle {
  display: flex;
  align-items: center;
  background: var(--gray-bg);
  border-radius: var(--r-f);
  padding: 4px;
  width: fit-content;
  margin: 0 auto 44px;
  gap: 0;
}
.toggle-pill {
  padding: 9px 26px;
  border-radius: var(--r-f);
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-text);
  transition: all 0.2s;
  cursor: pointer;
}
.toggle-pill.on {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}
.plans__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
.plan-card {
  position: relative;
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px;
  background: var(--white);
  transition: all var(--t);
}
.plan-card:hover { border-color: var(--blue); box-shadow: var(--shadow-md); }
.plan-card--hot {
  border-color: var(--orange);
  border-width: 2px;
  box-shadow: 0 0 0 4px rgba(245,95,37,0.06);
}
.plan-card--hot:hover { box-shadow: 0 0 0 4px rgba(245,95,37,0.10), var(--shadow-lg); }
.plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: var(--r-f);
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 4px;
}
.plan-card--hot .plan-name { color: var(--orange); }
.plan-zone { font-size: 12px; color: var(--gray-text); margin-bottom: 18px; }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 20px;
}
.plan-price__cur { font-family: var(--font-d); font-size: 17px; font-weight: 700; color: var(--gray-text); }
.plan-price__num {
  font-family: var(--font-m);
  font-size: 50px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.plan-card--hot .plan-price__num { color: var(--orange); }
.plan-price__per { font-size: 13px; color: var(--gray-text); }
.plan-feats {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-bottom: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}
.plan-feat {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13.5px;
  color: var(--gray-text);
  line-height: 1.4;
}
.plan-feat__ok { color: var(--green); font-weight: 800; flex-shrink: 0; margin-top: 1px; }
.plan-cta { width: 100%; justify-content: center; padding: 12px; font-size: 14px; }
.plans__note {
  max-width: 680px;
  margin: 36px auto 0;
  padding: 18px 22px;
  background: var(--blue-light);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  font-size: 13.5px;
  color: var(--navy);
  line-height: 1.7;
}

/* === 12. SERVICES === */
.services { padding: var(--sec-py) 0; background: var(--gray-bg); }
.services__hd { text-align: center; margin-bottom: 52px; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--t);
  display: flex;
  flex-direction: column;
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: rgba(27,94,189,0.3); }
.svc-visual {
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.svc-card--hogar   .svc-visual { background: linear-gradient(135deg, #082040 0%, #13487E 100%); }
.svc-card--negocios .svc-visual { background: linear-gradient(135deg, #0D2B1A 0%, #0B5231 100%); }
.svc-card--camaras  .svc-visual { background: linear-gradient(135deg, #1E0A35 0%, #4A1060 100%); }
.svc-body { padding: 22px; flex: 1; display: flex; flex-direction: column; }
.svc-title { font-family: var(--font-d); font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.svc-tag { font-size: 12px; color: var(--orange); font-weight: 600; margin-bottom: 10px; }
.svc-desc { font-size: 13.5px; color: var(--gray-text); line-height: 1.65; margin-bottom: 14px; }
.svc-list { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; flex: 1; }
.svc-list li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--gray-text);
}
.svc-list li::before { content: '▸'; color: var(--blue); font-size: 11px; flex-shrink: 0; }

/* === 13. TESTIMONIALS === */
.testimonials { padding: var(--sec-py) 0; background: var(--white); }
.testimonials__hd { text-align: center; margin-bottom: 52px; }
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 26px;
  transition: all var(--t);
}
.testi-card:hover { box-shadow: var(--shadow-md); border-color: #c7dff5; }
.testi-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testi-stars span { color: #F5A623; font-size: 16px; }
.testi-text {
  font-size: 14.5px;
  line-height: 1.72;
  color: var(--text);
  font-style: italic;
  margin-bottom: 18px;
}
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-d);
  font-size: 16px;
  font-weight: 800;
  color: var(--blue);
  flex-shrink: 0;
}
.testi-name { font-family: var(--font-d); font-size: 13px; font-weight: 700; color: var(--navy); }
.testi-zone { font-size: 11.5px; color: var(--gray-text); margin-top: 2px; }

/* === 14. COMPANY === */
.company { padding: var(--sec-py) 0; background: var(--navy); }
.company__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.company__photo {
  border-radius: var(--r-lg);
  height: 360px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
}
.company__photo-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.25);
  text-align: center;
  padding: 32px;
}
.company__photo-txt p { font-size: 13px; line-height: 1.55; }
.company__photo-txt p small { font-size: 11px; opacity: 0.6; }
.company__lbl { font-family: var(--font-d); font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--orange-soft); margin-bottom: 14px; }
.company__title { font-family: var(--font-d); font-size: clamp(24px, 3vw, 38px); font-weight: 800; color: var(--white); line-height: 1.15; margin-bottom: 30px; }
.company__items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 28px; }
.company__item { display: flex; gap: 14px; align-items: flex-start; }
.company__item-icon {
  width: 38px; height: 38px;
  background: rgba(27,94,189,0.14);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.company__item-ttl {
  font-family: var(--font-d);
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.45);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 3px;
}
.company__item-val { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.5; }
.company__btns { display: flex; gap: 10px; flex-wrap: wrap; }

/* === 15. FAQ === */
.faq { padding: var(--sec-py) 0; background: var(--gray-bg); }
.faq__hd { text-align: center; margin-bottom: 52px; }
.faq__list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r);
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item.open { border-color: var(--blue); }
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  cursor: pointer;
  font-family: var(--font-d);
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  gap: 14px;
  text-align: left;
  width: 100%;
}
.faq-item__ico {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 17px;
  color: var(--blue);
  font-weight: 800;
  transition: all 0.3s;
  line-height: 1;
}
.faq-item.open .faq-item__ico { background: var(--blue); color: var(--white); transform: rotate(45deg); }
.faq-item__body { max-height: 0; overflow: hidden; transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1); }
.faq-item.open .faq-item__body { max-height: 300px; }
.faq-item__body p { padding: 0 22px 18px; font-size: 14px; color: var(--gray-text); line-height: 1.72; }

/* === 16. CTA FINAL === */
.cta-final {
  padding: var(--sec-py) 0;
  background: linear-gradient(135deg, #071A30 0%, var(--navy) 50%, #050E1C 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 600px 400px at 25% 50%, rgba(27,94,189,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 400px 300px at 75% 50%, rgba(245,95,37,0.07) 0%, transparent 65%);
  pointer-events: none;
}
.cta-final__in { position: relative; z-index: 1; }
.cta-final__title {
  font-family: var(--font-d);
  font-size: clamp(30px, 5vw, 56px);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 14px;
  line-height: 1.1;
}
.cta-final__sub {
  font-size: clamp(14px, 1.6vw, 18px);
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.65;
}
.cta-final__btns {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}
.cta-final__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}
.cta-final__trust span { display: flex; align-items: center; gap: 5px; }

/* === 17. FOOTER === */
.footer { background: #050E1C; padding: 60px 0 28px; color: rgba(255,255,255,0.6); }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.4fr;
  gap: 44px;
  padding-bottom: 44px;
  margin-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__brand .logo-wrap { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer__tagline { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.65; max-width: 240px; margin-bottom: 16px; }
.footer__ruc { font-size: 11px; color: rgba(255,255,255,0.25); line-height: 1.65; }
.footer__col h4 {
  font-family: var(--font-d);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.footer__nav { display: flex; flex-direction: column; gap: 9px; }
.footer__nav a { font-size: 13px; color: rgba(255,255,255,0.55); transition: color var(--t); }
.footer__nav a:hover { color: var(--orange-soft); }
.footer__zones-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px 10px;
}
.footer__zone {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  color: rgba(255,255,255,0.4);
}
.footer__zone::before { content: ''; width: 5px; height: 5px; background: var(--green); border-radius: 50%; flex-shrink: 0; }
.footer__contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
}
.footer__contact-row svg { flex-shrink: 0; margin-top: 1px; opacity: 0.6; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,0.25); }
.footer__legal { display: flex; gap: 18px; }
.footer__legal a { font-size: 12px; color: rgba(255,255,255,0.25); transition: color var(--t); }
.footer__legal a:hover { color: rgba(255,255,255,0.5); }

/* === 18. WHATSAPP FLOAT === */
.wa-float {
  position: fixed;
  bottom: 26px; right: 26px;
  z-index: 800;
  display: flex;
  align-items: center;
  gap: 9px;
  background: #25D366;
  color: var(--white);
  padding: 13px 19px;
  border-radius: var(--r-f);
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  font-family: var(--font-d);
  font-size: 13px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(16px) scale(0.92);
  pointer-events: none;
  transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.wa-float.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-float:hover { background: #1bbf5c; transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.wa-float:active { transform: scale(0.97); }

/* === 19. SCROLL ANIMATIONS === */
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: translateY(0); } }

.anim {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.anim.in {
  opacity: 1;
  transform: none;
}
.anim:nth-child(2) { transition-delay: 0.07s; }
.anim:nth-child(3) { transition-delay: 0.14s; }
.anim:nth-child(4) { transition-delay: 0.21s; }
.anim:nth-child(5) { transition-delay: 0.28s; }
.anim:nth-child(6) { transition-delay: 0.35s; }

/* === 20. RESPONSIVE === */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; padding-bottom: calc(var(--sec-py) + 60px); }
  .hero__widget { align-items: center; }
  .hero__price-pill { display: none; }
  .benefits__grid { grid-template-columns: repeat(2,1fr); }
  .coverage__inner { grid-template-columns: 1fr; }
  .coverage__map { max-width: 560px; margin: 0 auto; }
  .company__inner { grid-template-columns: 1fr; }
  .company__photo { height: 260px; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .navbar__links { display: none; }
  .navbar__wa { display: none; }
  .navbar__toggle { display: flex; }
  .services__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .plans__grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .stats-bar__inner { flex-direction: column; }
  .stat-block { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); padding: 28px 20px; }
  .stat-block:last-child { border-bottom: none; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .cta-final__btns { flex-direction: column; align-items: center; }
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .benefits__grid { grid-template-columns: 1fr; }
  .coverage__zones { grid-template-columns: 1fr; }
  .wa-float { bottom: 14px; right: 14px; padding: 11px 14px; }
  .wa-float span { display: none; }
}
