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

:root {
  --ink: #0d0d0d;
  --paper: #f5f2eb;
  --cream: #ede9df;
  --accent: #c8463a;
  --accent2: #e8824a;
  --gold: #c9a84c;
  --muted: #7a7060;
  --border: rgba(13,13,13,0.12);
  --card-bg: #ffffff;
  --radius: 4px;
}

html[data-theme="dark"] {
  --ink: #f0ece3;
  --paper: #0f0f0d;
  --cream: #1a1916;
  --muted: #8a7e6e;
  --border: rgba(240,236,227,0.1);
  --card-bg: #1c1b18;
}

/* Secciones con fondo oscuro hardcodeado que deben mantenerse oscuras en dark mode */
html[data-theme="dark"] .marquee-strip {
  background: #1a1916;
  border-color: rgba(240,236,227,0.06);
}
html[data-theme="dark"] .marquee-strip-b {
  background: #1a1916;
  border-color: rgba(240,236,227,0.06);
}
/* Patrón de puntos del hero: usar color claro en dark mode */
html[data-theme="dark"] .hero::after {
  background-image: radial-gradient(circle, rgba(240,236,227,0.06) 1px, transparent 1px);
}
/* Texto fantasma del hero */
html[data-theme="dark"] .hero-bg-text {
  -webkit-text-stroke: 1px rgba(240,236,227,0.06);
}
/* Borde del btn-secondary */
html[data-theme="dark"] .btn-secondary {
  border-color: rgba(240,236,227,0.25);
}
/* Domain result: colores de disponibilidad no cambian (son semánticos) */
html[data-theme="dark"] .domain-result-item.available { background: #0d2b1f; border-color: #2d9a6a; }
html[data-theme="dark"] .domain-result-item.taken { background: #2b0f0f; border-color: #e04040; }

/* Secciones oscuras intencionales — mantenerlas oscuras en dark mode */
html[data-theme="dark"] #como-funciona,
html[data-theme="dark"] .cta-band,
html[data-theme="dark"] .cs-summary-box {
  background: #111110;
}
html[data-theme="dark"] .steps-grid {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
}
html[data-theme="dark"] .step-title { color: #f0ece3; }
html[data-theme="dark"] .step-desc { color: rgba(240,236,227,0.5); }
/* Título y subtítulo de #como-funciona sobre fondo oscuro */
html[data-theme="dark"] #como-funciona .section-title { color: #f0ece3; }
/* Period tabs en dark mode: naranja */
html[data-theme="dark"] .period-tab {
  border-color: rgba(232,130,74,0.35);
  color: var(--muted);
}
html[data-theme="dark"] .period-tab:hover {
  border-color: var(--accent2);
  color: var(--accent2);
}
html[data-theme="dark"] .period-tab.active {
  background: var(--accent2);
  border-color: var(--accent2);
  color: #fff;
}
html[data-theme="dark"] .period-tab.best.active {
  background: var(--accent);
  border-color: var(--accent);
}
/* Custom plan summary breakdown */
html[data-theme="dark"] .cs-breakdown {
  background: var(--card-bg);
}
/* Navbar: ligeramente diferente al body para que se distinga */
html[data-theme="dark"] nav {
  background: rgba(20,19,17,0.92);
  border-color: rgba(240,236,227,0.08);
}
/* Pricing featured card: en dark mode la tarjeta "destacada" usa --ink (claro), darle borde visible */
html[data-theme="dark"] .pricing-card.featured {
  background: #1c1b18;
  border-color: rgba(240,236,227,0.2);
  color: var(--ink);
}
html[data-theme="dark"] .pricing-card.featured .pricing-feature-item,
html[data-theme="dark"] .pricing-card.featured .pricing-note,
html[data-theme="dark"] .pricing-card.featured .pricing-tier,
html[data-theme="dark"] .pricing-card.featured .price-period,
html[data-theme="dark"] .pricing-card.featured .pricing-original { color: var(--muted); }
html[data-theme="dark"] .pricing-card.featured .pricing-divider { border-color: var(--border); }
html[data-theme="dark"] .pricing-card.featured .pricing-cta {
  background: var(--accent2); color: #fff;
}

/* Todos los botones con fondo oscuro (var(--ink)) → naranja en dark mode */
html[data-theme="dark"] .nav-cta,
html[data-theme="dark"] .mobile-nav-cta,
html[data-theme="dark"] .pricing-card:not(.featured) .pricing-cta,
html[data-theme="dark"] .lp-cta,
html[data-theme="dark"] .domain-add-btn,
html[data-theme="dark"] .btn-secondary:hover,
html[data-theme="dark"] .toggle-switch,
html[data-theme="dark"] .period-tab.active:not(.best) {
  background: var(--accent2);
  color: #fff;
  border-color: var(--accent2);
}
html[data-theme="dark"] .nav-cta:hover,
html[data-theme="dark"] .mobile-nav-cta:hover,
html[data-theme="dark"] .pricing-card:not(.featured) .pricing-cta:hover,
html[data-theme="dark"] .lp-cta:hover,
html[data-theme="dark"] .domain-add-btn:hover,
html[data-theme="dark"] .hosting-cta-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}
/* CTA Band título */
html[data-theme="dark"] .cta-band-title { color: #f0ece3; }
/* Footer */
html[data-theme="dark"] footer { background: #111110; }
html[data-theme="dark"] .footer-logo { color: #f0ece3; }
/* Botón de hosting */
html[data-theme="dark"] .hosting-cta-btn {
  background: var(--accent2); color: #fff;
}
/* Caja de precio en hosting-only */
html[data-theme="dark"] .hosting-only-price-box {
  background: rgba(232,130,74,0.08);
  border: 1px solid rgba(232,130,74,0.2);
}
/* Periodo label y per-month text */
html[data-theme="dark"] #hostingPeriodLabel { color: var(--muted) !important; }
html[data-theme="dark"] #hostingPerMonth { color: var(--muted) !important; }

html { scroll-behavior: smooth; }


#ctx-menu {
  position: fixed; z-index: 999998;
  background: #111110;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 12px;
  padding: 0.35rem 0;
  min-width: 210px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  opacity: 0;
  transform: scale(0.93) translateY(-6px);
  transform-origin: top left;
  transition: opacity 0.14s ease, transform 0.14s cubic-bezier(.175,.885,.32,1.2);
  pointer-events: none;
  user-select: none;
}
#ctx-menu.ctx-visible {
  opacity: 1; transform: scale(1) translateY(0); pointer-events: all;
}
.ctx-header {
  padding: 0.55rem 1rem 0.4rem;
  font-family: 'Space Grotesk', sans-serif; font-size: 0.62rem; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 0.25rem;
}
.ctx-item {
  display: flex; align-items: center; gap: 0.7rem;
  padding: 0.5rem 1rem;
  color: rgba(245,242,235,0.8);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.83rem; font-weight: 500;
  text-decoration: none; background: none; border: none; width: 100%;
  text-align: left; cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.ctx-item:hover { background: rgba(232,130,74,0.1); color: #e8824a; }
.ctx-item:hover .ctx-icon { box-shadow: 0 0 0 2px rgba(232,130,74,0.35); }
.ctx-icon {
  width: 22px; height: 22px; border-radius: 6px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 800; color: white;
  font-family: 'Space Grotesk', sans-serif; letter-spacing: 0;
  transition: box-shadow 0.12s;
}
.ctx-icon.wa  { background: #25D366; }
.ctx-icon.ig  { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#bc1888); }
.ctx-icon.fb  { background: #1877F2; }
.ctx-icon.up  { background: rgba(255,255,255,0.1); font-size: 13px; }
.ctx-sep { height: 1px; background: rgba(255,255,255,0.07); margin: 0.3rem 0; }

html::-webkit-scrollbar { width: 7px; }
html::-webkit-scrollbar-track { background: #ede9df; }
html::-webkit-scrollbar-thumb {
  background: #0d0d0d;
  border-radius: 100px;
  border: 2px solid #ede9df;
}
html::-webkit-scrollbar-thumb:hover { background: #c8463a; }
html { scrollbar-width: thin; scrollbar-color: #0d0d0d #ede9df; }

html[data-theme="dark"]::-webkit-scrollbar-track { background: #1a1916; }
html[data-theme="dark"]::-webkit-scrollbar-thumb { background: #f0ece3; border-color: #1a1916; }
html[data-theme="dark"] { scrollbar-color: #f0ece3 #1a1916; }

.nav-actions { display: flex; align-items: center; gap: 0.5rem; }
.theme-toggle {
  background: var(--ink); color: var(--paper);
  border: none; border-radius: var(--radius);
  padding: 0.6rem 1.5rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
  font-size: 0.85rem;
  line-height: 1;
}
.theme-toggle svg { width: 1em; height: 1em; display: block; }
.theme-toggle:hover { background: var(--accent); }
html[data-theme="dark"] .theme-toggle { background: var(--accent2); color: #fff; }
html[data-theme="dark"] .theme-toggle:hover { background: var(--accent); }

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 4rem;
  background: var(--paper);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

.nav-logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 800; font-size: 1.3rem;
  letter-spacing: -0.02em; color: var(--ink);
  text-decoration: none;
}

.nav-logo span { color: var(--accent); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--muted); text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }

.nav-cta {
  background: var(--ink); color: var(--paper);
  padding: 0.6rem 1.5rem; border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 500; text-decoration: none;
  line-height: 1;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--accent); }

.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  padding: 8rem 4rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; right: 0; top: 0;
  width: 60%; height: 100%;
  background: radial-gradient(ellipse at 80% 45%, rgba(200,70,58,0.09) 0%, transparent 60%);
  pointer-events: none; z-index: 0;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(13,13,13,0.055) 1px, transparent 1px);
  background-size: 26px 26px;
  pointer-events: none; z-index: 0;
}

.hero-bg-text {
  position: absolute; right: -2rem; top: 50%;
  transform: translateY(-50%);
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(8rem, 20vw, 18rem);
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(13,13,13,0.06);
  white-space: nowrap;
  pointer-events: none;
  line-height: 1;
  user-select: none;
}

.hero-logo-ghost {
  position: absolute;
  left: -2rem; top: 50%;
  transform: translateY(-50%);
  width: clamp(18rem, 38vw, 52rem);
  opacity: 0.06;
  pointer-events: none;
  user-select: none;
  filter: grayscale(1);
}
html[data-theme="dark"] .hero-logo-ghost {
  opacity: 0.09;
  filter: grayscale(1) invert(1);
}

.hero-content { max-width: 700px; position: relative; z-index: 1; }

.hero-tag {
  display: inline-flex; align-items: center; gap: 0.45rem;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--ink); color: var(--paper);
  border-radius: 100px;
  padding: 0.38rem 1.1rem 0.38rem 0.7rem; margin-bottom: 1.75rem;
}
.hero-tag-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  animation: pulse-dot 2s ease-in-out infinite;
  flex-shrink: 0;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.75); }
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 800; line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(130deg, #c8463a 0%, #e05c1a 55%, #ff8c42 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.hero h1 em::after {
  content: '';
  position: absolute; bottom: 4px; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, #c8463a, #ff8c42);
  opacity: 0.45; border-radius: 2px;
}

.hero p {
  font-size: 1.1rem; color: var(--muted); max-width: 520px;
  margin-bottom: 2.5rem; font-weight: 300;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.btn-primary {
  background: linear-gradient(135deg, #c8463a 0%, #e05c1a 100%);
  color: #fff;
  padding: 0.9rem 2rem; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none; transition: all 0.22s;
  border: 2px solid transparent;
  box-shadow: 0 4px 20px rgba(200,70,58,0.35);
}
.btn-primary:hover { filter: brightness(1.1); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,70,58,0.45); }

.btn-secondary {
  background: transparent; color: var(--ink);
  padding: 0.9rem 2rem; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 500;
  text-decoration: none;
  border: 2px solid rgba(13,13,13,0.25); transition: all 0.22s;
}
.btn-secondary:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-2px); }

.hero-stats {
  display: flex; gap: 3rem; margin-top: 4rem;
  padding-top: 2rem; border-top: 1px solid var(--border);
}

.stat-num {
  font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 800;
  background: linear-gradient(135deg, #c8463a 0%, #e05c1a 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.stat-label { font-size: 0.78rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; margin-top: 0.15rem; }

section { padding: 6rem 4rem; }
.section-tag {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.75rem; display: block;
}
.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 1rem; line-height: 1.1;
}
.section-sub { font-size: 1rem; color: var(--muted); max-width: 520px; margin-bottom: 3rem; }

#dominio { background: var(--cream); }

.domain-search-box {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
  max-width: 700px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.04);
}

.search-row {
  display: flex; gap: 0; margin-bottom: 1rem;
}

.domain-input {
  flex: 1;
  padding: 0.9rem 1.25rem;
  font-size: 1rem; font-family: 'Plus Jakarta Sans', sans-serif;
  border: 1.5px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius);
  background: var(--paper);
  outline: none; color: var(--ink);
  transition: border-color 0.2s;
}
.domain-input:focus { border-color: var(--accent); }

.tld-select {
  padding: 0.9rem 1rem;
  font-size: 0.95rem; font-family: 'Plus Jakarta Sans', sans-serif;
  border: 1.5px solid var(--border); border-right: none;
  background: var(--cream); color: var(--ink);
  outline: none; cursor: pointer;
}

.search-btn {
  padding: 0.9rem 1.75rem;
  background: var(--accent); color: white;
  border: none; border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.9rem; font-weight: 500; font-family: 'Plus Jakarta Sans', sans-serif;
  cursor: pointer; transition: background 0.2s; white-space: nowrap;
}
.search-btn:hover { background: #a8332a; }

.domain-results { margin-top: 1.5rem; }

.domain-result-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.85rem 1rem;
  border-radius: var(--radius); margin-bottom: 0.5rem;
  border: 1px solid var(--border);
  transition: all 0.2s;
}
.domain-result-item:hover { border-color: var(--ink); }
.domain-result-item.available { background: #f0faf5; border-color: #2d9a6a; }
.domain-result-item.taken { background: #fff5f5; border-color: #e04040; opacity: 0.7; }

.domain-name { font-weight: 500; font-size: 0.95rem; }
.domain-status { font-size: 0.78rem; font-weight: 500; }
.domain-result-item.available .domain-status { color: #1a7a50; }
.domain-result-item.taken .domain-status { color: #c03030; }
.domain-price { font-family: 'Space Grotesk', sans-serif; font-weight: 700; color: var(--ink); }
.domain-add-btn {
  padding: 0.4rem 1rem;
  background: var(--ink); color: var(--paper);
  border: none; border-radius: var(--radius);
  font-size: 0.8rem; cursor: pointer; transition: background 0.2s;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.domain-add-btn:hover { background: var(--accent); }

.domain-loading { text-align: center; padding: 1.5rem; color: var(--muted); font-size: 0.9rem; }
.domain-loading .spinner {
  display: inline-block; width: 18px; height: 18px;
  border: 2px solid var(--border); border-top-color: var(--accent);
  border-radius: 50%; animation: spin 0.7s linear infinite;
  vertical-align: middle; margin-right: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

#precios { background: var(--paper); }

.pricing-toggle {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 3rem;
}
.toggle-label { font-size: 0.85rem; font-weight: 500; color: var(--muted); }
.toggle-label.active { color: var(--ink); }

.toggle-switch {
  position: relative; width: 52px; height: 28px;
  background: var(--ink); border-radius: 100px; cursor: pointer;
  transition: background 0.2s;
}
.toggle-switch::after {
  content: ''; position: absolute;
  width: 22px; height: 22px; border-radius: 50%;
  background: white; top: 3px; left: 3px;
  transition: transform 0.2s;
}
.toggle-switch.annual::after { transform: translateX(24px); }
.toggle-switch.annual { background: var(--accent); }

.badge-save {
  background: var(--accent); color: white;
  font-size: 0.7rem; font-weight: 500; padding: 0.2rem 0.6rem;
  border-radius: 100px;
}

.period-selector-wrap {
  margin-bottom: 3rem;
}
.period-label-row { margin-bottom: 0.75rem; }
.period-tabs {
  display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.75rem;
}
.period-tab {
  padding: 0.6rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  background: transparent; color: var(--muted);
  font-size: 0.85rem; font-weight: 500;
  cursor: pointer; transition: all 0.15s;
  font-family: 'Plus Jakarta Sans', sans-serif;
  display: flex; align-items: center; gap: 0.5rem;
}
.period-tab:hover { border-color: var(--ink); color: var(--ink); }
.period-tab.active {
  background: var(--ink); color: var(--paper);
  border-color: var(--ink);
}
.period-tab.best.active { background: var(--accent); border-color: var(--accent); }
.best-badge {
  background: rgba(255,255,255,0.2);
  font-size: 0.65rem; padding: 0.1rem 0.5rem;
  border-radius: 100px; font-weight: 500;
}
.period-tab:not(.active) .best-badge {
  background: var(--accent); color: white;
}
.period-note {
  font-size: 0.82rem; color: var(--muted);
  padding: 0.5rem 0.75rem;
  border-left: 2px solid var(--accent);
  background: rgba(200,70,58,0.04);
  border-radius: 0 var(--radius) var(--radius) 0;
  max-width: 480px;
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}

.pricing-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 8px; padding: 2rem;
  position: relative; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}

.pricing-card.featured {
  border: 2px solid var(--ink);
  background: var(--ink); color: var(--paper);
}

.pricing-card.featured .pricing-sub,
.pricing-card.featured .pricing-feature-item,
.pricing-card.featured .pricing-note { color: rgba(245,242,235,0.65); }

.popular-badge {
  position: absolute; top: 0; right: 0;
  background: var(--accent); color: white;
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase; padding: 0.4rem 1rem;
  border-radius: 0 0 0 8px;
}

.pricing-tier { font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.5rem; }
.pricing-card.featured .pricing-tier { color: rgba(245,242,235,0.5); }

.pricing-name {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.5rem; font-weight: 700;
  margin-bottom: 0.5rem;
}

.pricing-sub { font-size: 0.85rem; color: var(--muted); margin-bottom: 1.5rem; }

.pricing-price {
  margin-bottom: 0.25rem;
}
.price-amount {
  font-family: 'Space Grotesk', sans-serif; font-size: 2.5rem; font-weight: 800;
  line-height: 1;
}
.price-period { font-size: 0.8rem; color: var(--muted); }
.pricing-card.featured .price-period { color: rgba(245,242,235,0.5); }

.pricing-original {
  font-size: 0.85rem; color: var(--muted); text-decoration: line-through;
  margin-bottom: 1.5rem; min-height: 1.2em;
}
.pricing-card.featured .pricing-original { color: rgba(245,242,235,0.4); }

.pricing-divider { border: none; border-top: 1px solid var(--border); margin: 1.5rem 0; }
.pricing-card.featured .pricing-divider { border-color: rgba(245,242,235,0.15); }

.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-feature-item {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.88rem; padding: 0.35rem 0; color: var(--muted);
}
.feature-check {
  width: 16px; height: 16px; border-radius: 50%;
  background: #2d9a6a; color: white;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; flex-shrink: 0; margin-top: 2px;
}
.feature-x {
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--border); color: var(--muted);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.6rem; flex-shrink: 0; margin-top: 2px;
}

.pricing-cta {
  display: block; text-align: center;
  padding: 0.85rem; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 500; text-decoration: none;
  transition: all 0.2s; cursor: pointer; border: none;
  font-family: 'Plus Jakarta Sans', sans-serif; width: 100%;
}
.pricing-card:not(.featured) .pricing-cta {
  background: var(--ink); color: var(--paper);
}
.pricing-card:not(.featured) .pricing-cta:hover { background: var(--accent); }
.pricing-card.featured .pricing-cta {
  background: var(--paper); color: var(--ink);
}
.pricing-card.featured .pricing-cta:hover { background: var(--accent); color: white; }

.pricing-note { font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 1rem; }

.custom-plan-card {
  margin-top: 2rem;
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 0 0 12px 12px; padding: 2.5rem;
  position: relative;
}
.custom-plan-card::before {
  content: '';
  position: absolute;
  top: -1.5px; left: -1.5px; right: -1.5px;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--gold));
  z-index: 1;
}
.custom-plan-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: linear-gradient(90deg, rgba(200,70,58,0.1), rgba(201,168,76,0.1));
  border: 1px solid rgba(200,70,58,0.2);
  color: var(--accent); font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.85rem; border-radius: 100px;
  margin-bottom: 1.5rem;
}
.custom-plan-layout {
  display: grid; grid-template-columns: 1fr minmax(310px, 360px); gap: 3rem; align-items: start;
}
@media (max-width: 900px) { .custom-plan-layout { grid-template-columns: 1fr; } }

.hosting-only-card {
  margin-top: 2rem;
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 2rem 2.5rem;
  position: relative;
}
.hosting-only-card::before {
  content: '';
  position: absolute;
  top: -1.5px; left: -1.5px; right: -1.5px;
  height: 3px;
  background: linear-gradient(90deg, #3b82f6, #06b6d4);
  border-radius: 12px 12px 0 0;
  z-index: 1;
}
.hosting-only-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(59,130,246,0.08);
  border: 1px solid rgba(59,130,246,0.2);
  color: #3b82f6; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.25rem 0.85rem; border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hosting-only-layout {
  display: grid; grid-template-columns: 1fr minmax(260px, 300px); gap: 3rem; align-items: center;
}
@media (max-width: 900px) { .hosting-only-layout { grid-template-columns: 1fr; gap: 1.5rem; } }
.hosting-only-price-box {
  background: var(--cream); border-radius: var(--radius); padding: 1.25rem 1.5rem; text-align: center; margin-bottom: 1rem;
}
.hosting-only-price {
  font-family: 'Space Grotesk', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--ink); line-height: 1;
}
.hosting-cta-btn {
  background: var(--ink); color: var(--paper); width: 100%;
}

.cs-group { margin-bottom: 1.75rem; }
.cs-label-row {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 0.6rem;
}
.cs-label { font-size: 0.88rem; font-weight: 600; color: var(--ink); }
.cs-value {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.9rem;
  color: var(--accent); background: rgba(200,70,58,0.08);
  padding: 0.15rem 0.65rem; border-radius: 100px;
}
.custom-slider {
  width: 100%; -webkit-appearance: none; appearance: none;
  height: 5px; border-radius: 100px; outline: none; cursor: pointer;
  background: var(--cream);
}
.custom-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--ink); cursor: pointer;
  border: 3px solid var(--paper);
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: background 0.15s, transform 0.1s;
}
.custom-slider::-webkit-slider-thumb:hover { background: var(--accent); transform: scale(1.15); }
.cs-hint { font-size: 0.72rem; color: var(--muted); margin-top: 0.45rem; }

.cs-section-title {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 1rem; margin-top: 0.5rem;
  padding-bottom: 0.5rem; border-bottom: 1px solid var(--border);
}

.custom-toggle-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem;
}
@media (max-width: 600px) { .custom-toggle-grid { grid-template-columns: 1fr; } }

.cto-item {
  display: flex; align-items: center; justify-content: space-between; gap: 0.75rem;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  cursor: pointer; transition: all 0.15s; user-select: none;
  background: transparent;
}
.cto-item:hover { border-color: rgba(200,70,58,0.3); background: rgba(200,70,58,0.03); }
.cto-item.active { border-color: var(--accent); background: rgba(200,70,58,0.05); }
.cto-item.fixed { cursor: default; opacity: 0.6; }
.cto-left { display: flex; flex-direction: column; gap: 0.15rem; flex: 1; }
.cto-name { font-size: 0.84rem; font-weight: 600; color: var(--ink); }
.cto-desc { font-size: 0.7rem; color: var(--muted); }
.cto-price { font-family: 'Barlow Condensed', sans-serif; font-variant-numeric: tabular-nums; font-size: 0.8rem; font-weight: 700; color: var(--muted); white-space: nowrap; }
.cto-item.active .cto-price { color: var(--accent); }
.cto-toggle {
  width: 36px; height: 20px; border-radius: 100px; flex-shrink: 0;
  background: var(--cream); border: 1.5px solid var(--border);
  position: relative; transition: all 0.2s;
}
.cto-toggle::after {
  content: ''; position: absolute;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--muted); top: 1px; left: 1px;
  transition: all 0.2s;
}
.cto-item.active .cto-toggle { background: var(--accent); border-color: var(--accent); }
.cto-item.active .cto-toggle::after { background: white; transform: translateX(16px); }
.cto-item.fixed .cto-toggle { background: #dcfce7; border-color: #86efac; }
.cto-item.fixed .cto-toggle::after { background: #16a34a; transform: translateX(16px); }

.custom-summary { position: sticky; top: 100px; }

.cs-summary-box {
  background: var(--ink); color: var(--paper);
  border-radius: 0 0 14px 14px; padding: 1.75rem;
  margin-bottom: 1rem;
  position: relative;
}
.cs-summary-box::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2), var(--gold));
  pointer-events: none;
}
.cs-summary-box::after {
  content: '';
  position: absolute; bottom: 0; right: 0;
  width: 100px; height: 100px; border-radius: 0 0 14px 0;
  background: radial-gradient(circle at 100% 100%, rgba(200,70,58,0.13) 0%, transparent 65%);
  pointer-events: none;
}

