:root {
  --navy: #0b1830;
  --navy-2: #0f2148;
  --blue: #2563eb;
  --blue-light: #0ea5e9;
  --blue-50: #eef4ff;
  --text: #101828;
  --muted: #5b6472;
  --border: #e4e9f2;
  --bg: #f7f9fc;
  --white: #ffffff;
  --brand-navy: #263979;
  --brand-lightblue: #5887be;
  --whatsapp: #25d366;
  --whatsapp-dark: #1ea952;
  --radius: 16px;
  --shadow: 0 10px 30px -12px rgba(16, 24, 40, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

h1, h2, h3, h4, .logo-text {
  font-family: 'Manrope', 'Inter', system-ui, sans-serif;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: #fff;
  box-shadow: 0 8px 20px -6px rgba(37, 99, 235, 0.55);
}
.btn-block { width: 100%; justify-content: center; }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--border);
  padding: 9px 18px;
}
.btn-ghost:hover { background: var(--bg); }

.btn-outline {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border);
  padding: 10px 16px;
  font-size: 0.9rem;
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
}
.btn-whatsapp:hover { background: var(--whatsapp-dark); }

.btn-whatsapp-outline {
  background: #eafaf0;
  color: var(--whatsapp-dark);
  border: 1px solid #bdeccb;
  padding: 10px 16px;
  font-size: 0.9rem;
}
.btn-whatsapp-outline:hover { background: #d9f6e3; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  width: 38px;
  height: 38px;
  display: block;
  flex-shrink: 0;
}
.logo-text {
  color: var(--brand-navy);
  font-size: 1.15rem;
  font-weight: 500;
}
.logo-text strong { font-weight: 800; color: var(--brand-lightblue); }

.main-nav {
  display: flex;
  gap: 32px;
}
.main-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.15s ease;
}
.main-nav a:hover { color: var(--blue); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--navy);
  padding: 90px 0 70px;
  color: #fff;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 85% 10%, rgba(14,165,233,0.35), transparent 60%),
    radial-gradient(500px 400px at 10% 90%, rgba(37,99,235,0.35), transparent 60%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 780px;
}
.eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 0.85rem;
  font-weight: 600;
  color: #bfdbfe;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 20px;
}
.hero-sub {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.78);
  margin: 0 auto 32px;
  max-width: 620px;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}
.stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
}

/* Section head */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 800;
  margin: 6px 0 10px;
}
.section-head p { color: var(--muted); margin: 0; }
.section-head .eyebrow {
  background: var(--blue-50);
  border: 1px solid #d9e6ff;
  color: var(--blue);
}

section { padding: 88px 0; }
.services { background: var(--white); }
.coverage { background: var(--bg); }
.why-us { background: var(--white); }
.contact { background: var(--bg); }

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

/* Service cards */
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.service-card:hover { transform: translateY(-4px); }
.service-card.featured {
  border-color: var(--blue);
  background: linear-gradient(180deg, var(--blue-50), var(--white) 40%);
}
.service-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--blue-50);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-card h3 { margin: 0 0 10px; font-size: 1.25rem; }
.service-card p { color: var(--muted); margin: 0 0 16px; font-size: 0.95rem; }
.feature-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--text);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue-light);
}

/* Coverage area cards */
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow);
  position: relative;
}
.area-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-50);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.area-card h3 { margin: 0 0 4px; font-size: 1.35rem; }
.area-sub { color: var(--muted); font-size: 0.88rem; margin: 0 0 20px; }
.area-actions { display: flex; flex-direction: column; gap: 10px; }
.area-actions .btn { justify-content: center; }

/* Why us */
.why-grid { grid-template-columns: repeat(4, 1fr); }
.why-item {
  text-align: left;
  padding: 8px;
}
.why-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--navy);
  color: #7ec8ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.why-item h4 { margin: 0 0 6px; font-size: 1.05rem; }
.why-item p { margin: 0; color: var(--muted); font-size: 0.9rem; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
  max-width: 980px;
  margin: 0 auto;
}
.contact-info { display: flex; flex-direction: column; gap: 30px; }
.contact-row { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row h3 { margin: 0 0 8px; font-size: 1.05rem; }
.contact-row > div > a { color: var(--blue); font-weight: 600; }
.contact-numbers li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 0;
  border-bottom: 1px dashed var(--border);
  font-size: 0.92rem;
}
.contact-numbers li:last-child { border-bottom: none; }
.contact-numbers li span { color: var(--muted); }
.contact-numbers li a { color: var(--blue); font-weight: 600; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.contact-form h3 { margin: 0 0 20px; font-size: 1.15rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { margin-bottom: 14px; }
.form-field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--text);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
}
.form-field textarea { resize: vertical; }
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 10px 0 0;
}

