:root {
  --primary: #312e81;
  --primary-2: #4338ca;
  --primary-3: #6366f1;
  --primary-dark: #1e1b4b;
  --navy: #111827;
  --text: #374151;
  --muted: #6b7280;
  --surface: #ffffff;
  --surface-soft: #f5f6fb;
  --border: #e5e7eb;
  --whatsapp: #16a34a;
  --whatsapp-dark: #12813c;
  --yellow: #facc15;
  --shadow-sm: 0 8px 24px rgba(17, 24, 39, 0.07);
  --shadow-md: 0 18px 45px rgba(30, 27, 75, 0.12);
  --radius-sm: 14px;
  --radius: 22px;
  --radius-lg: 32px;
  --container: 1180px;
  --header-height: 92px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { margin: 0; color: var(--text); background: var(--surface); font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 16px; line-height: 1.65; overflow-x: hidden; }
body.menu-open { overflow: hidden; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { color: inherit; }
h1, h2, h3 { color: var(--navy); font-family: "Poppins", "Inter", sans-serif; line-height: 1.15; margin: 0; }
p { margin: 0; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section { padding: 104px 0; }
.section-small { padding: 34px 0; }
.section-muted { background: var(--surface-soft); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; left: 18px; top: -80px; z-index: 9999; padding: 12px 18px; color: #fff; background: var(--primary); border-radius: 0 0 10px 10px; font-weight: 700; transition: top .2s ease; }
.skip-link:focus { top: 0; }

/* Header */
.site-header { position: fixed; inset: 0 0 auto; z-index: 1000; height: var(--header-height); background: rgba(255,255,255,.97); box-shadow: 0 1px 0 rgba(17, 24, 39, .08); backdrop-filter: blur(12px); }
.header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { flex: 0 0 auto; display: flex; align-items: center; width: 145px; height: 78px; overflow: hidden; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.desktop-nav { flex: 1; display: flex; align-items: center; justify-content: center; gap: clamp(16px, 1.65vw, 27px); }
.desktop-nav a { position: relative; color: #374151; font-size: .91rem; font-weight: 700; white-space: nowrap; transition: color .2s ease; }
.desktop-nav a::after { content: ""; position: absolute; height: 2px; left: 0; right: 100%; bottom: -8px; background: var(--primary-2); transition: right .25s ease; }
.desktop-nav a:hover, .desktop-nav a.active { color: var(--primary); }
.desktop-nav a:hover::after, .desktop-nav a.active::after { right: 0; }
.header-whatsapp { flex: 0 0 auto; min-height: 46px; display: inline-flex; align-items: center; gap: 9px; padding: 0 16px; border-radius: 13px; color: #fff; background: var(--whatsapp); box-shadow: 0 8px 20px rgba(22, 163, 74, .22); font-size: .9rem; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.header-whatsapp:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }
.header-whatsapp i { font-size: 1.25rem; }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 11px; border: 0; border-radius: 12px; background: var(--surface-soft); cursor: pointer; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; border-radius: 2px; background: var(--primary-dark); transition: transform .25s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; inset: var(--header-height) 0 auto; z-index: 999; padding: 15px 20px 24px; background: #fff; box-shadow: 0 20px 35px rgba(17,24,39,.16); }
.mobile-menu[hidden] { display: none; }
.mobile-menu a { display: block; padding: 14px 8px; color: var(--navy); border-bottom: 1px solid var(--border); font-weight: 700; }

/* Buttons & shared headings */
.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 13px 22px; border: 0; border-radius: 14px; font-size: .94rem; font-weight: 800; line-height: 1.2; text-align: center; text-transform: uppercase; letter-spacing: .02em; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-3px); }
.button-large { min-height: 58px; padding: 16px 27px; }
.button-whatsapp { color: #fff; background: var(--whatsapp); box-shadow: 0 12px 28px rgba(22,163,74,.25); }
.button-whatsapp:hover { background: var(--whatsapp-dark); box-shadow: 0 15px 32px rgba(22,163,74,.32); }
.button-primary { color: #fff; background: var(--primary-2); box-shadow: 0 12px 28px rgba(67,56,202,.22); }
.button-primary:hover { background: var(--primary); }
.button-light { color: var(--primary-dark); background: #fff; box-shadow: 0 12px 28px rgba(0,0,0,.15); }
.section-heading { max-width: 690px; margin: 0 auto 48px; text-align: center; }
.section-kicker { display: inline-flex; margin-bottom: 12px; color: var(--primary-2); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.section-kicker.light { color: #c7d2fe; }
.section-heading h2, .about-copy h2, .regions-copy h2, .faq-intro h2 { margin-bottom: 16px; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.04em; }
.section-heading p { color: var(--muted); font-size: 1.06rem; }

/* Hero */
.hero { position: relative; margin-top: var(--header-height); aspect-ratio: 16 / 9; min-height: auto; display: flex; align-items: center; color: #fff; overflow: hidden; background: #000; }
.hero-media { position: absolute; inset: 0; }
.hero-media { background: #111827; }
.hero-video { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.hero h1 { max-width: 800px; margin-bottom: 20px; color: #fff; font-size: clamp(3.15rem, 7vw, 5.65rem); letter-spacing: -.055em; text-transform: uppercase; text-wrap: balance; }
.hero-sound-toggle { position: absolute; left: 50%; top: 50%; z-index: 4; display: inline-flex; align-items: center; gap: 10px; min-height: 50px; padding: 0 18px; border: 1px solid rgba(255,255,255,.34); border-radius: 999px; color: #fff; background: rgba(17,24,39,.55); box-shadow: 0 12px 30px rgba(0,0,0,.22); backdrop-filter: blur(10px); cursor: pointer; font-weight: 800; transform: translate(-50%, -50%); transition: transform .2s ease, background .2s ease, opacity .2s ease, visibility .2s ease; }
.hero-sound-toggle:hover { transform: translate(-50%, calc(-50% - 2px)); background: rgba(17,24,39,.72); }
.hero-sound-toggle.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.hero-sound-toggle i { width: 28px; height: 28px; display: grid; place-items: center; color: var(--primary-dark); background: var(--yellow); border-radius: 50%; font-size: .88rem; }

/* Trust */
.trust-strip { position: relative; z-index: 4; background: #fff; box-shadow: var(--shadow-sm); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.trust-grid article { display: flex; align-items: center; gap: 15px; padding: 15px; }
.trust-grid article > i { flex: 0 0 auto; width: 46px; height: 46px; display: grid; place-items: center; border-radius: 13px; color: var(--primary-2); background: #eef2ff; font-size: 1.18rem; }
.trust-grid h3 { margin-bottom: 4px; font-size: .98rem; }
.trust-grid p { color: var(--muted); font-size: .8rem; line-height: 1.45; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: 80px; }
.about-collage { position: relative; min-height: 570px; }
.about-main { width: 88%; height: 510px; border-radius: var(--radius-lg); object-fit: cover; box-shadow: var(--shadow-md); }
.about-detail { position: absolute; right: 0; bottom: -16px; width: 42%; height: 250px; border: 7px solid #fff; border-radius: var(--radius); object-fit: cover; object-position: center 35%; box-shadow: var(--shadow-md); }
.about-badge { position: absolute; left: -20px; bottom: 35px; display: block; padding: 17px 21px; color: var(--navy); background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow-md); font-size: .79rem; }
.about-badge i { margin-right: 6px; color: var(--primary-2); }
.about-badge strong { display: inline-block; margin-top: 2px; color: var(--primary); font-family: "Poppins", sans-serif; font-size: 1.05rem; }
.about-copy > p { margin-bottom: 17px; color: #4b5563; font-size: 1.02rem; }
.check-list { display: grid; gap: 11px; margin: 25px 0 30px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--navy); font-weight: 600; }
.check-list i { margin-top: 5px; color: var(--whatsapp); }

/* Services */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; }
.service-card { position: relative; overflow: hidden; background: #fff; border: 1px solid rgba(49,46,129,.08); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease; }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow-md); }
.service-card > img { width: 100%; height: 220px; object-fit: cover; }
.service-content { position: relative; padding: 29px 25px 25px; }
.service-icon { position: absolute; right: 23px; top: -30px; width: 60px; height: 60px; display: grid; place-items: center; color: #fff; background: var(--primary-2); border: 5px solid #fff; border-radius: 18px; box-shadow: 0 8px 16px rgba(67,56,202,.2); font-size: 1.2rem; }
.service-content h3 { max-width: 80%; min-height: 48px; margin-bottom: 12px; font-size: 1.18rem; }
.service-content p { min-height: 78px; color: var(--muted); font-size: .91rem; line-height: 1.6; }
.service-content a { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--primary-2); font-size: .83rem; font-weight: 800; text-transform: uppercase; }
.service-content a i { transition: transform .2s ease; }
.service-content a:hover i { transform: translateX(4px); }

/* Emergency */
.emergency { position: relative; overflow: hidden; color: #fff; background: linear-gradient(125deg, var(--primary-dark), var(--primary-2)); }
.emergency-pattern { position: absolute; inset: 0; opacity: .12; background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 0); background-size: 32px 32px; mask-image: linear-gradient(to right, #000, transparent); }
.emergency-inner { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 60px; }
.emergency-inner > div:first-child { max-width: 700px; }
.emergency h2 { margin-bottom: 15px; color: #fff; font-size: clamp(2rem, 4vw, 3.2rem); text-transform: uppercase; }
.emergency p { color: #e0e7ff; font-size: 1.06rem; }
.emergency-contact { flex: 0 0 auto; display: grid; gap: 11px; text-align: center; }
.emergency-contact strong { color: #fff; font-family: "Poppins", sans-serif; font-size: 1.25rem; letter-spacing: .03em; }

/* Gallery */
.gallery-grid { display: grid; grid-auto-rows: 215px; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.gallery-item { position: relative; min-width: 0; overflow: hidden; padding: 0; border: 0; border-radius: 18px; background: #e5e7eb; cursor: zoom-in; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease, filter .3s ease; }
.gallery-item span { position: absolute; inset: 0; display: grid; place-items: center; color: #fff; background: rgba(30,27,75,.2); opacity: 0; font-size: 1.45rem; transition: opacity .25s ease; }
.gallery-item:hover img { transform: scale(1.06); filter: brightness(.82); }
.gallery-item:hover span { opacity: 1; }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }
.video-showcase { margin-top: 44px; display: grid; grid-template-columns: .6fr 1.4fr; gap: 35px; align-items: center; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface-soft); }
.video-copy h3 { margin-bottom: 12px; font-size: 1.6rem; }
.video-copy p { color: var(--muted); font-size: .92rem; }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
.video-grid video { width: 100%; aspect-ratio: 9 / 12; max-height: 390px; border-radius: 16px; background: #111827; object-fit: cover; }

/* Why */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-grid article { padding: 30px 26px; border: 1px solid transparent; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); transition: border-color .2s ease, transform .2s ease; }
.why-grid article:hover { transform: translateY(-4px); border-color: #c7d2fe; }
.why-grid article > i { width: 52px; height: 52px; display: grid; place-items: center; margin-bottom: 20px; color: var(--primary-2); background: #eef2ff; border-radius: 15px; font-size: 1.25rem; }
.why-grid h3 { margin-bottom: 9px; font-size: 1.04rem; }
.why-grid p { color: var(--muted); font-size: .89rem; }

/* Regions */
.regions-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 70px; }
.regions-copy > p { margin-bottom: 27px; color: var(--muted); font-size: 1.01rem; }
.city-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.city-list span { display: flex; align-items: center; gap: 9px; padding: 12px 14px; color: var(--navy); background: var(--surface-soft); border: 1px solid var(--border); border-radius: 11px; font-size: .88rem; font-weight: 700; }
.city-list i { color: var(--primary-2); }
.region-cta { display: flex; align-items: center; gap: 20px; margin-top: 26px; padding: 17px; border-left: 4px solid var(--whatsapp); background: #f0fdf4; border-radius: 0 14px 14px 0; }
.region-cta strong { flex: 1; color: var(--navy); font-size: .9rem; }
.region-cta .button { flex: 0 0 auto; padding-inline: 17px; font-size: .78rem; }
.map-card { position: relative; overflow: hidden; border: 8px solid #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.map-card iframe { display: block; width: 100%; height: 520px; filter: saturate(.85); }
.map-label { position: absolute; left: 20px; right: 20px; bottom: 20px; display: flex; align-items: center; gap: 14px; padding: 16px 18px; color: var(--navy); background: rgba(255,255,255,.94); border-radius: 14px; box-shadow: var(--shadow-sm); backdrop-filter: blur(8px); }
.map-label > i { width: 42px; height: 42px; display: grid; place-items: center; color: #fff; background: var(--primary-2); border-radius: 12px; }
.map-label div { display: grid; }
.map-label strong { font-size: .93rem; }
.map-label span { color: var(--muted); font-size: .76rem; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: .62fr 1.38fr; align-items: start; gap: 75px; }
.faq-intro { position: sticky; top: 125px; }
.faq-intro p { margin-bottom: 20px; color: var(--muted); }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary-2); font-weight: 800; }
.accordion { display: grid; gap: 11px; }
.accordion details { overflow: hidden; border: 1px solid var(--border); border-radius: 15px; background: #fff; box-shadow: 0 5px 16px rgba(17,24,39,.035); }
.accordion summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 20px 22px; color: var(--navy); cursor: pointer; font-family: "Poppins", sans-serif; font-size: .96rem; font-weight: 700; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary i { flex: 0 0 auto; color: var(--primary-2); transition: transform .25s ease; }
.accordion details[open] summary i { transform: rotate(45deg); }
.accordion details[open] summary { color: var(--primary); }
.accordion details p { padding: 0 22px 20px; color: var(--muted); font-size: .92rem; }
.accordion details p a { color: var(--primary-2); font-weight: 700; }

/* Final CTA */
.final-cta { position: relative; color: #fff; background: var(--primary-dark); overflow: hidden; }
.final-cta::before { content: ""; position: absolute; width: 420px; height: 420px; top: -220px; right: 12%; border-radius: 50%; background: var(--primary-2); filter: blur(2px); opacity: .48; }
.final-cta-inner { position: relative; display: grid; grid-template-columns: 140px 1fr auto; align-items: center; gap: 35px; }
.final-cta-inner > img { width: 140px; height: 140px; border: 6px solid rgba(255,255,255,.12); border-radius: 24px; object-fit: cover; }
.final-cta h2 { margin-bottom: 12px; color: #fff; font-size: clamp(2rem, 4vw, 3.15rem); text-transform: uppercase; }
.final-cta p { color: #c7d2fe; }
.final-contact { display: grid; gap: 10px; text-align: center; }
.final-contact > a:last-child { color: #fff; font-family: "Poppins", sans-serif; font-size: 1.18rem; font-weight: 700; }

/* Footer */
.site-footer { color: #cbd5e1; background: #101126; }
.footer-grid { display: grid; grid-template-columns: 1.05fr 1.2fr .8fr 1fr; gap: 50px; padding-top: 72px; padding-bottom: 65px; }
.footer-brand img { width: 115px; height: 115px; margin-bottom: 16px; border-radius: 16px; object-fit: cover; }
.footer-brand p, .footer-action p { max-width: 270px; font-size: .88rem; }
.footer-grid h2 { margin-bottom: 17px; color: #fff; font-size: 1rem; }
.footer-grid address { font-style: normal; font-size: .86rem; }
.footer-grid address p { margin-bottom: 13px; }
.footer-grid address i { margin-right: 7px; color: #a5b4fc; }
.footer-grid address a:hover, .footer-nav a:hover { color: #fff; }
.footer-nav { display: grid; gap: 7px; }
.footer-nav a { font-size: .86rem; transition: color .2s ease; }
.footer-action .button { margin-top: 18px; padding-inline: 17px; font-size: .79rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.footer-bottom .container { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .79rem; }
.footer-bottom a { color: #a5b4fc; font-weight: 700; }

/* Floating WhatsApp */
.floating-whatsapp { position: fixed; right: max(20px, env(safe-area-inset-right)); bottom: max(20px, env(safe-area-inset-bottom)); z-index: 900; display: flex; align-items: center; gap: 10px; min-height: 58px; padding: 0 20px; color: #fff; background: var(--whatsapp); border: 3px solid #fff; border-radius: 999px; box-shadow: 0 14px 35px rgba(22,163,74,.4); font-weight: 800; animation: whatsappPulse 2.8s infinite; }
.floating-whatsapp i { font-size: 1.65rem; }
@keyframes whatsappPulse { 0%, 100% { box-shadow: 0 14px 35px rgba(22,163,74,.36), 0 0 0 0 rgba(34,197,94,.25); } 50% { box-shadow: 0 14px 35px rgba(22,163,74,.4), 0 0 0 10px rgba(34,197,94,0); } }

/* Lightbox */
.lightbox { width: min(92vw, 960px); max-width: 960px; padding: 0; border: 0; border-radius: 18px; color: #fff; background: #0b0c18; box-shadow: 0 28px 80px rgba(0,0,0,.5); overflow: visible; }
.lightbox::backdrop { background: rgba(5,7,18,.88); backdrop-filter: blur(4px); }
.lightbox img { width: 100%; max-height: 78vh; border-radius: 18px 18px 0 0; object-fit: contain; }
.lightbox p { padding: 15px 20px; color: #e5e7eb; font-size: .9rem; text-align: center; }
.lightbox-close { position: absolute; top: -16px; right: -16px; z-index: 2; width: 44px; height: 44px; display: grid; place-items: center; color: var(--navy); background: #fff; border: 0; border-radius: 50%; box-shadow: var(--shadow-sm); cursor: pointer; font-size: 1.1rem; }

/* Reveal animation */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* Tablet */
@media (max-width: 1080px) {
  :root { --header-height: 82px; }
  .desktop-nav { display: none; }
  .menu-toggle { display: block; order: 3; }
  .header-whatsapp { margin-left: auto; }
  .brand { width: 130px; height: 70px; }
  .hero { min-height: auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 50px; }
  .about-collage { min-height: 510px; }
  .about-main { height: 455px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .regions-grid { gap: 40px; }
  .region-cta { align-items: flex-start; flex-direction: column; }
  .faq-layout { gap: 45px; }
  .final-cta-inner { grid-template-columns: 115px 1fr; }
  .final-cta-inner > img { width: 115px; height: 115px; }
  .final-contact { grid-column: 2; justify-self: start; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile */
@media (max-width: 760px) {
  :root { --header-height: 76px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section { padding: 75px 0; }
  .section-heading { margin-bottom: 35px; }
  .section-heading h2, .about-copy h2, .regions-copy h2, .faq-intro h2 { font-size: 2rem; }
  .header-inner { gap: 10px; }
  .brand { width: 104px; height: 66px; }
  .header-whatsapp { width: 45px; min-height: 45px; justify-content: center; padding: 0; border-radius: 12px; }
  .header-whatsapp span { display: none; }
  .menu-toggle { width: 45px; height: 45px; }
  .hero { aspect-ratio: 9 / 16; min-height: auto; align-items: flex-start; }
  .hero-video { object-position: center; }
  .hero h1 { max-width: 355px; font-size: clamp(2.65rem, 13vw, 3.85rem); line-height: 1.03; }
  .hero-sound-toggle { left: 50%; top: 50%; min-height: 44px; padding-inline: 14px; font-size: .83rem; white-space: nowrap; transform: translate(-50%, -50%); }
  .hero-sound-toggle:hover { transform: translate(-50%, -50%); }
  .hero-sound-toggle i { width: 25px; height: 25px; }
  .trust-grid { grid-template-columns: 1fr; gap: 4px; }
  .trust-grid article { padding: 12px 4px; }
  .about-grid { grid-template-columns: 1fr; gap: 55px; }
  .about-collage { min-height: 410px; }
  .about-main { width: 92%; height: 370px; }
  .about-detail { width: 42%; height: 185px; border-width: 5px; }
  .about-badge { left: 8px; bottom: 16px; padding: 13px 15px; }
  .about-copy .button { width: 100%; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card > img { height: 215px; }
  .service-content h3, .service-content p { min-height: auto; }
  .emergency-inner { flex-direction: column; align-items: flex-start; gap: 30px; }
  .emergency-contact, .emergency-contact .button { width: 100%; }
  .gallery-grid { grid-auto-rows: 160px; grid-template-columns: repeat(2, 1fr); gap: 9px; }
  .gallery-item { border-radius: 12px; }
  .gallery-wide { grid-column: span 2; }
  .gallery-item span { display: none; }
  .video-showcase { grid-template-columns: 1fr; padding: 18px; }
  .video-grid { gap: 9px; }
  .video-grid video { max-height: 330px; border-radius: 12px; }
  .why-grid { grid-template-columns: 1fr; }
  .regions-grid { grid-template-columns: 1fr; }
  .city-list { gap: 7px; }
  .city-list span { min-height: 55px; padding: 10px; font-size: .8rem; }
  .region-cta .button { width: 100%; }
  .map-card iframe { height: 400px; }
  .map-label { left: 12px; right: 12px; bottom: 12px; }
  .faq-layout { grid-template-columns: 1fr; gap: 30px; }
  .faq-intro { position: static; }
  .accordion summary { padding: 17px; font-size: .88rem; }
  .accordion details p { padding: 0 17px 17px; font-size: .87rem; }
  .final-cta-inner { grid-template-columns: 72px 1fr; gap: 18px; }
  .final-cta-inner > img { width: 72px; height: 72px; border-width: 3px; border-radius: 15px; }
  .final-cta h2 { font-size: 1.75rem; }
  .final-contact { grid-column: 1 / -1; width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-top: 55px; }
  .footer-bottom .container { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 18px; }
  .floating-whatsapp { right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); min-height: 54px; padding: 0 17px; font-size: .85rem; }
  .floating-whatsapp i { font-size: 1.45rem; }
  .lightbox { width: calc(100vw - 24px); }
  .lightbox-close { top: 8px; right: 8px; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 2.55rem; }
  .button { padding-inline: 16px; font-size: .84rem; }
  .city-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-auto-rows: 140px; }
}

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