/* =========================================================
   styles.css — ContratatuPlan.com
   Movistar Empresas Plus | Ecuador
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

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

:root {
  --azul:        #019DF4;
  --azul-dark:   #003366;
  --azul-mid:    #0163a4;
  --verde:       #5CB615;
  --verde-wa:    #25D366;
  --blanco:      #ffffff;
  --gris-bg:     #f5f7fa;
  --gris-border: #e5e7eb;
  --gris-txt:    #6b7280;
  --shadow-sm:   0 2px 8px rgba(0,0,0,.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,.12);
  --shadow-lg:   0 8px 40px rgba(0,0,0,.16);
  --radius:      16px;
  --radius-sm:   8px;
  --radius-pill: 30px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: #1a1a2e;
  background: var(--blanco);
  overflow-x: hidden;
  line-height: 1.6;
}

img, svg { display: block; }
a { color: inherit; }

/* ── TOP BAR ───────────────────────────────────────────── */
.top-bar {
  background: var(--azul-dark);
  color: rgba(255,255,255,.9);
  text-align: center;
  padding: 9px 20px;
  font-size: 13px;
  letter-spacing: .2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.top-bar strong { color: #fff; }
.top-bar-item { white-space: nowrap; }
.top-bar-sep {
  margin: 0 12px;
  opacity: .45;
  font-weight: 300;
}

/* ── NAVBAR ────────────────────────────────────────────── */
.navbar {
  background: var(--blanco);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand { display: flex; align-items: center; text-decoration: none; gap: 10px; }

.logo-svg { height: 38px; width: auto; }

.brand-logo {
  height: 42px;
  width: auto;
  display: block;
}

.brand-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -.3px;
  background: linear-gradient(135deg, var(--azul-dark) 0%, var(--azul-mid) 60%, var(--azul) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.brand-dot {
  font-weight: 800;
  background: linear-gradient(135deg, var(--azul) 0%, #019DF4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--azul-dark);
  font-weight: 500;
  font-size: 14px;
  transition: color .2s;
}
.nav-links a:hover { color: var(--azul); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--azul-dark);
  border-radius: 2px;
  transition: all .3s;
}

/* ── BUTTONS ───────────────────────────────────────────── */
.btn-cta {
  background: var(--verde);
  color: var(--blanco);
  border: none;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  transition: background .2s, transform .15s;
  white-space: nowrap;
}
.btn-cta:hover { background: #4da013; transform: translateY(-1px); }

.btn-whatsapp {
  background: var(--verde-wa);
  color: var(--blanco);
  border: none;
  padding: 13px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  transition: background .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 4px 16px rgba(37,211,102,.35);
}
.btn-whatsapp:hover {
  background: #1ebd58;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,.5);
}

.btn-outline {
  background: transparent;
  color: var(--azul);
  border: 2px solid var(--azul);
  padding: 11px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: all .2s;
}
.btn-outline:hover { background: var(--azul); color: var(--blanco); }

.btn-block { width: 100%; }

/* ── HERO (index + SEO) ───────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--azul-dark) 0%, var(--azul-mid) 55%, var(--azul) 100%);
  color: var(--blanco);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 48px;
  text-align: center;
}
.hero h1 {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.18;
  margin-bottom: 14px;
  max-width: 720px;
}
.hero .hero-sub {
  font-size: 17px;
  opacity: .9;
  max-width: 560px;
  margin: 0 auto 6px;
}
.hero .hero-ruc {
  font-size: 13px;
  opacity: .6;
  margin: 0 auto 10px;
  font-weight: 500;
}
.hero .hero-stars {
  font-size: 13px;
  opacity: .85;
  margin: 0 auto 24px;
  font-weight: 500;
}
.hero .hero-stars .stars {
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: 15px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
}
.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.btn-hero-wa {
  font-size: 17px !important;
  padding: 16px 38px !important;
}
.hero-microcopy {
  font-size: 12px;
  opacity: .65;
  margin-top: 6px;
  font-weight: 400;
  letter-spacing: .2px;
}
.btn-hero-sec {
  color: var(--blanco) !important;
  border-color: rgba(255,255,255,.5) !important;
  padding: 16px 30px;
  font-size: 17px;
  height: auto;
  line-height: 1.3;
  box-sizing: border-box;
}
.btn-hero-sec:hover {
  background: rgba(255,255,255,.15) !important;
  border-color: rgba(255,255,255,.8) !important;
  color: var(--blanco) !important;
}

/* ── SECTIONS ──────────────────────────────────────────── */
.section { padding: 64px 48px; }
.section-bg { background: var(--gris-bg); }

.section-title {
  font-size: 30px;
  font-weight: 800;
  color: var(--azul-dark);
  text-align: center;
  margin-bottom: 8px;
}
.section-sub {
  text-align: center;
  color: var(--gris-txt);
  font-size: 16px;
  margin-bottom: 44px;
}

/* ── PLAN CARDS ────────────────────────────────────────── */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-items: center;
  max-width: 1120px;
  margin: 0 auto;
}

.plan-card {
  background: var(--blanco);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  width: 100%;
  transition: transform .3s, box-shadow .3s;
  position: relative;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
}
.plan-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.plan-card.recomendado { border-color: var(--verde); }
.plan-card.recomendado::before {
  content: '★ MÁS POPULAR';
  background: var(--verde);
  color: var(--blanco);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .8px;
  padding: 4px 12px;
  position: absolute;
  top: 12px;
  right: -2px;
  border-radius: 4px 0 0 4px;
  z-index: 1;
}

.card-header {
  background: linear-gradient(160deg, var(--azul-dark) 0%, var(--azul-mid) 100%);
  padding: 16px 14px 12px;
  text-align: center;
  color: var(--blanco);
}
.card-plan-name  { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.gb-row          { display: inline-flex; align-items: flex-start; justify-content: center; gap: 2px; margin: 4px 0 0; }
.gb-display      { font-size: 54px; font-weight: 800; line-height: 1; }
.gb-unit-sup     { font-size: 30px; font-weight: 700; opacity: .85; line-height: 1; margin-top: .08em; }

.card-body { padding: 14px 14px 8px; flex: 1; }

.price-section { text-align: center; margin-bottom: 10px; }
.price         { font-size: 26px; font-weight: 800; color: var(--azul-dark); display: inline-flex; align-items: center; gap: 5px; }
.price-logo    { height: 1em; width: auto; display: inline-block; vertical-align: middle; }
.price-iva     { font-size: 13px; font-weight: 500; opacity: .7; }
.price-sub     { font-size: 12px; color: var(--gris-txt); margin-top: 2px; }

.chips { display: flex; flex-wrap: wrap; gap: 5px; margin-bottom: 10px; justify-content: center; }
.chip {
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  line-height: 1.3;
}
.chip-verde  { background: #e4f5d4; color: #3d7c0a; }

.features-list { list-style: none; margin-bottom: 10px; }
.features-list li {
  font-size: 12px;
  color: #374151;
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  border-bottom: 1px solid var(--gris-border);
}
.features-list li:last-child { border-bottom: none; }
.check { color: var(--verde); font-weight: 700; flex-shrink: 0; }

.card-footer { padding: 0 14px 14px; display: flex; flex-direction: column; gap: 6px; margin-top: auto; }

/* ── INCLUDES GRID ─────────────────────────────────────── */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 16px;
  margin-top: 36px;
}
.include-item {
  background: var(--blanco);
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  font-weight: 500;
  color: var(--azul-dark);
  border-left: 4px solid var(--azul);
}
.include-item .inc-icon { font-size: 22px; flex-shrink: 0; }

/* ── HOW-TO STEPS ──────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.step-card {
  background: var(--blanco);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.step-num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--azul);
  color: var(--blanco);
  font-size: 20px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-card h3 { font-size: 16px; font-weight: 700; color: var(--azul-dark); margin-bottom: 8px; }
.step-card p  { font-size: 13px; color: var(--gris-txt); }

/* ── FAQ ───────────────────────────────────────────────── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gris-border); }
.faq-question {
  padding: 18px 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--azul-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color .2s;
  user-select: none;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: inherit;
}
.faq-question:hover { color: var(--azul); }
.faq-icon { font-size: 22px; flex-shrink: 0; transition: transform .3s; }
.faq-answer {
  padding: 0 4px 18px;
  color: #4b5563;
  font-size: 14px;
  line-height: 1.75;
  display: none;
}
.faq-item.open .faq-answer { display: block; }
.faq-item.open .faq-icon   { transform: rotate(45deg); }

/* ── CTA BAND ──────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, var(--azul-dark), var(--azul-mid));
  color: var(--blanco);
  text-align: center;
  padding: 64px 48px;
}
.cta-band h2 { font-size: 30px; font-weight: 800; margin-bottom: 12px; }
.cta-band p  { font-size: 16px; opacity: .85; margin-bottom: 32px; }

/* ── BREADCRUMB ────────────────────────────────────────── */
.breadcrumb {
  background: var(--gris-bg);
  padding: 12px 48px;
  font-size: 13px;
  color: var(--gris-txt);
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--azul); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { opacity: .5; }

/* ── HERO PLAN ─────────────────────────────────────────── */
.hero-plan {
  background: linear-gradient(135deg, var(--azul-dark) 0%, var(--azul-mid) 60%, var(--azul) 100%);
  color: var(--blanco);
  padding: 56px 48px 60px;
  text-align: center;
}
.hero-plan .gb-big {
  font-size: 110px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -4px;
}
.hero-plan .gb-unit { font-size: 28px; font-weight: 700; opacity: .8; margin-bottom: 12px; }
.hero-plan .plan-titulo { font-size: 28px; font-weight: 700; margin-bottom: 6px; }
.hero-plan .plan-subtitulo { font-size: 14px; opacity: .7; margin-bottom: 18px; }
.hero-plan .plan-precio { font-size: 20px; opacity: .9; margin-bottom: 28px; }
.hero-plan .plan-precio strong { font-size: 38px; font-weight: 800; }

/* ── BENEFITS TABLE ────────────────────────────────────── */
.benefits-wrap { background: var(--blanco); border-radius: var(--radius); box-shadow: var(--shadow-sm); overflow: hidden; }
.benefits-table { width: 100%; border-collapse: collapse; }
.benefits-table tr { border-bottom: 1px solid var(--gris-border); }
.benefits-table tr:last-child { border-bottom: none; }
.benefits-table tr:nth-child(even) { background: #f9fafb; }
.benefits-table td {
  padding: 15px 24px;
  font-size: 14px;
  vertical-align: middle;
}
.benefits-table td:first-child { color: var(--gris-txt); font-weight: 500; width: 42%; }
.benefits-table td:last-child  { color: var(--azul-dark); font-weight: 600; }

/* ── COMPARISON TABLE ──────────────────────────────────── */
.table-wrap { overflow-x: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.comparison-table { width: 100%; border-collapse: collapse; font-size: 13px; min-width: 700px; }
.comparison-table thead th {
  background: var(--azul-dark);
  color: var(--blanco);
  padding: 14px 16px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  white-space: nowrap;
}
.comparison-table thead th:first-child { text-align: left; }
.comparison-table tbody td {
  padding: 12px 16px;
  text-align: center;
  border-bottom: 1px solid var(--gris-border);
  color: #374151;
}
.comparison-table tbody td:first-child { text-align: left; font-weight: 600; }
.comparison-table tbody td a { text-decoration: none; color: inherit; }
.comparison-table tbody td a:hover { color: var(--azul); }
.comparison-table tbody tr:hover { background: #f0f9ff; }
.comparison-table .row-highlight { background: #e0f2fe !important; }
.pop-badge { color: var(--verde); font-size: 11px; }

/* ── PLAN NAV PILLS ────────────────────────────────────── */
.plan-nav { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 28px 0; }
.plan-pill {
  background: var(--blanco);
  border: 2px solid var(--azul);
  color: var(--azul);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  font-family: inherit;
  transition: all .2s;
}
.plan-pill:hover, .plan-pill.active { background: var(--azul); color: var(--blanco); }

/* ── WHATSAPP WIDGET ───────────────────────────────────── */
#wa-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}
.wa-widget-bubble {
  background: var(--blanco);
  color: var(--azul-dark);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 20px 20px 4px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
  white-space: nowrap;
  animation: waBubblePulse 3s ease-in-out infinite;
}
@keyframes waBubblePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}
.wa-widget-btn {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--verde-wa);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
}
.wa-widget-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
}

/* Popup */
.wa-widget-popup {
  position: absolute;
  bottom: 72px;
  right: 0;
  width: 320px;
  background: var(--blanco);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,.18);
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(.95);
  pointer-events: none;
  transition: opacity .3s ease, transform .3s ease;
}
.wa-widget-popup.wa-popup-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.wa-popup-header {
  background: #075e54;
  color: white;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
}
.wa-popup-header svg { flex-shrink: 0; }
.wa-popup-header span { flex: 1; }
.wa-popup-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.7);
  font-size: 22px;
  cursor: pointer;
  padding: 0 2px;
  line-height: 1;
  transition: color .2s;
}
.wa-popup-close:hover { color: white; }
.wa-popup-body {
  padding: 20px 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.wa-popup-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #e8f5e9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.wa-popup-msg {
  background: #f0f0f0;
  border-radius: 0 12px 12px 12px;
  padding: 10px 14px;
  font-size: 13px;
  line-height: 1.5;
  color: #333;
}
.wa-popup-cta {
  display: block;
  background: var(--verde-wa);
  color: white;
  text-align: center;
  padding: 13px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  margin: 0 16px 16px;
  border-radius: 24px;
  transition: background .2s;
}
.wa-popup-cta:hover { background: #1ebd58; }

@media (max-width: 480px) {
  #wa-widget { bottom: 16px; right: 16px; gap: 8px; }
  .wa-widget-btn { width: 52px; height: 52px; }
  .wa-widget-btn svg { width: 24px; height: 24px; }
  .wa-widget-bubble { font-size: 11px; padding: 6px 12px; }
  .wa-widget-popup { width: 280px; bottom: 64px; }
  .wa-popup-body { padding: 14px 12px; }
  .wa-popup-msg { font-size: 12px; }
}

/* ── FOOTER ────────────────────────────────────────────── */
footer {
  background: var(--azul-dark);
  color: rgba(255,255,255,.85);
  padding: 56px 48px 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 44px;
}
.footer-brand-link { display: flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 4px; }
.footer-brand p { font-size: 13px; opacity: .65; line-height: 1.75; margin-top: 14px; }
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: var(--blanco);
  margin-bottom: 16px;
}
.footer-col ul  { list-style: none; }
.footer-col li  { margin-bottom: 10px; }
.footer-col a   { color: rgba(255,255,255,.65); text-decoration: none; font-size: 13px; transition: color .2s; }
.footer-col a:hover { color: var(--blanco); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  opacity: .5;
  gap: 16px;
}

/* ── UTILITIES ─────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }

/* ── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .top-bar { font-size: 11px; padding: 8px 16px; gap: 0; }
  .top-bar-sep { margin: 0 8px; }

  .navbar { padding: 0 16px; }
  .brand-logo { height: 34px; }
  .brand-name { font-size: 15px; }

  .plans-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--blanco);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    gap: 16px;
    z-index: 999;
  }
  .nav-links.nav-open { display: flex; }
  .nav-toggle { display: flex; }
  .btn-cta  { display: none; }

  .hero { padding: 18px 20px; }
  .hero h1 { font-size: 23px; margin-bottom: 8px; }
  .hero .hero-sub  { font-size: 13px; margin-bottom: 3px; }
  .hero .hero-ruc  { font-size: 11px; margin-bottom: 4px; }
  .hero .hero-stars { font-size: 11px; margin-bottom: 14px; }
  .hero .hero-stars .stars { font-size: 13px; }
  .btn-hero-wa { font-size: 14px !important; padding: 12px 24px !important; }
  .btn-hero-sec { padding: 12px 20px; font-size: 14px; }
  .hero-microcopy { font-size: 11px; margin-top: 4px; }

  .section { padding: 44px 24px; }
  .section-title { font-size: 24px; }

  .hero-plan { padding: 40px 24px 44px; }
  .hero-plan .gb-big { font-size: 80px; }

  .breadcrumb { padding: 12px 24px; }



  .cta-band { padding: 48px 24px; }
  .cta-band h2 { font-size: 24px; }

  footer { padding: 44px 24px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .benefits-table td { padding: 12px 16px; }
  .comparison-table thead th, .comparison-table tbody td { padding: 10px 12px; font-size: 12px; }
}

@media (max-width: 480px) {
  .top-bar { flex-direction: column; gap: 2px; padding: 8px 12px; font-size: 11px; }
  .top-bar-sep { display: none; }

  .brand-logo { height: 30px; }
  .brand-name { font-size: 13px; }
  .navbar-brand { gap: 6px; }

  .plans-grid { grid-template-columns: 1fr; gap: 16px; max-width: 320px; }

  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 14px 14px; }
  .hero h1 { font-size: 20px; margin-bottom: 6px; }
  .hero .hero-sub { font-size: 12px; }
  .hero .hero-ruc { font-size: 10px; margin-bottom: 3px; }
  .hero .hero-stars { font-size: 10px; margin-bottom: 10px; }
  .hero .hero-stars .stars { font-size: 12px; }
  .hero-btns { flex-direction: column; align-items: center; gap: 8px; }
  .btn-hero-wa { font-size: 13px !important; padding: 11px 22px !important; }
  .btn-hero-sec { padding: 10px 18px; font-size: 13px; }
  .hero-microcopy { font-size: 10px; margin-top: 3px; }
  .plan-nav { gap: 8px; }
  .plan-pill { font-size: 12px; padding: 6px 14px; }
}
