:root {
  --navy: #081a2d;
  --navy-2: #0d2942;
  --blue: #0e5e9c;
  --orange: #f47b20;
  --orange-dark: #d95f0e;
  --green: #19a463;
  --ink: #112235;
  --muted: #617083;
  --line: #dfe6ec;
  --soft: #f3f6f8;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(8, 26, 45, .12);
  --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 105px 0; }
.skip-link { position: fixed; left: 16px; top: -80px; z-index: 9999; background: var(--white); padding: 10px 16px; border-radius: 8px; }
.skip-link:focus { top: 16px; }

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(8,26,45,.07);
  transition: .25s ease;
}
.site-header.scrolled { box-shadow: 0 8px 28px rgba(8,26,45,.09); }
.nav-wrap { height: 82px; display: flex; align-items: center; gap: 32px; }
.brand img { height: 52px; width: auto; }
.main-nav { display: flex; align-items: center; gap: 27px; margin-left: auto; }
.main-nav a { font-size: 14px; font-weight: 700; color: #34495e; transition: .2s; position: relative; }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -7px; height: 2px; background: var(--orange); transition: .25s; }
.main-nav a:hover { color: var(--orange); }
.main-nav a:hover::after { right: 0; }
.header-call { display: inline-flex; gap: 9px; align-items: center; background: var(--navy); color: white; padding: 11px 16px; border-radius: 12px; font-size: 13px; font-weight: 800; white-space: nowrap; }
.header-call svg { width: 17px; fill: var(--orange); }
.menu-toggle { display: none; border: 0; background: transparent; padding: 7px; margin-left: auto; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; transition: .25s; }

.hero {
  position: relative;
  padding: 150px 0 0;
  background:
    radial-gradient(circle at 72% 18%, rgba(14,94,156,.18), transparent 31%),
    linear-gradient(135deg, #f5f8fb 0%, #ffffff 48%, #edf3f7 100%);
  overflow: hidden;
}
.hero::before { content: ""; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(14,94,156,.08); border-radius: 50%; right: -180px; top: 70px; box-shadow: 0 0 0 70px rgba(14,94,156,.03), 0 0 0 140px rgba(14,94,156,.02); }
.hero-grid { min-height: 650px; display: grid; grid-template-columns: 1.03fr .97fr; align-items: center; gap: 50px; position: relative; z-index: 1; }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; color: var(--blue); display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.eyebrow span { width: 34px; height: 3px; border-radius: 5px; background: var(--orange); }
.eyebrow.dark { color: var(--blue); }
.eyebrow.light { color: #8bc7f3; }
.hero h1 { font-size: clamp(43px, 5vw, 68px); line-height: 1.06; letter-spacing: -.045em; margin: 0 0 24px; color: var(--navy); max-width: 720px; }
.hero h1 em { color: var(--orange); font-style: normal; }
.hero-copy > p { color: var(--muted); font-size: 18px; max-width: 630px; margin: 0 0 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.btn { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; border-radius: 13px; padding: 0 22px; font-weight: 800; border: 1px solid transparent; transition: transform .2s, box-shadow .2s, background .2s; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 25px rgba(8,26,45,.16); }
.btn svg { width: 19px; fill: currentColor; }
.btn-primary { background: var(--orange); color: var(--white); }
.btn-primary:hover { background: var(--orange-dark); }
.btn-whatsapp { background: var(--green); color: var(--white); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-white { background: var(--white); color: var(--navy); }
.btn-outline-white { border-color: rgba(255,255,255,.6); color: white; }
.hero-points { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 26px; font-size: 13px; font-weight: 700; color: #42566a; }
.check { display: inline-flex; width: 20px; height: 20px; border-radius: 50%; background: rgba(244,123,32,.13); color: var(--orange); align-items: center; justify-content: center; margin-right: 4px; }
.hero-visual { position: relative; min-width: 0; }
.visual-card { position: relative; border-radius: 34px; padding: 22px; }
.visual-card::before { content: ""; position: absolute; inset: 8% 6% 2%; border-radius: 38% 62% 50% 50% / 42% 42% 58% 58%; background: linear-gradient(145deg, var(--navy), var(--blue)); transform: rotate(-3deg); box-shadow: var(--shadow); }
.visual-card img { position: relative; z-index: 1; filter: drop-shadow(0 28px 20px rgba(8,26,45,.15)); }
.service-badge { position: absolute; z-index: 3; display: flex; align-items: center; gap: 11px; background: rgba(255,255,255,.96); border: 1px solid rgba(8,26,45,.08); padding: 12px 15px; border-radius: 15px; box-shadow: 0 18px 38px rgba(8,26,45,.16); }
.service-badge strong, .service-badge small { display: block; }
.service-badge strong { font-size: 13px; }
.service-badge small { font-size: 10px; color: var(--muted); }
.badge-icon { width: 36px; height: 36px; border-radius: 11px; display: grid; place-items: center; background: #fff3ea; }
.badge-top { right: -4px; top: 16%; }
.badge-bottom { left: -8px; bottom: 14%; }
.search-strip { position: relative; z-index: 4; transform: translateY(46px); background: var(--navy); color: white; border-radius: 18px; padding: 24px 30px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 25px; box-shadow: 0 18px 50px rgba(8,26,45,.2); }
.search-strip-title { font-size: 19px; font-weight: 800; }
.search-strip p { margin: 0; color: #b7c6d5; font-size: 14px; }
.search-strip a { color: white; font-weight: 800; padding-left: 20px; border-left: 1px solid rgba(255,255,255,.2); }
.search-strip a span { color: var(--orange); margin-left: 8px; }

.section-heading { max-width: 720px; margin-bottom: 48px; }
.section-heading h2, .why-copy h2, .faq-heading h2, .contact-copy h2 { font-size: clamp(34px, 4vw, 52px); line-height: 1.13; letter-spacing: -.035em; color: var(--navy); margin: 0 0 16px; }
.section-heading p, .faq-heading > p { color: var(--muted); font-size: 17px; margin: 0; }
.services { padding-top: 145px; background: white; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service-card { border: 1px solid var(--line); border-radius: 18px; padding: 28px 24px 25px; min-height: 295px; display: flex; flex-direction: column; background: white; transition: .25s ease; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(244,123,32,.35); box-shadow: var(--shadow); }
.service-card.featured { border-top: 4px solid var(--orange); padding-top: 25px; }
.service-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 15px; background: #eef5fa; color: var(--blue); margin-bottom: 22px; }
.service-icon svg { width: 34px; height: 34px; stroke: currentColor; fill: none; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font-size: 19px; line-height: 1.25; margin: 0 0 11px; color: var(--navy); }
.service-card p { color: var(--muted); font-size: 14px; margin: 0 0 22px; }
.service-card > a:not(.btn) { color: var(--blue); font-weight: 800; font-size: 13px; margin-top: auto; }
.service-card > a span { color: var(--orange); margin-left: 5px; }
.call-card { background: linear-gradient(145deg, var(--blue), var(--navy)); color: white; border: 0; }
.call-card:hover { border: 0; }
.call-card h3 { color: white; font-size: 23px; }
.call-card p { color: #c5d7e6; }
.mini-label { display: block; color: var(--orange); text-transform: uppercase; letter-spacing: .12em; font-size: 10px; font-weight: 800; margin-bottom: 10px; }
.call-card .btn { margin-top: auto; align-self: flex-start; }

.why { background: var(--soft); }
.why-grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: 80px; align-items: center; }
.why-visual { position: relative; }
.image-frame { border-radius: 28px; background: linear-gradient(145deg, #dceaf3, #ffffff); overflow: hidden; min-height: 570px; display: flex; align-items: end; justify-content: center; box-shadow: var(--shadow); }
.image-frame img { width: 94%; }
.location-card { position: absolute; right: -34px; bottom: 45px; padding: 16px 20px; background: white; border-radius: 16px; display: flex; align-items: center; gap: 12px; box-shadow: var(--shadow); }
.location-card .pin { width: 43px; height: 43px; border-radius: 12px; background: #fff1e7; color: var(--orange); display: grid; place-items: center; font-size: 24px; font-weight: 800; }
.location-card strong, .location-card small { display: block; }
.location-card strong { font-size: 13px; }
.location-card small { color: var(--muted); font-size: 10px; }
.why-copy .lead { color: var(--muted); font-size: 17px; margin-bottom: 30px; }
.benefit-list { display: grid; gap: 7px; margin-bottom: 25px; }
.benefit { display: grid; grid-template-columns: 52px 1fr; gap: 15px; align-items: start; padding: 18px 0; border-bottom: 1px solid #d8e1e7; }
.benefit > span { font-size: 12px; font-weight: 800; width: 40px; height: 40px; border: 1px solid #ccd9e2; color: var(--orange); border-radius: 12px; display: grid; place-items: center; }
.benefit h3 { margin: 0 0 3px; font-size: 17px; color: var(--navy); }
.benefit p { margin: 0; color: var(--muted); font-size: 14px; }
.text-link { color: var(--blue); font-weight: 800; }
.text-link span { color: var(--orange); margin-left: 8px; }

.cta-band { background: linear-gradient(120deg, var(--navy), #0c416b); color: white; padding: 60px 0; position: relative; overflow: hidden; }
.cta-band::after { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; border: 70px solid rgba(255,255,255,.04); right: -90px; top: -100px; }
.cta-band-inner { display: flex; gap: 40px; align-items: center; justify-content: space-between; position: relative; z-index: 1; }
.cta-band h2 { margin: 0; font-size: clamp(28px, 3vw, 40px); line-height: 1.2; max-width: 760px; }
.cta-buttons { display: flex; gap: 12px; flex-wrap: wrap; flex-shrink: 0; }

.areas { background: white; }
.area-grid { display: grid; grid-template-columns: 1.1fr .9fr; background: var(--soft); border-radius: 24px; overflow: hidden; min-height: 520px; }
.area-map iframe { width: 100%; height: 100%; min-height: 520px; border: 0; filter: grayscale(.25) contrast(1.05); }
.area-content { padding: 55px 50px; align-self: center; }
.area-content h3 { margin: 0 0 20px; color: var(--navy); font-size: 28px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.area-tags span { background: white; border: 1px solid var(--line); border-radius: 100px; padding: 8px 13px; font-size: 12px; font-weight: 700; }
.address-box { display: flex; gap: 14px; padding: 20px 0 28px; border-top: 1px solid #dbe3e9; }
.address-icon { width: 42px; height: 42px; flex: 0 0 auto; border-radius: 12px; background: #ffede1; color: var(--orange); display: grid; place-items: center; font-size: 23px; }
.address-box strong { font-size: 14px; color: var(--navy); }
.address-box p { margin: 3px 0 0; font-size: 13px; color: var(--muted); }

.faq { background: var(--soft); }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.faq-heading { position: sticky; top: 120px; }
.faq-heading .text-link { display: inline-block; margin-top: 26px; }
.accordion details { border-bottom: 1px solid #cfdae2; }
.accordion summary { list-style: none; display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 25px 0; font-size: 17px; font-weight: 800; color: var(--navy); cursor: pointer; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { font-size: 26px; color: var(--orange); font-weight: 400; transition: transform .25s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { color: var(--muted); margin: -5px 0 25px; padding-right: 40px; font-size: 14px; }

.contact { background: var(--navy); color: white; }
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: center; }
.contact-copy h2 { color: white; }
.contact-copy > p { color: #aebfce; max-width: 510px; }
.contact-items { display: grid; gap: 12px; margin-top: 35px; }
.contact-item { display: flex; align-items: center; gap: 14px; }
.contact-icon { width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.15); border-radius: 13px; color: var(--orange); }
.contact-item small, .contact-item strong { display: block; }
.contact-item small { color: #8299ad; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.contact-item strong { font-size: 15px; }
.contact-form { background: white; color: var(--ink); padding: 32px; border-radius: 22px; box-shadow: 0 25px 70px rgba(0,0,0,.22); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.contact-form label { display: block; font-size: 12px; font-weight: 800; color: var(--navy); margin-bottom: 15px; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; margin-top: 7px; border: 1px solid #d9e1e7; background: #f8fafb; border-radius: 11px; padding: 13px 14px; color: var(--ink); outline: none; transition: .2s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(244,123,32,.1); }
.contact-form textarea { resize: vertical; }
.form-submit { border: 0; width: 100%; }
.form-note { margin: 11px 0 0; font-size: 10px; text-align: center; color: var(--muted); }

.site-footer { background: #05111d; color: #b8c6d2; padding: 70px 0 25px; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .75fr 1fr 1fr; gap: 50px; }
.footer-brand img { width: 210px; }
.footer-brand p { max-width: 290px; margin-top: 16px; }
.footer-grid h3 { color: white; font-size: 14px; margin: 0 0 17px; }
.footer-grid a { display: block; font-size: 13px; margin: 7px 0; }
.footer-grid p { font-size: 13px; margin: 0; }
.footer-grid a:hover { color: var(--orange); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: 45px; padding-top: 20px; display: flex; justify-content: space-between; gap: 20px; font-size: 11px; }
.footer-bottom p { margin: 0; }
.mobile-actions { display: none; }
.to-top { position: fixed; z-index: 900; right: 24px; bottom: 24px; width: 44px; height: 44px; border-radius: 13px; border: 0; background: var(--navy); color: white; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(10px); transition: .25s; }
.to-top.visible { opacity: 1; visibility: visible; transform: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .18s; }

.privacy-page { background: var(--soft); min-height: 100vh; padding-top: 120px; }
.privacy-card { background: white; max-width: 900px; padding: 45px; border-radius: 22px; margin: 40px auto 80px; box-shadow: var(--shadow); }
.privacy-card h1 { color: var(--navy); font-size: 42px; line-height: 1.15; }
.privacy-card h2 { color: var(--navy); margin-top: 28px; }
.privacy-card p, .privacy-card li { color: var(--muted); }

@media (max-width: 1050px) {
  .main-nav { gap: 16px; }
  .main-nav a { font-size: 12px; }
  .header-call span { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid, .faq-grid, .contact-grid { gap: 45px; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 28px, 700px); }
  .section { padding: 78px 0; }
  .nav-wrap { height: 72px; }
  .brand img { height: 46px; }
  .menu-toggle { display: block; }
  .header-call { display: none; }
  .main-nav { position: fixed; top: 72px; left: 14px; right: 14px; background: white; border-radius: 16px; box-shadow: var(--shadow); padding: 20px; display: grid; gap: 5px; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: .25s; }
  .main-nav.open { opacity: 1; visibility: visible; transform: none; }
  .main-nav a { padding: 10px; font-size: 14px; }
  .menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle.active span:nth-child(2) { opacity: 0; }
  .menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .hero { padding-top: 110px; }
  .hero-grid { grid-template-columns: 1fr; min-height: auto; gap: 20px; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero-copy > p { margin-inline: auto; }
  .hero-actions, .hero-points { justify-content: center; }
  .hero-visual { max-width: 620px; margin: auto; }
  .search-strip { grid-template-columns: 1fr; text-align: center; gap: 7px; }
  .search-strip a { border-left: 0; padding-left: 0; margin-top: 8px; }
  .services { padding-top: 120px; }
  .section-heading { text-align: center; margin-inline: auto; }
  .section-heading .eyebrow { justify-content: center; }
  .why-grid, .faq-grid, .contact-grid, .area-grid { grid-template-columns: 1fr; }
  .why-visual { max-width: 600px; margin: auto; }
  .location-card { right: 15px; }
  .faq-heading { position: static; text-align: center; }
  .faq-heading .eyebrow { justify-content: center; }
  .cta-band-inner { display: grid; text-align: center; }
  .cta-buttons { justify-content: center; }
  .area-map iframe { min-height: 390px; }
  .contact-copy { text-align: center; }
  .contact-copy .eyebrow { justify-content: center; }
  .contact-copy > p { margin-inline: auto; }
  .contact-items { max-width: 320px; margin-inline: auto; text-align: left; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  body { padding-bottom: 66px; }
  .hero h1 { font-size: 40px; }
  .hero-copy > p { font-size: 15px; }
  .hero-actions { display: grid; }
  .hero-actions .btn { width: 100%; }
  .hero-points { gap: 10px 16px; }
  .hero-visual { margin-top: 15px; }
  .service-badge { padding: 9px 11px; }
  .badge-top { right: -4px; }
  .badge-bottom { left: -4px; }
  .search-strip { padding: 22px 18px; }
  .section-heading h2, .why-copy h2, .faq-heading h2, .contact-copy h2 { font-size: 34px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 255px; }
  .image-frame { min-height: 400px; }
  .location-card { position: relative; right: auto; bottom: auto; margin: -40px 14px 0; }
  .area-content { padding: 35px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 24px 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { display: grid; text-align: center; }
  .mobile-actions { position: fixed; display: grid; grid-template-columns: 1fr 1fr; z-index: 1100; left: 0; right: 0; bottom: 0; box-shadow: 0 -6px 25px rgba(8,26,45,.17); }
  .mobile-actions a { height: 66px; display: flex; justify-content: center; align-items: center; gap: 8px; color: white; font-weight: 800; font-size: 14px; }
  .mobile-call { background: var(--navy); }
  .mobile-whatsapp { background: var(--green); }
  .to-top { bottom: 78px; right: 14px; }
  .privacy-card { padding: 28px 20px; }
  .privacy-card h1 { font-size: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
