:root {
  --red: #e60000;
  --red-hover: #cc0000;
  --red-light: #fff0f0;
  --dark: #111;
  --dark-2: #1a1a2e;
  --bg: #fff;
  --bg-alt: #f7f7f7;
  --card: #fff;
  --text: #1a1a1a;
  --text-muted: #666;
  --text-light: #999;
  --border: #e5e5e5;
  --green: #0d9f6e;
  --blue: #0066ff;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow: 0 2px 16px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.1);
  --transition: .2s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── TOPBAR ─── */
.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 16px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 20px;
  color: var(--text);
  flex-shrink: 0;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg { width: 16px; height: 16px; }

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

.nav-menu a {
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-xs);
  transition: background var(--transition), color var(--transition);
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--red);
  background: var(--red-light);
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.phone {
  font-weight: 700;
  font-size: 15px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

.phone svg { width: 18px; height: 18px; color: var(--red); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}

.btn:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(230,0,0,.25);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: transparent;
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  border: 2px solid var(--red);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition);
}

.btn-outline:hover {
  background: var(--red);
  color: #fff;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: #fff;
  color: var(--red);
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--dark);
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-dark:hover { background: #333; }

/* ─── HERO HOMEPAGE ─── */
.hero {
  background: var(--dark);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 56px 0 64px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(230,0,0,.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(230,0,0,.1) 0%, transparent 40%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.hero h1 .accent { color: var(--red); }

.hero .lead {
  font-size: 17px;
  color: #ccc;
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.6;
}

.hero-badges {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #ccc;
  font-weight: 500;
}

.hero-badge .icon {
  width: 28px;
  height: 28px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

/* Pricing card in hero */
.pricing-hero-card {
  background: #fff;
  color: var(--text);
  border-radius: var(--radius);
  padding: 36px 32px;
  box-shadow: 0 16px 48px rgba(0,0,0,.3);
  text-align: center;
}

.pricing-hero-card .label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.pricing-hero-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-hero-card .desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-hero-card .price {
  font-size: 56px;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-hero-card .price span { font-size: 20px; }

.pricing-hero-card .includes {
  text-align: left;
  margin: 20px 0;
}

.pricing-hero-card .includes li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  padding: 6px 0;
  color: var(--text);
}

.pricing-hero-card .includes li::before {
  content: '\2713';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-hero-card .btn { width: 100%; margin-top: 8px; }

/* ─── TRUST BAR ─── */
.trust-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}

.trust-items {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.trust-item .dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── SECTIONS ─── */
.section {
  padding: 72px 0;
}

.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--dark); color: #fff; }

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header .overline {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red);
  margin-bottom: 8px;
}

.section-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -.01em;
  margin-bottom: 12px;
}

.section-header p {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto;
}

.section-dark .section-header p { color: #aaa; }

/* ─── RESULTS / STATS ─── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.stat-card {
  text-align: center;
  padding: 28px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.stat-card .value {
  font-size: 36px;
  font-weight: 900;
  color: var(--red);
  line-height: 1.1;
}

.stat-card .label {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─── ADVANTAGES / FEATURES ─── */
.advantages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.advantage-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}

.advantage-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.advantage-icon {
  width: 56px;
  height: 56px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 24px;
}

.advantage-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.advantage-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ─── LAPTOP SHOWCASE ─── */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.showcase-text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
}

.showcase-text p {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.showcase-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.showcase-img img {
  width: 100%;
  height: auto;
}

/* ─── STEPS / COMO FUNCIONA ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  counter-reset: step;
}

.step-card {
  text-align: center;
  counter-increment: step;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  margin: 0 auto 16px;
}

.step-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ─── TESTIMONIALS ─── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.testimonial-card .stars {
  color: #f59e0b;
  font-size: 16px;
  margin-bottom: 12px;
  letter-spacing: 2px;
}

.testimonial-card blockquote {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
  color: var(--text);
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
}

.testimonial-card cite span {
  display: block;
  font-weight: 400;
  font-size: 13px;
  color: var(--text-muted);
}

.trustpilot-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
  font-size: 15px;
  font-weight: 600;
}

.trustpilot-bar .tp-stars {
  color: #00b67a;
  font-size: 18px;
  letter-spacing: 1px;
}

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--red), #b30000);
  border-radius: var(--radius);
  padding: 48px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-banner h2 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-banner p {
  color: #ffcccc;
  font-size: 16px;
}

.cta-banner .btn-white { flex-shrink: 0; }

/* ─── PRICING CARDS ─── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.pricing-card.featured {
  border-color: var(--red);
  box-shadow: 0 0 0 2px var(--red);
}

.pricing-card.featured::before {
  content: 'Recomendado';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: 20px;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
}

.pricing-card .subtitle {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.pricing-card .price {
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card .price span { font-size: 16px; font-weight: 600; }

.pricing-card .period {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.pricing-card ul {
  text-align: left;
  margin-bottom: 24px;
}

.pricing-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  padding: 6px 0;
  color: var(--text);
}

.pricing-card li::before {
  content: '\2713';
  color: var(--green);
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card .btn { width: 100%; }

/* ─── CITIES / ZONES ─── */
.cities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.city-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.city-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.city-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.city-card-body {
  padding: 14px 16px;
}

.city-card strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
}

.city-card span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── BUSINESS CARDS ─── */
.business-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.business-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  padding: 20px 12px;
}

