:root {
  --bg: #f4f7fb;
  --bg-elevated: #ffffff;
  --bg-alt: #eef3f9;
  --surface: #ffffff;
  --border: rgba(15, 40, 80, 0.12);
  --text: #122033;
  --text-muted: #5a6b7d;
  --red: #e53935;
  --blue: #1e88e5;
  --green: #43a047;
  --yellow: #f9a825;
  --accent: #1e88e5;
  --accent-dim: #1565c0;
  --accent-glow: rgba(30, 136, 229, 0.3);
  --primary: #1e88e5;
  --primary-hover: #1565c0;
  --radius: 14px;
  --radius-sm: 10px;
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --header-h: 84px;
  --top-bar-h: 36px;
  --container: min(1120px, 100% - 2.5rem);
  --whatsapp: #25d366;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.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;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: 0.75rem 1rem;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

/* Top bar */
.top-bar {
  background: linear-gradient(90deg, var(--red) 0%, var(--yellow) 33%, var(--green) 66%, var(--blue) 100%);
  border-bottom: none;
  font-size: 0.8125rem;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--top-bar-h);
  color: #fff;
}

.top-bar-tariff {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 65%;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.top-bar-tariff:hover {
  color: #fff;
  text-decoration: underline;
}

.top-bar-phone {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.top-bar-phone:hover {
  text-decoration: underline;
}

.top-bar-phone .label-prefix {
  font-weight: 600;
  opacity: 0.95;
}

.top-bar-location {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  max-width: min(300px, 62vw);
  color: var(--text);
  text-decoration: none;
}

.logo:hover {
  text-decoration: none;
  opacity: 0.92;
}

.logo-img {
  display: block;
  width: auto;
  height: auto;
  max-height: 68px;
  max-width: 100%;
  object-fit: contain;
}

.logo-img-footer {
  max-height: 56px;
  margin-bottom: 0.5rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.site-nav a:hover {
  color: var(--text);
  text-decoration: none;
}

.site-nav a.is-active {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg-elevated);
  cursor: pointer;
  position: relative;
}

.nav-toggle-bar,
.nav-toggle-bar::before,
.nav-toggle-bar::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-toggle-bar {
  top: 50%;
  margin-top: -1px;
}

.nav-toggle-bar::before,
.nav-toggle-bar::after {
  content: "";
}

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

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

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, background 0.2s, box-shadow 0.2s;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue) 0%, var(--green) 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(30, 136, 229, 0.35);
}

.btn-primary:hover {
  box-shadow: 0 6px 28px rgba(67, 160, 71, 0.4);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  background: var(--surface);
}

.btn-outline {
  background: transparent;
  color: var(--blue);
  border: 1px solid rgba(30, 136, 229, 0.45);
  width: 100%;
}

.btn-outline:hover {
  background: rgba(30, 136, 229, 0.08);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-block {
  width: 100%;
}

.btn-inline {
  width: auto;
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(4rem, 10vw, 6rem);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 85% 10%, rgba(229, 57, 53, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 60% 45% at 10% 30%, rgba(30, 136, 229, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 90%, rgba(67, 160, 71, 0.16) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 70% 60%, rgba(249, 168, 37, 0.2) 0%, transparent 45%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 1rem;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5vw, 3.35rem);
  font-weight: 800;
  line-height: 1.12;
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.text-gradient {
  background: linear-gradient(90deg, var(--red) 0%, var(--yellow) 35%, var(--green) 70%, var(--blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  color: var(--text-muted);
  font-size: 1.125rem;
  max-width: 32rem;
  margin: 0 0 1.75rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.hero-stats strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text);
  font-weight: 700;
}

.speed-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
  box-shadow: 0 16px 50px rgba(30, 80, 160, 0.12);
}

.speed-label {
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.speed-value {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  margin: 0 0 1rem;
  line-height: 1;
}

.speed-value small {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text-muted);
}

.speed-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 48px;
  margin-bottom: 1rem;
}

.speed-bars span {
  flex: 1;
  background: linear-gradient(180deg, var(--red), var(--yellow), var(--green), var(--blue));
  border-radius: 4px 4px 0 0;
  animation: bar-pulse 1.2s ease-in-out infinite;
}

.speed-bars span:nth-child(1) { height: 35%; animation-delay: 0s; }
.speed-bars span:nth-child(2) { height: 55%; animation-delay: 0.1s; }
.speed-bars span:nth-child(3) { height: 75%; animation-delay: 0.2s; }
.speed-bars span:nth-child(4) { height: 90%; animation-delay: 0.3s; }
.speed-bars span:nth-child(5) { height: 100%; animation-delay: 0.4s; }

@keyframes bar-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

.speed-caption {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Sections */
.section {
  padding: clamp(3.5rem, 8vw, 5rem) 0;
}

.section-alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--border);
}

.section-head {
  text-align: center;
  max-width: 36rem;
  margin: 0 auto 2.75rem;
}

.section-head-left {
  text-align: left;
  margin-left: 0;
  margin-right: 0;
  max-width: 28rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.section-head p {
  margin: 0;
  color: var(--text-muted);
}

/* Plans */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.plans-grid-six {
  grid-template-columns: repeat(3, 1fr);
}

.plan-card {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px rgba(18, 40, 80, 0.06);
  overflow: hidden;
}

.plan-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: var(--blue);
}

.plan-color-red::before { background: var(--red); }
.plan-color-blue::before { background: var(--blue); }
.plan-color-green::before { background: var(--green); }
.plan-color-yellow::before { background: var(--yellow); }

.plan-featured {
  border-color: rgba(30, 136, 229, 0.45);
  box-shadow: 0 12px 36px rgba(30, 136, 229, 0.18);
  transform: scale(1.02);
}

.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, var(--red), var(--yellow));
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.plan-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 0.5rem 0 0.25rem;
}

