/* ============================================
   GETESA - Modern Telecom Redesign
   ============================================ */
:root {
  --blue-900: #07274f;
  --blue-800: #0b3c7e;
  --blue-700: #0d4a9b;
  --blue-600: #1160c4;
  --blue-100: #e3eefc;
  --blue-50: #f2f7fe;
  --accent: #3E9A00;
  --accent-dark: #2F7600;
  --ink: #16243a;
  --gray-600: #5a6b82;
  --gray-200: #e4eaf2;
  --white: #ffffff;
  --radius: 8px;
  --shadow: 0 10px 30px rgba(11, 60, 126, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 60, 126, 0.18);
  --grad: linear-gradient(135deg, #0b3c7e 0%, #1160c4 60%, #1e7ae0 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 94px; }
body {
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
[hidden] { display: none !important; }
a { color: var(--blue-600); text-decoration: none; }
ul { list-style: none; }
main { padding-bottom: 0; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: 1rem;
  z-index: 999;
  transform: translateY(-160%);
  background: var(--blue-900);
  color: #fff;
  padding: .7rem 1rem;
  border-radius: 8px;
  font-weight: 800;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(1180px, 92%); margin: 0 auto; }
.container.narrow { max-width: 820px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 1.8rem; border-radius: 999px;
  font-weight: 700; font-size: .95rem; transition: all .25s ease;
  border: 2px solid transparent; cursor: pointer;
}
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 8px 20px rgba(62,154,0,.35); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-outline { border-color: rgba(255,255,255,.6); color: #fff; }
.btn-outline:hover { background: rgba(255,255,255,.12); }
.btn-blue { background: var(--blue-700); color: #fff; }
.btn-blue:hover { background: var(--blue-800); transform: translateY(-2px); }
.btn-small { padding: .55rem 1rem; font-size: .84rem; }

/* ---------- Header ---------- */
.utility-bar {
  background: var(--blue-900);
  color: rgba(255,255,255,.86);
  font-size: .86rem;
}
.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 1.2rem;
}
.utility-inner span {
  margin-right: auto;
  color: #fff;
  font-weight: 800;
}
.utility-inner a {
  color: rgba(255,255,255,.86);
  font-weight: 700;
}
.utility-inner a:hover { color: var(--accent); }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 8px 26px rgba(7,39,79,.06);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 1rem; min-height: 76px; }
.logo img { height: 60px; width: auto; }
.main-nav ul { display: flex; gap: .8rem; align-items: center; }
.main-nav a { color: var(--ink); font-weight: 700; font-size: .88rem; position: relative; padding: .4rem 0; }
.main-nav li:not(.nav-cta) a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 3px; width: 0;
  background: var(--accent); border-radius: 2px; transition: width .25s ease;
}
.main-nav li:not(.nav-cta) a:hover::after, .main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--blue-700); }
.nav-cta { margin-left: .5rem; }
.nav-cta .btn { padding: .55rem 1.25rem; font-size: .88rem; white-space: nowrap; }
.nav-cta .btn,
.nav-cta .btn:visited { color: var(--ink); }
.nav-cta .btn:hover { transform: none; }
.nav-toggle { display: none; background: none; border: none; font-size: 1.7rem; color: var(--blue-800); cursor: pointer; }
.header-tools { display: flex; align-items: center; gap: .7rem; }
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: .15rem;
  padding: .2rem;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  background: #fff;
  flex: 0 0 auto;
}
.language-switch a {
  min-width: 2.2rem;
  min-height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: var(--gray-600);
  font-size: .78rem;
  font-weight: 800;
}
.language-switch a:hover,
.language-switch a[aria-current="true"] {
  background: var(--blue-700);
  color: #fff;
}

/* ---------- Hero ---------- */
.hero {
  color: #fff;
  position: relative;
  overflow: hidden;
  background: var(--blue-900);
  min-height: clamp(535px, calc(100vh - 185px), 640px);
  padding: 0;
}
.hero::before, .hero::after {
  content: ""; position: absolute; z-index: 2; border-radius: 50%;
  background: rgba(255,255,255,.07);
  pointer-events: none;
}
.hero::before { width: 520px; height: 520px; top: -200px; right: -120px; }
.hero::after { width: 320px; height: 320px; bottom: -140px; left: -90px; }
.hero-stage {
  position: relative;
  min-height: inherit;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .75s ease, visibility .75s ease;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}
