:root {
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --ink: #0f172a;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(15, 23, 42, 0.14);
  --brand: #0d9488;
  --brand-hover: #0f766e;
  --brand-dark: #134e4a;
  --brand-glow: rgba(13, 148, 136, 0.35);
  --accent: #f97316;
  --accent-soft: #fff7ed;
  --soft: #f0fdfa;
  --surface: #ffffff;
  --surface-elevated: #f4f6f9;
  --surface-band: #e8eef4;
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-sm: 0 4px 14px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 12px 36px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 24px 52px rgba(15, 23, 42, 0.1);
  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --motion: 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  color: var(--ink);
  background-color: var(--surface-elevated);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  animation: pageFade 480ms ease both;
}

a {
  color: inherit;
  text-decoration: none;
}

.top-promo {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 28px;
  padding: 10px clamp(18px, 4vw, 48px);
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.94);
  background: linear-gradient(90deg, #0f172a 0%, #134e4a 55%, #115e59 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-promo p {
  margin: 0;
  flex: 1 1 220px;
  text-align: center;
  max-width: 760px;
  line-height: 1.45;
}

.top-promo strong {
  font-weight: 800;
}

.top-promo-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.top-promo-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #0f172a;
  background: #fff;
  transition:
    transform var(--motion),
    box-shadow var(--motion);
}

.top-promo-actions a:last-child {
  color: white;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.top-promo-actions a:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 10px clamp(18px, 4vw, 48px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  animation: headerDrop 500ms ease both;
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: opacity var(--motion);
}

.brand:hover {
  opacity: 0.92;
}

.brand-mark {
  display: grid;
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: var(--radius-sm);
  color: white;
  background: linear-gradient(145deg, var(--brand) 0%, var(--brand-dark) 100%);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: -0.02em;
  box-shadow:
    var(--shadow-sm),
    0 0 0 1px rgba(255, 255, 255, 0.12) inset;
}

.brand-text strong,
.brand-text small {
  display: block;
}

.brand-text strong {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--ink);
}

.brand-text small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 500;
}

.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
}

.main-nav > a:not(.nav-recharge):not(.nav-call) {
  padding: 8px 4px;
  margin: 0 8px;
  border-radius: 0;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.875rem;
  border-bottom: 2px solid transparent;
  transition:
    color var(--motion),
    border-color var(--motion);
}

.main-nav > a:not(.nav-recharge):not(.nav-call):hover {
  color: var(--brand-hover);
  background: transparent;
  border-bottom-color: rgba(13, 148, 136, 0.35);
}

.main-nav > a.active:not(.nav-recharge):not(.nav-call) {
  color: var(--brand-dark);
  background: transparent;
  box-shadow: none;
  border-bottom-color: var(--brand);
}

.main-nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 8px;
  padding-left: 12px;
  border-left: 1px solid var(--line);
}

.main-nav .nav-call,
.main-nav .nav-recharge {
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.8125rem;
  transition:
    transform var(--motion),
    box-shadow var(--motion),
    background var(--motion);
}

.main-nav .nav-call {
  color: white;
  background: linear-gradient(145deg, var(--brand) 0%, var(--brand-hover) 100%);
  box-shadow:
    var(--shadow-sm),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}

.main-nav .nav-call:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md), 0 0 20px rgba(13, 148, 136, 0.25);
}

.main-nav .nav-recharge {
  color: var(--ink);
  background: var(--accent-soft);
  border: 1px solid rgba(249, 115, 22, 0.32);
  box-shadow: none;
}

.main-nav .nav-recharge:hover {
  transform: translateY(-1px);
  border-color: var(--accent);
  box-shadow: var(--shadow-xs);
}

.nav-toggle {
  display: none;
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  box-shadow: var(--shadow-xs), 0 0 0 1px var(--line);
  transition: box-shadow var(--motion), transform var(--motion);
}

.nav-toggle:hover {
  box-shadow: var(--shadow-sm);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  border-radius: 2px;
  background: currentColor;
  transition:
    transform var(--motion),
    opacity var(--motion);
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  content: '';
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.nav-toggle[aria-expanded='true'] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded='true'] .nav-toggle-lines::before {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded='true'] .nav-toggle-lines::after {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  overflow: clip;
}