.plan-speed {
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 1rem;
}

.plan-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  margin: 0 0 1.25rem;
}

.plan-price .currency {
  font-size: 1.25rem;
  vertical-align: super;
}

.plan-price .period {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-muted);
}

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex: 1;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

.plan-features li {
  padding: 0.4rem 0;
  padding-left: 1.35rem;
  position: relative;
}

.plan-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.plans-note {
  text-align: center;
  margin-top: 2rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.feature-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0.75rem;
  border-radius: 12px;
  background: rgba(30, 136, 229, 0.1);
  border: 1px solid rgba(30, 136, 229, 0.25);
  position: relative;
}

.feature-icon::after {
  content: "";
  position: absolute;
  inset: 12px;
  border-radius: 4px;
  border: 2px solid var(--blue);
}

.feature-icon--speed::after {
  border: none;
  background: linear-gradient(180deg, var(--yellow) 40%, transparent 40%);
  inset: 14px 10px 10px;
  border-radius: 2px;
}

.feature-icon--shield::after {
  border-radius: 4px 4px 8px 8px;
  border-top: none;
  border-color: var(--green);
}

.feature-icon--support::after {
  border: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--red);
  inset: 10px auto auto 10px;
  box-shadow: 8px 8px 0 -4px var(--blue);
}

.feature-icon--upgrade::after {
  border: none;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 14px solid var(--green);
  width: 0;
  height: 0;
  inset: 12px auto auto 14px;
}

.feature h3 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  margin: 0 0 0.5rem;
}

.feature p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Coverage */
.coverage-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.coverage-form label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.input-row {
  display: flex;
  gap: 0.5rem;
}

.input-row input {
  flex: 1;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: rgba(30, 136, 229, 0.55);
  box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.15);
}

.form-hint {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  min-height: 1.25rem;
}

.form-hint.success {
  color: var(--green);
}

.coverage-map {
  position: relative;
  aspect-ratio: 4 / 3;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.coverage-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-actions {
  margin-top: 0.75rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
  align-items: center;
  font-size: 0.875rem;
}

.map-plus-code {
  font-weight: 600;
  color: var(--text);
}

.map-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
}

.map-pulse {
  position: absolute;
  top: 45%;
  left: 55%;
  width: 16px;
  height: 16px;
  background: var(--red);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.4);
  animation: map-pulse 2s ease-out infinite;
}

.map-pulse::before {
  content: "";
  position: absolute;
  inset: -24px;
  border: 2px solid rgba(30, 136, 229, 0.35);
  border-radius: 50%;
}

@keyframes map-pulse {
  0% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0.5); }
  70% { box-shadow: 0 0 0 24px rgba(229, 57, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(229, 57, 53, 0); }
}

/* FAQ */
.faq-wrap {
  max-width: 640px;
  margin-inline: auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0 1.25rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1rem 0;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--blue);
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.contact-info li {
  padding: 0.65rem 0;
  color: var(--text-muted);
}

.contact-info strong {
  display: inline-block;
  min-width: 5rem;
  color: var(--text);
}

.contact-form {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.field-row {
  margin-bottom: 1rem;
}

.field-row label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}

/* Footer */
.site-footer {
  padding: 2.5rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  gap: 1.5rem 2rem;
}

.footer-brand p {
  margin: 0.5rem 0 0;
  font-size: 0.875rem;
  color: var(--text-muted);
  max-width: 20rem;
}

.footer-nav {
  display: flex;
  gap: 1.5rem;
  align-self: start;
}