.cs-summary-label {
  font-size: 0.62rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(245,242,235,0.35);
  margin-bottom: 0.65rem;
  display: flex; align-items: center; gap: 0.5rem;
}
.cs-summary-label::before {
  content: '';
  display: inline-block; width: 18px; height: 1.5px;
  background: rgba(245,242,235,0.25); border-radius: 1px;
}

.cs-total {
  font-family: 'Barlow Condensed', sans-serif;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  font-size: clamp(1.6rem, 3.2vw, 2.2rem);
  font-weight: 800; line-height: 1;
  margin-bottom: 0.45rem;
  white-space: nowrap;
  letter-spacing: -0.03em;
  color: #a3e635;
  transition: transform 0.25s cubic-bezier(.175,.885,.32,1.2), color 0.2s;
}

.cs-total-note {
  font-size: 0.7rem; color: rgba(245,242,235,0.4);
  letter-spacing: 0.04em;
}

.cs-breakdown {
  background: white;
  border: 1px solid var(--border);
  border-radius: 10px; padding: 0.2rem 0;
  margin-bottom: 1rem; font-size: 0.78rem;
  overflow: hidden;
}

.cs-line {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid var(--border); color: var(--muted);
  gap: 0.5rem;
}
.cs-line:last-child {
  border-bottom: none;
  background: var(--cream);
  padding: 0.65rem 1rem;
  margin-top: 0;
}
.cs-line strong { color: var(--ink); font-weight: 700; }
.cs-line .cs-line-price {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  color: var(--ink); white-space: nowrap;
}
.cs-line:last-child .cs-line-price { color: var(--accent); }