.hero--telco {
  position: relative;
  padding: clamp(48px, 10vw, 88px) 0 clamp(56px, 8vw, 72px);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--surface-elevated) 100%);
  border-bottom: 1px solid var(--line);
}

.hero--telco::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13, 148, 136, 0.2), transparent);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(260px, 0.94fr);
  gap: clamp(24px, 5vw, 56px);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 48px);
}

.hero-copy-col {
  min-width: 0;
}

.hero-slider-copy {
  position: relative;
  max-width: 640px;
}

.hero-slider-copy.has-controls {
  padding-bottom: 8px;
}

.hero-slider-stack {
  display: grid;
  min-height: 12px;
}

.hero-slide-copy {
  grid-area: 1 / 1;
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
}

.hero--carousel .hero-slide-copy {
  opacity: 0;
  visibility: hidden;
  transform: translate3d(28px, 0, 0);
  transition:
    opacity 0.52s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.52s cubic-bezier(0.33, 1, 0.68, 1),
    visibility linear 0s 0.52s;
  pointer-events: none;
  z-index: 0;
}

.hero--carousel .hero-slide-copy.is-active {
  opacity: 1;
  visibility: visible;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.52s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.52s cubic-bezier(0.33, 1, 0.68, 1),
    visibility linear 0s 0s;
  pointer-events: auto;
  z-index: 2;
}



.hero--telco .hero-slide-copy h1 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.6vw + 0.8rem, 3.35rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: -0.035em;
  color: var(--ink);
  text-wrap: balance;
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 6px 14px 6px 10px;
  border-radius: var(--radius-pill);
  color: var(--brand-dark);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: var(--soft);
  border: 1px solid rgba(13, 148, 136, 0.22);
  box-shadow: var(--shadow-xs);
}

.hero-chip span[aria-hidden] {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #5eead4, var(--brand));
  animation: pulseDot 2.4s ease-in-out infinite;
}

.hero-lede {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1rem, 0.35vw + 0.94rem, 1.1875rem);
  font-weight: 500;
  line-height: 1.62;
}

.hero-points {
  margin: 22px 0 0;
  padding: 0;
  max-width: 560px;
  list-style: none;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-soft);
  line-height: 1.55;
}

.hero-points li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
}

.hero-points li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.6875rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--brand-dark);
  background: rgba(240, 253, 250, 0.88);
  border: 1px solid rgba(13, 148, 136, 0.22);
}

h1,
h2,
h6,
p {
  margin-top: 0;
}

.hero-actions,
.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 22px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(13, 148, 136, 0.22);
  color: var(--brand-dark);
  background: var(--surface);
  font-family: inherit;
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: var(--shadow-xs);
  cursor: pointer;
  transition:
    transform var(--motion),
    box-shadow var(--motion),
    background var(--motion),
    border-color var(--motion),
    color var(--motion);
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 148, 136, 0.35);
  box-shadow: var(--shadow-sm);
}

.button:active {
  transform: translateY(0);
}

.button.primary {
  color: white;
  border-color: transparent;
  background: linear-gradient(145deg, var(--brand) 0%, var(--brand-hover) 100%);
  box-shadow:
    var(--shadow-md),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.button.secondary {
  color: var(--ink);
  background: var(--surface);
  border: 2px solid var(--line-strong);
  box-shadow: none;
}

.button.secondary:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
  box-shadow: var(--shadow-xs);
}

.button.primary:hover {
  box-shadow:
    var(--shadow-lg),
    0 0 28px rgba(13, 148, 136, 0.3);
}

.button.ghost {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(12px);
}

.button.ghost:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.45);
}

.button.full {
  width: 100%;
}

.form-panel,
.map-card,
.admin-card,
.plan-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
}

.hero-panel {
  position: relative;
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-lg);
  animation: slideUp 620ms cubic-bezier(0.22, 1, 0.36, 1) 160ms both;
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(165deg, rgba(240, 253, 250, 0.5) 0%, transparent 55%);
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
}