.footer-nav a {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-copy {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-address,
.footer-contact {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.footer-address strong,
.footer-contact strong {
  color: var(--text);
  font-weight: 700;
}

.footer-contact a {
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  align-self: start;
}

.footer-legal a {
  color: var(--text-muted);
  font-size: 0.875rem;
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--text);
}

/* Page hero */
.page-hero {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(90deg, rgba(229, 57, 53, 0.08), rgba(249, 168, 37, 0.1), rgba(67, 160, 71, 0.08), rgba(30, 136, 229, 0.1)),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
}

.page-hero-compact {
  padding-bottom: 2rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 800;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.page-hero-lead {
  max-width: 40rem;
  margin: 0;
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* Prose */
.prose h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose p,
.prose li {
  color: var(--text-muted);
}

.prose-narrow {
  max-width: 42rem;
}

.prose-grid {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 2.5rem;
  align-items: start;
}

.info-panel {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.info-panel h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin: 1.25rem 0 0.5rem;
}

.info-panel h3:first-child {
  margin-top: 0;
}

.info-panel p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* Quick links */
.quick-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.quick-links-stack {
  grid-template-columns: 1fr;
}

.quick-link-card {
  display: block;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s, transform 0.15s;
}

.quick-link-card:hover {
  border-color: rgba(30, 136, 229, 0.4);
  transform: translateY(-2px);
  text-decoration: none;
}

.quick-links .quick-link-card:nth-child(1) { border-top: 4px solid var(--red); }
.quick-links .quick-link-card:nth-child(2) { border-top: 4px solid var(--blue); }
.quick-links .quick-link-card:nth-child(3) { border-top: 4px solid var(--green); }
.quick-links .quick-link-card:nth-child(4) { border-top: 4px solid var(--yellow); }

.quick-link-card h3 {
  font-family: var(--font-display);
  margin: 0 0 0.35rem;
  font-size: 1.0625rem;
}

.quick-link-card p {
  margin: 0 0 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.quick-link-static {
  cursor: default;
}

.quick-link-static:hover {
  transform: none;
}

.plans-grid-compact .plan-card {
  text-align: center;
}

.plans-grid-compact .btn {
  margin-top: auto;
}

.plans-grid-secondary {
  margin-top: 1.25rem;
  grid-template-columns: repeat(2, 1fr);
}

.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.service-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.service-card h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.75rem;
}

.service-card p {
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.self-care-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.self-care-login h2 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
}

.form-intro {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.contact-info-block li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.ftp-access-wide {
  max-width: 100%;
  margin-bottom: 2.5rem;
}

.ftp-dl {
  margin: 0;
}

.ftp-dl div {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.5rem 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.ftp-dl dt {
  font-weight: 600;
  color: var(--text);
}

.ftp-dl dd {
  margin: 0;
  color: var(--text-muted);
}

.ftp-dl code {
  color: var(--blue);
  font-size: 0.9375rem;
}

.muted {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.ftp-menu {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.ftp-menu-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.15rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: inherit;
  text-decoration: none;
  transition: border-color 0.2s;
}

.ftp-menu-item:hover {
  border-color: rgba(30, 136, 229, 0.45);
  text-decoration: none;
}

.ftp-menu-label {
  font-weight: 600;
  font-family: var(--font-display);
}

.ftp-menu-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: max(1rem, env(safe-area-inset-bottom, 0px));
  z-index: 200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.whatsapp-float:hover {
  transform: scale(1.06);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
  text-decoration: none;
}

/* Responsive */
@media (max-width: 1100px) {
  .site-nav a {
    font-size: 0.8125rem;
  }

  .site-nav {
    gap: 0.65rem;
  }

  .nav-cta {
    padding: 0.45rem 0.75rem !important;
    font-size: 0.8125rem !important;
  }
}

@media (max-width: 960px) {
  .hero-grid,
  .plans-grid,
  .plans-grid-six,
  .features-grid,
  .coverage-split,
  .contact-grid,
  .prose-grid,
  .quick-links,
  .service-cards,
  .self-care-grid,
  .plans-grid-secondary {
    grid-template-columns: 1fr;
  }

  .ftp-menu {
    grid-template-columns: 1fr;
  }

  .plan-featured {
    transform: none;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-visual {
    order: -1;
    max-width: 360px;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: calc(var(--header-h) + var(--top-bar-h));
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: 0;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
    max-height: calc(100dvh - var(--header-h) - var(--top-bar-h));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav a {
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border);
    min-height: 44px;
    display: flex;
    align-items: center;
    font-size: 1rem;
  }

  .site-nav .nav-cta {
    margin-top: 0.75rem;
    text-align: center;
  }

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

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

  .footer-nav {
    flex-wrap: wrap;
  }

  .input-row {
    flex-direction: column;
  }

  .top-bar-inner {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 0.35rem 1rem;
    padding: 0.35rem 0;
  }

  .top-bar-tariff {
    max-width: 100%;
    white-space: normal;
    font-size: 0.75rem;
  }

  .top-bar-phone {
    font-size: 0.8125rem;
  }

  .logo-img {
    max-height: 56px;
  }

  .header-inner {
    gap: 0.5rem;
  }

  .btn,
  .nav-toggle {
    min-height: 44px;
    min-width: 44px;
  }

  .whatsapp-float {
    width: 52px;
    height: 52px;
  }
}
