:root {
  --ue-navy: #0B172A;
  --ue-navy-2: #0F2038;
  --ue-blue: #123A63;
  --ue-blue-2: #1A4F82;
  --ue-amber: #F5B400;
  --ue-amber-2: #FFC933;
  --ue-white: #FFFFFF;
  --ue-dark: #111827;
  --ue-gray: #1F2937;
  --ue-muted: #6B7280;
  --ue-line: rgba(245, 180, 0, 0.18);
  --ue-text: #E5E7EB;
  --ue-text-dark: #1F2937;
  --ue-bg: #F4F6F8;
  --ue-radius: 14px;
  --ue-shadow: 0 18px 50px rgba(11, 23, 42, 0.18);
  --ue-header-h: 84px;
  --ue-topbar-h: 40px;
  --ue-font: "Manrope", "Segoe UI", sans-serif;
  --ue-display: "Oswald", "Arial Narrow", sans-serif;
  --ue-max: 1240px;
}

*,
*::before,
*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--ue-font);
  color: var(--ue-text-dark);
  background: var(--ue-bg);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-family: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--ue-display); letter-spacing: 0.04em; line-height: 1.12; margin: 0 0 0.6em; text-transform: uppercase; }
p { margin: 0 0 1em; }
.ue-icon { width: 1.15em; height: 1.15em; flex-shrink: 0; }