.hero-slide-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.hero-slide-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(7,39,79,.96) 0%, rgba(7,39,79,.82) 42%, rgba(7,39,79,.54) 68%, rgba(7,39,79,.28) 100%),
    linear-gradient(0deg, rgba(7,39,79,.48), rgba(7,39,79,.12));
  pointer-events: none;
}
.hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.1) contrast(1.03);
  display: block;
}
.hero-network-flow {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
  opacity: .78;
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .14) 18%, rgba(0, 0, 0, .82) 42%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, .14) 18%, rgba(0, 0, 0, .82) 42%, #000 100%);
}
.hero-network-flow::before {
  content: "";
  position: absolute;
  top: 14%;
  right: -6%;
  width: 112%;
  height: 50%;
  background-image: radial-gradient(circle, rgba(68, 201, 255, .48) 0 1.15px, transparent 1.35px);
  background-size: 18px 18px;
  clip-path: polygon(0 47%, 18% 36%, 34% 44%, 51% 28%, 68% 8%, 87% 0, 100% 17%, 100% 100%, 78% 82%, 61% 60%, 42% 74%, 21% 62%, 0 78%);
  transform: rotate(-4deg) skewY(-4deg);
  opacity: .42;
  animation: heroNetworkDots 18s linear infinite;
}
.hero-network-flow::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 28%, rgba(62,154,0, .25), transparent 36%),
    radial-gradient(ellipse at 84% 42%, rgba(62,154,0, .16), transparent 26%);
  opacity: .9;
}
.hero-network-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.hero-signal-line {
  fill: none;
  stroke-linecap: round;
  stroke-width: 3.6;
  stroke-dasharray: 150 820;
  stroke-dashoffset: 970;
  opacity: .88;
  animation: heroSignalFlow 6.8s linear infinite;
}
.hero-signal-line-blue {
  stroke: rgba(45, 199, 255, .78);
  filter: drop-shadow(0 0 10px rgba(45, 199, 255, .38));
}
.hero-signal-line-accent {
  stroke: rgba(62,154,0, .88);
  stroke-width: 4.6;
  animation-delay: -2.1s;
  filter: drop-shadow(0 0 12px rgba(62,154,0, .48));
}
.hero-signal-line-soft {
  stroke-width: 2.2;
  stroke-dasharray: 95 760;
  opacity: .5;
  animation-duration: 9.4s;
}
.hero-signal-line-delay { animation-delay: -4.8s; }
@keyframes heroSignalFlow {
  to { stroke-dashoffset: 0; }
}
@keyframes heroNetworkDots {
  from { background-position: 0 0; }
  to { background-position: 180px -72px; }
}
.hero-inner {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem;
  align-items: center; min-height: inherit; padding: 5.5rem 0 6rem; position: relative; z-index: 3;
}
.hero-copy { max-width: 39rem; min-width: 0; }
.hero-copy, .hero-media { animation: heroContentIn .7s ease both; }
.hero-slide:not(.active) .hero-copy,
.hero-slide:not(.active) .hero-media { animation: none; }
@keyframes heroContentIn {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero .eyebrow {
  display: inline-block; background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  padding: .35rem 1rem; border-radius: 999px;
  font-size: .8rem; font-weight: 700; letter-spacing: 0; text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.hero h1 { font-size: 3.6rem; line-height: 1.08; font-weight: 800; margin-bottom: 1.2rem; }
.hero h1 .accent {
  color: var(--accent);
}
.hero p.lead { font-size: 1.15rem; color: rgba(255,255,255,.85); margin-bottom: 2rem; max-width: 34rem; overflow-wrap: break-word; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-media {
  position: relative;
  justify-self: end;
  width: min(430px, 100%);
  min-width: 0;
}
.hero-feature-panel {
  display: grid;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 18px;
  background: rgba(255,255,255,.13);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}
.hero-badge {
  background: #fff; color: var(--blue-800);
  padding: 1rem 1.15rem; border-radius: 14px; box-shadow: var(--shadow-lg);
  font-weight: 800; font-size: 1.35rem; line-height: 1.25;
}
.hero-badge small { display: block; color: var(--gray-600); font-weight: 600; font-size: .75rem; }
.operator-console {
  background: rgba(255,255,255,.96);
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 1rem;
}
.operator-console h2 {
  color: var(--blue-900);
  font-size: 1rem;
  margin-bottom: .7rem;
}
.operator-console > div {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .55rem;
}
.operator-console a {
  display: grid;
  gap: .25rem;
  min-height: 72px;
  align-content: center;
  border-radius: 8px;
  background: var(--blue-50);
  color: var(--blue-900);
  padding: .7rem;
  text-align: center;
}
.operator-console a span { color: var(--gray-600); font-size: .75rem; font-weight: 800; }
.operator-console a strong { color: var(--blue-800); font-size: 1rem; }
.hero-dots {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  z-index: 4;
  display: flex;
  justify-content: flex-start;
  gap: .55rem;
  transform: translateX(-50%);
  pointer-events: none;
}
.hero-dot {
  width: 42px;
  height: 6px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  pointer-events: auto;
  transition: width .2s ease, background .2s ease, transform .2s ease;
}
.hero-dot:hover { background: rgba(255,255,255,.8); }
.hero-dot.active {
  width: 66px;
  background: var(--accent);
}
@media (prefers-reduced-motion: reduce) {
  .hero-slide { transition: none; }
  .hero-copy, .hero-media { animation: none; }
  .hero-network-flow::before,
  .hero-signal-line { animation: none; }
}

/* Service launcher */
.service-launcher-section {
  padding: 1.6rem 0 3.5rem;
  background:
    linear-gradient(180deg, #fff 0%, var(--blue-50) 100%);
}
.service-launcher-head {
  display: grid;
  grid-template-columns: 1fr minmax(260px, 430px);
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.3rem;
}
.service-launcher-head .kicker {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}
.service-launcher-head h2 {
  margin-top: .35rem;
  color: var(--blue-900);
  font-size: 2.05rem;
  line-height: 1.15;
}
.service-launcher-head p {
  color: var(--gray-600);
  line-height: 1.6;
}
.service-launcher-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.service-launcher-card {
  position: relative;
  min-height: 230px;
  display: grid;
  align-content: start;
  gap: .65rem;
  padding: 1.25rem;
  border: 1px solid rgba(228,234,242,.95);
  border-radius: var(--radius);
  background: #fff;
  color: var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-launcher-card::after {
  content: "";
  position: absolute;
  right: -34px;
  bottom: -38px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: var(--blue-50);
  transition: transform .25s ease, background .25s ease;
}
.service-launcher-card:hover {
  border-color: rgba(62,154,0,.72);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-launcher-card:hover::after {
  background: rgba(62,154,0,.16);
  transform: scale(1.12);
}
.launcher-token {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  min-height: 34px;
  align-items: center;
  padding: .25rem .8rem;
  border-radius: 999px;
  background: var(--blue-900);
  color: #fff;
  font-weight: 800;
  font-size: .82rem;
}
.service-launcher-card strong {
  position: relative;
  z-index: 1;
  color: var(--blue-900);
  font-size: 1.13rem;
  line-height: 1.25;
}
.service-launcher-card p {
  position: relative;
  z-index: 1;
  color: var(--gray-600);
  font-size: .92rem;
  line-height: 1.5;
}
.service-launcher-card em {
  position: relative;
  z-index: 1;
  align-self: end;
  margin-top: auto;
  color: var(--blue-700);
  font-style: normal;
  font-weight: 800;
}
.service-launcher-card em::after {
  content: " →";
  color: var(--accent);
}
.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 1rem;
}
.proof-card {
  min-height: 94px;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(228,234,242,.9);
}
.proof-card strong {
  display: block;
  color: var(--blue-900);
  font-size: .96rem;
}
.proof-card span {
  display: block;
  margin-top: .25rem;
  color: var(--gray-600);
  font-size: .86rem;
  line-height: 1.45;
}

.segment-section { padding: 3rem 0; }
.segment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.segment-card {
  display: grid;
  gap: .45rem;
  min-height: 136px;
  padding: 1.25rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  color: var(--ink);
  transition: transform .25s ease, border-color .25s ease;
}
.segment-card strong { color: var(--blue-900); font-size: 1.1rem; }
.segment-card span { color: var(--gray-600); }
.segment-card:hover { border-color: var(--accent); transform: translateY(-2px); }

.campaign-section {
  padding: 3.5rem 0 4.5rem;
  background: var(--blue-50);
}
.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.campaign-card {
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.campaign-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.campaign-media {
  display: grid;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--blue-100);
  border-bottom: 1px solid var(--gray-200);
}
.campaign-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.campaign-body {
  display: grid;
  gap: .55rem;
  padding: 1.2rem;
}
.campaign-body h3 {
  color: var(--blue-900);
  font-size: 1.15rem;
}
.campaign-body p { color: var(--gray-600); font-size: .94rem; }

.deal-section {
  padding: 3.8rem 0;
  background: #fff;
}
.deal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.deal-card {
  position: relative;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  gap: .85rem;
  overflow: hidden;
  padding: 1.35rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(242,247,254,.95), rgba(255,255,255,1) 46%),
    #fff;
  box-shadow: var(--shadow);
  color: var(--ink);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.deal-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--blue-700), var(--accent));
}
.deal-card::after {
  content: "";
  position: absolute;
  right: -58px;
  top: -58px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: rgba(17,96,196,.08);
}
.deal-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.deal-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .8rem;
  position: relative;
}
.deal-card-top span,
.deal-card-top em {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  border-radius: 999px;
  font-size: .72rem;
  font-style: normal;
  font-weight: 800;
}
.deal-card-top span {
  padding: .2rem .72rem;
  background: var(--blue-900);
  color: #fff;
}
.deal-card-top em {
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.deal-card h3 {
  position: relative;
  color: var(--blue-900);
  font-size: 1.55rem;
  line-height: 1.08;
  font-weight: 800;
}
.deal-price {
  position: relative;
  color: var(--accent);
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.1;
  font-weight: 800;
}
.deal-card p {
  position: relative;
  color: var(--gray-600);
  font-size: .93rem;
  line-height: 1.5;
}
.deal-card .text-link {
  position: relative;
  margin-top: auto;
}
.home-terminal-panel {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
}
.home-terminal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.home-terminal-card {
  display: grid;
  gap: .55rem;
  min-height: 270px;
  padding: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--ink);
  text-align: center;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.home-terminal-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.home-terminal-image {
  width: 100%;
  height: 170px;
  object-fit: contain;
  padding: .45rem;
  border-radius: var(--radius);
  background: var(--blue-50);
}
.home-terminal-card strong {
  color: var(--blue-900);
  font-size: 1rem;
  line-height: 1.25;
}
.home-terminal-card span {
  color: var(--accent);
  font-weight: 800;
}
.home-terminal-action {
  margin-top: 1.2rem;
  text-align: center;
}

/* Page hero (interior pages) */
.page-hero { background: var(--grad); color: #fff; padding: 4rem 0 4.5rem; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; width: 420px; height: 420px; border-radius: 50%; background: rgba(255,255,255,.07); top: -180px; right: -100px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 38rem; margin-top: .6rem; font-size: 1.1rem; }

/* ---------- Sections ---------- */
section { padding: 4.5rem 0; }
.section-head { text-align: center; max-width: 44rem; margin: 0 auto 3rem; }
.section-head.compact { margin-bottom: 1.6rem; }
.section-head .kicker { color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); font-weight: 800; color: var(--blue-900); margin-top: .4rem; }
.section-head p { color: var(--gray-600); margin-top: .7rem; }
.bg-soft { background: var(--blue-50); }
.cta-section { padding: 50px 0; }

/* ---------- Cards ---------- */
.grid { display: grid; gap: 1.6rem; }
.grid-1 { grid-template-columns: 1fr; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  overflow: hidden; transition: transform .25s ease, box-shadow .25s ease;
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--blue-100); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-media.contain img { object-fit: contain; padding: 1rem; }
.card-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { font-size: 1.25rem; font-weight: 800; color: var(--blue-900); margin-bottom: .7rem; }
.card-body ul { margin: 0 0 1.2rem; display: grid; gap: .55rem; }
.card-body ul li { padding-left: 1.5rem; position: relative; color: var(--gray-600); font-size: .95rem; }
.card-body ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.card-body p { color: var(--gray-600); font-size: .95rem; margin-bottom: 1rem; }
.card-body .btn { margin-top: auto; align-self: flex-start; }
.service-card .card-body { min-height: 220px; }
.text-link {
  margin-top: auto;
  font-weight: 800;
  color: var(--blue-700);
}
.text-link::after { content: " →"; color: var(--accent); }

/* Quick actions */
.quick-actions-section { padding: 3rem 0; }
.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.quick-action {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: .9rem;
  padding: 1.2rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--ink);
}
.quick-action strong {
  font-size: 1rem;
  line-height: 1.3;
  color: var(--blue-900);
}
.quick-action span {
  color: var(--gray-600);
  font-size: .9rem;
  line-height: 1.45;
}
.quick-action:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.help-section {
  padding: 3.8rem 0;
}
.intent-help-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}
.help-card {
  min-height: 178px;
  display: grid;
  align-content: start;
  gap: .6rem;
  padding: 1.25rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--ink);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.help-card span {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: .2rem .75rem;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-800);
  font-size: .75rem;
  font-weight: 800;
}
.help-card strong {
  color: var(--blue-900);
  font-size: 1.08rem;
  line-height: 1.25;
}
.help-card p {
  color: var(--gray-600);
  font-size: .92rem;
  line-height: 1.5;
}
.help-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* Status and self-service panels */
.status-section { padding: 3rem 0; background: #fff; }
.status-panel {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}
.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.status-card {
  background: var(--blue-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 1.2rem;
}
.status-card span {
  display: block;
  color: var(--gray-600);
  font-size: .82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: .35rem;
}
.status-card strong {
  color: var(--blue-900);
  font-size: 1.15rem;
}
.status-card p {
  color: var(--gray-600);
  font-size: .9rem;
  margin-top: .35rem;
}

/* Filters, tables, and search */
.filter-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: .6rem;
  margin: -1rem auto 2rem;
}
.filter-button {
  border: 1px solid var(--gray-200);
  background: #fff;
  color: var(--blue-800);
  min-height: 42px;
  padding: .55rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}
.filter-button:hover,
.filter-button.active {
  background: var(--blue-700);
  border-color: var(--blue-700);
  color: #fff;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
}
.table-wrap table {
  width: 100%;
  min-width: 680px;
  border-collapse: collapse;
}
.table-wrap th {
  background: var(--blue-800);
  color: #fff;
  text-align: left;
  padding: .9rem 1rem;
}
.table-wrap td {
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-600);
  padding: .9rem 1rem;
}
.table-wrap tr:last-child td { border-bottom: 0; }
.help-layout {
  display: grid;
  grid-template-columns: minmax(240px, 320px) 1fr;
  align-items: start;
  gap: 2rem;
}
.search-box {
  position: sticky;
  top: 96px;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}