.hero-panel strong {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.hero-panel a {
  color: var(--brand-hover);
  font-size: clamp(1.25rem, 2.8vw, 1.65rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-panel a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero-address {
  font-size: 0.9375rem;
  color: var(--ink-soft);
  line-height: 1.5;
}

.hero-aside {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-media {
  display: grid;
  position: relative;
  overflow: hidden;
  min-height: clamp(220px, 36vw, 320px);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(13, 148, 136, 0.12) 0%, rgba(249, 115, 22, 0.06) 100%);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.hero-slide-media {
  grid-area: 1 / 1;
  width: 100%;
  min-height: clamp(220px, 36vw, 320px);
  background-color: var(--surface-band);
  opacity: 1;
}

.hero--carousel .hero-slide-media {
  opacity: 0;
  transform: scale3d(1.04, 1.04, 1);
  transition:
    opacity 0.52s cubic-bezier(0.33, 1, 0.68, 1),
    transform 0.64s cubic-bezier(0.33, 1, 0.68, 1);
  z-index: 0;
}

.hero--carousel .hero-slide-media.is-active {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  z-index: 1;
}

.hero-slider-controls {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 20px;
}

.hero-slider-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: var(--surface);
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition:
    background var(--motion),
    border-color var(--motion),
    transform var(--motion);
}

.hero-slider-btn:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
  transform: translateY(-1px);
}

.hero-slider-dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  flex: 1 1 auto;
  justify-content: center;
}

.hero-slider-dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: var(--line-strong);
  cursor: pointer;
  transition:
    background var(--motion),
    transform var(--motion),
    width var(--motion);
}

.hero-slider-dot.is-active {
  width: 22px;
  background: linear-gradient(90deg, var(--brand), var(--brand-dark));
}

.hero-slider-dot:hover {
  transform: scale3d(1.12, 1.12, 1);
}

.hero-panel-float {
  align-self: stretch;
  margin: -52px 12px 0;
  z-index: 2;
  box-shadow: var(--shadow-lg);
}

.hero-panel-float .hero-panel-action {
  margin-top: 4px;
}

.hero-panel-float a.button {
  text-decoration: none;
}

.hero-panel-float a[href^='tel'] {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
}

.section,
.page-title,
.coverage-layout,
.contact-layout,
.feature-band {
  padding: clamp(44px, 8vw, 84px) clamp(18px, 4vw, 48px);
}

.section.compact {
  padding-top: 8px;
}

.section--surface {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section--muted {
  background: var(--surface-band);
}

.section-heading-edge {
  max-width: 1200px;
}

.section-heading.section-heading-edge {
  margin-left: 0;
  margin-right: 0;
}

.section-heading.edge-left,
.section-heading.section-heading-edge:not(.centered-heading) {
  text-align: left;
}

.section-heading,
.page-title {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.centered-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.page-title .eyebrow,
.section-heading .eyebrow {
  color: var(--brand-hover);
  background: rgba(240, 253, 250, 0.9);
  border: 1px solid rgba(13, 148, 136, 0.2);
}

.section-heading .eyebrow {
  margin-bottom: 10px;
}

.centered-heading .eyebrow {
  justify-content: center;
}

.section-heading h2,
.page-title h1 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}

.page-title p,
.section-heading p {
  font-size: 1.0625rem;
  color: var(--muted);
  margin-bottom: 0;
}

.section-heading h6 {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.0625rem;
  font-weight: 600;
}

.section-heading .small-heading {
  font-size: clamp(1.375rem, 2.8vw, 1.875rem);
}

.page-title .half-size-plan-heading {
  font-size: clamp(1.3125rem, 3vw, 2.0625rem) !important;
}

.section-heading .half-size-plan-heading {
  font-size: clamp(1.03125rem, 2.1vw, 1.40625rem) !important;
}

.section.compact .section-heading .half-size-plan-heading {
  font-size: clamp(1.3125rem, 3vw, 2.0625rem) !important;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.service-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 220px;
  padding: clamp(22px, 4vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--motion),
    box-shadow var(--motion),
    border-color var(--motion);
}

.service-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  border-radius: 0 0 4px 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
  opacity: 0;
  transition: opacity var(--motion);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card span {
  color: var(--ink);
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.service-card p {
  color: var(--muted);
  font-size: 0.9375rem;
  flex: 1;
}

.service-card .button {
  align-self: end;
}

.service-card a:not(.button) {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  align-self: start;
  color: var(--brand-hover);
  font-weight: 800;
  font-size: 0.875rem;
}

.service-card a:not(.button)::after {
  content: '→';
  font-weight: 800;
  transition: transform var(--motion);
}

.service-card a:not(.button):hover::after {
  transform: translateX(4px);
}

.plan-card {
  display: grid;
  gap: 14px;
  padding: clamp(22px, 4vw, 28px);
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--motion),
    box-shadow var(--motion),
    border-color var(--motion);
}

.plan-card:hover,
.service-card:hover,
.coverage-item:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 148, 136, 0.22);
  box-shadow: var(--shadow-lg);
}