.container { width: min(100% - 32px, var(--ue-max)); margin-inline: auto; }
.skip-link {
  position: absolute; left: -999px; top: 0; background: var(--ue-amber); color: var(--ue-navy); padding: 8px 16px; z-index: 10000;
}
.skip-link:focus { left: 12px; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 48px; padding: 0 22px; border-radius: 999px; border: 1px solid transparent;
  font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; font-size: 13px;
  cursor: pointer; transition: 0.25s ease;
}
.btn-amber { background: var(--ue-amber); color: var(--ue-navy); }
.btn-amber:hover { background: var(--ue-amber-2); transform: translateY(-1px); }
.btn-navy { background: var(--ue-navy); color: var(--ue-white); }
.btn-navy:hover { background: var(--ue-blue); }
.btn-ghost { background: transparent; color: var(--ue-white); border-color: rgba(255,255,255,.28); }
.btn-ghost:hover { border-color: var(--ue-amber); color: var(--ue-amber); }
.btn-outline { background: transparent; color: var(--ue-navy); border-color: var(--ue-navy); }
.btn-outline:hover { background: var(--ue-navy); color: #fff; }
.btn-whatsapp { background: #1f8f4e; color: #fff; }
.btn-whatsapp:hover { filter: brightness(1.08); }

/* Topbar */
.topbar {
  background: var(--ue-navy); color: #c9d4e3; font-size: 13px; min-height: var(--ue-topbar-h);
  display: flex; align-items: center; border-bottom: 1px solid rgba(245,180,0,.15);
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 16px; width: min(100% - 32px, var(--ue-max)); }
.topbar-left { color: var(--ue-amber); font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; font-size: 11px; }
.topbar-right { display: flex; gap: 18px; flex-wrap: wrap; }
.topbar-right a { display: inline-flex; align-items: center; gap: 8px; color: #d7e0ea; }
.topbar-right a:hover { color: var(--ue-amber); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 1000; background: rgba(11,23,42,.92);
  backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,.06);
}
.site-header.is-stuck { box-shadow: 0 10px 30px rgba(0,0,0,.25); }
.header-inner { display: flex; align-items: center; gap: 24px; min-height: var(--ue-header-h); }
.logo { display: flex; align-items: center; flex-shrink: 0; }
.logo img, .logo svg { height: 46px; width: auto; filter: brightness(0) invert(1); }
.logo-mobile { display: none; }
.logo-text {
  display: flex; flex-direction: column; gap: 3px; line-height: 1;
  color: #fff; text-decoration: none;
}
.logo-text strong {
  font-family: var(--ue-display); font-size: 22px; font-weight: 700;
  letter-spacing: 0.08em; color: #fff; font-style: normal;
}
.logo-text em {
  font-style: normal; font-size: 10px; font-weight: 700;
  letter-spacing: 0.18em; color: var(--ue-amber);
}
.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav > li { position: relative; }
.nav > li > a {
  display: flex; align-items: center; gap: 6px; padding: 12px 12px; color: #e8eef5;
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  position: relative; z-index: 1210;
}
.logo, .header-cta { position: relative; z-index: 1210; }
.nav > li > a:hover, .nav > li.is-open > a, .nav > li > a.is-active { color: var(--ue-amber); }
.header-cta { margin-left: 10px; }
.menu-toggle {
  display: none; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.15);
  background: transparent; color: #fff; border-radius: 10px; cursor: pointer;
}

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% - 2px); left: 0; min-width: 240px;
  background: #0e1c33; border: 1px solid rgba(245,180,0,.15); border-radius: 12px;
  padding: 10px; opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(8px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s; box-shadow: var(--ue-shadow);
  z-index: 1200;
}
.dropdown::before {
  content: ""; position: absolute; left: 0; right: 0; top: -18px; height: 18px;
}
.nav > li:hover > .dropdown,
.nav > li:focus-within > .dropdown,
.nav > li.is-open > .dropdown {
  opacity: 1; visibility: visible; pointer-events: auto; transform: none;
}
.dropdown a { display: block; padding: 10px 12px; color: #d5deea; border-radius: 8px; font-size: 14px; font-weight: 600; }
.dropdown a:hover { background: rgba(245,180,0,.1); color: var(--ue-amber); }

/* Mega menu */
.nav > li.has-mega { position: static; }
.nav > li.has-mega > .mega-bridge {
  display: none;
  position: absolute;
  left: 0; right: 0; top: 0;
  height: var(--ue-header-h);
  z-index: 1190;
}
.nav > li.has-mega:hover > .mega-bridge,
.nav > li.has-mega.is-open > .mega-bridge { display: block; }
.mega {
  position: absolute; left: 16px; right: 16px; top: calc(100% - 8px);
  width: auto; max-width: var(--ue-max); margin-inline: auto;
  background: linear-gradient(180deg, #0e1d35, #0b172a);
  border: 1px solid rgba(245,180,0,.18); border-radius: 18px; padding: 28px;
  display: none; grid-template-columns: 1fr 1fr 1fr 260px; gap: 18px;
  z-index: 1200; box-shadow: var(--ue-shadow);
}
.mega::before {
  content: ""; position: absolute; left: 0; right: 0; top: -36px; height: 40px;
}
.nav > li:hover > .mega, .nav > li:focus-within > .mega, .nav > li.is-open > .mega {
  display: grid;
}
.mega-col h4 { color: var(--ue-amber); font-size: 13px; margin-bottom: 12px; }
.mega-col a { display: flex; align-items: center; gap: 10px; padding: 10px 8px; color: #d7e2ee; border-radius: 8px; font-weight: 600; }
.mega-col a:hover { background: rgba(255,255,255,.04); color: #fff; }
.mega-cta {
  background: linear-gradient(160deg, #123A63, #0B172A); border: 1px solid var(--ue-line);
  border-radius: 14px; padding: 22px; color: #fff; display: flex; flex-direction: column; gap: 12px;
}
.mega-cta strong { font-family: var(--ue-display); font-size: 22px; letter-spacing: 0.06em; }
.mega-cta .phone { color: var(--ue-amber); font-size: 20px; font-weight: 800; }

/* Hero */
.hero { position: relative; min-height: 92vh; overflow: hidden; color: #fff; background: var(--ue-navy); }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.1s ease;
  background: #0B172A center/cover no-repeat;
}
.hero-slide.is-active { opacity: 1; z-index: 1; }
.hero-slide::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(11,23,42,.88) 0%, rgba(11,23,42,.55) 48%, rgba(11,23,42,.35) 100%),
    radial-gradient(circle at 80% 20%, rgba(245,180,0,.18), transparent 32%);
}
.hero-slide .kenburns {
  position: absolute; inset: -4%; background-size: cover; background-position: center; transform: scale(1.08);
  animation: kenburns 18s ease-out forwards;
}
.hero-content { position: relative; z-index: 3; min-height: 92vh; display: flex; align-items: center; padding: 80px 0 100px; }
.hero-copy { position: absolute; left: 0; right: 0; max-width: 760px; opacity: 0; visibility: hidden; transition: opacity .6s ease; }
.hero-copy.is-active { position: relative; opacity: 1; visibility: visible; }
.kicker { color: var(--ue-amber); font-weight: 800; letter-spacing: 0.28em; font-size: 12px; text-transform: uppercase; margin-bottom: 18px; }
.hero h1 {
  font-size: clamp(42px, 7vw, 84px); max-width: 14ch; white-space: pre-line; margin-bottom: 18px;
  text-shadow: 0 8px 30px rgba(0,0,0,.35);
}
.hero p { max-width: 52ch; font-size: 18px; color: #d5deea; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.hero-nav { position: absolute; z-index: 4; right: 24px; top: 50%; display: flex; flex-direction: column; gap: 8px; }
.hero-nav button, .hero-dots button {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.2);
  background: rgba(11,23,42,.4); color: #fff; cursor: pointer;
}
.hero-dots { position: absolute; z-index: 4; left: 0; right: 0; bottom: 28px; display: flex; justify-content: center; gap: 8px; }
.hero-dots button { width: 44px; height: 4px; border-radius: 99px; position: relative; overflow: hidden; }
.hero-dots button span {
  position: absolute; inset: 0 auto 0 0; width: 0; background: var(--ue-amber);
  animation: none;
}
.hero-dots button.is-active span { animation: progress 7s linear forwards; }
.hero-progress { position: absolute; left: 0; bottom: 0; height: 3px; width: 0; background: var(--ue-amber); z-index: 5; }

@keyframes kenburns { to { transform: scale(1.18) translate3d(-1.5%, -1%, 0); } }
@keyframes progress { from { width: 0; } to { width: 100%; } }
@keyframes pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.06); } }