.search-box.inline-search {
  position: static;
  max-width: 620px;
  margin: 0 auto 2rem;
}
.search-box label {
  display: block;
  color: var(--blue-900);
  font-weight: 800;
  margin-bottom: .55rem;
}
.search-box input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: .7rem .85rem;
  color: var(--ink);
  font: inherit;
}
.empty-state {
  color: var(--gray-600);
  font-size: .9rem;
  margin-top: .8rem;
}

/* Coverage */
.notice {
  background: #F2FAEE;
  border: 1px solid rgba(62,154,0,.35);
  color: #245900;
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
.coverage-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1.2fr) minmax(280px, .8fr);
  gap: 1.5rem;
  align-items: start;
}
.coverage-map {
  min-height: 560px;
  display: grid;
  gap: .9rem;
  padding: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.coverage-map-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .6rem;
}
.coverage-map-kpis article {
  border: 1px solid rgba(11,60,126,.1);
  border-radius: 8px;
  background: linear-gradient(180deg, #fff, #f6f9fe);
  padding: .75rem;
}
.coverage-map-kpis span {
  display: block;
  color: var(--blue-900);
  font-size: 1.25rem;
  font-weight: 900;
  line-height: 1;
}
.coverage-map-kpis strong {
  display: block;
  color: var(--gray-600);
  font-size: .72rem;
  font-weight: 900;
  margin-top: .28rem;
  text-transform: uppercase;
}
.coverage-map-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--blue-900);
}
.coverage-map-toolbar strong {
  font-size: clamp(1rem, 2vw, 1.25rem);
}
.coverage-map-toolbar span {
  color: var(--gray-600);
  font-size: .86rem;
  font-weight: 800;
  text-align: right;
}
.coverage-map-stage {
  position: relative;
  min-height: 430px;
  aspect-ratio: 1.08 / .92;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(7,39,79,.1);
  background:
    radial-gradient(circle at 18% 20%, rgba(84,175,244,.2), transparent 24%),
    radial-gradient(circle at 74% 50%, rgba(62,154,0,.15), transparent 26%),
    linear-gradient(135deg, #eaf5ff 0%, #f7fbff 46%, #dbeefe 100%);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.75), inset 0 -80px 140px rgba(11,60,126,.08);
}
.coverage-map-grid,
.coverage-map-layer,
.coverage-map-sites {
  position: absolute;
  inset: 0;
}
.coverage-map-grid {
  background-image:
    linear-gradient(rgba(11,60,126,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11,60,126,.07) 1px, transparent 1px);
  background-size: 12.5% 12.5%;
  pointer-events: none;
}
.coverage-map-stage::before {
  content: "";
  position: absolute;
  inset: 10% 4% 6%;
  background:
    linear-gradient(135deg, transparent 0 54%, rgba(11,60,126,.16) 54.3% 54.8%, transparent 55.1%),
    radial-gradient(circle at 12% 6%, rgba(11,60,126,.08), transparent 18%),
    radial-gradient(circle at 44% 62%, rgba(11,60,126,.07), transparent 20%),
    radial-gradient(circle at 83% 45%, rgba(11,60,126,.06), transparent 22%);
  opacity: .85;
  pointer-events: none;
}
.coverage-map-route {
  position: absolute;
  z-index: 1;
  height: 2px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(62,154,0,0), rgba(62,154,0,.86), rgba(62,154,0,.72));
  box-shadow: 0 0 14px rgba(62,154,0,.32);
  pointer-events: none;
}
.coverage-region {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(0,78,157,.35);
  border-radius: 999px;
  color: var(--blue-900);
  background:
    radial-gradient(circle at 50% 50%, rgba(62,154,0,.26), rgba(62,154,0,.12) 58%, rgba(255,255,255,.26) 70%),
    rgba(255,255,255,.34);
  box-shadow: 0 18px 40px rgba(7,39,79,.12), inset 0 0 0 8px rgba(255,255,255,.34);
  pointer-events: none;
}
.coverage-region::before,
.coverage-region::after {
  content: "";
  position: absolute;
  inset: -10%;
  border: 1px solid rgba(62,154,0,.18);
  border-radius: inherit;
}
.coverage-region::after {
  inset: -22%;
  border-color: rgba(62,154,0,.16);
}
.coverage-region span,
.coverage-region strong,
.coverage-region small {
  position: relative;
  z-index: 1;
  display: block;
}
.coverage-region span {
  max-width: 84%;
  font-size: .78rem;
  font-weight: 900;
}
.coverage-region strong {
  color: var(--accent);
  font-size: 1.5rem;
  line-height: 1;
  margin: .18rem 0;
}
.coverage-region small {
  max-width: 78%;
  color: var(--gray-600);
  font-size: .62rem;
  font-weight: 900;
}
.coverage-region-bioko {
  background:
    radial-gradient(circle at 50% 50%, rgba(62,154,0,.28), rgba(62,154,0,.13) 58%, rgba(255,255,255,.35) 70%),
    rgba(255,255,255,.4);
}
.coverage-region-litoral {
  background:
    radial-gradient(circle at 50% 50%, rgba(62,154,0,.22), rgba(62,154,0,.12) 58%, rgba(255,255,255,.34) 70%),
    rgba(255,255,255,.42);
}
.coverage-region-continental {
  border-radius: 30% 45% 36% 32%;
}
.coverage-region-oyala {
  border-color: rgba(62,154,0,.55);
  background:
    radial-gradient(circle at 50% 50%, rgba(62,154,0,.3), rgba(62,154,0,.1) 56%, rgba(255,255,255,.4) 72%),
    rgba(255,255,255,.45);
}
.coverage-site-marker {
  position: absolute;
  z-index: 4;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border: 2px solid #fff;
  border-radius: 999px;
  background: #0b66c3;
  box-shadow: 0 0 0 1px rgba(7,39,79,.35), 0 7px 15px rgba(7,39,79,.2);
  cursor: pointer;
  transition: transform .16s ease, box-shadow .16s ease;
}
.coverage-site-bioko { background: #00a7e1; }
.coverage-site-litoral { background: #39b54a; }
.coverage-site-continental { background: #3E9A00; }
.coverage-site-oyala { background: var(--accent); }
.coverage-site-marker:hover,
.coverage-site-marker:focus-visible {
  z-index: 8;
  transform: scale(1.9);
  box-shadow: 0 0 0 3px rgba(62,154,0,.24), 0 12px 24px rgba(7,39,79,.28);
}
.coverage-city-label {
  position: absolute;
  z-index: 7;
  transform: translate(.45rem, -50%);
  border: 1px solid rgba(255,255,255,.8);
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--blue-900);
  box-shadow: 0 12px 24px rgba(7,39,79,.12);
  font-size: .75rem;
  font-weight: 900;
  padding: .28rem .55rem;
  pointer-events: none;
}
.coverage-city-planned {
  color: #245900;
  background: rgba(255,248,239,.95);
}
.coverage-inset {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 6;
  width: 130px;
  min-height: 92px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px solid rgba(0,78,157,.18);
  border-radius: 8px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 16px 34px rgba(7,39,79,.14);
  color: var(--blue-900);
}
.coverage-inset::before {
  content: "";
  position: absolute;
  width: 46px;
  height: 30px;
  border-radius: 45% 55% 50% 44%;
  background: radial-gradient(circle at 50% 50%, rgba(62,154,0,.2), rgba(62,154,0,.16));
  box-shadow: 0 0 0 1px rgba(62,154,0,.26), 0 0 0 12px rgba(62,154,0,.05);
}
.coverage-inset span,
.coverage-inset strong,
.coverage-inset small {
  position: relative;
  z-index: 1;
  display: block;
  font-weight: 900;
}
.coverage-inset span { font-size: .78rem; }
.coverage-inset strong {
  color: var(--accent);
  font-size: 1.25rem;
  line-height: 1;
}
.coverage-inset small {
  color: var(--gray-600);
  font-size: .62rem;
}
.coverage-map-loading {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 9;
  border-radius: 8px;
  color: #fff;
  font-weight: 800;
  padding: .85rem 1rem;
  background: rgba(7,39,79,.78);
  backdrop-filter: blur(10px);
}
.coverage-map.ready .coverage-map-loading { display: none; }
.coverage-map.error .coverage-map-loading {
  color: #245900;
  background: rgba(255,248,239,.96);
}
.coverage-map-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem 1rem;
}
.coverage-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
}
.coverage-map-legend span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--gray-600);
  font-size: .82rem;
  font-weight: 800;
}
.coverage-map-legend i {
  width: 13px;
  height: 13px;
  border-radius: 999px;
  flex: 0 0 auto;
}
.legend-coverage {
  background: linear-gradient(90deg, #3E9A00, #5fbf2a, #3E9A00, var(--accent));
}
.legend-site {
  background: #3E9A00;
  border: 2px solid #fff;
  box-shadow: 0 0 0 1px rgba(7,39,79,.55);
}
.legend-bounds {
  border: 2px solid rgba(7,39,79,.65);
  background: rgba(11,60,126,.08);
}
.coverage-site-detail {
  min-height: 48px;
  color: var(--gray-600);
  border-top: 1px solid var(--gray-200);
  padding-top: .85rem;
  font-size: .92rem;
}
.coverage-list {
  display: grid;
  gap: 1rem;
}
.coverage-card {
  display: grid;
  gap: .75rem;
  background: #fff;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.2rem;
}
.coverage-card h3 {
  color: var(--blue-900);
  font-size: 1.2rem;
  margin-top: .35rem;
}
.coverage-card p { color: var(--gray-600); }
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: .25rem .7rem;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-800);
  font-size: .78rem;
  font-weight: 800;
}