.cs-cta {
  background: var(--accent) !important;
  color: white !important;
  border-radius: 8px !important;
  padding: 0.9rem !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(200,70,58,0.25);
  transition: all 0.25s !important;
}
.cs-cta:hover {
  background: #a83330 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 28px rgba(200,70,58,0.35) !important;
}

#proyectos { background: var(--cream); }

/* ── Carrusel de proyectos — Modern ── */
.carousel-outer {
  position: relative;
  padding: 0 60px;
}
.carousel-track-wrap {
  overflow: hidden;
  position: relative;
  padding: 50px 0 70px;
  margin: -50px 0 -70px;
}
.carousel-track-wrap::before,
.carousel-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 4;
  pointer-events: none;
  transition: opacity 0.35s;
}
.carousel-track-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--cream), transparent);
}
.carousel-track-wrap::after {
  right: 0;
  background: linear-gradient(-90deg, var(--cream), transparent);
}
.carousel-track-wrap.at-start::before { opacity: 0; }
.carousel-track-wrap.at-end::after   { opacity: 0; }
.projects-grid {
  display: flex;
  gap: 2rem;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--card-bg);
  color: var(--text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 16px rgba(0,0,0,0.12), 0 0 0 1.5px var(--border);
  transition: all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 10;
}
.carousel-prev { left: 0; }
.carousel-next { right: 0; }
.carousel-btn:hover:not(:disabled) {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 24px rgba(255,110,0,0.4), 0 0 0 1.5px var(--accent);
  transform: translateY(-50%) scale(1.1);
}
.carousel-btn:active:not(:disabled) { transform: translateY(-50%) scale(0.95); }
.carousel-btn:disabled { opacity: 0; pointer-events: none; }
.carousel-progress-bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
  margin: 1.5rem 60px 0;
  overflow: hidden;
}
.carousel-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent) 0%, #ff8c00 100%);
  border-radius: 2px;
  transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.carousel-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 1.1rem;
}
.carousel-counter {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--muted);
  min-width: 44px;
  text-align: right;
}
.carousel-counter strong { color: var(--accent); font-size: 0.9rem; }
.carousel-dots { display: flex; align-items: center; gap: 6px; }
.carousel-dot {
  width: 6px; height: 6px;
  border-radius: 3px;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s, width 0.3s, opacity 0.3s;
  border: none; padding: 0;
  opacity: 0.45;
}
.carousel-dot.active { background: var(--accent); width: 28px; opacity: 1; }
.carousel-dot:hover:not(.active) { opacity: 0.75; }


@media (max-width: 640px) {
  /* Quitar padding lateral — ocupa todo el ancho */
  .carousel-outer { padding: 0; }

  /* Ocultar flechas — swipe ya funciona */
  .carousel-btn { display: none; }

  /* Quitar márgenes negativos que causan overflow */
  .carousel-track-wrap { margin: 0 0 0; }
  .carousel-track-wrap::before,
  .carousel-track-wrap::after { display: none; }

  /* Imagen más baja */
  .project-thumb { height: 180px; }

  /* Body más compacto */
  .project-body { padding: 1rem; }
  .project-desc { font-size: 0.8rem; margin-bottom: 1rem; -webkit-line-clamp: 3; line-clamp: 3; display: -webkit-box; -webkit-box-orient: vertical; overflow: hidden; }

  /* Footer más compacto */
  .project-footer { padding-top: 0.75rem; flex-wrap: wrap; gap: 0.5rem; }
  .project-tech { gap: 0.3rem; }
  .tech-tag { font-size: 0.62rem; padding: 0.18rem 0.5rem; }

  /* Dots más grandes para touch */
  .carousel-dot { width: 8px; height: 8px; border-radius: 4px; opacity: 0.5; }
  .carousel-dot.active { width: 24px; opacity: 1; }
  .carousel-footer { margin-top: 1rem; gap: 0.75rem; }
  .carousel-counter { font-size: 0.8rem; }

  /* Progress bar más visible */
  .carousel-progress-bar { margin-top: 0.75rem; height: 2px; }
}

.project-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.project-card:hover {
  border-color: rgba(255,110,0,0.55);
}