.circuit-bg {
  background-color: #0B172A;
  background-image:
    linear-gradient(rgba(18,58,99,.55) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18,58,99,.55) 1px, transparent 1px),
    radial-gradient(circle at 20% 30%, rgba(245,180,0,.12), transparent 28%);
  background-size: 48px 48px, 48px 48px, auto;
}

/* Quick bar */
.quick-bar {
  background: #fff; margin-top: -36px; position: relative; z-index: 6;
  border-radius: 18px; box-shadow: var(--ue-shadow); display: grid;
  grid-template-columns: repeat(3, 1fr); overflow: hidden;
}
.quick-bar a { display: flex; align-items: center; justify-content: center; gap: 10px; padding: 22px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.quick-bar a:nth-child(1) { background: var(--ue-navy); color: #fff; }
.quick-bar a:nth-child(2) { background: #128C4B; color: #fff; }
.quick-bar a:nth-child(3) { background: var(--ue-amber); color: var(--ue-navy); }

/* Sections */
.section { padding: 88px 0; }
.section-dark { background: var(--ue-navy); color: #e8eef6; }
.section-head { max-width: 720px; margin-bottom: 42px; }
.section-head h2 { font-size: clamp(28px, 4vw, 44px); }
.section-head p { color: var(--ue-muted); font-size: 17px; }
.section-dark .section-head p { color: #b7c4d4; }
.eyebrow { color: var(--ue-amber); font-weight: 800; letter-spacing: 0.22em; font-size: 12px; text-transform: uppercase; margin-bottom: 10px; }

.grid-5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }

.trust-card, .service-card, .post-card, .region-card, .process-step {
  background: #fff; border-radius: var(--ue-radius); padding: 24px; border: 1px solid #e8edf3;
  transition: 0.25s ease; height: 100%; color: var(--ue-text-dark);
}
.faq-item {
  background: #fff; border-radius: var(--ue-radius); padding: 18px 20px; border: 1px solid #e8edf3;
  color: var(--ue-text-dark); height: auto;
}
.section-dark .trust-card,
.section-dark .service-card,
.section-dark .region-card {
  background: rgba(15, 32, 56, 0.92);
  border-color: rgba(245,180,0,.22);
  color: #f3f6fa;
}
.section-dark .service-card p,
.section-dark .trust-card p,
.section-dark .region-card p { color: #c5d0dc; }
.section-dark .process-step {
  background: #fff;
  color: #111827;
  border-color: rgba(255,255,255,.12);
}
.section-dark .process-step h3 { color: #0B172A; }
.section-dark .process-step p { color: #4b5563; margin: 0; }
.trust-card:hover, .service-card:hover, .post-card:hover, .region-card:hover {
  transform: translateY(-6px); border-color: rgba(245,180,0,.45); box-shadow: var(--ue-shadow);
}
.icon-wrap {
  width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(245,180,0,.12); color: var(--ue-blue); margin-bottom: 14px;
}
.section-dark .icon-wrap {
  color: var(--ue-amber);
  background: rgba(245,180,0,.16);
}
.site-footer .ue-icon,
.topbar .ue-icon,
.mega .ue-icon,
.nav > li > a .ue-icon,
.wa-float .ue-icon,
.mobile-action .ue-icon,
.page-hero .ue-icon {
  color: var(--ue-amber);
}
.service-card .num { color: var(--ue-amber); font-family: var(--ue-display); font-size: 28px; }
.service-card h3 { font-size: 22px; }
.service-card p { color: var(--ue-muted); }
.media-zoom { overflow: hidden; border-radius: 12px; margin-bottom: 14px; }
.media-zoom img { width: 100%; height: 190px; object-fit: cover; transition: 0.5s ease; }
.media-zoom.cover-wide img, .media-zoom.cover-wide .img-fallback { height: 280px; }
.service-card:hover .media-zoom img, .post-card:hover .media-zoom img { transform: scale(1.08); }
.img-fallback {
  height: 190px; display: grid; place-items: center; text-align: center; padding: 16px;
  background:
    radial-gradient(circle at 80% 20%, rgba(245,180,0,.22), transparent 36%),
    linear-gradient(145deg, #0B172A 0%, #123A63 100%);
  color: #F5B400; font-family: var(--ue-display); letter-spacing: 0.2em;
  font-size: clamp(16px, 2.2vw, 22px); font-weight: 700;
}

.process-wrap { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.process-step { text-align: left; min-width: 0; }
.process-step span { color: var(--ue-amber); font-weight: 800; display: block; margin-bottom: 8px; }
.process-step h3 { font-size: 16px; }

.cta-band {
  background: linear-gradient(120deg, var(--ue-navy), var(--ue-blue));
  color: #fff; border-radius: 24px; padding: 48px; display: flex; justify-content: space-between;
  align-items: center; gap: 24px; border: 1px solid var(--ue-line); overflow: hidden;
}
.cta-band h2 { margin: 0; font-size: clamp(24px, 4vw, 36px); color: #fff; }
.cta-band p { color: #d5deea; margin: 8px 0 0; }

.contact-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr); gap: 28px; }
.map-wrap { min-height: 360px; border-radius: 18px; overflow: hidden; background: #0b172a; }
.map-wrap iframe { width: 100%; height: 100%; min-height: 360px; border: 0; }

/* Forms */
.form { display: grid; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form label { display: grid; gap: 6px; font-size: 13px; font-weight: 700; color: var(--ue-blue); }
.form input, .form select, .form textarea {
  border: 1px solid #d8e0ea; border-radius: 12px; padding: 12px 14px; background: #fff; font-size: 15px;
}
.form textarea { min-height: 140px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 2px solid rgba(245,180,0,.45); border-color: var(--ue-amber);
}
.alert { padding: 14px 16px; border-radius: 12px; margin-bottom: 16px; }
.alert-ok { background: #ecfdf3; color: #166534; }
.alert-err { background: #fef2f2; color: #991b1b; }
.check { display: flex; gap: 10px; align-items: flex-start; font-weight: 500; color: var(--ue-gray); }

/* FAQ */
.faq-item + .faq-item { margin-top: 10px; }
.faq-item summary { cursor: pointer; font-weight: 800; list-style: none; display: flex; justify-content: space-between; }
.faq-item p { margin-top: 10px; color: var(--ue-muted); }

/* Footer */
.site-footer { background: #070e19; color: #d5deea; padding: 64px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 28px; }
.site-footer h3 { color: var(--ue-amber); font-size: 16px; }
.site-footer a { color: #e8eef5; }
.site-footer a:hover { color: var(--ue-amber); }
.site-footer p { color: #c5d0dc; }
.footer-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.footer-bottom { margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); display: flex; justify-content: space-between; gap: 12px; font-size: 13px; color: #9fb0c4; }
.nap-light { color: var(--ue-text-dark); }
.nap-light a { color: var(--ue-blue); }
.nap-light .ue-icon { color: var(--ue-blue); }

/* Breadcrumb */
.page-hero {
  background: var(--ue-navy) center/cover no-repeat; color: #fff; padding: 72px 0 48px; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(11,23,42,.88) 0%, rgba(11,23,42,.62) 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #d5deea; max-width: 60ch; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; font-size: 13px; color: #9fb0c4; margin-bottom: 16px; }
.breadcrumb a { color: #c9d6e4; }
.breadcrumb a:hover { color: var(--ue-amber); }

.prose { font-size: 17px; }
.prose h2 { margin-top: 1.4em; font-size: 28px; }
.prose h3 { font-size: 20px; }
.prose ul, .prose ol { margin: 0 0 1em 1.2em; }
.prose li { margin: 0.3em 0; }
.prose a { color: var(--ue-blue); text-decoration: underline; }

.content-layout { display: grid; grid-template-columns: minmax(0, 1.6fr) minmax(0, 0.8fr); gap: 32px; align-items: start; }

.sidebar-card { background: #fff; border-radius: 16px; padding: 22px; border: 1px solid #e8edf3; margin-bottom: 16px; color: var(--ue-text-dark); }
.sidebar-card h3 { font-size: 18px; color: var(--ue-navy); }
.sidebar-card .btn { width: 100%; margin-top: 8px; }
.prose { overflow-wrap: anywhere; }

/* WhatsApp float */
.wa-float {
  position: fixed; right: 18px; bottom: 88px; z-index: 900;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; box-shadow: 0 10px 24px rgba(37,211,102,.4);
}
.wa-float:hover { transform: translateY(-2px); }
.wa-float::after {
  content: ""; position: absolute; inset: -6px; border-radius: 50%; border: 2px solid rgba(37,211,102,.4);
  animation: pulse 2.4s ease-in-out infinite;
}
.wa-tip {
  position: absolute; right: 70px; background: #fff; color: var(--ue-navy); padding: 8px 12px;
  border-radius: 8px; white-space: nowrap; font-size: 13px; font-weight: 700; opacity: 0; pointer-events: none; transition: .2s;
}
.wa-float:hover .wa-tip { opacity: 1; }

.mobile-action {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 950;
  background: #0B172A; grid-template-columns: 1fr 1fr 1fr; border-top: 1px solid rgba(245,180,0,.2);
}
.mobile-action a { color: #fff; text-align: center; padding: 10px 6px 12px; font-size: 11px; font-weight: 800; letter-spacing: .06em; }
.mobile-action a:nth-child(2) { background: #128C4B; }
.mobile-action a:nth-child(3) { background: var(--ue-amber); color: var(--ue-navy); }

.gallery-grid { columns: 3; column-gap: 14px; }
.gallery-grid a { break-inside: avoid; display: block; margin-bottom: 14px; }
.gallery-grid img { width: 100%; border-radius: 12px; }

.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.88); display: none; place-items: center; z-index: 2000; padding: 24px; }
.lightbox.is-on { display: grid; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 88vh; border-radius: 8px; }
.lightbox button { position: absolute; top: 16px; right: 16px; background: transparent; color: #fff; border: 0; font-size: 32px; cursor: pointer; }

.error-404 { min-height: 70vh; display: grid; place-items: center; text-align: center; padding: 80px 16px; }
.error-404 h1 { font-size: clamp(42px, 8vw, 80px); }

.reveal { opacity: 0; transform: translateY(18px); animation: fadeup .7s ease forwards; }
.reveal-delay-1 { animation-delay: .08s; }
.reveal-delay-2 { animation-delay: .16s; }
.reveal-delay-3 { animation-delay: .24s; }
@keyframes fadeup { to { opacity: 1; transform: none; } }

@media (max-width: 1100px) {
  .grid-5, .process-wrap { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mega { grid-template-columns: 1fr 1fr; left: 12px; right: 12px; }
}

@media (max-width: 860px) {
  .topbar { display: none; }
  .menu-toggle { display: grid; place-items: center; margin-left: auto; }
  .header-cta { display: none; }
  .logo-desktop { display: none; }
  .logo-mobile { display: block; filter: none; }
  .logo img { height: 40px; filter: none; }
  .logo-text strong { font-size: 18px; }
  .logo-text em { font-size: 8px; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: #0b172a; flex-direction: column; align-items: stretch; padding: 12px;
    border-bottom: 1px solid rgba(245,180,0,.2); max-height: calc(100vh - 70px); overflow: auto;
  }
  .nav.is-open { display: flex; }
  .dropdown, .mega {
    position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;
    display: none; width: auto; max-width: none; margin: 0; grid-template-columns: 1fr; box-shadow: none; border: 0; padding: 0 0 8px 12px; left: auto; right: auto;
  }
  .nav > li.has-mega > .mega-bridge { display: none !important; }
  .nav > li.is-open > .dropdown, .nav > li.is-open > .mega { display: grid; }
  .grid-3, .grid-2, .grid-5, .grid-4, .process-wrap, .contact-grid, .content-layout, .form-row, .cta-band, .quick-bar, .footer-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .hero { min-height: 78vh; }
  .hero-content { min-height: 78vh; padding: 48px 0 90px; }
  .hero h1 { font-size: clamp(32px, 10vw, 48px); max-width: none; }
  .hero-nav { display: none; }
  .mobile-action { display: grid; }
  .wa-float { bottom: 78px; }
  .gallery-grid { columns: 2; }
  body { padding-bottom: 64px; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 28px; }
  .quick-bar a { font-size: 12px; padding: 16px 8px; }
}

@media (max-width: 420px) {
  .gallery-grid { columns: 1; }
  .hero h1 { font-size: 36px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .hero-slide .kenburns { transform: none; }
}