/* Agencies */
.agency-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  gap: 1rem;
}
.agency-card {
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
}
.agency-card-head span {
  display: inline-flex;
  padding: .2rem .65rem;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-800);
  font-size: .75rem;
  font-weight: 800;
  margin-bottom: .55rem;
}
.agency-card h3 {
  color: var(--blue-900);
  font-size: 1.25rem;
}
.agency-card p { color: var(--gray-600); margin-top: .5rem; }
.agency-card dl {
  display: grid;
  gap: .65rem;
  margin: 1rem 0;
}
.agency-card dl div {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 1rem;
}
.agency-card dt {
  color: var(--blue-800);
  font-weight: 800;
}
.agency-card dd { color: var(--gray-600); }
.agency-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: auto;
}

/* Self-care and recommender */
.selfcare-hero .eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 800;
  margin-bottom: .5rem;
}
.selfcare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.selfcare-card {
  display: grid;
  gap: .55rem;
  min-height: 170px;
  padding: 1.25rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  color: var(--ink);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.selfcare-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.selfcare-card span,
.future-card span {
  display: inline-flex;
  width: fit-content;
  padding: .2rem .65rem;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-800);
  font-size: .75rem;
  font-weight: 800;
}
.selfcare-card strong {
  color: var(--blue-900);
  font-size: 1.12rem;
}
.selfcare-card p,
.future-card p { color: var(--gray-600); }
.future-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.future-card {
  display: grid;
  gap: .65rem;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  background: var(--blue-50);
  padding: 1.25rem;
}
.future-card h3 { color: var(--blue-900); }
.advisor-panel {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 1.5rem;
  align-items: stretch;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1.5rem;
}
.advisor-panel h2 {
  color: var(--blue-900);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  margin: .3rem 0 .5rem;
}
.advisor-panel p { color: var(--gray-600); }
.advisor-controls {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem;
  margin-top: 1rem;
}
.advisor-button {
  border: 1px solid var(--gray-200);
  background: #fff;
  color: var(--blue-800);
  min-height: 44px;
  border-radius: 999px;
  padding: .6rem 1rem;
  font-weight: 800;
  cursor: pointer;
}
.advisor-button:hover,
.advisor-button.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
.recommendation-output {
  display: grid;
  gap: .7rem;
  align-content: center;
  border-radius: var(--radius);
  background: var(--grad);
  color: #fff;
  padding: 1.5rem;
}
.recommendation-output span {
  color: rgba(255,255,255,.75);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .8rem;
}
.recommendation-output h3 { font-size: 1.6rem; }
.recommendation-output p { color: rgba(255,255,255,.86); }