.admin-card:hover {
  transform: translateY(-2px);
  border-color: rgba(13, 148, 136, 0.2);
  box-shadow: var(--shadow-md);
}

.plan-name {
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.plan-card strong {
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.plan-card small {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.plan-card p {
  color: var(--muted);
  font-size: 0.9375rem;
}

.plan-grid:has(.plan-card:nth-child(3)) .plan-card:nth-child(2) {
  position: relative;
  padding-top: 28px;
  border-color: rgba(13, 148, 136, 0.38);
  background: linear-gradient(180deg, #ffffff 0%, #f4fffc 65%);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(13, 148, 136, 0.08);
}

.plan-grid:has(.plan-card:nth-child(3)) .plan-card:nth-child(2)::before {
  content: 'Popular choice';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 5px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
  background: linear-gradient(90deg, var(--brand) 0%, var(--brand-dark) 100%);
  box-shadow: var(--shadow-sm);
}

.price {
  font-size: clamp(1.625rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
}

.price small {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--muted);
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: clamp(24px, 5vw, 40px);
  align-items: center;
  margin: clamp(24px, 5vw, 48px) clamp(18px, 4vw, 48px);
  padding: clamp(40px, 7vw, 64px);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  color: white;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, #0f172a 0%, #134e4a 48%, #115e59 100%);
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
}

.feature-band h2 {
  margin-bottom: 12px;
  font-size: clamp(1.5rem, 3.2vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.feature-band > div:first-child p {
  margin-bottom: 0;
  font-size: 1.0625rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
  line-height: 1.6;
}

.feature-list {
  display: grid;
  gap: 12px;
}

.feature-list span {
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 600;
  font-size: 0.9375rem;
  transition:
    background var(--motion),
    transform var(--motion),
    border-color var(--motion);
}

.feature-list span:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
  transform: translateX(4px);
}

.coverage-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 520px);
  gap: 28px;
  padding-top: 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.coverage-full {
  padding: 0 clamp(18px, 4vw, 48px) clamp(44px, 8vw, 84px);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.coverage-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 400px);
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.coverage-toolbar h2 {
  margin-bottom: 8px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.coverage-toolbar p {
  margin-bottom: 0;
  color: var(--muted);
  font-weight: 500;
}

.map-card {
  display: grid;
  min-height: 300px;
  place-items: center;
  align-content: center;
  padding: 28px;
  text-align: center;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(240, 253, 250, 0.95) 0%, rgba(255, 251, 235, 0.85) 100%);
}

.map-pin {
  display: grid;
  width: 80px;
  height: 80px;
  margin-bottom: 16px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(145deg, var(--brand), var(--brand-dark));
  font-weight: 900;
  font-size: 1.25rem;
  box-shadow: var(--shadow-md);
}

.coverage-copy,
.contact-info,
.form-panel {
  padding: clamp(22px, 4vw, 30px);
}

.coverage-list {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.coverage-list-wide {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.coverage-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--motion),
    box-shadow var(--motion),
    border-color var(--motion);
}

.coverage-item strong,
.coverage-item span {
  display: block;
}

.coverage-item span {
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.coverage-badges {
  display: flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.coverage-item em {
  flex: 0 0 auto;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: var(--soft);
  border: 1px solid rgba(13, 148, 136, 0.15);
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
}

.coverage-empty {
  padding: 24px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  color: var(--muted);
  background: var(--surface);
  text-align: center;
  font-weight: 700;
  font-size: 0.9375rem;
}

.coverage-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 28px;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, var(--surface) 0%, var(--surface-elevated) 100%);
  box-shadow: var(--shadow-xs);
}

.coverage-cta p {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-weight: 500;
}

.contact-info {
  display: grid;
  align-content: start;
  gap: 14px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
}

.contact-info h2 {
  margin-bottom: 0;
  font-size: 1.35rem;
  font-weight: 800;
}

.contact-info p {
  color: var(--muted);
  font-weight: 500;
}

.contact-info a {
  color: var(--brand-hover);
  font-size: 1.125rem;
  font-weight: 800;
}

.contact-info span {
  font-size: 0.9375rem;
  color: var(--muted);
  font-weight: 600;
}

.contact-map {
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-top: 8px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--soft);
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--motion),
    box-shadow var(--motion);
}

.contact-map:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.coverage-contact-search-status {
  min-height: 1.35em;
  margin: -8px 0 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--muted);
}

.coverage-contact-suggestions {
  list-style: none;
  margin: -8px 0 10px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  box-shadow: var(--shadow-xs);
}

.coverage-contact-suggestion-btn {
  width: 100%;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  text-align: left;
  padding: 8px 10px;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.coverage-contact-suggestion-btn:hover,
.coverage-contact-suggestion-btn:focus {
  background: var(--surface-elevated);
  outline: none;
}

label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-weight: 700;
  font-size: 0.875rem;
}

.field-group {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.field-group strong {
  color: var(--ink);
  font-size: 1rem;
}

.field-group p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface-elevated);
  cursor: pointer;
  transition:
    border-color var(--motion),
    background var(--motion);
}

