:root {
  --navy-950: #061525;
  --navy-900: #0a2039;
  --navy-800: #123457;
  --blue-600: #1769e0;
  --blue-500: #3383ee;
  --blue-100: #dceaff;
  --ice: #f3f7fb;
  --white: #ffffff;
  --ink: #102033;
  --muted: #607083;
  --line: #dce4ed;
  --green: #1fa96d;
  --shadow-sm: 0 12px 32px rgba(8, 31, 56, .08);
  --shadow-lg: 0 28px 70px rgba(8, 31, 56, .18);
  --radius: 24px;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Inter, Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { padding: 112px 0; }
.section--soft { background: var(--ice); }
.section--navy { color: var(--white); background: var(--navy-950); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--blue-600);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; }
.eyebrow--light { color: #82b9ff; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(3.25rem, 7.1vw, 6.7rem); margin-bottom: 28px; }
h2 { font-size: clamp(2.35rem, 4.5vw, 4.4rem); margin-bottom: 24px; }
h3 { font-size: 1.45rem; margin-bottom: 14px; }
.lead { color: var(--muted); font-size: clamp(1.08rem, 2vw, 1.28rem); line-height: 1.7; }
.text-light { color: #b8c7d8; }
.section-head { max-width: 790px; margin-bottom: 54px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head p { max-width: 680px; }
.center p { margin-inline: auto; }

.topbar { background: var(--navy-950); color: #cfdae6; font-size: .78rem; }
.topbar__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.topbar__group { display: flex; align-items: center; gap: 24px; }
.topbar a:hover { color: var(--white); }
.topbar svg { width: 15px; height: 15px; vertical-align: -3px; margin-right: 6px; }
.site-header { position: sticky; top: 0; z-index: 90; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(220,228,237,.86); backdrop-filter: blur(14px); }
.navbar { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: flex; align-items: center; gap: 13px; flex: 0 0 auto; }
.brand__mark { width: 48px; height: 48px; display: grid; place-items: center; color: var(--white); background: var(--navy-900); border-radius: 12px; font-weight: 900; letter-spacing: -.08em; box-shadow: inset -9px -9px 0 rgba(23,105,224,.35); }
.brand__copy { line-height: 1; }
.brand__name { display: block; color: var(--navy-950); font-weight: 900; font-size: 1.17rem; letter-spacing: -.035em; }
.brand__sub { display: block; color: var(--blue-600); margin-top: 5px; font-weight: 800; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 31px; }
.nav > a, .nav__toggle { color: var(--navy-900); font-weight: 700; font-size: .93rem; border: 0; background: transparent; padding: 15px 0; }
.nav > a:hover, .nav__toggle:hover { color: var(--blue-600); }
.nav__item { position: relative; }
.nav__toggle { display: flex; align-items: center; gap: 6px; }
.nav__toggle svg { width: 15px; transition: transform .2s ease; }
.nav__item:hover .nav__toggle svg, .nav__item:focus-within .nav__toggle svg { transform: rotate(180deg); }
.dropdown { position: absolute; top: calc(100% - 4px); left: 50%; width: 620px; transform: translate(-50%, 10px); display: grid; grid-template-columns: 1fr 1fr; gap: 4px; padding: 15px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transition: .2s ease; }
.nav__item:hover .dropdown, .nav__item:focus-within .dropdown { opacity: 1; visibility: visible; transform: translate(-50%, 0); }
.dropdown a { display: flex; gap: 12px; align-items: center; border-radius: 12px; padding: 14px; font-weight: 750; font-size: .9rem; }
.dropdown a:hover { color: var(--blue-600); background: var(--ice); }
.dropdown svg { width: 19px; flex: 0 0 19px; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-button { display: none; width: 46px; height: 46px; place-items: center; border: 1px solid var(--line); border-radius: 12px; color: var(--navy-900); background: var(--white); }
.menu-button svg { width: 23px; }

.btn { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border: 1px solid transparent; border-radius: 11px; font-weight: 800; font-size: .91rem; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 19px; }
.btn--primary { color: var(--white); background: var(--blue-600); box-shadow: 0 12px 28px rgba(23,105,224,.24); }
.btn--primary:hover { background: #0e5ccb; box-shadow: 0 16px 34px rgba(23,105,224,.32); }
.btn--dark { color: var(--white); background: var(--navy-900); }
.btn--light { color: var(--navy-950); background: var(--white); }
.btn--outline { color: var(--white); border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.05); }
.btn--ghost { color: var(--navy-900); border-color: var(--line); background: var(--white); }

.hero { position: relative; min-height: 790px; display: flex; align-items: center; color: var(--white); overflow: hidden; background: var(--navy-950); }
.hero__media, .page-hero__media { position: absolute; inset: 0; height: 100%; object-fit: cover; }
.hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(2,15,28,.92) 0%, rgba(5,23,41,.78) 38%, rgba(7,26,45,.12) 72%), linear-gradient(0deg, rgba(4,18,33,.48), transparent 54%); }
.hero__content { position: relative; z-index: 2; max-width: 770px; padding: 110px 0 128px; }
.hero .eyebrow { color: #80b7ff; margin-bottom: 23px; }
.hero h1 span { color: #82b9ff; }
.hero__lead { max-width: 650px; color: #d5dee9; font-size: clamp(1.15rem, 2vw, 1.36rem); margin-bottom: 38px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 13px; }
.hero__note { display: flex; align-items: center; gap: 11px; margin-top: 28px; color: #b6c4d4; font-size: .88rem; }
.hero__note svg { width: 19px; color: #71d1a6; }
.hero__badge { position: absolute; z-index: 2; right: max(24px, calc((100vw - var(--max)) / 2)); bottom: 42px; width: 235px; padding: 20px; color: var(--navy-950); background: rgba(255,255,255,.94); border-radius: 18px; box-shadow: var(--shadow-lg); }
.hero__badge strong { display: block; font-size: 1.05rem; }
.hero__badge span { color: var(--muted); font-size: .8rem; }

.trustbar { position: relative; z-index: 4; margin-top: -24px; }
.trustbar__inner { display: grid; grid-template-columns: repeat(3, 1fr); background: var(--white); border: 1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-sm); overflow: hidden; }
.trustitem { display: flex; align-items: center; gap: 15px; min-height: 100px; padding: 20px 28px; border-right: 1px solid var(--line); }
.trustitem:last-child { border-right: 0; }
.trustitem svg { width: 28px; color: var(--blue-600); flex: 0 0 28px; }
.trustitem strong { display: block; font-size: .98rem; }
.trustitem span { color: var(--muted); font-size: .81rem; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 84px; align-items: center; }
.split__media { position: relative; }
.split__media img { aspect-ratio: 4/5; object-fit: cover; object-position: top; border-radius: var(--radius); }
.split__media--team img { aspect-ratio: 16/10; object-position: center; }
.split__media::before { content: ""; position: absolute; z-index: -1; inset: 35px -24px -24px 35px; border-radius: var(--radius); background: var(--blue-100); }
.split__card { position: absolute; right: -28px; bottom: 28px; max-width: 250px; padding: 22px; color: var(--white); background: var(--navy-900); border-radius: 16px; box-shadow: var(--shadow-lg); }
.split__card strong { display: block; font-size: 1.1rem; }
.split__card span { color: #b8c9da; font-size: .8rem; }
.split__content .eyebrow { margin-bottom: 20px; }
.checks { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 22px; margin: 30px 0 36px; padding: 0; list-style: none; }
.checks li { display: flex; gap: 9px; color: var(--navy-900); font-weight: 700; font-size: .9rem; }
.checks svg { width: 18px; color: var(--blue-600); flex: 0 0 18px; margin-top: 4px; }

.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card { position: relative; min-height: 485px; display: flex; align-items: end; overflow: hidden; border-radius: 22px; background: var(--navy-900); box-shadow: var(--shadow-sm); isolation: isolate; }
.service-card img { position: absolute; inset: 0; height: 100%; object-fit: cover; transition: transform .55s ease; z-index: -2; }
.service-card::after { content: ""; position: absolute; z-index: -1; inset: 0; background: linear-gradient(0deg, rgba(3,17,31,.96), rgba(6,24,42,.66) 54%, rgba(6,24,42,.06)); }
.service-card__content { width: 100%; padding: 31px; color: var(--white); }
.service-card__num { display: block; margin-bottom: 22px; color: #82b9ff; font-size: .74rem; font-weight: 900; letter-spacing: .16em; }
.service-card h3 { font-size: 1.65rem; }
.service-card p { color: #c7d2df; font-size: .93rem; line-height: 1.6; }
.service-card__link { display: inline-flex; align-items: center; gap: 9px; margin-top: 10px; color: #95c5ff; font-weight: 800; font-size: .86rem; }
.service-card__link svg { width: 18px; transition: transform .2s ease; }
.service-card:hover img { transform: scale(1.055); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }
.service-card--featured { grid-column: 1 / -1; min-height: 430px; }
.service-card--featured::after { background: linear-gradient(90deg, rgba(3,17,31,.96), rgba(6,24,42,.72) 46%, rgba(6,24,42,.08) 78%), linear-gradient(0deg, rgba(3,17,31,.72), transparent 58%); }
.service-card--featured .service-card__content { max-width: 610px; }

.stats { display: grid; grid-template-columns: 1.25fr repeat(3, .75fr); align-items: stretch; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; overflow: hidden; }
.stat-intro, .stat { min-height: 190px; padding: 34px; }
.stat-intro { background: var(--blue-600); }
.stat-intro h3 { font-size: 1.8rem; margin-bottom: 8px; }
.stat-intro p { color: #d9e9ff; font-size: .9rem; margin: 0; }
.stat { display: flex; flex-direction: column; justify-content: center; border-left: 1px solid rgba(255,255,255,.12); }
.stat strong { display: block; color: #85bbff; font-size: 2rem; }
.stat span { color: #b8c7d8; font-size: .85rem; }

.process { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; counter-reset: step; }
.process__item { position: relative; padding: 31px 26px; border: 1px solid var(--line); border-radius: 18px; background: var(--white); }
.process__item::before { counter-increment: step; content: "0" counter(step); display: grid; place-items: center; width: 45px; height: 45px; margin-bottom: 25px; color: var(--blue-600); background: var(--blue-100); border-radius: 12px; font-size: .8rem; font-weight: 900; }
.process__item p { margin: 0; color: var(--muted); font-size: .88rem; }

.gallery { display: grid; grid-template-columns: repeat(12, 1fr); grid-auto-rows: 260px; gap: 16px; }
.gallery__item { position: relative; overflow: hidden; border-radius: 18px; background: var(--navy-900); }
.gallery__item:nth-child(1), .gallery__item:nth-child(4) { grid-column: span 7; }
.gallery__item:nth-child(2), .gallery__item:nth-child(3) { grid-column: span 5; }
.gallery__item:nth-child(5), .gallery__item:nth-child(6) { grid-column: span 6; }
.gallery__item img { height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery__item::after { content: ""; position: absolute; inset: 38% 0 0; background: linear-gradient(transparent, rgba(3,15,28,.9)); }
.gallery__label { position: absolute; z-index: 2; left: 22px; bottom: 18px; color: var(--white); font-weight: 800; }
.gallery__item:hover img { transform: scale(1.04); }

.region-box { position: relative; overflow: hidden; display: grid; grid-template-columns: .9fr 1.1fr; border-radius: 26px; background: var(--navy-900); }
.region-box__copy { padding: 70px; color: var(--white); }
.region-box__copy p { color: #b8c7d8; }
.region-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }
.region-list span { padding: 8px 12px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: #d9e2ec; font-size: .79rem; font-weight: 700; }
.region-box__visual { position: relative; min-height: 460px; background: linear-gradient(135deg, #123457, #1769e0); }
.region-box__visual::before, .region-box__visual::after { content: ""; position: absolute; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.region-box__visual::before { width: 420px; height: 420px; left: 15%; top: 8%; }
.region-box__visual::after { width: 265px; height: 265px; left: 28%; top: 25%; }
.map-pin { position: absolute; left: 48%; top: 43%; transform: translate(-50%,-50%); display: grid; place-items: center; width: 86px; height: 86px; color: var(--blue-600); background: var(--white); border-radius: 50% 50% 50% 12px; rotate: -45deg; box-shadow: var(--shadow-lg); }
.map-pin svg { width: 34px; rotate: 45deg; }
.map-label { position: absolute; left: 50%; top: 69%; transform: translateX(-50%); width: 82%; text-align: center; color: var(--white); font-weight: 800; }

.contact-wrap { display: grid; grid-template-columns: .85fr 1.15fr; gap: 62px; align-items: start; }
.contact-copy .eyebrow { margin-bottom: 20px; }
.contact-list { display: grid; gap: 16px; margin: 35px 0 0; }
.contact-line { display: flex; align-items: center; gap: 16px; }
.contact-line__icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 13px; background: rgba(255,255,255,.09); }
.contact-line__icon svg { width: 21px; }
.contact-line small { display: block; color: #82b9ff; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-line a { font-weight: 800; }
.contact-card { padding: 42px; color: var(--ink); background: var(--white); border-radius: 24px; box-shadow: 0 30px 70px rgba(0,0,0,.25); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 16px; }
.field label { display: block; margin-bottom: 7px; color: var(--navy-900); font-size: .8rem; font-weight: 800; }
.field input, .field textarea, .field select { width: 100%; border: 1px solid var(--line); border-radius: 11px; outline: 0; background: #f8fafc; padding: 13px 15px; transition: border .2s, box-shadow .2s; }
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(51,131,238,.13); }
.consent { display: flex; gap: 10px; margin: 5px 0 20px; color: var(--muted); font-size: .75rem; }
.consent input { margin-top: 4px; accent-color: var(--blue-600); }
.form-note { color: var(--muted); margin: 13px 0 0; font-size: .72rem; }

.footer { color: #c8d4e0; background: #04111f; }
.footer__main { display: grid; grid-template-columns: 1.3fr .8fr .8fr 1fr; gap: 50px; padding: 70px 0 50px; }
.footer .brand__name { color: var(--white); }
.footer__about { max-width: 330px; margin-top: 20px; color: #8294a7; font-size: .86rem; }
.footer h3 { color: var(--white); font-size: .85rem; letter-spacing: .08em; text-transform: uppercase; }
.footer ul { padding: 0; margin: 20px 0 0; list-style: none; }
.footer li { margin: 8px 0; }
.footer li a { color: #8ea0b3; font-size: .84rem; }
.footer li a:hover { color: var(--white); }
.footer__bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.09); color: #718498; font-size: .76rem; }
.footer__legal { display: flex; gap: 22px; }

.whatsapp { position: fixed; z-index: 70; right: 24px; bottom: 24px; width: 61px; height: 61px; display: grid; place-items: center; color: var(--white); background: var(--green); border-radius: 50%; box-shadow: 0 16px 34px rgba(21,139,87,.34); transition: transform .2s; }
.whatsapp:hover { transform: scale(1.08); }
.whatsapp svg { width: 29px; }

/* Service and legal pages */
.page-hero { position: relative; min-height: 590px; display: flex; align-items: end; overflow: hidden; color: var(--white); background: var(--navy-950); }
.page-hero__media { object-position: center; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,16,29,.94), rgba(5,23,41,.7) 52%, rgba(5,23,41,.2)), linear-gradient(0deg, rgba(3,16,29,.6), transparent 55%); }
.page-hero__content { position: relative; z-index: 2; max-width: 780px; padding: 105px 0 84px; }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; color: #b5c5d6; font-size: .78rem; font-weight: 700; }
.breadcrumbs a:hover { color: var(--white); }
.page-hero h1 { font-size: clamp(3rem, 6vw, 5.7rem); }
.page-hero p { max-width: 670px; color: #d1dce7; font-size: 1.18rem; }
.page-hero .hero__actions { margin-top: 31px; }
.service-intro { display: grid; grid-template-columns: 1.2fr .8fr; gap: 75px; align-items: start; }
.service-intro .eyebrow { margin-bottom: 18px; }
.fact-card { padding: 32px; border-radius: 20px; background: var(--ice); border: 1px solid var(--line); }
.fact-card h3 { font-size: 1.2rem; }
.fact-list { display: grid; gap: 14px; margin: 23px 0 0; padding: 0; list-style: none; }
.fact-list li { display: flex; gap: 11px; color: var(--navy-900); font-size: .89rem; font-weight: 750; }
.fact-list svg { width: 19px; color: var(--blue-600); flex: 0 0 19px; margin-top: 3px; }
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit { padding: 30px; background: var(--white); border: 1px solid var(--line); border-radius: 18px; }
.benefit__icon { width: 49px; height: 49px; display: grid; place-items: center; margin-bottom: 24px; color: var(--blue-600); background: var(--blue-100); border-radius: 13px; }
.benefit__icon svg { width: 23px; }
.benefit p { margin: 0; color: var(--muted); font-size: .88rem; }
.detail-split { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.detail-split img { height: 510px; object-fit: cover; border-radius: 22px; box-shadow: var(--shadow-sm); }
.detail-split .eyebrow { margin-bottom: 18px; }
.detail-list { display: grid; gap: 18px; margin: 28px 0 0; }
.detail-item { display: grid; grid-template-columns: 38px 1fr; gap: 13px; }
.detail-item > span { width: 36px; height: 36px; display: grid; place-items: center; color: var(--blue-600); background: var(--blue-100); border-radius: 10px; font-size: .75rem; font-weight: 900; }
.detail-item h3 { font-size: 1rem; margin: 4px 0 5px; }
.detail-item p { margin: 0; color: var(--muted); font-size: .84rem; }
.crosslinks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.crosslink { display: flex; align-items: center; justify-content: space-between; gap: 20px; min-height: 116px; padding: 24px; background: var(--white); border: 1px solid var(--line); border-radius: 16px; }
.crosslink:hover { border-color: #9bc3f7; box-shadow: var(--shadow-sm); }
.crosslink strong { display: block; }
.crosslink small { color: var(--muted); }
.crosslink svg { width: 20px; color: var(--blue-600); flex: 0 0 20px; }
.legal-page { min-height: 60vh; padding: 90px 0 120px; }
.legal-page article { max-width: 820px; }
.legal-page h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
.legal-page h2 { margin-top: 48px; font-size: 1.65rem; }
.legal-page h3 { margin-top: 30px; font-size: 1.12rem; }
.legal-page p, .legal-page li { color: var(--muted); }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@media (max-width: 1050px) {
  .nav { gap: 18px; }
  .header-actions .btn { display: none; }
  .services { grid-template-columns: 1fr 1fr; }
  .service-card--featured { grid-column: 1 / -1; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { border-top: 1px solid rgba(255,255,255,.12); }
  .process { grid-template-columns: 1fr 1fr; }
  .footer__main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .section { padding: 80px 0; }
  .topbar { display: none; }
  .navbar { min-height: 74px; }
  .menu-button { display: grid; }
  .nav { position: absolute; top: 100%; left: 0; right: 0; height: calc(100vh - 74px); display: block; padding: 30px 20px 60px; overflow-y: auto; background: var(--white); transform: translateX(100%); transition: transform .3s ease; }
  .nav.is-open { transform: translateX(0); }
  .nav > a, .nav__toggle { width: 100%; display: flex; justify-content: space-between; padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 1.03rem; text-align: left; }
  .dropdown { position: static; width: auto; display: none; grid-template-columns: 1fr; padding: 8px 0 15px; border: 0; border-radius: 0; box-shadow: none; opacity: 1; visibility: visible; transform: none; }
  .nav__item.is-open .dropdown { display: grid; }
  .nav__item:hover .dropdown, .nav__item:focus-within .dropdown { transform: none; }
  .hero { min-height: 720px; }
  .hero__overlay { background: linear-gradient(90deg, rgba(2,15,28,.92), rgba(5,23,41,.55)), linear-gradient(0deg, rgba(4,18,33,.62), transparent); }
  .hero__content { padding: 85px 0 110px; }
  .hero__badge { display: none; }
  .trustbar__inner { grid-template-columns: 1fr; }
  .trustitem { min-height: 88px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trustitem:last-child { border-bottom: 0; }
  .split, .service-intro, .detail-split, .region-box, .contact-wrap { grid-template-columns: 1fr; }
  .split { gap: 60px; }
  .split__media { max-width: 570px; }
  .split__card { right: -8px; }
  .service-intro, .detail-split, .contact-wrap { gap: 45px; }
  .detail-split img { height: 420px; }
  .region-box__copy { padding: 50px 34px; }
  .benefits, .crosslinks { grid-template-columns: 1fr; }
  .contact-card { padding: 30px; }
  .gallery { grid-auto-rows: 240px; }
  .gallery__item { grid-column: span 6 !important; }
}

@media (max-width: 580px) {
  .container { width: min(100% - 28px, var(--max)); }
  body { font-size: 16px; }
  h1 { font-size: clamp(2.75rem, 15vw, 4rem); }
  h2 { font-size: 2.45rem; }
  .brand__mark { width: 43px; height: 43px; }
  .brand__name { font-size: 1.02rem; }
  .brand__sub { font-size: .55rem; }
  .hero { min-height: 680px; }
  .hero__media { object-position: 62% center; }
  .hero__actions, .page-hero .hero__actions { display: grid; }
  .btn { width: 100%; }
  .checks, .services, .stats, .process, .form-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 430px; }
  .service-card--featured { grid-column: auto; }
  .service-card--featured::after { background: linear-gradient(0deg, rgba(3,17,31,.97), rgba(6,24,42,.68) 58%, rgba(6,24,42,.08)); }
  .service-card--featured .service-card__content { max-width: none; }
  .stat { border-left: 0; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 270px; }
  .gallery__item { grid-column: auto !important; }
  .region-box__visual { min-height: 350px; }
  .footer__main { grid-template-columns: 1fr; gap: 34px; }
  .footer__bottom { flex-direction: column; }
  .page-hero { min-height: 610px; }
  .page-hero__content { padding-bottom: 65px; }
  .page-hero h1 { font-size: 3.25rem; }
  .detail-split img { height: 330px; }
  .whatsapp { right: 15px; bottom: 15px; width: 55px; height: 55px; }
}

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