.mobile-action-dock {
  display: none;
}

.featured-offers-section {
  padding-top: 3rem;
}
.featured-offers-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.featured-offer {
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.featured-offer-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--blue-100);
}
.featured-offer-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.featured-offer-body {
  display: grid;
  gap: .6rem;
  padding: 1.3rem;
}
.featured-offer-body span {
  color: var(--accent);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.featured-offer-body h3 { color: var(--blue-900); font-size: 1.25rem; }
.featured-offer-body p { color: var(--gray-600); }

.ussd-showcase {
  padding: 3.5rem 0;
}
.ussd-panel {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: center;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
  padding: 1.5rem;
}
.ussd-media {
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--blue-50);
}
.ussd-copy h2 {
  color: var(--blue-900);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.15;
  margin: .4rem 0 .8rem;
}
.ussd-copy p {
  color: var(--gray-600);
  margin-bottom: 1.2rem;
}
.ussd-media img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 480px;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
}

/* Price cards */
.price-card { text-align: center; padding: 2rem 1.5rem; }
.price-card img { width: 110px; height: 110px; object-fit: contain; margin: 0 auto 1.2rem; }
.price-card img.bundle-image {
  width: min(320px, 100%);
  height: auto;
  aspect-ratio: 720 / 472;
  border-radius: 8px;
  background: var(--blue-50);
  border: 1px solid rgba(11, 60, 126, .12);
  box-shadow: 0 12px 28px rgba(11, 60, 126, .14);
}
.terminal-grid {
  align-items: stretch;
}
.terminal-card {
  justify-content: space-between;
}
.price-card img.terminal-image {
  width: min(260px, 100%);
  height: 220px;
  object-fit: contain;
  margin: 0 auto 1.2rem;
  padding: .65rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: none;
}
.price-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--blue-900); }
.price-card .price { font-size: 1.25rem; font-weight: 800; color: var(--accent); margin-top: .4rem; }
.price-card .tag {
  display: inline-block; background: var(--blue-100); color: var(--blue-700);
  font-size: .72rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase;
  padding: .25rem .8rem; border-radius: 999px; margin-bottom: .9rem;
}
.plan-card dl {
  display: grid;
  gap: .7rem;
  margin: 1rem 0;
  text-align: left;
}
.plan-card dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: .55rem;
}
.plan-card dt {
  color: var(--gray-600);
  font-size: .82rem;
  font-weight: 700;
}
.plan-card dd {
  color: var(--blue-900);
  font-size: .95rem;
  font-weight: 800;
  text-align: right;
}
.plan-card p {
  color: var(--gray-600);
  font-size: .9rem;
}