.check-row:hover {
  border-color: rgba(13, 148, 136, 0.25);
  background: var(--surface);
}

.check-row input {
  width: auto;
  accent-color: var(--brand);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font: inherit;
  font-size: 0.9375rem;
  background: var(--surface);
  transition:
    border-color var(--motion),
    box-shadow var(--motion),
    background var(--motion);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--brand);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(13, 148, 136, 0.15);
}

textarea {
  resize: vertical;
  min-height: 88px;
}

.alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  color: #166534;
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  font-weight: 600;
  font-size: 0.9rem;
}

.alert.error {
  color: #991b1b;
  background: #fef2f2;
  border-color: #fecaca;
}

.form-panel {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.site-footer {
  margin-top: clamp(32px, 6vw, 64px);
  padding: 0;
  color: rgba(248, 250, 252, 0.88);
  background: #0b1220;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: clamp(28px, 5vw, 48px);
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(44px, 8vw, 72px) clamp(18px, 4vw, 48px);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.footer-brand p {
  margin: 0;
  max-width: 320px;
  color: rgba(248, 250, 252, 0.62);
  font-size: 0.9375rem;
  line-height: 1.55;
  font-weight: 500;
}

.footer-heading {
  display: block;
  margin-bottom: 14px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(248, 250, 252, 0.45);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(248, 250, 252, 0.85);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: color var(--motion);
}

.footer-links a:hover {
  color: #5eead4;
}

.footer-address {
  margin: 0 0 12px;
  color: rgba(248, 250, 252, 0.62);
  font-size: 0.9375rem;
  line-height: 1.5;
  font-weight: 500;
}

.footer-tel,
.footer-mail {
  display: inline-block;
  margin-bottom: 6px;
  font-weight: 700;
  color: rgba(248, 250, 252, 0.95);
  transition: color var(--motion);
}

.footer-mail {
  margin-bottom: 0;
}

.footer-tel:hover,
.footer-mail:hover {
  color: #5eead4;
}

.site-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px clamp(18px, 4vw, 48px) 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(248, 250, 252, 0.45);
  font-size: 0.8125rem;
  font-weight: 500;
}

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

.footer-bar-actions a {
  font-weight: 600;
  color: rgba(248, 250, 252, 0.65);
}

.footer-bar-actions a:hover {
  color: #5eead4;
}

.footer-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(248, 250, 252, 0.25);
}

.admin-body {
  background: var(--surface-elevated);
  font-family: var(--font);
}

.admin-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(24px, 5vw, 40px) clamp(18px, 4vw, 32px);
}

.admin-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.admin-top strong {
  font-size: 1.25rem;
  font-weight: 800;
}

.admin-top p {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.admin-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.admin-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--brand-dark);
  background: var(--surface);
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 0.875rem;
  box-shadow: var(--shadow-xs);
  transition:
    border-color var(--motion),
    background var(--motion);
}

.admin-nav a:hover {
  border-color: rgba(13, 148, 136, 0.25);
  background: var(--soft);
}

.admin-card {
  padding: clamp(22px, 4vw, 26px);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xs);
  transition:
    transform var(--motion),
    box-shadow var(--motion),
    border-color var(--motion);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
  font-size: 0.9rem;
}

