:root {
  --navy: #102a43;
  --navy-soft: #173b5c;
  --orange: #f58220;
  --orange-dark: #d96a0b;
  --white: #ffffff;
  --bg: #f6f8fb;
  --line: #e2e8f0;
  --text: #243447;
  --muted: #66788a;
  --whatsapp: #128c7e;
  --radius: 8px;
  --shadow: 0 18px 48px rgba(16, 42, 67, 0.10);
  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
h1, h2, h3, p { margin-top: 0; }

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 10000;
  background: var(--navy);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 999px;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  min-width: 220px;
}
.brand-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 800;
}
.brand strong,
.brand small { display: block; line-height: 1.2; }
.brand small { margin-top: 2px; color: var(--muted); font-size: 0.78rem; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  color: #30445a;
  font-size: 0.93rem;
  font-weight: 650;
}
.nav a:hover { background: var(--bg); color: var(--navy); }

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  border-radius: 999px;
  background: var(--navy);
}

.hero {
  padding: 86px 0 64px;
  background:
    linear-gradient(120deg, rgba(16, 42, 67, 0.94), rgba(23, 59, 92, 0.92)),
    radial-gradient(circle at 75% 10%, rgba(245, 130, 32, 0.24), transparent 34%);
  color: var(--white);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 46px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
  font-size: 0.92rem;
}
h1 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0;
}
.hero-subtitle {
  max-width: 720px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.12rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-whatsapp { background: var(--white); color: var(--navy); }
.hero-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.78);
}
.hero-list li::before { content: "✓"; color: var(--orange); font-weight: 900; margin-right: 8px; }

.hero-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  box-shadow: var(--shadow);
}
.card-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--orange-dark);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-card h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: 0;
}
.hero-card p { color: var(--muted); }
.mini-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}
.mini-contact a {
  display: grid;
  place-items: center;
  min-height: 48px;
  border-radius: var(--radius);
  background: var(--bg);
  color: var(--navy);
  font-weight: 800;
  text-align: center;
}
.mini-contact a:last-child { background: rgba(18, 140, 126, 0.12); color: #0b6d61; }

.quick-info {
  padding: 20px 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.quick-grid div {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.quick-grid strong,
.quick-grid span { display: block; }
.quick-grid strong { color: var(--navy); }
.quick-grid span { color: var(--muted); font-size: 0.92rem; }

.section { padding: 76px 0; }
.soft { background: var(--bg); }
.section-heading {
  max-width: 700px;
  margin: 0 auto 34px;
  text-align: center;
}
.section-heading.left {
  margin-left: 0;
  text-align: left;
}
.section-heading.light h2,
.section-heading.light p { color: var(--white); }
.section-heading span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.section-heading.light span { color: #ffc08a; }
.section-heading h2 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 2.5rem;
  line-height: 1.12;
  letter-spacing: 0;
}
.section-heading p { color: var(--muted); font-size: 1.02rem; }

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.service-card {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.service-card:hover { border-color: rgba(245, 130, 32, 0.45); box-shadow: var(--shadow); }
.service-card h3 { margin-bottom: 8px; color: var(--navy); font-size: 1.15rem; }
.service-card p { margin: 0; color: var(--muted); }

.two-col {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}
.benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.benefits div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--navy);
  font-weight: 750;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.step {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.step strong {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
}
.step h3 { margin: 16px 0 7px; color: var(--navy); font-size: 1rem; }
.step p { margin: 0; color: var(--muted); font-size: 0.94rem; }

.area-section {
  background: var(--navy);
  color: var(--white);
}
.area-grid { align-items: start; }
.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.area-tags span {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.88);
  font-weight: 700;
}
.map-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.map-card iframe {
  display: block;
  width: 100%;
  min-height: 360px;
  border: 0;
}
.map-card a {
  display: block;
  padding: 15px 18px;
  color: var(--navy);
  font-weight: 800;
}

.offer-section {
  background: var(--bg);
}
.offer-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}
.offer-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.offer-list div {
  min-height: 120px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.offer-list strong {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background: rgba(245, 130, 32, 0.12);
  color: var(--orange-dark);
}
.offer-list span {
  display: block;
  color: var(--navy);
  font-weight: 750;
  line-height: 1.45;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 42px;
  align-items: start;
}
.faq-list { display: grid; gap: 11px; }
details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}
summary {
  cursor: pointer;
  padding: 17px 20px;
  color: var(--navy);
  font-weight: 800;
  list-style: none;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; float: right; color: var(--orange); font-size: 1.15rem; }
details[open] summary::after { content: "–"; }
details p { margin: 0; padding: 0 20px 18px; color: var(--muted); }

.contact-section { background: var(--bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 34px;
  align-items: start;
}
.contact-list { display: grid; gap: 11px; }
.contact-list a {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}
.contact-list strong,
.contact-list span { display: block; }
.contact-list strong { color: var(--navy); }
.contact-list span { color: var(--muted); }
.contact-form {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 18px; color: var(--navy); }
.contact-form label {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--navy);
  font-weight: 750;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  outline: 0;
  color: var(--text);
  background: #fbfdff;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(245, 130, 32, 0.72);
  box-shadow: 0 0 0 4px rgba(245, 130, 32, 0.12);
}
.full { width: 100%; }
.contact-form p { margin: 12px 0 0; color: var(--muted); font-size: 0.86rem; }

.site-footer {
  padding: 54px 0 32px;
  background: #071b2f;
  color: rgba(255, 255, 255, 0.76);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.9fr 0.7fr;
  gap: 28px;
}
.footer-brand {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--white);
  font-weight: 900;
  font-size: 1.12rem;
}
.site-footer h3 { color: var(--white); margin-bottom: 10px; font-size: 1rem; }
.site-footer p { margin: 0 0 10px; }
.site-footer a { display: block; margin-bottom: 8px; color: rgba(255, 255, 255, 0.88); }
.site-footer a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

.floating-whatsapp,
.floating-call {
  position: fixed;
  right: 18px;
  z-index: 1001;
  display: grid;
  place-items: center;
  min-width: 92px;
  min-height: 46px;
  padding: 11px 15px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(16, 42, 67, 0.22);
}
.floating-whatsapp { bottom: 20px; background: var(--whatsapp); }
.floating-call { bottom: 76px; background: var(--orange); }
.mobile-sticky { display: none; }

.policy-page {
  padding: 72px 0;
  background: var(--bg);
}
.policy-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}
.policy-card h1 {
  color: var(--navy);
  font-size: 2.75rem;
  line-height: 1.08;
  letter-spacing: 0;
}
.policy-card h2 { color: var(--navy); margin-top: 28px; }
.policy-card p,
.policy-card li { color: var(--muted); }