.trinet-section { padding-top: 4rem; }
.trinet-grid { align-items: stretch; }
.trinet-card {
  position: relative;
  padding: 2rem 1.5rem;
  border: 1px solid rgba(11, 60, 126, .12);
}
.trinet-card::before {
  content: "";
  height: 6px;
  background: linear-gradient(90deg, var(--blue-700), var(--accent));
  position: absolute;
  inset: 0 0 auto;
}
.trinet-card .tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  width: max-content;
  background: var(--blue-100);
  color: var(--blue-800);
  border-radius: 999px;
  padding: .25rem .85rem;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .06em;
}
.trinet-card h3 {
  color: var(--blue-900);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  margin: 1.2rem 0 .6rem;
  font-weight: 800;
}
.trinet-card .price {
  color: var(--accent);
  font-size: 1.55rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
}
.trinet-card .price span {
  display: block;
  color: var(--gray-600);
  font-size: .82rem;
  font-weight: 700;
  margin-top: .1rem;
}
.trinet-card dl {
  display: grid;
  gap: .65rem;
  margin-bottom: 1.4rem;
}
.trinet-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--gray-200);
  padding-bottom: .55rem;
}
.trinet-card dt {
  color: var(--gray-600);
  font-size: .85rem;
  font-weight: 700;
}
.trinet-card dd {
  color: var(--blue-900);
  font-size: .92rem;
  font-weight: 800;
  text-align: right;
}
.trinet-note {
  max-width: 760px;
  margin: 1.4rem auto 0;
  padding: 1rem 1.2rem;
  border-left: 4px solid var(--accent);
  border-radius: 0 8px 8px 0;
  background: #fff;
  color: var(--blue-800);
  font-weight: 800;
  box-shadow: var(--shadow);
}

.service-plans-section {
  padding: 3.5rem 0;
}
.service-plan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.service-plan-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  gap: .85rem;
  overflow: hidden;
  padding: 1.6rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.service-plan-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--blue-700), var(--accent));
}
.service-plan-card span {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 30px;
  padding: .2rem .75rem;
  border-radius: 999px;
  background: var(--blue-100);
  color: var(--blue-800);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.service-plan-card h3 {
  color: var(--blue-900);
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  line-height: 1.15;
}
.service-plan-card p {
  color: var(--gray-600);
}
.service-plan-card ul {
  display: grid;
  gap: .55rem;
  margin: .2rem 0 1rem;
}
.service-plan-card li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--gray-600);
  font-size: .94rem;
}
.service-plan-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}
.service-plan-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Feature strip */
.feature-strip { background: var(--blue-800); color: #fff; border-radius: var(--radius); padding: 2.5rem; display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feature-strip .feat h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: .3rem; }
.feature-strip .feat p { color: rgba(255,255,255,.75); font-size: .92rem; }
.feature-strip .num {
  width: 46px; height: 46px; border-radius: 12px; background: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.2rem; margin-bottom: 1rem;
}

/* Split rows */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: center; }
.split.reverse .split-media { order: 2; }
.split-media { display: flex; justify-content: center; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 75%; max-height: 500px; object-fit: cover; }
.split-media img.service-image {
  width: min(560px, 100%);
  height: auto;
  max-height: none;
  aspect-ratio: 900 / 680;
  object-fit: contain;
}
.split-media img.service-photo {
  width: min(560px, 100%);
  height: clamp(300px, 31vw, 430px);
  max-height: none;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
}
.split-body .kicker { color: var(--accent); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; }
.split-body h2 { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 800; color: var(--blue-900); margin: .4rem 0 1rem; }
.split-body ul { display: grid; gap: .7rem; margin-bottom: 1.5rem; }
.split-body ul li { padding-left: 1.7rem; position: relative; color: var(--gray-600); }
.split-body ul li::before { content: "✓"; position: absolute; left: 0; color: var(--accent); font-weight: 800; }
.split-body .note { background: var(--blue-50); border-left: 4px solid var(--accent); padding: .9rem 1.2rem; border-radius: 0 12px 12px 0; font-size: .92rem; color: var(--blue-800); font-weight: 600; margin-bottom: 1.5rem; }

