*,
::after,
::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
:root {
  --primary: #ff6b35;
  --primary-dark: #e55a27;
  --dark: #1a1a2e;
  --text: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --bg: #f8fafc;
  --success: #16a34a;
  --font: 'Inter', system-ui, -apple-system, sans-serif;
}
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}
.header {
  background: var(--dark);
  padding: 1rem 1.5rem;
  text-align: center;
}
.header__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}
.header__logo img {
  height: 32px;
  width: auto;
}
.hero {
  background: linear-gradient(135deg, #1a1a2e 0, #0f3460 60%, #16213e 100%);
  padding: 3.5rem 1.5rem 3rem;
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: 100px;
  padding: 0.35rem 1rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffb89a;
  margin-bottom: 1.25rem;
}
.hero__title {
  font-size: clamp(1.8rem, 4.5vw, 2.9rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.hero__title span {
  color: var(--primary);
}
.hero__subtitle {
  font-size: 1.05rem;
  opacity: 0.85;
  max-width: 560px;
  margin: 0 auto 2rem;
}
.hero__bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
}
.hero__bullet {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 0.4rem 0.85rem;
  font-size: 0.85rem;
  font-weight: 500;
}
.trust-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 1.5rem;
}
.trust-bar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 2rem;
}
.trust-seal {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
}
.main {
  max-width: 1080px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 800px) {
  .main {
    grid-template-columns: 1fr;
    padding: 2rem 1rem;
    gap: 2rem;
  }
}
.benefits__title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.benefit-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.benefit-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: #fff7f4;
  border: 1.5px solid #ffd4c2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}
.benefit-content h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.benefit-content p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.city-highlight {
  margin-top: 2rem;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}
.city-highlight__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.city-highlight__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.social-proof {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary);
  border-radius: 8px;
}
.social-proof__number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.social-proof__label {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.4;
}
.form-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  position: sticky;
  top: 1.5rem;
}
.form-card__title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.35rem;
}
.form-card__subtitle {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.35rem;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 0.65rem 0.9rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  transition: border-color 0.15s;
  outline: 0;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
}
.form-group input::placeholder {
  color: #9ca3af;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.btn-submit {
  width: 100%;
  padding: 0.9rem 1.5rem;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
  margin-top: 0.5rem;
}
.btn-submit:hover {
  background: var(--primary-dark);
}
.btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.form-note {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
}
.form-error {
  display: none;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.88rem;
  color: #b91c1c;
  margin-bottom: 1rem;
}
.success-state {
  display: none;
  text-align: center;
  padding: 1rem 0;
}
.success-state__icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.success-state__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--success);
  margin-bottom: 0.5rem;
}
.success-state__text {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.success-state__contact {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 1rem;
  font-size: 0.88rem;
  color: #166534;
}
.success-state__contact strong {
  display: block;
  margin-bottom: 0.25rem;
}
.success-state__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.75rem;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 0.6rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}
.other-cities {
  background: #f8fafc;
  padding: 3rem 1.5rem;
  text-align: center;
}
.other-cities__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.5rem;
}
.other-cities__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 900px;
  margin: 0 auto;
}
.other-cities__link {
  display: inline-block;
  padding: 0.4rem 0.9rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s;
}
.other-cities__link:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: transform 0.2s;
}
.whatsapp-float:hover {
  transform: scale(1.08);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: #fff;
}
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: var(--dark);
  padding: 0.75rem 1rem;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.2);
}
.mobile-sticky-cta__btn {
  display: block;
  width: 100%;
  padding: 0.8rem;
  background: var(--primary);
  color: #fff;
  text-align: center;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1rem;
  font-family: var(--font);
}
@media (max-width: 800px) {
  .mobile-sticky-cta {
    display: block;
  }
  .whatsapp-float {
    bottom: 5.5rem;
  }
  body {
    padding-bottom: 4.5rem;
  }
}
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
  padding: 1.5rem;
  font-size: 0.8rem;
  margin-top: 2rem;
}
.footer a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
}
.footer a:hover {
  color: var(--primary);
}
.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 1rem;
}
.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
  min-width: 420px;
}
.table-wrap th {
  padding: 0.5rem 0.75rem;
  border-bottom: 2px solid #e2e8f0;
  background: #f1f5f9;
  text-align: left;
  white-space: nowrap;
}
.table-wrap td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}
.table-wrap tr:last-child td {
  border-bottom: none;
}
.text-green {
  color: #16a34a;
  font-weight: 600;
}
.text-red {
  color: #b91c1c;
  font-weight: 600;
}
.ceo-quote {
  margin-top: 1.5rem;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--dark);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.6;
}
.ceo-quote__author {
  font-style: normal;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  display: block;
}
.savings-example {
  margin-top: 1.5rem;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}
