:root {
  --orange: #f97316;
  --orange-dark: #ea580c;
  --orange-soft: #fff7ed;
  --dark: #111827;
  --muted: #64748b;
  --light: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 24px 70px rgba(17, 24, 39, 0.14);
  --radius: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--dark);
  background: #fff;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section-padding { padding: 92px 0; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(229,231,235,0.7);
}
.navbar { display: flex; align-items: center; justify-content: space-between; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.1rem; }
.brand-logo { width: 44px; height: 44px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 24px; font-weight: 600; color: #334155; }
.nav-links a:hover { color: var(--orange-dark); }
.menu-toggle { display: none; background: none; border: 0; cursor: pointer; }
.menu-toggle span { display: block; width: 26px; height: 3px; margin: 5px 0; background: var(--dark); border-radius: 99px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 15px 24px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 14px 30px rgba(249,115,22,.32); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-secondary { border-color: var(--border); background: #fff; color: var(--dark); }
.btn-small { padding: 10px 16px; background: var(--orange); color: #fff !important; }
.btn-full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 15% 10%, #fed7aa 0, transparent 28%), linear-gradient(135deg, #fff7ed 0%, #ffffff 52%, #f8fafc 100%);
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto -120px -220px auto;
  width: 420px;
  height: 420px;
  background: rgba(249,115,22,.16);
  border-radius: 999px;
}
.hero-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 56px; align-items: center; position: relative; z-index: 1; }
.eyebrow, .section-label { color: var(--orange-dark); font-weight: 800; text-transform: uppercase; letter-spacing: .08em; font-size: .78rem; }
h1, h2, h3 { margin: 0 0 18px; line-height: 1.1; }
h1 { font-size: clamp(2.6rem, 7vw, 5rem); letter-spacing: -0.06em; }
h2 { font-size: clamp(2rem, 4vw, 3.1rem); letter-spacing: -0.04em; }
h3 { font-size: 1.35rem; }
p { margin: 0 0 18px; color: var(--muted); }
.hero-text { font-size: 1.2rem; max-width: 650px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0; }
.trust-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; max-width: 720px; }
.trust-row div, .hero-card, .service-card, .feature-panel, .cta-box, .map-card, .faq-wrap {
  background: rgba(255,255,255,.88);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
}
.trust-row div { padding: 18px; }
.trust-row strong { display: block; font-size: 1.4rem; }
.trust-row span { color: var(--muted); font-size: .9rem; }
.hero-card { padding: 34px; }
.card-badge { display: inline-block; margin-bottom: 18px; padding: 8px 12px; border-radius: 999px; background: var(--orange-soft); color: var(--orange-dark); font-weight: 800; font-size: .85rem; }
.check-list { padding: 0; margin: 24px 0; list-style: none; }
.check-list li { position: relative; padding-left: 28px; margin: 12px 0; font-weight: 600; }
.check-list li::before { content: '✓'; position: absolute; left: 0; color: var(--orange-dark); font-weight: 900; }

.split-grid { display: grid; grid-template-columns: .35fr .65fr; gap: 52px; }
.section-soft { background: #f8fafc; }
.section-heading { text-align: center; max-width: 720px; margin: 0 auto 42px; }
.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { padding: 30px; box-shadow: none; transition: transform .2s ease, box-shadow .2s ease; }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.icon { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 20px; border-radius: 18px; background: var(--orange-soft); font-size: 1.7rem; }
.feature-panel { display: grid; grid-template-columns: .9fr 1.1fr; gap: 36px; padding: 42px; background: linear-gradient(135deg, #fff 0%, #fff7ed 100%); }
.features-list { display: grid; gap: 16px; }
.features-list div { padding: 18px; background: #fff; border-radius: 18px; border: 1px solid var(--border); }
.features-list strong, .features-list span { display: block; }
.features-list span { color: var(--muted); margin-top: 4px; }
.section-dark { background: #111827; color: #fff; }
.section-dark p { color: #cbd5e1; }
.business-grid { display: grid; grid-template-columns: 1fr .75fr; gap: 34px; align-items: center; }
.cta-box { padding: 34px; background: #fff; color: var(--dark); }
.cta-box p { color: var(--muted); }
.location-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 36px; align-items: stretch; }
.info-list { margin: 28px 0; }
.info-list a { color: var(--orange-dark); font-weight: 700; }
.map-card { min-height: 420px; overflow: hidden; padding: 0; }
.map-card iframe { width: 100%; height: 100%; min-height: 420px; border: 0; }
.faq-wrap { text-align: center; max-width: 760px; padding: 42px; }
.footer { background: #0f172a; color: #fff; padding: 28px 0; }
.footer p { color: #cbd5e1; margin: 0; }
.footer a { color: #fdba74; font-weight: 800; }
.footer-content { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 22px;
  border-radius: 999px;
  background: #22c55e;
  color: #fff;
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(34,197,94,.35);
}
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 900px) {
  .menu-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav-links.active { display: flex; }
  .hero-grid, .split-grid, .feature-panel, .business-grid, .location-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: 1fr; }
  .section-padding { padding: 68px 0; }
  .footer-content { flex-direction: column; text-align: center; }
}

@media (max-width: 520px) {
  .container { width: min(100% - 28px, 1120px); }
  .hero-actions .btn, .btn-secondary, .btn-primary { width: 100%; }
  .hero-card, .feature-panel, .cta-box, .faq-wrap { padding: 26px; }
  .whatsapp-float { left: 14px; right: 14px; bottom: 14px; }
}