/* Big CTA banner */
.cta-banner { background: var(--grad); border-radius: var(--radius); color: #fff; padding: 2.5rem 3.5rem; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-banner::before { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,.08); top: -120px; right: -60px; }
.cta-banner h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); font-weight: 800; position: relative; }
.cta-banner p { color: rgba(255,255,255,.85); margin-top: .4rem; position: relative; }
.cta-banner .big { font-size: 2.6rem; color: var(--accent); font-weight: 800; position: relative; padding: .5rem 0; }

/* ---------- Legal pages ---------- */
.legal { max-width: 860px; margin: 0 auto; }
.legal .updated { color: var(--gray-600); font-size: .9rem; margin-bottom: 2.5rem; }
.legal h2 { font-size: 1.45rem; font-weight: 800; color: var(--blue-900); margin: 2.5rem 0 1rem; padding-top: 1rem; border-top: 1px solid var(--gray-200); }
.legal h2:first-of-type { border-top: 0; margin-top: 0; padding-top: 0; }
.legal h3 { font-size: 1.1rem; font-weight: 700; color: var(--blue-800); margin: 1.6rem 0 .6rem; }
.legal p { color: var(--gray-600); margin-bottom: 1rem; }
.legal ul, .legal ol { margin: 0 0 1rem 1.4rem; color: var(--gray-600); }
.legal ul { list-style: disc; }
.legal ol { list-style: decimal; }
.legal ul li, .legal ol li { margin-bottom: .5rem; padding-left: .3rem; }
.legal .legal-note { background: var(--blue-50); border-left: 4px solid var(--accent); padding: 1rem 1.3rem; border-radius: 0 12px 12px 0; font-size: .92rem; color: var(--blue-800); margin: 2rem 0; }
.legal table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: .92rem; }
.legal table th { background: var(--blue-800); color: #fff; text-align: left; padding: .7rem 1rem; }
.legal table td { padding: .7rem 1rem; border-bottom: 1px solid var(--gray-200); color: var(--gray-600); vertical-align: top; }

/* Google Maps embed */
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); line-height: 0; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; }

/* ---------- FAQ accordion ---------- */
.faq details {
  background: #fff; border-radius: 14px; box-shadow: var(--shadow);
  margin-bottom: 1rem; overflow: hidden;
}
.faq summary {
  cursor: pointer; padding: 1.2rem 1.5rem; font-weight: 700; color: var(--blue-900);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--accent); font-weight: 800; transition: transform .25s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 1.5rem 1.3rem; color: var(--gray-600); }
.faq .faq-body ul { display: grid; gap: .5rem; margin-top: .5rem; }
.faq .faq-body ul li { padding-left: 1.5rem; position: relative; }
.faq .faq-body ul li::before { content: "•"; position: absolute; left: .4rem; color: var(--accent); font-weight: 800; }

/* ---------- Contact ---------- */
.contact-card { text-align: center; padding: 2.5rem 1.8rem; }
.contact-card .icon {
  width: 64px; height: 64px; margin: 0 auto 1.2rem; border-radius: 18px;
  background: var(--blue-100); color: var(--blue-700);
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  font-weight: 800;
}
.contact-card h3 { font-weight: 800; color: var(--blue-900); margin-bottom: .6rem; }
.contact-card p { color: var(--gray-600); font-size: .95rem; }
.contact-card a.big-link { display: block; margin-top: .5rem; font-weight: 800; color: var(--accent); font-size: 1.15rem; }
.contact-form-layout {
  max-width: 920px;
}
.contact-form-card {
  display: grid;
  gap: 1.2rem;
  padding: 1.5rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.form-grid label {
  display: grid;
  gap: .45rem;
  color: var(--blue-900);
  font-size: .9rem;
  font-weight: 800;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-weight: 600;
  padding: .75rem .85rem;
}
.form-grid textarea {
  min-height: 132px;
  resize: vertical;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--blue-600);
  outline: 3px solid rgba(17,96,196,.14);
}
.form-grid .span-2 {
  grid-column: 1 / -1;
}
.contact-form-card .btn {
  justify-self: start;
}