.savings-example__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #166534;
  margin-bottom: 0.75rem;
}
.savings-example__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 480px) {
  .savings-example__grid {
    grid-template-columns: 1fr;
  }
}
.savings-example__item {
  background: #fff;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}
.savings-example__label {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.savings-example__value {
  font-size: 1.5rem;
  font-weight: 800;
  color: #16a34a;
}
.savings-example__detail {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.15rem;
}
.commercial-model {
  margin-top: 1.5rem;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
}
.commercial-model__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 0.5rem;
}
.commercial-model__text {
  font-size: 0.88rem;
  color: #1e3a5f;
  line-height: 1.6;
}
.contact-phones {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.contact-phones a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: #166534;
  text-decoration: none;
  font-weight: 600;
}
.how-it-works {
  background: #fff;
  padding: 3rem 1.5rem;
  border-bottom: 1px solid var(--border);
}
.how-it-works__inner {
  max-width: 1080px;
  margin: 0 auto;
}
.how-it-works__title {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.how-it-works__subtitle {
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 640px) {
  .compare {
    grid-template-columns: 1fr;
  }
}
.compare__card {
  border-radius: 12px;
  padding: 1.5rem;
  position: relative;
}
.compare__card--old {
  background: #fef2f2;
  border: 1.5px solid #fecaca;
}
.compare__card--new {
  background: #f0fdf4;
  border: 1.5px solid #bbf7d0;
}
.compare__badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.compare__card--old .compare__badge {
  background: #fecaca;
  color: #991b1b;
}
.compare__card--new .compare__badge {
  background: #bbf7d0;
  color: #166534;
}
.compare__card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.compare__card--old .compare__card-title {
  color: #991b1b;
}
.compare__card--new .compare__card-title {
  color: #166534;
}
.compare__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.compare__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 0.65rem;
  color: var(--text);
}
.compare__list li::before {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.4;
}
.compare__card--old .compare__list li::before {
  content: '\2718';
  color: #dc2626;
}
.compare__card--new .compare__list li::before {
  content: '\2714';
  color: #16a34a;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 800px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .steps {
    grid-template-columns: 1fr;
  }
}
.step {
  text-align: center;
  position: relative;
}
.step__number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
}
.step__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.35rem;
}
.step__text {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.step__arrow {
  display: none;
  position: absolute;
  top: 24px;
  right: -0.75rem;
  color: var(--border);
  font-size: 1.5rem;
}
@media (min-width: 801px) {
  .step:not(:last-child) .step__arrow {
    display: block;
  }
}
.promo-bar {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background: linear-gradient(90deg, #1a1a2e 0, #0f3460 100%);
  padding: 0.6rem 1rem;
  text-align: center;
  flex-wrap: wrap;
}
.promo-bar__text {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 400;
}
.promo-bar__text strong {
  color: #ff6b35;
  font-weight: 700;
}
.promo-bar__cta {
  display: inline-block;
  background: #ff6b35;
  color: #fff;
  padding: 0.35rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
  transition: background 0.15s;
}
.promo-bar__cta:hover {
  background: #e55a27;
}
.exit-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: background 0.3s;
  pointer-events: none;
}
.exit-overlay--visible {
  background: rgba(0, 0, 0, 0.6);
  pointer-events: auto;
}
.exit-modal {
  background: #fff;
  border-radius: 16px;
  padding: 2.5rem 2rem;
  max-width: 440px;
  width: 100%;
  text-align: center;
  position: relative;
  transform: translateY(20px) scale(0.95);
  opacity: 0;
  transition: all 0.3s ease;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.exit-overlay--visible .exit-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.exit-modal__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: 0 0;
  border: none;
  font-size: 1.5rem;
  color: #64748b;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.15s;
}
.exit-modal__close:hover {
  background: #f1f5f9;
  color: #1e293b;
}
.exit-modal__icon {
  font-size: 3rem;
  margin-bottom: 0.75rem;
}
.exit-modal__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: #1a1a2e;
  line-height: 1.3;
  margin-bottom: 0.75rem;
}
.exit-modal__text {
  font-size: 0.92rem;
  color: #64748b;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.exit-modal__cta {
  display: inline-block;
  background: #ff6b35;
  color: #fff;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 700;
  transition: background 0.15s;
}
.exit-modal__cta:hover {
  background: #e55a27;
}
.exit-modal__note {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 0.75rem;
}