.business-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.business-card .biz-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-alt);
  border-radius: 50%;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.business-card strong {
  font-size: 14px;
  font-weight: 600;
}

/* With images */
.business-grid-img {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.biz-tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.biz-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.biz-tile img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.biz-tile strong {
  display: block;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 700;
}

/* ─── CASE STUDIES ─── */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.case-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}

.case-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.case-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.case-card-body { padding: 20px; }

.case-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
}

.case-metric {
  font-size: 32px;
  font-weight: 900;
  color: var(--green);
}

.case-card p {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 4px;
}

.case-card .link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 700;
  font-size: 14px;
  color: var(--red);
}

.case-card .link:hover { text-decoration: underline; }

/* ─── DETAIL HERO (negocio) ─── */
.detail-banner {
  background: var(--bg-alt);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 36px;
  align-items: start;
}

.detail-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
}

.opportunity-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.opportunity-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 20px;
}

.opp-stat {
  padding: 14px 0;
  border-top: 1px solid var(--border);
}

.opp-stat strong {
  display: block;
  font-size: 28px;
  font-weight: 900;
  color: var(--red);
  line-height: 1.2;
}

.opp-stat span {
  font-size: 14px;
  color: var(--text-muted);
}

.opp-gauge {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 14px;
  background: var(--red-light);
  border-radius: var(--radius-sm);
}

.gauge-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 4px solid var(--red);
  border-right-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: var(--red);
  flex-shrink: 0;
  transform: rotate(45deg);
}

.gauge-circle span { transform: rotate(-45deg); }

.opp-gauge-text strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--red);
}

.opp-gauge-text span {
  font-size: 13px;
  color: var(--text-muted);
}

/* ─── BREADCRUMB ─── */
.breadcrumb {
  font-size: 14px;
  color: var(--text-muted);
  padding: 16px 0;
}

.breadcrumb a { color: var(--red); }
.breadcrumb a:hover { text-decoration: underline; }

/* ─── PAGE HEADER ─── */
.page-header {
  padding: 40px 0 0;
}

.page-header h1 {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
  letter-spacing: -.02em;
  margin-bottom: 8px;
}

.page-header .lead {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 600px;
}

/* ─── FAQ ─── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.faq-item summary {
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::after {
  content: '+';
  font-size: 24px;
  font-weight: 400;
  color: var(--text-muted);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  content: '\2212';
}

.faq-item p {
  margin-top: 12px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ─── COMPARISON TABLE ─── */
.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
}

.compare-table th,
.compare-table td {
  padding: 14px 20px;
  text-align: left;
  font-size: 14px;
  border-bottom: 1px solid var(--border);
}

.compare-table th {
  font-weight: 700;
  background: var(--bg-alt);
}

.compare-table td:not(:first-child) { text-align: center; }
.compare-table th:not(:first-child) { text-align: center; }

/* ─── INFO CARDS ROW ─── */
.info-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform var(--transition), box-shadow var(--transition);
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.info-card .icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.info-card strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.info-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ─── MAP PLACEHOLDER ─── */
.map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 15px;
  margin: 32px 0;
}

/* ─── INCLUDES LIST ─── */
.includes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.include-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.include-item .icon {
  width: 40px;
  height: 40px;
  background: var(--red-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.include-item h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
}

.include-item p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ─── FOOTER ─── */
.footer {
  background: var(--dark);
  color: #fff;
  padding: 56px 0 0;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
}

.footer .logo { color: #fff; }

.footer h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 16px;
  color: #888;
}

.footer a {
  display: block;
  padding: 4px 0;
  font-size: 14px;
  color: #ccc;
  transition: color var(--transition);
}

.footer a:hover { color: #fff; }

.footer-desc {
  font-size: 14px;
  color: #888;
  margin-top: 12px;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
  color: #666;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-phone {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-phone strong {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
}

.footer-phone span {
  font-size: 13px;
  color: #888;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .pricing-hero-card { max-width: 400px; }
  .advantages-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .detail-grid { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .topbar-inner { height: 56px; }
  .hero { padding: 40px 0 48px; }
  .hero h1 { font-size: 28px; }
  .hero-badges { gap: 12px; }
  .advantages-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .section { padding: 48px 0; }
  .cta-banner { flex-direction: column; text-align: center; padding: 32px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .hero-badges { flex-direction: column; }
  .cities-grid { grid-template-columns: 1fr 1fr; }
  .business-grid { grid-template-columns: repeat(3, 1fr); }
}