/* ---------- Footer ---------- */
.site-footer { background: var(--blue-900); color: rgba(255,255,255,.8); padding: 4rem 0 0; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: 3rem; padding-bottom: 3rem; }
.site-footer h4 { color: #fff; font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1.1rem; }
.site-footer p { font-size: .92rem; line-height: 1.7; }
.site-footer ul { display: grid; gap: .6rem; }
.site-footer ul a { color: rgba(255,255,255,.8); font-size: .95rem; }
.site-footer ul a:hover { color: var(--accent); }
.footer-logo { height: 54px; width: auto; margin-bottom: 1.2rem; background: #fff; border-radius: 10px; padding: 6px; }
.footer-social { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.2rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center; color: #fff;
  transition: background .25s, transform .2s ease, box-shadow .2s ease;
}
.footer-social a svg { width: 18px; height: 18px; flex: 0 0 auto; }
.footer-social a:hover,
.footer-social a:focus-visible { background: var(--accent); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 1.3rem 0; text-align: center; font-size: .85rem; color: rgba(255,255,255,.55); }
address { font-style: normal; font-size: .92rem; line-height: 1.7; }
address strong { color: #fff; }

/* ---------- Floating chat ---------- */
.chat-widget {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 150;
  display: grid;
  gap: .55rem;
}
.chat-action {
  width: 54px;
  height: 54px;
  min-width: 54px;
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  font-size: .9rem;
  box-shadow: 0 16px 36px rgba(7,39,79,.22);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.chat-action svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: currentColor;
}
.chat-action:hover {
  color: #fff;
  filter: brightness(1.03);
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(7,39,79,.28);
}
.chat-action span { display: none; }
.chat-whatsapp { background: var(--accent); }
.chat-messenger { background: var(--blue-700); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-inner, .split, .split.reverse { grid-template-columns: 1fr; }
  .hero { min-height: clamp(600px, calc(100vh - 160px), 720px); }
  .hero-inner { gap: 2rem; padding: 4.5rem 0 6rem; }
  .hero h1 { font-size: 3rem; }
  .hero-media { justify-self: stretch; width: 100%; }
  .service-launcher-head,
  .service-launcher-grid,
  .proof-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-launcher-head { align-items: start; }
  .split.reverse .split-media { order: 0; }
  .split-media img { width: 100%; }
  .operator-console { width: 100%; }
  .campaign-grid { grid-template-columns: repeat(2, 1fr); }
  .deal-grid, .intent-help-grid, .home-terminal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .segment-grid, .selfcare-grid, .future-grid, .advisor-panel, .featured-offers-grid, .ussd-panel, .service-plan-grid { grid-template-columns: 1fr; }
  .status-grid { grid-template-columns: 1fr; }
  .coverage-layout, .help-layout { grid-template-columns: 1fr; }
  .search-box { position: static; }
  .quick-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .feature-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 1120px) {
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 76px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid var(--gray-200); box-shadow: var(--shadow);
  }
  .main-nav.open { display: block; }
  .main-nav ul { flex-direction: column; gap: 0; padding: 1rem 0; }
  .main-nav ul li { width: 100%; }
  .main-nav a { display: block; padding: .9rem 1.6rem; }
  .nav-cta { margin: .5rem 1.6rem 1rem; }
}
@media (max-width: 700px) {
  main { padding-bottom: 84px; }
  .utility-inner {
    justify-content: center;
    gap: .4rem .65rem;
    padding: .45rem 0;
  }
  .utility-inner span {
    flex-basis: 100%;
    margin: 0;
    text-align: center;
  }
  .utility-inner a { font-size: .78rem; white-space: nowrap; }
  .nav-wrap { min-height: 70px; gap: .45rem; }
  .header-tools { display: none; }
  .nav-toggle {
    display: block;
    position: static;
    transform: none;
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--blue-700);
    color: #fff;
    z-index: 180;
    font-size: 1.45rem;
  }
  .logo img { height: 46px; }
  .main-nav { top: 70px; }
  .header-tools { gap: .45rem; }
  .language-switch { gap: .05rem; padding: .15rem; }
  .language-switch a { min-width: 1.82rem; min-height: 1.82rem; font-size: .72rem; }
  .hero { min-height: clamp(560px, calc(100vh - 170px), 620px); }
  .hero-inner { gap: 1rem; padding: 2.5rem 0 4.5rem; }
  .hero-network-flow { opacity: .48; }
  .hero-network-flow::before {
    top: 42%;
    right: -54%;
    width: 170%;
    height: 31%;
    transform: rotate(-12deg) skewY(-5deg);
  }
  .hero-network-svg {
    transform: translateX(-10%) translateY(7%) scale(1.18);
    transform-origin: center;
  }
  .hero-signal-line { stroke-width: 2.2; }
  .hero-signal-line-accent { stroke-width: 3.2; }
  .hero h1 { font-size: 1.95rem; overflow-wrap: anywhere; }
  .hero h1 .accent { display: block; }
  .hero p.lead { font-size: 1rem; margin-bottom: 1.4rem; }
  .hero-feature-panel { padding: .7rem; max-width: 360px; }
  .hero-badge { font-size: 1.12rem; }
  .hero-dots { bottom: 5.5rem; }
  .hero-dot { width: 32px; }
  .hero-dot.active { width: 52px; }
  .operator-console > div { grid-template-columns: 1fr; }
  .hero .operator-console { display: none; }
  .hero .operator-console > div { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero .operator-console a { min-height: 62px; padding: .55rem .35rem; }
  .hero .operator-console a strong { font-size: .86rem; overflow-wrap: anywhere; }
  .service-launcher-section { padding: 2rem 0 2.6rem; }
  .service-launcher-head,
  .service-launcher-grid,
  .proof-strip { grid-template-columns: 1fr; }
  .service-launcher-head { gap: .7rem; }
  .service-launcher-head h2 { font-size: 1.65rem; }
  .service-launcher-card { min-height: 180px; }
  .segment-section { padding: 2rem 0; }
  .campaign-grid, .deal-grid, .intent-help-grid, .home-terminal-grid { grid-template-columns: 1fr; }
  .campaign-section { padding: 2.5rem 0; }
  .advisor-controls { display: grid; grid-template-columns: 1fr; }
  .ussd-panel { padding: 1rem; }
  .ussd-media img { max-height: 360px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-grid .span-2 { grid-column: auto; }
  .split-media img.service-photo { height: min(420px, 78vw); }
  .recommendation-output h3 { font-size: 1.35rem; }
  .quick-actions { grid-template-columns: 1fr; }
  .status-panel { padding: 1.2rem; }
  .coverage-map { min-height: auto; }
  .coverage-map-kpis { gap: .4rem; }
  .coverage-map-kpis article { padding: .6rem .5rem; }
  .coverage-map-kpis span { font-size: 1rem; }
  .coverage-map-kpis strong { font-size: .62rem; }
  .coverage-map-toolbar { align-items: flex-start; flex-direction: column; }
  .coverage-map-toolbar span { text-align: left; }
  .coverage-map-stage { min-height: 320px; }
  .coverage-region span { font-size: .62rem; }
  .coverage-region strong { font-size: 1.1rem; }
  .coverage-region small { display: none; }
  .coverage-city-label { font-size: .66rem; padding: .22rem .42rem; }
  .coverage-inset {
    right: .6rem;
    bottom: .6rem;
    width: 106px;
    min-height: 76px;
  }
  .coverage-map-footer { display: grid; }
  .agency-card dl div { grid-template-columns: 1fr; gap: .15rem; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .cta-banner { padding: 2rem; }
  .mobile-action-dock {
    position: fixed;
    left: .75rem;
    right: .75rem;
    bottom: .75rem;
    z-index: 140;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .35rem;
    min-height: 64px;
    padding: .45rem;
    border: 1px solid rgba(228,234,242,.92);
    border-radius: 16px;
    background: rgba(255,255,255,.96);
    box-shadow: 0 18px 45px rgba(7,39,79,.22);
    backdrop-filter: blur(12px);
  }
  .mobile-action-dock a {
    display: grid;
    place-items: center;
    gap: .1rem;
    color: var(--blue-800);
    font-size: .72rem;
    font-weight: 800;
    line-height: 1.15;
    text-align: center;
  }
  .mobile-action-dock strong {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--blue-100);
    color: var(--blue-800);
    font-size: .82rem;
  }
  .mobile-action-dock a:nth-child(3) strong {
    background: var(--accent);
    color: #fff;
  }
  .site-footer { padding-bottom: 5rem; }
  .chat-widget {
    right: .75rem;
    bottom: 5.8rem;
    gap: .45rem;
  }
  .chat-action {
    min-width: 46px;
    width: 46px;
    height: 46px;
    min-height: 46px;
    justify-content: center;
    padding: 0;
  }
  .chat-action span { display: none; }
  .chat-action svg { width: 23px; height: 23px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