/* Footer */
.site-footer { background: var(--white); color: var(--muted); border-top: 1px solid var(--border); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 30px;
  padding: 60px 0 36px;
}
.footer-brand p { margin-top: 10px; font-size: 0.88rem; color: var(--muted); max-width: 260px; }
.footer-col h4 {
  color: var(--text);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 14px;
}
.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: 0.9rem; }
.footer-col a:hover { color: var(--blue); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  font-size: 0.82rem;
  color: var(--muted);
}

/* OTT Plans */
.ott-intro-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; margin: 0 auto 40px; max-width: 820px; }
.ott-badge-lg { padding: 8px 14px; border-radius: 10px; font-size: 0.85rem; font-weight: 700; color: #fff; }
.ott-more-badge { background: var(--bg); color: var(--muted); border: 1px solid var(--border); }

.ott-tabs { display: flex; justify-content: center; gap: 10px; margin-bottom: 36px; flex-wrap: wrap; }
.ott-tab-btn {
  padding: 12px 22px; border-radius: 999px; border: 1px solid var(--border); background: var(--white);
  font-weight: 700; font-size: 0.92rem; cursor: pointer; display: flex; align-items: center; gap: 8px;
  color: var(--muted); font-family: inherit;
}
.ott-tab-btn.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.ott-panel { display: none; }
.ott-panel.active { display: block; }
.ott-panel-head { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 28px; }
.ott-panel-head .dot { width: 40px; height: 40px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; flex-shrink: 0; }
.ott-panel-head h3 { margin: 0; font-size: 1.15rem; }
.ott-panel-head p { margin: 0; color: var(--muted); font-size: 0.85rem; }

.ott-plan-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.ott-plan-card {
  position: relative; background: var(--white); border: 1px solid var(--border); border-radius: 16px;
  padding: 26px 18px; box-shadow: var(--shadow); display: flex; flex-direction: column;
}
.ott-plan-card.popular { border: 2px solid var(--blue); }
.ott-best-value {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--blue); color: #fff;
  font-size: 0.68rem; font-weight: 800; padding: 4px 12px; border-radius: 999px; letter-spacing: 0.03em;
}
.ott-plan-name { text-align: center; font-size: 1.1rem; font-weight: 800; margin: 6px 0 2px; }
.ott-plan-desc { text-align: center; color: var(--muted); font-size: 0.8rem; margin: 0 0 14px; }
.ott-price { text-align: center; font-size: 1.6rem; font-weight: 800; margin-bottom: 14px; }
.ott-price span { font-size: 0.85rem; font-weight: 500; color: var(--muted); }
.ott-apps-label { text-align: center; font-size: 0.72rem; font-weight: 700; color: var(--muted); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.03em; }
.ott-apps-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 5px; margin-bottom: 14px; min-height: 60px; }
.ott-app-badge { font-size: 0.62rem; font-weight: 700; padding: 4px 7px; border-radius: 5px; color: #fff; white-space: nowrap; }
.ott-more { font-size: 0.62rem; font-weight: 700; padding: 4px 7px; border-radius: 5px; background: var(--bg); color: var(--muted); border: 1px solid var(--border); }
.ott-plan-features { list-style: none; margin: 0 0 16px; padding: 0; flex-grow: 1; }
.ott-plan-features li { font-size: 0.78rem; color: var(--text); display: flex; align-items: center; gap: 6px; margin-bottom: 6px; }
.ott-plan-features li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--blue-light); flex-shrink: 0; }
.ott-note { text-align: center; color: var(--muted); font-size: 0.9rem; margin-top: 36px; }