.project-thumb {
  height: 240px;
  position: relative;
  overflow: hidden;
  background: #111;
  flex-shrink: 0;
}
.project-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.22) 100%);
  pointer-events: none;
  z-index: 1;
}

.project-iframe-wrap {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  overflow: hidden;
}
.project-iframe-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 1280px;
  height: 720px;
  border: none;
  pointer-events: none;
  transform-origin: top left;
}
.project-img-cover {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
}

.project-ext-placeholder {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.6rem;
  background: #111;
}
.project-ext-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-thumb-inner {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 2rem;
  letter-spacing: -0.03em;
}

.thumb-1 { background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%); color: #e94560; }
.thumb-2 { background: linear-gradient(135deg, #2d5016 0%, #4a7c2a 100%); color: #c8ff9a; }
.thumb-3 { background: linear-gradient(135deg, #2c1a4e 0%, #4a2d7e 100%); color: #d4a1ff; }
.thumb-4 { background: linear-gradient(135deg, #3d1a00 0%, #7a3d00 100%); color: #ffb347; }
.thumb-5 { background: linear-gradient(135deg, #1a2d3d 0%, #2d4a5e 100%); color: #64d9ff; }
.thumb-6 { background: linear-gradient(135deg, #3d0a1a 0%, #7a1a30 100%); color: #ff8fa3; }

.project-tag-thumb {
  font-size: 0.65rem; font-weight: 400; letter-spacing: 0.15em;
  text-transform: uppercase; opacity: 0.7; margin-top: 0.3rem;
}

.project-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.project-category {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem;
}
.project-title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 1.15rem;
  margin-bottom: 0.6rem; line-height: 1.3;
  display: flex; align-items: center; gap: 0.55rem; flex-wrap: wrap;
}
.project-active-badge {
  display: inline-flex; align-items: center; gap: 0.3rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: #166534; background: #dcfce7; border: 1px solid #bbf7d0;
  padding: 0.18rem 0.55rem 0.18rem 0.42rem; border-radius: 100px;
  flex-shrink: 0;
}
.project-active-dot {
  width: 6px; height: 6px; border-radius: 50%; background: #16a34a;
  animation: proj-pulse 2s ease-in-out infinite;
}
@keyframes proj-pulse {
  0%,100% { opacity: 1; box-shadow: 0 0 0 0 rgba(22,163,74,0.5); }
  50% { opacity: 0.7; box-shadow: 0 0 0 4px rgba(22,163,74,0); }
}
.project-desc {
  font-size: 0.84rem; color: var(--muted); line-height: 1.65;
  flex: 1; margin-bottom: 1.5rem;
}

.project-footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; border-top: 1px solid var(--border); gap: 0.75rem;
}
.project-tech { display: flex; gap: 0.4rem; flex-wrap: wrap; flex: 1; }
.tech-tag {
  font-size: 0.68rem; background: var(--cream); color: var(--muted);
  padding: 0.22rem 0.65rem; border-radius: 100px; border: 1px solid var(--border);
  white-space: nowrap;
}
.project-view-btn {
  display: none;
}
@media (max-width: 768px) {
  .project-view-btn {
    display: inline-flex; align-items: center; gap: 0.35rem;
    padding: 0.55rem 1.2rem; background: var(--ink); color: var(--paper);
    border: none; border-radius: var(--radius); font-size: 0.8rem; font-weight: 600;
    cursor: pointer; text-decoration: none; transition: background 0.2s; white-space: nowrap;
    font-family: 'Plus Jakarta Sans', sans-serif; letter-spacing: 0.02em;
    flex-shrink: 0;
  }
  .project-view-btn:hover { background: var(--accent); }
}

.add-project-btn {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.75rem; min-height: 380px;
  border: 2px dashed var(--border); border-radius: 12px;
  background: transparent; cursor: pointer; color: var(--muted);
  transition: all 0.2s; font-family: 'Plus Jakarta Sans', sans-serif;
}
.add-project-btn:hover { border-color: var(--ink); color: var(--ink); }
.add-icon { font-size: 2.5rem; line-height: 1; }

.img-drop-zone {
  width: 100%; height: 180px;
  border: 2px dashed var(--border); border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: border-color 0.2s, background 0.2s;
  background: var(--paper); overflow: hidden; text-align: center;
  padding: 1rem;
}
.img-drop-zone:hover { border-color: var(--accent); background: rgba(200,70,58,0.03); }


footer {
  background: var(--ink); color: rgba(245,242,235,0.4);
  padding: 2rem 4rem;
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid rgba(245,242,235,0.1);
  font-size: 0.82rem;
}

.footer-logo {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1.1rem;
  color: var(--paper); text-decoration: none;
}
.footer-logo span { color: var(--accent); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * { animation: fadeUp 0.6s ease forwards; opacity: 0; }
.hero-tag { animation-delay: 0.1s; }
.hero h1 { animation-delay: 0.2s; }
.hero p { animation-delay: 0.3s; }
.hero-actions { animation-delay: 0.4s; }
.hero-stats { animation-delay: 0.5s; }

@media (max-width: 1024px) {
  /* carousel: 2 cards per view on tablet — handled by JS */
}

.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px; z-index: 110;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: all 0.25s;
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-nav-menu {
  display: none; position: fixed; top: 57px; left: 0; right: 0; z-index: 98;
  background: var(--paper); border-bottom: 1px solid var(--border);
  padding: 1.25rem 1.5rem 1.5rem;
  flex-direction: column; gap: 0;
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  animation: slideDown 0.22s ease;
}
.mobile-nav-menu.open { display: flex; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.mobile-nav-menu a {
  font-size: 1rem; font-weight: 500; color: var(--muted); text-decoration: none;
  padding: 0.85rem 0; border-bottom: 1px solid var(--border); transition: color 0.15s;
}
.mobile-nav-menu a:hover { color: var(--ink); }
.mobile-nav-menu a:last-of-type { border-bottom: none; }
.mobile-nav-cta {
  margin-top: 1rem; display: block; text-align: center;
  background: var(--ink); color: var(--paper);
  padding: 0.85rem; border-radius: var(--radius);
  font-size: 0.9rem; font-weight: 500; text-decoration: none;
  transition: background 0.2s;
}
.mobile-nav-cta:hover { background: var(--accent); }

@media (max-width: 768px) {
  nav { padding: 0.85rem 1.25rem; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }

  section { padding: 3.5rem 1.25rem; }
  .hero { padding: 5.5rem 1.25rem 3rem; min-height: auto; }

  .hero-bg-text { font-size: clamp(4.5rem, 28vw, 9rem); right: -0.5rem; opacity: 0.8; }

  .hero-stats {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1.25rem 1.5rem; margin-top: 2rem; padding-top: 1.5rem;
  }
  .stat-num { font-size: 1.7rem; }

  
  .domain-search-box { padding: 1.5rem; }
  .search-row { flex-direction: column; }
  .domain-input {
    border-right: 1.5px solid var(--border); border-bottom: none;
    border-radius: var(--radius) var(--radius) 0 0;
  }
  .tld-select { border-bottom: none; border-right: none; border-left: 1.5px solid var(--border); }
  .search-btn { border-radius: 0 0 var(--radius) var(--radius); width: 100%; }

  
  .period-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 4px; }
  .period-tab { white-space: nowrap; flex-shrink: 0; }

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

  
  .hosting-only-card { padding: 1.5rem 1.25rem; }
  #hostingPeriodTabs { flex-wrap: wrap; gap: 0.4rem; }
  #hostingPeriodTabs .period-tab { flex: 1 1 calc(50% - 0.2rem); justify-content: center; text-align: center; }

  .custom-plan-card { padding: 1.5rem; }
  .custom-plan-layout { gap: 1.5rem; }
  .custom-toggle-grid { grid-template-columns: 1fr; }
  .custom-summary { position: static; }
  .cs-summary-box { padding: 1.4rem; }
  .cs-total { font-size: clamp(1.6rem, 8vw, 2.2rem); }

  
  /* carousel: 1 card per view on mobile — handled by JS */

  
  #cart-bar { padding: 0.75rem 1rem; gap: 0.6rem; }
  .cart-items { gap: 0.5rem; }
  .cart-total { font-size: 0.9rem; }
  .cart-wa-btn { width: 100%; text-align: center; padding: 0.65rem 1rem; }

  
  footer { flex-direction: column; gap: 1rem; text-align: center; padding: 1.5rem 1.25rem; }
}

@media (max-width: 480px) {
  nav { padding: 0.75rem 1rem; }

  .hero { padding: 5rem 1rem 2.5rem; }
  .hero h1 { font-size: clamp(2rem, 10vw, 2.8rem); }
  .hero p { font-size: 0.95rem; }
  .hero-actions { flex-direction: column; gap: 0.75rem; }
  .btn-primary, .btn-secondary { text-align: center; width: 100%; padding: 0.9rem 1rem; }
  .hero-stats { gap: 1rem 1.25rem; }
  .stat-num { font-size: 1.5rem; }
  .live-badge { font-size: 0.68rem; }

  section { padding: 3rem 1rem; }
  .section-title { font-size: 1.65rem; }

  .domain-search-box { padding: 1.25rem 1rem; }

  .period-note { font-size: 0.78rem; }

  .hosting-only-card { padding: 1.25rem 1rem; }
  #hostingPeriodTabs .period-tab { padding: 0.5rem 0.6rem; font-size: 0.78rem; }
  .best-badge { font-size: 0.6rem; padding: 0.08rem 0.4rem; }

  .custom-plan-card { padding: 1.25rem 1rem; }
  .cto-item { padding: 0.65rem 0.75rem; }
  .cto-name { font-size: 0.8rem; }

  .cart-chip { font-size: 0.74rem; padding: 0.28rem 0.55rem; }
  .cart-total { font-size: 0.85rem; }

  footer { padding: 1.25rem 1rem; font-size: 0.78rem; }
}

#scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 500;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  width: 0%; transition: width 0.08s linear;
  box-shadow: 0 0 10px rgba(200,70,58,0.5);
}

nav.scrolled {
  background: rgba(245,242,235,0.97);
  box-shadow: 0 2px 24px rgba(0,0,0,0.07);
}

.orb {
  position: absolute; border-radius: 50%; pointer-events: none; filter: blur(70px);
}
.orb-1 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(200,70,58,0.18) 0%, transparent 70%);
  top: -60px; right: 18%;
  animation: orb-drift 14s ease-in-out infinite alternate;
}
.orb-2 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(232,130,74,0.16) 0%, transparent 70%);
  bottom: 8%; left: 5%;
  animation: orb-drift 18s ease-in-out infinite alternate-reverse;
}
@keyframes orb-drift {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(28px, -36px) scale(1.08); }
}

.live-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(200,70,58,0.06); border: 1px solid rgba(200,70,58,0.15);
  border-radius: 100px; padding: 0.32rem 0.85rem;
  font-size: 0.73rem; color: var(--muted); margin-bottom: 1rem;
}
.live-dot {
  width: 7px; height: 7px; border-radius: 50%; background: #22c55e; flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(34,197,94,0.4);
  animation: pulse-live 2s ease-in-out infinite;
}
@keyframes pulse-live {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,0.6); }
  70% { box-shadow: 0 0 0 7px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

.hero-visual {
  position: absolute; right: 3.5rem; top: 50%; transform: translateY(-50%);
  width: clamp(260px, 30vw, 400px);
  display: flex; flex-direction: column; gap: 0.85rem;
  pointer-events: none; z-index: 1;
}
@media (max-width: 1200px) { .hero-visual { display: none; } }

.hv-card {
  background: var(--card-bg); border-radius: 14px; padding: 1.1rem 1.3rem;
  border: 1px solid var(--border);
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
}
.hv-card:nth-child(1) { animation: hv-float 5.5s ease-in-out infinite alternate; }
.hv-card:nth-child(2) { margin-left: 2rem; animation: hv-float 7s ease-in-out infinite alternate-reverse; }
.hv-card:nth-child(3) { margin-left: 0.75rem; animation: hv-float 6.2s ease-in-out infinite alternate; }
@keyframes hv-float { from { transform: translateY(0); } to { transform: translateY(-13px); } }

.hv-dots { display: flex; gap: 5px; margin-bottom: 0.8rem; }
.hv-dot { width: 9px; height: 9px; border-radius: 50%; }
.hv-dot.r { background: #ff5f57; }
.hv-dot.y { background: #febc2e; }
.hv-dot.g { background: #28c840; }
.hv-thumb { height: 66px; border-radius: 8px; margin-bottom: 0.7rem; }
.hv-thumb.t1 { background: linear-gradient(135deg,#1a0a0a 0%,#c8463a 70%,#ff8c42 100%); }
.hv-thumb.t2 { background: linear-gradient(135deg,#0d1117 0%,#1e3a5f 60%,#2c7aad 100%); }
.hv-thumb.t3 { background: linear-gradient(135deg,#0f1f0a 0%,#2d5016 60%,#5a9e1a 100%); }
.hv-bar { height: 7px; border-radius: 100px; background: var(--cream); margin-bottom: 0.4rem; }
.hv-bar.w100 { width: 100%; }
.hv-bar.w70 { width: 70%; }
.hv-bar.w45 { width: 45%; }
.hv-footer { display: flex; justify-content: space-between; align-items: center; margin-top: 0.7rem; }
.hv-lbl { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }
.hv-chip { font-size: 0.63rem; padding: 0.15rem 0.55rem; border-radius: 100px; font-weight: 600; }
.hv-chip.green { background: #dcfce7; color: #166534; }
.hv-chip.amber { background: #fef3c7; color: #92400e; }
.hv-chip.blue { background: #dbeafe; color: #1e40af; }
.hv-stats { display: flex; gap: 0.75rem; margin-top: 0.6rem; }
.hv-stat-n { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.95rem; color: var(--ink); }
.hv-stat-l { font-size: 0.58rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

.hv-mini-chart { display: flex; align-items: flex-end; gap: 3px; height: 30px; margin-top: 0.6rem; }
.hv-mc-bar { border-radius: 3px 3px 0 0; background: rgba(200,70,58,0.18); flex: 1; transition: background 0.2s; }
.hv-mc-bar.hi { background: linear-gradient(to top, #c8463a, #e05c1a); }

.hero-trust { display: flex; gap: 1.5rem; margin-top: 1.1rem; flex-wrap: wrap; }
.hero-trust-item { display: flex; align-items: center; gap: 0.35rem; font-size: 0.78rem; color: var(--muted); }
.hero-trust-item svg { color: var(--accent); flex-shrink: 0; }

.marquee-strip {
  background: var(--ink); overflow: hidden;
  border-top: 1px solid rgba(245,242,235,0.06);
  padding: 0.9rem 0;
}
.marquee-inner {
  display: flex; gap: 0; width: max-content;
  animation: mq-scroll 22s linear infinite;
}
.marquee-inner span {
  font-size: 0.76rem; font-weight: 500; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(245,242,235,0.45);
  white-space: nowrap; padding: 0 2rem;
}
.marquee-inner .mq-sep { color: var(--accent); padding: 0 0.5rem; opacity: 1; }
@keyframes mq-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.2s; }
.reveal.delay-3 { transition-delay: 0.3s; }

.btn-primary { transition: all 0.22s; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,70,58,0.32); }
.btn-secondary { transition: all 0.22s; }
.btn-secondary:hover { transform: translateY(-2px); }

#cart-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 1000;
  background: #131313;
  color: var(--paper);
  padding: 1rem 2rem;
  display: flex; align-items: stretch; gap: 2rem;
  box-shadow: 0 -4px 40px rgba(0,0,0,0.35);
  border-top: 1px solid rgba(255,255,255,0.07);
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(.4,0,.2,1);
}
#cart-bar.visible { transform: translateY(0); }

.cart-left { flex: 1; display: flex; flex-direction: column; gap: 0.45rem; min-width: 0; }
.cart-section-label {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(245,242,235,0.35);
  margin-bottom: 0.1rem;
}
.cart-row {
  display: flex; align-items: center; gap: 0.65rem;
  background: rgba(255,255,255,0.06); border-radius: 7px;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.07);
}
.cart-row-icon { font-size: 0.9rem; flex-shrink: 0; opacity: 0.85; }
.cart-row-name {
  flex: 1; font-size: 0.83rem; font-weight: 500;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cart-row-type {
  font-size: 0.65rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: rgba(245,242,235,0.4);
  margin-right: 0.25rem;
}
.cart-row-price {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.88rem;
  color: #a3e635; white-space: nowrap; flex-shrink: 0;
}
.cart-row-remove {
  background: none; border: none; color: rgba(255,255,255,0.3);
  cursor: pointer; font-size: 1rem; line-height: 1;
  padding: 0 0 0 0.4rem; transition: color 0.15s; flex-shrink: 0;
}
.cart-row-remove:hover { color: #f87171; }

.cart-right {
  display: flex; flex-direction: column; justify-content: center; align-items: flex-end;
  gap: 0.6rem; border-left: 1px solid rgba(255,255,255,0.08);
  padding-left: 2rem; flex-shrink: 0;
}
.cart-total-label {
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(245,242,235,0.35);
}
.cart-total-amount {
  font-family: 'Space Grotesk', sans-serif; font-weight: 800; font-size: 1.5rem; line-height: 1;
}
.cart-total-sub { font-size: 0.68rem; color: rgba(245,242,235,0.35); margin-top: -0.1rem; }
.cart-wa-btn {
  background: #25d366; color: #fff;
  border: none; border-radius: 7px;
  padding: 0.72rem 1.4rem; font-size: 0.88rem; font-weight: 700;
  cursor: pointer; white-space: nowrap; font-family: 'Plus Jakarta Sans', sans-serif;
  transition: background 0.2s, transform 0.15s;
  display: flex; align-items: center; gap: 0.5rem; letter-spacing: 0.01em;
}
.cart-wa-btn:hover { background: #1dbc58; transform: translateY(-1px); }
.cart-wa-icon { font-size: 1rem; }

@media (max-width: 768px) {
  #cart-bar { padding: 0.85rem 1rem; gap: 0.85rem; flex-direction: column; }
  .cart-right {
    flex-direction: row; align-items: center; justify-content: space-between;
    border-left: none; border-top: 1px solid rgba(255,255,255,0.08);
    padding-left: 0; padding-top: 0.75rem;
  }
  .cart-total-amount { font-size: 1.25rem; }
  .cart-wa-btn { padding: 0.65rem 1.2rem; font-size: 0.85rem; }
}
@media (max-width: 480px) {
  .cart-row-name { font-size: 0.78rem; }
  .cart-row-price { font-size: 0.82rem; }
  .cart-wa-btn { flex: 1; justify-content: center; }
}

.section-title { position: relative; }
.section-title::after {
  content: '';
  position: absolute; bottom: -8px; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 2px;
  transition: width 0.7s cubic-bezier(.19,1,.22,1) 0.2s;
}
.reveal.in .section-title::after { width: 52px; }

.nav-links a { position: relative; }
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width 0.22s ease;
}
.nav-links a:hover::after { width: 100%; }

.btn-primary, .btn-secondary, .nav-cta, .search-btn, .pricing-cta {
  position: relative; overflow: hidden;
}
.btn-primary::before, .btn-secondary::before, .nav-cta::before,
.search-btn::before, .pricing-cta::before {
  content: '';
  position: absolute; top: 0; left: -100%;
  width: 55%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-18deg);
  transition: left 0.45s ease;
  pointer-events: none;
}
.btn-primary:hover::before, .btn-secondary:hover::before, .nav-cta:hover::before,
.search-btn:hover::before, .pricing-cta:hover::before { left: 170%; }

.ripple {
  position: absolute; border-radius: 50%;
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.28);
  transform: scale(0); transform-origin: center;
  animation: ripple-expand 0.55s ease-out forwards;
  pointer-events: none;
}
@keyframes ripple-expand { to { transform: scale(30); opacity: 0; } }

.pricing-card {
  transition: transform 0.32s cubic-bezier(.175,.885,.32,1.1), box-shadow 0.32s ease;
}
.pricing-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 28px 72px rgba(0,0,0,0.13);
}
.pricing-card.featured:hover {
  box-shadow: 0 28px 72px rgba(0,0,0,0.32), 0 0 0 1px rgba(200,70,58,0.35);
}

.pricing-card.featured::after {
  content: '';
  position: absolute; top: 0; left: -250%;
  width: 70%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.045), transparent);
  transform: skewX(-20deg);
  animation: shimmer-featured 5.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer-featured {
  0%, 100% { left: -250%; }
  50% { left: 280%; }
}

.project-thumb-overlay {
  position: absolute; inset: 0; z-index: 3;
  display: flex; align-items: center; justify-content: center;
  background: rgba(13,13,13,0);
  text-decoration: none;
}
.project-card:hover .project-thumb-overlay { background: rgba(13,13,13,0.52); }
.project-thumb-overlay-cta {
  color: white; font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  opacity: 0;
  padding: 0.55rem 1.4rem;
  border: 1.5px solid rgba(255,255,255,0.55); border-radius: 100px;
  background: rgba(255,255,255,0.07);
}
.project-card:hover .project-thumb-overlay-cta { opacity: 1; }

.pricing-grid .pricing-card:nth-child(2) { transition-delay: 0.1s; }
.pricing-grid .pricing-card:nth-child(3) { transition-delay: 0.2s; }

.domain-result-item { animation: domainFadeUp 0.28s ease both; }
.domain-result-item:nth-child(2) { animation-delay: 0.07s; }
.domain-result-item:nth-child(3) { animation-delay: 0.14s; }
.domain-result-item:nth-child(4) { animation-delay: 0.21s; }
@keyframes domainFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero h1 em { text-shadow: 0 0 80px rgba(200,70,58,0.22); }

.custom-plan-card { transition: box-shadow 0.35s ease; }
.custom-plan-card:hover {
  box-shadow: 0 12px 60px rgba(200,70,58,0.1), 0 2px 8px rgba(0,0,0,0.05);
}

.period-tab {
  transition: all 0.22s cubic-bezier(.175,.885,.32,1.2);
}
.period-tab.active { transform: scale(1.04); }

.hero-bg-text { will-change: transform; }

.marquee-strip-b {
  background: var(--ink); overflow: hidden;
  border-bottom: 1px solid rgba(245,242,235,0.06); padding: 0.65rem 0;
}
.marquee-inner-b {
  display: flex; gap: 0; width: max-content;
  animation: mq-rev 30s linear infinite;
}
.marquee-inner-b span {
  font-size: 0.7rem; font-weight: 400; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(245,242,235,0.22);
  white-space: nowrap; padding: 0 2.5rem;
}
.marquee-inner-b .mq-sep-b { color: var(--gold); opacity: 0.7; padding: 0 0.5rem; }
@keyframes mq-rev { from { transform: translateX(-50%); } to { transform: translateX(0); } }

nav.scrolled {
  box-shadow: 0 2px 32px rgba(0,0,0,0.09);
}

@media (min-width: 769px) {
  .projects-grid:hover .project-card:not(:hover) {
    opacity: 0.88; transform: scale(0.99);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }
  .projects-grid .project-card:hover { opacity: 1; }
}

/* ── LANDING CARDS ── */
.lp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.lp-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  display: flex; flex-direction: column;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.lp-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200,70,58,0.4);
  box-shadow: 0 20px 48px rgba(0,0,0,0.08), 0 0 0 1px rgba(200,70,58,0.12);
}
.lp-card.lp-featured {
  border: 2px solid var(--accent);
}
.lp-badge {
  position: absolute; top: -1px; right: 18px;
  background: var(--accent); color: white;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 8px 8px;
}
.lp-badge-offer {
  position: absolute; top: -1px; left: 18px;
  background: linear-gradient(135deg, #f59e0b, #ef4444);
  color: white;
  font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 8px 8px;
  box-shadow: 0 2px 8px rgba(245,158,11,0.4);
}
.lp-icon-wrap {
  width: 52px; height: 52px; border-radius: 13px;
  background: rgba(200,70,58,0.08);
  border: 1px solid rgba(200,70,58,0.2);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem; flex-shrink: 0;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.lp-card:hover .lp-icon-wrap {
  background: rgba(200,70,58,0.15);
  border-color: rgba(200,70,58,0.5);
  box-shadow: 0 0 18px rgba(200,70,58,0.2);
}
.lp-type {
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em;
  color: var(--accent); font-weight: 600; margin-bottom: 0.3rem;
}
.lp-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.22rem; font-weight: 700; color: var(--ink); margin-bottom: 0.45rem;
}
.lp-desc {
  font-size: 0.81rem; color: var(--muted); line-height: 1.65; margin-bottom: 1.2rem;
}
.lp-price-box {
  background: var(--cream); border-radius: 10px;
  padding: 0.9rem 1rem; margin-bottom: 1.2rem;
}
.lp-price-row { display: flex; gap: 0; align-items: stretch; }
.lp-price-col { flex: 1; padding: 0 0.6rem; }
.lp-price-col:first-child { padding-left: 0; }
.lp-price-col:last-child { padding-right: 0; }
.lp-price-divider {
  width: 1px; background: var(--border); flex-shrink: 0; margin: 0.1rem 0;
}
.lp-price-label {
  font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--muted); margin-bottom: 0.2rem; display: flex; align-items: center; gap: 0.35rem;
}
.lp-discount-badge {
  background: var(--accent); color: white;
  font-size: 0.6rem; font-weight: 700; padding: 0.08rem 0.32rem;
  border-radius: 4px; letter-spacing: 0.04em; text-transform: uppercase;
}
.lp-price {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.65rem; font-weight: 800; color: var(--ink); line-height: 1;
}
.lp-price-anual {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.65rem; font-weight: 800; color: var(--accent); line-height: 1;
}
.lp-price-period { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.72rem; font-weight: 500; color: var(--muted); }
.lp-price-savings { font-size: 0.67rem; color: var(--accent); font-weight: 600; margin-top: 0.18rem; }
.lp-price-note { font-size: 0.69rem; color: var(--muted); margin-top: 0.25rem; }
.lp-features { list-style: none; margin: 0 0 1.5rem; flex: 1; }
.lp-features li {
  font-size: 0.81rem; color: var(--muted);
  padding: 0.22rem 0; display: flex; align-items: flex-start; gap: 0.5rem;
}
.lp-chk { color: var(--accent); font-weight: 700; flex-shrink: 0; }
.lp-cta {
  display: block; width: 100%;
  padding: 0.82rem 1rem;
  background: var(--ink); color: var(--paper);
  border: none; border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.84rem; font-weight: 600;
  cursor: pointer; transition: background 0.2s;
  text-align: center; text-decoration: none;
}
.lp-cta:hover { background: var(--accent); }
.lp-card.lp-featured .lp-price-box { background: rgba(200,70,58,0.06); }
@media (max-width: 768px) { .lp-grid { grid-template-columns: 1fr; } }
@media (min-width: 769px) and (max-width: 1100px) { .lp-grid { grid-template-columns: repeat(2,1fr); } }

/* ── CTA BAND ── */
.cta-band {
  background: var(--ink); padding: 3rem 4rem;
}
.cta-band-inner {
  max-width: 860px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 2rem;
  flex-wrap: wrap;
}
.cta-band-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; font-weight: 700;
  color: var(--paper); margin-bottom: 0.3rem;
}
.cta-band-sub { font-size: 0.9rem; color: rgba(245,242,235,0.5); }
.cta-band-btn {
  background: var(--accent); color: white;
  padding: 0.85rem 2rem; border-radius: var(--radius);
  font-weight: 700; font-size: 0.9rem; text-decoration: none;
  white-space: nowrap; transition: opacity 0.2s;
}
.cta-band-btn:hover { opacity: 0.85; }

/* ── CÓMO FUNCIONA ── */
#como-funciona {
  padding: 7rem 4rem;
  background: var(--ink);
  position: relative; overflow: hidden;
  text-align: center;
}
#como-funciona::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(200,70,58,0.6), transparent);
}
#como-funciona::after { display: none; }
#como-funciona .section-tag { color: var(--accent2); }
#como-funciona .section-title { color: var(--paper); }
#como-fuciona .section-sub { color: rgba(245,242,235,0.4); }
#como-funciona .section-sub { color: rgba(245,242,235,0.4); margin-bottom: 4rem; }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr 48px 1fr 48px 1fr 48px 1fr;
  max-width: 1240px; margin: 0 auto;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; overflow: hidden;
  position: relative;
}
.steps-grid::after {
  content: ''; position: absolute;
  top: 0; left: 0; bottom: 0; width: 0;
  background: linear-gradient(to right, rgba(200,70,58,0.06), transparent);
  transition: width 1.4s cubic-bezier(.22,.68,0,1);
  pointer-events: none; z-index: 0;
}
.steps-grid.line-animated::after { width: 100%; }

/* Separador diagonal */
.step-sep {
  position: relative; z-index: 2;
}
.step-sep svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block; overflow: visible;
}

.step-card {
  padding: 3rem 2.5rem; position: relative; z-index: 1;
  text-align: left; cursor: default;
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.step-card::before {
  content: ''; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(ellipse at 50% 60%, rgba(200,70,58,0.14) 0%, transparent 70%);
  opacity: 0; transition: opacity 0.4s ease;
}
.step-card:hover::before { opacity: 1; }
.step-card.visible { opacity: 1; transform: translateY(0); }
.step-card:nth-child(1) { transition-delay: 0.05s; }
.step-card:nth-child(3) { transition-delay: 0.2s; }
.step-card:nth-child(5) { transition-delay: 0.35s; }
.step-card:nth-child(7) { transition-delay: 0.5s; }

.step-icon-wrap {
  width: 58px; height: 58px; border-radius: 14px;
  background: rgba(200,70,58,0.08);
  border: 1px solid rgba(200,70,58,0.22);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.6rem;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}
.step-card:hover .step-icon-wrap {
  background: rgba(200,70,58,0.18);
  border-color: rgba(200,70,58,0.6);
  box-shadow: 0 0 24px rgba(200,70,58,0.28);
  transform: scale(1.08) rotate(-3deg);
}
.step-num {
  font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem;
  font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.5rem; display: block;
}
.step-title {
  font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; font-weight: 700;
  color: var(--paper); margin-bottom: 0.7rem; line-height: 1.3;
}
.step-desc { font-size: 0.84rem; color: rgba(245,242,235,0.42); line-height: 1.8; }
.step-connector { display: none; }

/* ── FAQ ── */
#faq { padding: 6rem 4rem; background: var(--paper); }
.faq-list {
  max-width: 760px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
  cursor: pointer; transition: background 0.2s;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item[open] { background: rgba(200,70,58,0.03); border-bottom-color: rgba(200,70,58,0.2); }
.faq-q {
  list-style: none; padding: 1.25rem 0.5rem 1.25rem 0;
  font-family: 'Space Grotesk', sans-serif; font-size: 0.95rem; font-weight: 600;
  color: var(--ink); display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; cursor: pointer; transition: color 0.2s;
}
.faq-item[open] .faq-q { color: var(--accent); }
.faq-q::after {
  content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--accent);
  flex-shrink: 0; width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(200,70,58,0.25); border-radius: 50%;
  transition: transform 0.35s cubic-bezier(.4,0,.2,1), background 0.2s, border-color 0.2s;
}
.faq-item[open] .faq-q::after {
  transform: rotate(45deg);
  background: var(--accent); color: white; border-color: var(--accent);
}
.faq-a {
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height 0.4s cubic-bezier(.4,0,.2,1), opacity 0.3s ease;
  font-size: 0.88rem; color: var(--muted); line-height: 1.8; padding-right: 2.5rem;
}

/* ── BOTÓN FLOTANTE MÓVIL ── */
.float-wa {
  display: none; position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 998;
  background: #25D366; color: white;
  padding: 0.75rem 1.3rem; border-radius: 50px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 0.85rem;
  text-decoration: none; align-items: center; gap: 0.4rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}
.float-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
@media (max-width: 768px) {
  .float-wa { display: flex; }
  #como-funciona { padding: 4rem 1.5rem; text-align: left; }
  .steps-grid {
    grid-template-columns: 1fr;
    border-radius: 12px;
  }
  .step-sep { display: none; }
  .step-card {
    padding: 2rem 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    opacity: 1; transform: none;
  }
  .step-card:last-child { border-bottom: none; }
  .step-card:nth-child(1) { transition-delay: 0s; }
  .step-card:nth-child(3) { transition-delay: 0.1s; }
  .step-card:nth-child(5) { transition-delay: 0.2s; }
  .step-card:nth-child(7) { transition-delay: 0.3s; }
  #como-funciona::after { display: none; }
  #faq { padding: 4rem 1.5rem; }
  .cta-band { padding: 2.5rem 1.5rem; }
  .cta-band-inner { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════════════
   LP CARD MINI THUMBNAILS
════════════════════════════════════════ */
.lp-thumb {
  height: 88px;
  margin: -2rem -1.75rem 1.4rem;
  border-radius: 14px 14px 0 0;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.lp-thumb-bar {
  position: absolute; top: 9px; left: 11px;
  display: flex; gap: 4px;
}
.lp-thumb-bar span {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,0.22);
}
.lp-thumb-h {
  position: absolute; bottom: 28px; left: 12px; right: 28px;
  height: 10px; border-radius: 3px; background: rgba(255,255,255,0.55);
}
.lp-thumb-s {
  position: absolute; bottom: 13px; left: 12px;
  width: 40%; height: 6px; border-radius: 2px; background: rgba(255,255,255,0.2);
}
.lp-thumb-b {
  position: absolute; bottom: 10px; right: 12px;
  width: 56px; height: 20px; border-radius: 5px; background: rgba(200,70,58,0.65);
}
.lp-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(0,0,0,0.35));
}
.lp-thumb-barberia { background: linear-gradient(140deg, #1e0d0d 0%, #3d1414 100%); }
.lp-thumb-restaurante { background: linear-gradient(140deg, #1a1006 0%, #2e1c08 100%); }
.lp-thumb-carwash { background: linear-gradient(140deg, #061218 0%, #0d2236 100%); }
.lp-thumb-eventos { background: linear-gradient(140deg, #110d1a 0%, #1e0f30 100%); }
.lp-thumb-estetica { background: linear-gradient(140deg, #180d14 0%, #2a1220 100%); }
.lp-thumb-negocio { background: linear-gradient(140deg, #0d0d0d 0%, #1a0a0a 100%); }
.lp-thumb-landing { background: linear-gradient(140deg, #0a0d1a 0%, #111e3a 100%); }
.lp-thumb-menu    { background: linear-gradient(140deg, #1a0f06 0%, #301a08 100%); }
.lp-thumb-appweb  { background: linear-gradient(140deg, #061a12 0%, #0a2e1e 100%); }
.lp-card.lp-featured .lp-thumb { border-radius: 12px 12px 0 0; }

/* Featured card dark treatment — hardcoded para no depender del tema */
.lp-card.lp-featured {
  background: #0d0d0d;
  border: 2px solid #c8463a;
  box-shadow: 0 0 0 1px rgba(200,70,58,0.3), 0 24px 60px rgba(0,0,0,0.28);
}
.lp-card.lp-featured .lp-type { color: #e8604d; }
.lp-card.lp-featured .lp-name { color: #f5f2eb; }
.lp-card.lp-featured .lp-desc { color: rgba(245,242,235,0.5); }
.lp-card.lp-featured .lp-price-box {
  background: rgba(245,242,235,0.06);
  border: 1px solid rgba(245,242,235,0.1);
}
.lp-card.lp-featured .lp-price { color: #f5f2eb; }
.lp-card.lp-featured .lp-price-anual { color: #e8604d; }
.lp-card.lp-featured .lp-price-label { color: rgba(245,242,235,0.4); }
.lp-card.lp-featured .lp-price-period { color: rgba(245,242,235,0.4); }
.lp-card.lp-featured .lp-price-savings { color: #ff8573; }
.lp-card.lp-featured .lp-price-divider { background: rgba(245,242,235,0.1); }
.lp-card.lp-featured .lp-features li { color: rgba(245,242,235,0.7); }
.lp-card.lp-featured .lp-chk { color: #e8604d; }
.lp-card.lp-featured .lp-cta { background: #c8463a; color: #fff; }
.lp-card.lp-featured .lp-cta:hover { background: #b33d33; }
/* Forzar estilos dark en ambos modos */
html[data-theme="dark"] .lp-card.lp-featured { background: #0d0d0d; }
html[data-theme="dark"] .lp-card.lp-featured .lp-cta { background: #c8463a; color: #fff; }
.lp-card.lp-featured .lp-icon-wrap {
  background: rgba(200,70,58,0.18);
  border-color: rgba(200,70,58,0.45);
}
html[data-theme="dark"] .lp-card.lp-featured .lp-icon-wrap {
  background: rgba(200,70,58,0.18);
  border-color: rgba(200,70,58,0.45);
}

/* ════════════════════════════════════════
   LP PERIOD TOGGLE (MENSUAL / ANUAL)
════════════════════════════════════════ */
.lp-toggle-wrap {
  display: flex; align-items: center; gap: 1.2rem;
  margin-top: 2rem; margin-bottom: 0;
  flex-wrap: wrap;
}
.lp-toggle-tabs {
  display: flex; background: var(--cream); border-radius: 10px; padding: 3px;
  border: 1px solid var(--border);
}
.lp-toggle-btn {
  padding: 0.45rem 1.2rem; border-radius: 8px; border: none;
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.82rem; font-weight: 600;
  cursor: pointer; background: transparent; color: var(--muted);
  transition: background 0.2s, color 0.2s; display: flex; align-items: center; gap: 0.5rem;
}
.lp-toggle-btn.lp-toggle-active {
  background: var(--ink); color: var(--paper);
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}
.lp-toggle-badge {
  background: #22c55e; color: #fff;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.04em;
  padding: 0.1rem 0.38rem; border-radius: 4px; text-transform: uppercase;
}
.lp-toggle-hint {
  font-size: 0.78rem; color: var(--muted); margin: 0;
}
html[data-theme="dark"] .lp-toggle-btn.lp-toggle-active {
  background: var(--accent2); color: #fff;
}

/* Toggle visibility: default = anual */
#lpGrid.show-anual .lp-price-col:first-child,
#lpGrid.show-anual .lp-price-divider { display: none; }
#lpGrid.show-anual .lp-price-col:last-child { padding-left: 0; }
#lpGrid.show-anual .lp-price-anual { font-size: 1.9rem; }

#lpGrid.show-mensual .lp-price-col:last-child,
#lpGrid.show-mensual .lp-price-divider { display: none; }
#lpGrid.show-mensual .lp-price { font-size: 1.9rem; }

/* ════════════════════════════════════════
   BEFORE / AFTER DEMO
════════════════════════════════════════ */
#demo-live {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.ba-container {
  position: relative;
  max-width: 920px;
  margin: 2.5rem auto 0;
  height: 490px;
  border-radius: 16px;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  box-shadow: 0 40px 100px rgba(0,0,0,0.25), 0 0 0 1px var(--border);
}
.ba-panel {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
}
.ba-panel-before {
  -webkit-clip-path: inset(0 50% 0 0);
  clip-path: inset(0 50% 0 0);
  z-index: 2;
}
.ba-browser {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
}
.ba-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 0 12px; height: 34px; flex-shrink: 0;
  background: #2b2b2b;
}
.ba-bar-before { background: #e8e8e8; }
.ba-dot { width: 8px; height: 8px; border-radius: 50%; }
.ba-r { background: #ff5f57; }
.ba-y { background: #febc2e; }
.ba-g { background: #28c840; }
.ba-url-pill {
  flex: 1; background: rgba(255,255,255,0.1); border-radius: 5px;
  font-size: 0.68rem; color: rgba(255,255,255,0.5);
  padding: 0.18rem 0.7rem; font-family: monospace;
  max-width: 280px; margin: 0 auto; text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.ba-url-before { background: rgba(0,0,0,0.08); color: #555; }
.ba-body { flex: 1; overflow: hidden; }

/* ─ After (modern) site ─ */
.ba-body-after {
  background: #0d0d0d;
  padding: 0; display: flex; flex-direction: column; gap: 0;
}
.ba-after-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.5rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.ba-after-brand {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.92rem; font-weight: 800;
  color: #f5f2eb;
}
.ba-after-brand em { color: #c8463a; font-style: normal; }
.ba-after-links {
  display: flex; gap: 1rem;
  font-size: 0.66rem; font-weight: 500; color: rgba(255,255,255,0.45);
}
.ba-after-nav-cta {
  background: #c8463a; color: #fff;
  padding: 0.22rem 0.65rem; border-radius: 4px;
  font-size: 0.62rem; font-weight: 700;
  font-family: 'Plus Jakarta Sans', sans-serif; white-space: nowrap;
}
.ba-after-hero {
  padding: 0.9rem 1rem 0.7rem;
  background: linear-gradient(135deg, #0d0d0d 0%, #1a0808 100%);
}
.ba-after-eyebrow {
  font-size: 0.58rem; color: #c8463a; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 0.4rem;
}
.ba-after-h1 {
  font-family: 'Barlow Condensed', sans-serif; font-weight: 900;
  font-size: clamp(1.2rem, 3vw, 1.8rem); color: #f5f2eb; line-height: 1.05;
  margin-bottom: 0.55rem;
}
.ba-after-h1 em { color: #c8463a; font-style: normal; }
.ba-after-btns { display: flex; gap: 0.6rem; align-items: center; }
.ba-btn-p {
  background: #c8463a; color: #fff;
  padding: 0.35rem 0.8rem; border-radius: 6px;
  font-size: 0.66rem; font-weight: 700; font-family: 'Plus Jakarta Sans', sans-serif;
}
.ba-btn-s {
  color: rgba(245,242,235,0.55); font-size: 0.64rem; font-weight: 500;
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ba-after-stats {
  display: flex; align-items: center; gap: 0.9rem;
  margin-top: 0.6rem; padding-top: 0.6rem;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.ba-stat strong {
  display: block; font-size: 0.78rem; font-weight: 800;
  color: #f5f2eb; font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.02em;
}
.ba-stat span {
  font-size: 0.5rem; color: rgba(245,242,235,0.35);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ba-stat-sep { width: 1px; height: 20px; background: rgba(255,255,255,0.1); flex-shrink: 0; }
.ba-after-sec-label {
  padding: 0.3rem 1rem 0; background: #111;
  font-size: 0.56rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.1em; color: rgba(245,242,235,0.3);
  font-family: 'Plus Jakarta Sans', sans-serif;
}
.ba-after-services {
  display: flex; gap: 0.5rem; padding: 0.5rem 1rem;
  background: #111;
}
.ba-svc {
  flex: 1; background: #1a1a1a; border-radius: 8px; overflow: hidden;
  border: 1px solid rgba(255,255,255,0.07);
}
.ba-svc-img { height: 46px; position: relative; }
.bsi-1 { background: linear-gradient(135deg, #3d1a14, #5c2820); }
.bsi-2 { background: linear-gradient(135deg, #141c3d, #1e2a5c); }
.bsi-3 { background: linear-gradient(135deg, #1a3d14, #235520); }
.ba-svc-badge {
  position: absolute; top: 4px; right: 4px;
  background: #c8463a; color: #fff; font-size: 0.45rem; font-weight: 700;
  padding: 1px 4px; border-radius: 3px; font-family: 'Plus Jakarta Sans', sans-serif;
  text-transform: uppercase; letter-spacing: 0.05em;
}
.ba-svc-nm { font-size: 0.58rem; font-weight: 700; color: #f5f2eb; padding: 0.28rem 0.5rem 0; font-family: 'Plus Jakarta Sans', sans-serif; }
.ba-svc-pr { font-size: 0.6rem; color: #c8463a; font-weight: 700; padding: 0 0.5rem 0.35rem; font-family: 'Barlow Condensed', sans-serif; letter-spacing: 0.02em; }
.ba-after-gallery {
  display: flex; gap: 3px; padding: 0.4rem 1rem;
  background: #0f0f0f; border-top: 1px solid rgba(255,255,255,0.05);
}
.ba-gal-item { flex: 1; height: 42px; border-radius: 5px; }
.bgi-1 { background: linear-gradient(135deg, #3d1208, #6b2818); }
.bgi-2 { background: linear-gradient(135deg, #080d3d, #18256b); }
.bgi-3 { background: linear-gradient(135deg, #263d08, #446b18); }
.bgi-4 { background: linear-gradient(135deg, #3d2008, #6b3a18); }
.bgi-5 { background: linear-gradient(135deg, #083d2d, #186b50); }
.bgi-6 { background: linear-gradient(135deg, #2d083d, #50186b); }
.ba-after-trust {
  display: flex; gap: 1rem; padding: 0.45rem 1rem;
  background: #0a0a0a; border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 0.58rem; color: rgba(245,242,235,0.38);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ─ Before (outdated) site ─ */
.ba-body-before {
  background: #f0f0f0;
  font-family: 'Times New Roman', Times, serif;
  display: flex; flex-direction: column;
}
.bsb-header {
  background: #003087; padding: 0.5rem 0.8rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.bsb-logo {
  font-family: 'Times New Roman', serif; font-size: 0.95rem; font-weight: bold;
  color: #fff;
}
.bsb-nav { font-size: 0.65rem; }
.bsb-nav a { color: #afc8ff; text-decoration: underline; cursor: pointer; margin: 0 2px; }
.bsb-marquee {
  background: #00308a; color: #ffe600;
  font-family: Arial, sans-serif; font-size: 0.56rem; font-weight: bold;
  padding: 0.18rem 0.6rem; white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis; flex-shrink: 0;
}
.bsb-hero {
  background: #fff; padding: 0.6rem 1rem; text-align: center;
  border-bottom: 2px solid #ccc; flex-shrink: 0;
}
.bsb-construction {
  background: #ffff00; color: #cc0000;
  border: 2px dashed #cc0000; font-family: Arial, sans-serif;
  font-size: 0.6rem; font-weight: bold; text-align: center;
  padding: 0.18rem; margin-bottom: 0.35rem; letter-spacing: 0.04em;
}
.bsb-h1 {
  font-family: 'Times New Roman', serif; font-size: clamp(0.75rem, 2vw, 0.95rem);
  font-weight: bold; color: #003087; margin: 0 0 0.4rem; letter-spacing: 0.01em;
  text-transform: uppercase;
}
.bsb-p {
  font-size: 0.66rem; color: #444; line-height: 1.45; margin: 0 0 0.5rem;
  font-family: 'Times New Roman', serif;
}
.bsb-btn {
  display: inline-block; background: #003087; color: #fff;
  padding: 0.3rem 0.7rem; font-size: 0.62rem; font-weight: bold;
  font-family: Arial, sans-serif; text-transform: uppercase; letter-spacing: 0.03em;
  border: 2px outset #5580c0; cursor: pointer; margin-top: 0.25rem;
}
.bsb-table {
  width: 90%; margin: 0.5rem auto; border-collapse: collapse;
  font-family: Arial, sans-serif; font-size: 0.64rem; flex-shrink: 0;
}
.bsb-table td { padding: 0.2rem 0.5rem; border: 1px solid #999; }
.bsb-th td { background: #c8c8c8; font-weight: bold; text-align: center; }
.bsb-alt td { background: #e8e8e8; }
.bsb-photos-hd {
  text-align: center; background: #003087; color: #fff;
  font-family: Arial, sans-serif; font-size: 0.58rem; font-weight: bold;
  padding: 0.2rem; letter-spacing: 0.05em; flex-shrink: 0;
}
.bsb-photos {
  display: flex; gap: 4px; padding: 0.3rem 0.7rem;
  background: #f0f0f0; flex-shrink: 0;
}
.bsb-photo {
  flex: 1; background: #ddd; border: 1px solid #aaa;
  text-align: center; color: #888; font-size: 0.5rem;
  padding: 0.28rem 0.2rem; font-family: Arial, sans-serif; line-height: 1.4;
}
.bsb-counter {
  text-align: center; font-family: Arial, sans-serif; font-size: 0.58rem;
  color: #555; padding: 0.25rem; border-top: 1px dashed #bbb;
  background: #ebebeb; flex-shrink: 0;
}
.bsb-digits {
  font-family: 'Courier New', monospace; font-weight: bold;
  background: #111; color: #00ff00; padding: 0 3px;
  letter-spacing: 0.06em; font-size: 0.62rem;
}
.bsb-contact {
  text-align: center; font-family: Arial, sans-serif; font-size: 0.6rem;
  color: #555; padding: 0.4rem 0.8rem; border-top: 1px solid #ccc;
  background: #e0e0e0; flex-shrink: 0;
}
.bsb-powered {
  text-align: center; font-family: Arial, sans-serif; font-size: 0.5rem;
  color: #999; padding: 0.22rem; background: #d4d4d4;
  border-top: 1px solid #bbb; flex-shrink: 0;
}

/* ─ Handle ─ */
.ba-handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 48px; z-index: 10;
  display: flex; flex-direction: column; align-items: center;
  pointer-events: none;
}
.ba-handle-line {
  flex: 1; width: 2px; background: #fff; opacity: 0.9;
  box-shadow: 0 0 8px rgba(0,0,0,0.5);
}
.ba-handle-pill {
  width: 40px; height: 40px; border-radius: 50%;
  background: #fff; color: #0d0d0d;
  display: flex; align-items: center; justify-content: center; gap: 1px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.35);
  flex-shrink: 0; pointer-events: all;
  cursor: col-resize;
}

/* ─ Labels ─ */
.ba-label {
  position: absolute; bottom: 12px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.3rem 0.8rem; border-radius: 30px;
  pointer-events: none; z-index: 3;
}
.ba-label-after {
  right: 14px; background: rgba(200,70,58,0.9); color: #fff;
}
.ba-label-before {
  left: 14px; background: rgba(0,0,0,0.55); color: rgba(255,255,255,0.85);
  backdrop-filter: blur(4px);
}

/* ─ Footer CTA row ─ */
.ba-footer {
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  margin-top: 2rem; flex-wrap: wrap;
}
.ba-footer-sec {
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.85rem; font-weight: 600;
  color: var(--muted); text-decoration: none; transition: color 0.2s;
}
.ba-footer-sec:hover { color: var(--ink); }
.ba-footer-prim {
  background: var(--ink); color: var(--paper);
  padding: 0.7rem 1.6rem; border-radius: var(--radius);
  font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.85rem; font-weight: 700;
  text-decoration: none; transition: background 0.2s;
}
.ba-footer-prim:hover { background: var(--accent); }
html[data-theme="dark"] .ba-footer-prim { background: var(--accent2); }
html[data-theme="dark"] .ba-footer-prim:hover { background: var(--accent); }

@media (max-width: 768px) {
  .ba-container { height: 360px; }
  .ba-after-links { display: none; }
  .ba-after-nav-cta { display: none; }
  .ba-after-services { gap: 0.4rem; padding: 0.4rem 0.7rem; }
  .ba-after-trust { gap: 0.6rem; font-size: 0.52rem; }
  .ba-after-gallery { padding: 0.3rem 0.7rem; }
  .ba-gal-item { height: 34px; }
  .ba-after-stats { gap: 0.6rem; }
  .lp-toggle-wrap { flex-direction: column; align-items: flex-start; }
  .lp-thumb { height: 72px; margin: -2rem -1.75rem 1.1rem; }
}