:root {
  --bg: #ffffff;
  --text: #111827;
  --muted: #5b6472;
  --border: #e5e7eb;
  --soft: #f8fafc;
  --primary: #0f62fe;
  --primary-dark: #084cce;
  --accent: #16a34a;
  --shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }
p, li { color: var(--muted); }
h1, h2, h3 { line-height: 1.15; margin-top: 0; color: var(--text); }
h1 { font-size: clamp(2.2rem, 4vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.7rem); }
h3 { font-size: 1.25rem; }
.container { width: min(100% - 2rem, var(--container)); margin: 0 auto; }
.narrow { width: min(100% - 2rem, 800px); margin: 0 auto; text-align: center; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  background: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}
.logo {
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
}
.site-nav ul {
  display: flex;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav a {
  font-weight: 600;
  color: var(--muted);
}
.site-nav a:hover,
.site-nav a:focus { color: var(--text); }
.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  font-size: 1.5rem;
  border-radius: 10px;
  padding: 0.35rem 0.7rem;
}
.hero,
.page-hero {
  padding: 4.5rem 0 3.5rem;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
}
.hero-grid,
.two-col,
.contact-grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}
.hero-grid { grid-template-columns: 1.15fr 0.85fr; }
.two-col { grid-template-columns: 1fr 1fr; }
.contact-grid { grid-template-columns: 0.9fr 1.1fr; }
.eyebrow {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.9rem;
  font-size: 0.85rem;
}
.hero-sub {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
.hero-actions,
.cta-actions,
.center-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  align-items: center;
}
.center-actions { justify-content: center; }
.trust-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 1.3rem 0;
}
.trust-row span {
  background: #eef6ff;
  color: var(--primary-dark);
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
}
.hero-points,
.check-list {
  padding: 0;
  list-style: none;
  margin: 1rem 0 0;
}
.hero-points li,
.check-list li {
  position: relative;
  padding-left: 1.7rem;
  margin-bottom: 0.8rem;
}
.hero-points li::before,
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 800;
}
.form-card,
.card,
.cta-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.form-card,
.contact-card,
.card { padding: 1.5rem; }
.section { padding: 4rem 0; }
.section-light { background: var(--soft); }
.section-heading {
  max-width: 700px;
  margin-bottom: 2rem;
}
.steps-grid,
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.features-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.step-card,
.feature-card { height: 100%; }
.step-number {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  background: #eef6ff;
  color: var(--primary);
  font-weight: 800;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.lead-form { margin-top: 1rem; }
.form-group { margin-bottom: 1rem; }
label {
  display: block;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
input,
textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--text);
  background: #fff;
}
input:focus,
textarea:focus {
  outline: 2px solid rgba(15, 98, 254, 0.18);
  border-color: var(--primary);
}
textarea { resize: vertical; min-height: 120px; }
small { color: var(--muted); display: block; margin-top: 0.45rem; }
.required { color: #dc2626; }
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.3rem;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: 0.2s ease;
}
.btn:hover,
.btn:focus { transform: translateY(-1px); }
.btn-primary {
  background: var(--primary);
  color: #fff;
}
.btn-primary:hover,
.btn-primary:focus { background: var(--primary-dark); }
.btn-secondary {
  background: #fff;
  color: var(--text);
  border-color: var(--border);
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-block { width: 100%; }
.form-note {
  font-size: 0.95rem;
  margin-top: 1rem;
}
.form-note a { color: var(--primary); }
.area-card { align-self: center; }
.cta-section { padding-top: 0; }
.cta-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem;
}
.phone-display {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: var(--text);
}
.map-placeholder {
  min-height: 260px;
  border: 2px dashed #cbd5e1;
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  background: #f8fafc;
  color: #64748b;
  font-weight: 700;
  text-align: center;
  padding: 1rem;
}
.legal-content {
  max-width: 860px;
}
.legal-content h2 { margin-top: 2rem; font-size: 1.4rem; }
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2rem 0 5rem;
  background: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1.5rem;
  align-items: start;
}
.footer-brand {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text);
}
.footer-links {
  display: grid;
  gap: 0.5rem;
}
.floating-call,
.floating-whatsapp {
  position: fixed;
  bottom: 1rem;
  z-index: 60;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  font-weight: 800;
}
.floating-call {
  right: 1rem;
  background: var(--primary);
  color: #fff;
  padding: 0.95rem 1.25rem;
}
.floating-whatsapp {
  right: 9.6rem;
  background: #25d366;
  color: #fff;
  padding: 0.95rem 1.1rem;
}
.alert {
  width: min(100% - 2rem, 800px);
  margin: 1.5rem auto 0;
  padding: 1rem 1.2rem;
  border-radius: 14px;
  font-weight: 700;
}
.alert-success {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}
.alert-error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

@media (max-width: 960px) {
  .hero-grid,
  .two-col,
  .contact-grid,
  .steps-grid,
  .features-grid,
  .footer-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }
  .cta-box { align-items: flex-start; }
}

@media (max-width: 760px) {
  .nav-toggle { display: inline-block; }
  .site-nav {
    position: absolute;
    top: 76px;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    display: none;
  }
  .site-nav.open { display: block; }
  .site-nav ul {
    flex-direction: column;
    padding: 1rem;
  }
  .hero,
  .page-hero,
  .section { padding: 3rem 0; }
  .floating-whatsapp {
    right: 1rem;
    bottom: 4.8rem;
  }
  .site-footer { padding-bottom: 7rem; }
}