/* Inner pages */
.page-hero {
  background: var(--navy);
  color: #fff;
  padding: 56px 0 44px;
  position: relative;
  overflow: hidden;
}
.page-hero .hero-bg { position: absolute; inset: 0; }
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; margin: 8px 0 8px; }
.page-hero p { color: rgba(255,255,255,0.75); max-width: 620px; margin: 0; }
.breadcrumb { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 14px; }
.breadcrumb a { color: #bfdbfe; }

.page-body { padding: 64px 0 88px; }
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 1.3rem; font-weight: 800; margin: 40px 0 14px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.05rem; font-weight: 700; margin: 24px 0 10px; }
.prose p { color: var(--text); margin: 0 0 14px; }
.prose ul { margin: 0 0 14px; padding-left: 22px; list-style: disc; }
.prose li { margin-bottom: 6px; color: var(--text); }
.prose .updated {
  color: var(--muted); font-size: 0.85rem; margin-bottom: 36px;
  padding-bottom: 20px; border-bottom: 1px solid var(--border);
}

.placeholder-box {
  background: #fffbeb;
  border: 1px dashed #f5c563;
  border-radius: 12px;
  padding: 18px 20px;
  margin: 0 0 18px;
  font-size: 0.9rem;
  color: #7c5711;
}
.placeholder-box strong { display: block; margin-bottom: 4px; color: #5c4109; }

/* FAQ / Help Center */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white); border: 1px solid var(--border); border-radius: 12px;
  padding: 0; overflow: hidden;
}
.faq-question {
  width: 100%; text-align: left; background: none; border: none; cursor: pointer;
  padding: 18px 20px; font-weight: 600; font-size: 0.98rem; color: var(--text);
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  font-family: inherit;
}
.faq-question .chev { transition: transform 0.2s ease; color: var(--blue); flex-shrink: 0; }
.faq-item.open .faq-question .chev { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.2s ease;
  padding: 0 20px; color: var(--muted); font-size: 0.92rem;
}
.faq-item.open .faq-answer { padding: 0 20px 18px; }

/* Service status */
.status-overall {
  display: flex; align-items: center; gap: 12px; justify-content: center;
  background: #ecfdf3; border: 1px solid #b9ecc9; color: #0a6e35;
  padding: 14px 20px; border-radius: 12px; font-weight: 700; max-width: 460px; margin: 0 auto 40px;
}
.status-dot { width: 10px; height: 10px; border-radius: 50%; background: #16a34a; flex-shrink: 0; }
.status-list { max-width: 620px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.status-row {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 16px 20px;
}
.status-pill {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; font-weight: 700; padding: 4px 12px; border-radius: 999px;
  background: #ecfdf3; color: #0a6e35;
}
.status-pill .status-dot { background: #16a34a; }
.status-note { text-align: center; color: var(--muted); font-size: 0.85rem; max-width: 560px; margin: 28px auto 0; }

/* Speed test */
.speedtest-card {
  max-width: 480px; margin: 0 auto; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 40px 30px; text-align: center; box-shadow: var(--shadow);
}
.speedtest-gauge { font-size: 3.2rem; font-weight: 800; color: var(--blue); font-variant-numeric: tabular-nums; line-height: 1; }
.speedtest-unit { color: var(--muted); font-size: 0.95rem; margin: 6px 0 26px; }
.speedtest-status { font-size: 0.9rem; color: var(--muted); margin-bottom: 20px; min-height: 20px; }
.speedtest-meta { display: flex; justify-content: center; gap: 28px; margin-top: 24px; }
.speedtest-meta div { text-align: center; }
.speedtest-meta .val { display: block; font-weight: 700; font-size: 1.1rem; color: var(--text); font-variant-numeric: tabular-nums; }
.speedtest-meta .lbl { font-size: 0.78rem; color: var(--muted); }

/* Pay bill */
.pay-card {
  max-width: 520px; margin: 0 auto; background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 36px 30px; box-shadow: var(--shadow);
}
.pay-embed-slot {
  border: 2px dashed var(--border); border-radius: 12px; padding: 28px 20px;
  text-align: center; color: var(--muted); font-size: 0.9rem; background: var(--bg);
}

/* Responsive */
@media (max-width: 900px) {
  .card-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .ott-plan-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow);
    flex-direction: column;
    padding: 10px 20px 20px;
    gap: 4px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 0; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: flex; }
  .header-call, .header-pay { display: none; }
  .card-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; padding: 44px 0 24px; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 30px; }
  .ott-plan-grid { grid-template-columns: 1fr; }
  .ott-tabs { flex-direction: column; align-items: stretch; }
}