@media (max-width: 1040px) {
  .header-call { display: none; }
  .hero-grid,
  .two-col,
  .offer-grid,
  .faq-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  body { padding-bottom: 72px; }
  .container { width: min(100% - 24px, var(--container)); }
  .nav-wrap { min-height: 66px; }
  .brand { min-width: 0; }
  .brand strong { font-size: 0.92rem; }
  .brand small { font-size: 0.72rem; }
  .brand-mark { width: 39px; height: 39px; }
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    left: 12px;
    right: 12px;
    top: 76px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: grid; }
  .nav a { padding: 12px 14px; }
  .hero { padding: 54px 0 44px; }
  h1 { font-size: 2.35rem; }
  .hero-subtitle { font-size: 1rem; }
  .hero-card h2,
  .section-heading h2 { font-size: 1.8rem; }
  .hero-actions,
  .mini-contact { display: grid; grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero-card { padding: 22px; border-radius: var(--radius); }
  .quick-grid,
  .service-grid,
  .steps,
  .offer-list,
  .benefits,
  .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
  .section-heading { margin-bottom: 26px; }
  .map-card iframe { min-height: 300px; }
  .footer-bottom { flex-direction: column; }
  .floating-whatsapp,
  .floating-call { display: none; }
  .mobile-sticky {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1002;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid var(--line);
    backdrop-filter: blur(14px);
  }
  .mobile-sticky a {
    display: grid;
    place-items: center;
    min-height: 48px;
    border-radius: 999px;
    background: var(--orange);
    color: var(--white);
    font-weight: 900;
  }
  .mobile-sticky a:last-child { background: var(--whatsapp); }
}
.section-kicker {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