th {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.enquiry-device-cell details pre {
  margin: 8px 0 0;
  max-width: 320px;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 0.75rem;
  line-height: 1.4;
}

.enquiry-view-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.enquiry-view-toolbar h1 {
  margin: 10px 0 4px;
}

.enquiry-view-meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.enquiry-view-status-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
}

.enquiry-detail-list {
  display: grid;
  grid-template-columns: minmax(140px, 200px) 1fr;
  gap: 12px 20px;
  margin: 0;
}

.enquiry-detail-list dt {
  margin: 0;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.enquiry-detail-list dd {
  margin: 0;
}

.enquiry-device-pre {
  margin: 0;
  padding: 12px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid var(--line);
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 0.78rem;
  line-height: 1.45;
  max-width: 100%;
  overflow-x: auto;
}

.enquiry-view-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.enquiry-view-actions form {
  margin: 0;
}

.actions {
  display: flex;
  gap: 8px;
}

.danger {
  color: #b91c1c;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 640ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 640ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.plan-grid .reveal:nth-child(2),
.service-grid .reveal:nth-child(2),
.coverage-list .reveal:nth-child(2) {
  transition-delay: 60ms;
}

.plan-grid .reveal:nth-child(3),
.service-grid .reveal:nth-child(3),
.coverage-list .reveal:nth-child(3) {
  transition-delay: 120ms;
}

@keyframes pageFade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.15);
    opacity: 0.75;
  }
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .hero-aside {
    order: -1;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-panel-float {
    margin: -48px 16px 0;
  }

  .hero-slider-copy {
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero-chip {
    align-self: center;
  }

  .hero-actions {
    align-self: center;
    justify-content: center;
  }

  .hero-points {
    align-self: stretch;
  }

  .hero-points li {
    padding-left: 0;
    padding-top: 14px;
    text-align: center;
  }

  .hero-points li::before {
    left: 50%;
    top: 2px;
    transform: translateX(-50%);
  }

  .plan-grid,
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer-inner .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .site-header-inner {
    position: relative;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    left: clamp(18px, 4vw, 48px);
    right: clamp(18px, 4vw, 48px);
    width: auto;
    max-width: 1200px;
    margin: 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
    animation: slideUp 200ms ease both;
  }

  .main-nav.open {
    display: flex;
  }

  .main-nav > a:not(.nav-recharge):not(.nav-call) {
    padding: 12px 10px;
    margin: 0;
    border-bottom: 0;
    border-radius: var(--radius-sm);
  }

  .main-nav-actions {
    flex-direction: column;
    margin-left: 0;
    padding-left: 0;
    border-left: 0;
    padding-top: 8px;
    margin-top: 8px;
    border-top: 1px solid var(--line);
  }

  .main-nav .nav-call,
  .main-nav .nav-recharge {
    justify-content: center;
    width: 100%;
  }

  .hero-inner,
  .feature-band,
  .coverage-layout,
  .coverage-toolbar,
  .contact-layout,
  .coverage-cta {
    grid-template-columns: 1fr;
  }

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

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

  .coverage-list-wide {
    grid-template-columns: 1fr;
  }

  .site-footer-inner {
    grid-template-columns: 1fr;
  }

  .site-footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

.float-whatsapp-stack {
  position: fixed;
  right: calc(14px + env(safe-area-inset-right, 0px));
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: flex;
  flex-direction: column-reverse;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
}

.float-whatsapp-stack > * {
  pointer-events: auto;
}

.float-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.28);
  box-shadow: var(--shadow-md), 0 0 0 1px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  transition:
    transform var(--motion),
    filter var(--motion),
    box-shadow var(--motion);
}

.float-whatsapp-btn:hover {
  color: #fff;
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.05);
}

.float-whatsapp-btn:focus-visible {
  outline: 3px solid var(--brand-glow);
  outline-offset: 3px;
}

.float-whatsapp-btn--secondary {
  width: 48px;
  height: 48px;
}

.float-whatsapp-icon {
  display: block;
  flex-shrink: 0;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero--carousel .hero-slide-copy:not(.is-active),
  .hero--carousel .hero-slide-media:not(.is-active) {
    opacity: 0;
    visibility: hidden;
  }

  .hero--carousel .hero-slide-copy.is-active,
  .hero--carousel .hero-slide-media.is-active {
    opacity: 1;
    visibility: visible;
    transform: none !important;
  }
}
