:root {
  --navy: #052b63;
  --navy-2: #073b83;
  --blue: #0756b5;
  --blue-soft: #eaf3ff;
  --orange: #f89b17;
  --orange-dark: #df7d00;
  --orange-soft: #fff4df;
  --green: #128c4f;
  --green-bright: #20b865;
  --ink: #17233a;
  --muted: #5e6c80;
  --line: #dfe6ef;
  --surface: #ffffff;
  --surface-alt: #f6f8fb;
  --shadow-sm: 0 8px 24px rgba(5, 43, 99, .08);
  --shadow-md: 0 18px 48px rgba(5, 43, 99, .14);
  --shadow-lg: 0 30px 80px rgba(5, 43, 99, .2);
  --radius-sm: .75rem;
  --radius: 1.25rem;
  --radius-lg: 2rem;
  --max: 1180px;
  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 6.5rem; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.modal-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid rgba(248, 155, 23, .6); outline-offset: 3px; }
::selection { background: var(--orange); color: #fff; }

.skip-link {
  position: fixed; top: -5rem; left: 1rem; z-index: 9999;
  padding: .8rem 1rem; background: var(--navy); color: #fff; border-radius: .6rem;
}
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 820px); margin-inline: auto; }
.section { padding: 5.5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-alt { background: var(--surface-alt); }
.section-dark { color: #fff; background: var(--navy); }
.anchor-target { scroll-margin-top: 7rem; }
.sr-only { position: absolute!important; width: 1px!important; height: 1px!important; padding: 0!important; margin: -1px!important; overflow: hidden!important; clip: rect(0,0,0,0)!important; white-space: nowrap!important; border: 0!important; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  margin: 0 0 .9rem; padding: .35rem .7rem; border: 1px solid rgba(7,86,181,.16);
  border-radius: 999px; color: var(--blue); background: var(--blue-soft);
  font-size: .76rem; font-weight: 800; letter-spacing: .08em; line-height: 1.3; text-transform: uppercase;
}
.eyebrow.on-dark { color: #fff; border-color: rgba(255,255,255,.2); background: rgba(255,255,255,.1); }
.section-heading { max-width: 760px; margin-bottom: 2.4rem; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading h2, .article h2 {
  margin: 0 0 1rem; color: var(--ink); font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.1; letter-spacing: -.035em;
}
.section-dark .section-heading h2 { color: #fff; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.08rem; }
.section-dark .section-heading p { color: #dbe7f8; }
h1, h2, h3, h4 { font-weight: 850; }
h3 { line-height: 1.25; }
.lead { font-size: clamp(1.08rem, 1.8vw, 1.24rem); color: var(--muted); }
.text-muted { color: var(--muted); }
.text-small { font-size: .9rem; }
.text-center { text-align: center; }

.topbar { background: #031c42; color: #dce8f8; font-size: .78rem; }
.topbar-inner { min-height: 2.55rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.topbar-group { display: flex; align-items: center; gap: 1.2rem; }
.topbar a:hover { color: #fff; }
.topbar .verified { display: inline-flex; align-items: center; gap: .4rem; }
.topbar .verified::before { content: "✓"; display: grid; place-items: center; width: 1.1rem; height: 1.1rem; border-radius: 50%; color: #031c42; background: var(--orange); font-weight: 900; }

.site-header { position: sticky; top: 0; z-index: 70; border-bottom: 1px solid rgba(223,230,239,.9); background: rgba(255,255,255,.94); backdrop-filter: blur(14px); }
.header-inner { min-height: 5rem; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; }
.logo-link { flex: 0 0 auto; }
.logo { width: 230px; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 1.15rem; }
.primary-nav > a:not(.btn) { color: #435069; font-size: .87rem; font-weight: 750; }
.primary-nav > a:not(.btn):hover, .primary-nav > a[aria-current="page"] { color: var(--blue); }
.menu-toggle { display: none; width: 2.8rem; height: 2.8rem; border: 0; border-radius: .75rem; color: var(--navy); background: var(--blue-soft); }
.menu-toggle svg { width: 1.55rem; margin: auto; fill: currentColor; }

.btn {
  display: inline-flex; min-height: 3rem; align-items: center; justify-content: center; gap: .6rem;
  padding: .75rem 1.15rem; border: 1px solid transparent; border-radius: 999px;
  font-size: .91rem; font-weight: 800; line-height: 1.2; transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 1.2rem; height: 1.2rem; fill: currentColor; }
.btn-primary { color: #fff; background: var(--orange); box-shadow: 0 10px 24px rgba(248,155,23,.3); }
.btn-primary:hover { background: var(--orange-dark); box-shadow: 0 14px 30px rgba(223,125,0,.32); }
.btn-secondary { color: #fff; border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.11); }
.btn-secondary:hover { background: rgba(255,255,255,.18); }
.btn-blue { color: #fff; background: var(--blue); box-shadow: 0 12px 28px rgba(7,86,181,.22); }
.btn-blue:hover { background: var(--navy-2); }
.btn-whatsapp { color: #fff; background: var(--green); box-shadow: 0 12px 28px rgba(18,140,79,.24); }
.btn-whatsapp:hover { background: #0c7440; }
.btn-outline { color: var(--navy); border-color: #c7d3e3; background: #fff; }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-wide { width: 100%; }
.link-arrow { display: inline-flex; align-items: center; gap: .45rem; color: var(--blue); font-weight: 800; }
.link-arrow svg { width: 1rem; fill: currentColor; transition: transform .2s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

.hero { position: relative; overflow: hidden; color: #fff; background: linear-gradient(118deg, #031c42 0%, #063d89 58%, #0a65c7 100%); }
.hero::before, .hero::after { content: ""; position: absolute; border-radius: 50%; pointer-events: none; }
.hero::before { width: 35rem; height: 35rem; right: -9rem; top: -16rem; background: rgba(248,155,23,.18); filter: blur(2px); }
.hero::after { width: 28rem; height: 28rem; left: -14rem; bottom: -18rem; background: rgba(255,255,255,.07); }
.hero-inner { position: relative; z-index: 1; min-height: 620px; display: grid; grid-template-columns: minmax(0,1.08fr) minmax(320px,.92fr); align-items: center; gap: 3rem; padding: 5.5rem 0; }
.hero-copy h1 { max-width: 760px; margin: 0 0 1.3rem; font-size: clamp(2.75rem, 5.7vw, 5.2rem); line-height: .98; letter-spacing: -.055em; }
.hero-copy h1 span { color: var(--orange); }
.hero-copy .lead { max-width: 680px; margin: 0 0 2rem; color: #dce9fb; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 1.7rem; }
.hero-tags { display: flex; flex-wrap: wrap; gap: .55rem; }
.hero-tags a { padding: .45rem .72rem; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: #e9f2ff; background: rgba(255,255,255,.07); font-size: .8rem; font-weight: 700; }
.hero-tags a:hover { border-color: rgba(248,155,23,.6); background: rgba(248,155,23,.12); }
.hero-visual { position: relative; }
.hero-visual img { width: 100%; max-width: 520px; margin-left: auto; filter: drop-shadow(0 34px 40px rgba(0,0,0,.25)); }
.hero-note { position: absolute; right: 0; bottom: 1.2rem; width: min(290px, 90%); padding: 1rem 1.1rem; border: 1px solid rgba(255,255,255,.18); border-radius: 1rem; background: rgba(3,28,66,.72); backdrop-filter: blur(10px); box-shadow: var(--shadow-md); }
.hero-note strong { display: block; color: #fff; }
.hero-note span { color: #dce9fb; font-size: .84rem; }

.page-hero { position: relative; overflow: hidden; color: #fff; background: linear-gradient(120deg, #031c42, #0756b5); }
.page-hero::after { content: ""; position: absolute; width: 28rem; height: 28rem; right: -10rem; top: -16rem; border-radius: 50%; background: rgba(248,155,23,.2); }
.page-hero-inner { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.15fr) minmax(260px,.65fr); align-items: center; gap: 2rem; padding: 4.5rem 0 5rem; }
.page-hero h1 { max-width: 830px; margin: .75rem 0 1rem; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.02; letter-spacing: -.05em; }
.page-hero .lead { margin: 0 0 1.6rem; color: #dce9fb; }
.page-hero-visual img { width: 100%; max-width: 400px; margin-left: auto; filter: drop-shadow(0 28px 35px rgba(0,0,0,.22)); }

.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: .45rem; margin: 0 0 1rem; color: #75839a; font-size: .82rem; }
.breadcrumbs a:hover { color: var(--blue); }
.page-hero .breadcrumbs { color: #cbdaf0; }
.page-hero .breadcrumbs a:hover { color: #fff; }
.breadcrumb-sep { opacity: .7; }

.trust-strip { position: relative; z-index: 2; margin-top: -2rem; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-md); }
.trust-item { display: flex; align-items: center; gap: .9rem; padding: 1.3rem 1.4rem; }
.trust-item + .trust-item { border-left: 1px solid var(--line); }
.icon-box { flex: 0 0 auto; display: grid; width: 3rem; height: 3rem; place-items: center; border-radius: .9rem; color: var(--blue); background: var(--blue-soft); }
.icon-box.orange { color: var(--orange-dark); background: var(--orange-soft); }
.icon-box.green { color: var(--green); background: #e8f8ef; }
.icon-box svg { width: 1.5rem; fill: currentColor; }
.trust-item small { display: block; color: #7b8799; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.trust-item strong { display: block; color: var(--ink); font-size: .94rem; line-height: 1.25; }

.card-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.25rem; }
.card-grid.two { grid-template-columns: repeat(2, minmax(0,1fr)); }
.card-grid.four { grid-template-columns: repeat(4, minmax(0,1fr)); }
.card { overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.card:hover { transform: translateY(-5px); border-color: #c8d5e7; box-shadow: var(--shadow-md); }
.card-body { padding: 1.5rem; }
.card h3 { margin: 0 0 .6rem; color: var(--ink); font-size: 1.28rem; }
.card p { margin: 0 0 1rem; color: var(--muted); }
.service-card { position: relative; display: flex; min-height: 270px; flex-direction: column; }
.service-card .card-body { display: flex; height: 100%; flex: 1; flex-direction: column; }
.service-card .icon-box { width: 3.4rem; height: 3.4rem; margin-bottom: 1.2rem; }
.service-card .link-arrow { margin-top: auto; }
.service-card.featured { color: #fff; border-color: transparent; background: linear-gradient(135deg, var(--navy), var(--blue)); }
.service-card.featured h3, .service-card.featured p, .service-card.featured .link-arrow { color: #fff; }
.service-card.featured .icon-box { color: #fff; background: rgba(255,255,255,.14); }

.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); align-items: center; gap: clamp(2rem,5vw,5rem); }
.split.reverse > :first-child { order: 2; }
.visual-panel { position: relative; min-height: 430px; overflow: hidden; border-radius: var(--radius-lg); background: linear-gradient(145deg, var(--blue-soft), #fff4df); box-shadow: var(--shadow-md); }
.visual-panel img { width: 100%; height: 100%; min-height: 430px; object-fit: cover; }
.visual-panel .visual-badge { position: absolute; left: 1.2rem; bottom: 1.2rem; max-width: 300px; padding: 1rem; border-radius: 1rem; color: #fff; background: rgba(3,28,66,.86); box-shadow: var(--shadow-sm); }
.visual-badge strong { display: block; }
.visual-badge span { display: block; color: #dce9fb; font-size: .83rem; }

.check-list { display: grid; gap: .72rem; margin: 1.4rem 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 1.9rem; color: #46556b; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: .02rem; display: grid; width: 1.25rem; height: 1.25rem; place-items: center; border-radius: 50%; color: #fff; background: var(--green); font-size: .72rem; font-weight: 900; }
.numbered-list { counter-reset: steps; display: grid; gap: 1rem; margin: 1.5rem 0; padding: 0; list-style: none; }
.numbered-list li { position: relative; padding: 1.1rem 1rem 1.1rem 3.8rem; border: 1px solid var(--line); border-radius: 1rem; background: #fff; }
.numbered-list li::before { counter-increment: steps; content: counter(steps); position: absolute; left: 1rem; top: 1rem; display: grid; width: 2rem; height: 2rem; place-items: center; border-radius: .65rem; color: #fff; background: var(--blue); font-weight: 900; }

.process-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1rem; counter-reset: process; }
.process-card { position: relative; padding: 1.5rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.process-card::before { counter-increment: process; content: counter(process, decimal-leading-zero); display: block; margin-bottom: 1rem; color: var(--orange-dark); font-size: 1.7rem; font-weight: 900; }
.process-card h3 { margin: 0 0 .55rem; font-size: 1.12rem; }
.process-card p { margin: 0; color: var(--muted); font-size: .92rem; }

.location-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.25rem; }
.location-card { display: flex; min-height: 100%; flex-direction: column; }
.location-card .location-head { padding: 1.4rem; color: #fff; background: linear-gradient(135deg, var(--navy), var(--blue)); }
.location-card .location-head .icon-box { margin-bottom: .8rem; color: #fff; background: rgba(255,255,255,.13); }
.location-card h3 { margin: 0 0 .25rem; color: #fff; font-size: 1.45rem; }
.location-card .location-head p { margin: 0; color: #dce9fb; }
.location-card .card-body { display: flex; flex: 1; flex-direction: column; }
.location-card .team-list { margin: 0 0 1.2rem; padding: 0; list-style: none; }
.location-card .team-list li { display: flex; align-items: center; justify-content: space-between; gap: .7rem; padding: .62rem 0; border-bottom: 1px solid #edf1f6; color: #39485d; font-size: .9rem; font-weight: 720; }
.location-card .team-list small { display: block; color: var(--blue); font-weight: 700; }
.location-card .card-actions { display: grid; gap: .6rem; margin-top: auto; }

.team-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.person-card { display: flex; align-items: center; gap: 1rem; padding: 1.3rem; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius); background: rgba(255,255,255,.07); }
.person-initial { display: grid; flex: 0 0 auto; width: 3rem; height: 3rem; place-items: center; border-radius: .9rem; color: var(--navy); background: var(--orange); font-size: 1.1rem; font-weight: 900; }
.person-card strong { display: block; color: #fff; }
.person-card span { display: block; color: #bfcde2; font-size: .83rem; }
.person-card .person-contact { display: grid; width: 2.5rem; height: 2.5rem; margin-left: auto; place-items: center; border-radius: .75rem; color: #fff; background: var(--green); }
.person-card .person-contact svg { width: 1.25rem; fill: currentColor; }

.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); color: #fff; background: linear-gradient(120deg, #052b63, #0756b5); box-shadow: var(--shadow-lg); }
.cta-band::after { content: ""; position: absolute; right: -7rem; top: -10rem; width: 22rem; height: 22rem; border-radius: 50%; background: rgba(248,155,23,.25); }
.cta-band-inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 2.2rem 2.4rem; }
.cta-band h2 { margin: 0 0 .4rem; color: #fff; font-size: clamp(1.7rem,3vw,2.5rem); line-height: 1.15; }
.cta-band p { max-width: 680px; margin: 0; color: #dce9fb; }
.cta-actions { display: flex; flex: 0 0 auto; flex-wrap: wrap; gap: .65rem; }

.faq-list { display: grid; gap: .75rem; }
.faq-list details { border: 1px solid var(--line); border-radius: 1rem; background: #fff; box-shadow: 0 4px 16px rgba(5,43,99,.04); }
.faq-list summary { position: relative; padding: 1.15rem 3.4rem 1.15rem 1.2rem; color: var(--ink); font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 1.2rem; top: 50%; transform: translateY(-50%); color: var(--blue); font-size: 1.5rem; font-weight: 600; }
.faq-list details[open] summary::after { content: "−"; }
.faq-answer { padding: 0 1.2rem 1.2rem; color: var(--muted); }
.faq-answer p { margin: 0; }

.article-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; align-items: start; gap: 3rem; }
.article { min-width: 0; }
.article > p:first-of-type { font-size: 1.15rem; color: #44536a; }
.article h2 { margin-top: 2.6rem; font-size: clamp(1.65rem,3vw,2.35rem); }
.article h3 { margin: 2rem 0 .65rem; font-size: 1.3rem; }
.article p { margin: 0 0 1.25rem; color: #44536a; }
.article a:not(.btn) { color: var(--blue); text-decoration: underline; text-underline-offset: 3px; }
.article figure { margin: 2rem 0; }
.article figure img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.article figcaption { margin-top: .6rem; color: #78859a; font-size: .82rem; text-align: center; }
.article-aside { position: sticky; top: 7rem; display: grid; gap: 1rem; }
.aside-card { padding: 1.2rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.aside-card h2, .aside-card h3 { margin: 0 0 .7rem; font-size: 1.05rem; }
.aside-card p { margin: 0 0 1rem; color: var(--muted); font-size: .9rem; }
.toc { margin: 0; padding: 0; list-style: none; }
.toc li + li { margin-top: .45rem; }
.toc a { color: #4c5a70; font-size: .87rem; }
.toc a:hover { color: var(--blue); }
.updated { display: inline-flex; gap: .4rem; color: #7a879a; font-size: .8rem; }

.info-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.info-box { padding: 1.25rem; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.info-box strong { display: block; margin-bottom: .3rem; }
.info-box p { margin: 0; color: var(--muted); }
.contact-panel { display: grid; grid-template-columns: 1.1fr .9fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-md); }
.contact-copy { padding: clamp(1.5rem,4vw,3rem); }
.contact-copy h2 { margin-top: 0; }
.contact-meta { display: grid; gap: .8rem; margin: 1.4rem 0; }
.contact-meta-item { display: flex; align-items: flex-start; gap: .75rem; }
.contact-meta-item .icon-box { width: 2.6rem; height: 2.6rem; }
.contact-meta-item .icon-box svg { width: 1.25rem; }
.contact-map { min-height: 420px; display: grid; place-items: center; padding: 2rem; color: #fff; background: linear-gradient(145deg, var(--navy), var(--blue)); }
.contact-map img { width: 100%; max-width: 370px; }

.legal { max-width: 900px; }
.legal h2 { margin: 2.2rem 0 .7rem; font-size: 1.6rem; }
.legal p { color: #46556a; }
.legal code { padding: .1rem .3rem; border-radius: .3rem; background: #edf2f8; }

.site-footer { color: #c7d3e5; background: #031c42; }
.footer-main { display: grid; grid-template-columns: 1.25fr 1fr 1fr 1fr; gap: 2.3rem; padding: 4.5rem 0 3rem; }
.footer-logo { width: 230px; padding: .65rem; border-radius: .8rem; background: #fff; }
.footer-brand p { max-width: 370px; color: #9fb0c8; }
.footer-title { margin: .4rem 0 1rem; color: #fff; font-size: 1rem; }
.footer-links { display: grid; gap: .55rem; }
.footer-links a { color: #aebdd2; font-size: .88rem; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: grid; gap: .8rem; color: #aebdd2; font-size: .87rem; }
.footer-contact strong { display: block; color: #fff; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1.25rem 0 2rem; border-top: 1px solid rgba(255,255,255,.1); color: #8799b4; font-size: .78rem; }
.footer-bottom-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.footer-bottom a:hover { color: #fff; }

.whatsapp-float { position: fixed; right: 1.25rem; bottom: 1.25rem; z-index: 60; display: grid; width: 3.75rem; height: 3.75rem; place-items: center; border-radius: 50%; color: #fff; background: var(--green-bright); box-shadow: 0 16px 36px rgba(18,140,79,.38); }
.whatsapp-float:hover { transform: translateY(-3px); background: var(--green); }
.whatsapp-float svg { width: 2rem; fill: currentColor; }

.modal { position: fixed; inset: 0; z-index: 100; display: none; align-items: center; justify-content: center; padding: 1rem; }
.modal.is-open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; border: 0; background: rgba(2,15,35,.72); backdrop-filter: blur(5px); }
.modal-dialog { position: relative; z-index: 1; width: min(100%, 720px); max-height: calc(100vh - 2rem); overflow: auto; border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-lg); }
.modal-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; padding: 1.5rem 1.6rem; color: #fff; background: var(--navy); }
.modal-head h2 { margin: 0; font-size: 1.55rem; }
.modal-head p { margin: .3rem 0 0; color: #c9d8ec; font-size: .88rem; }
.modal-close { display: grid; flex: 0 0 auto; width: 2.5rem; height: 2.5rem; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: .75rem; color: #fff; background: rgba(255,255,255,.08); }
.modal-close svg { width: 1.25rem; fill: currentColor; }
.quote-form { display: grid; gap: 1rem; padding: 1.6rem; }
.form-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field.full { grid-column: 1 / -1; }
.field label { color: #45536a; font-size: .78rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.field input, .field select, .field textarea { width: 100%; min-height: 3.1rem; padding: .75rem .85rem; border: 1px solid #ccd7e5; border-radius: .8rem; color: var(--ink); background: #fff; }
.field textarea { min-height: 6rem; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--blue); outline: 3px solid rgba(7,86,181,.12); }
.form-note { margin: 0; color: #7a879a; font-size: .76rem; text-align: center; }

.cookie-banner { position: fixed; left: 50%; bottom: 1rem; z-index: 120; display: none; width: min(calc(100% - 2rem), 860px); transform: translateX(-50%); border: 1px solid #cfd9e6; border-radius: 1.2rem; background: #fff; box-shadow: 0 24px 70px rgba(3,28,66,.24); }
.cookie-banner.is-visible { display: block; }
.cookie-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; padding: 1.1rem 1.2rem; }
.cookie-inner p { margin: 0; color: #4e5d72; font-size: .83rem; }
.cookie-inner a { color: var(--blue); text-decoration: underline; }
.cookie-actions { display: flex; flex: 0 0 auto; gap: .55rem; }
.cookie-actions .btn { min-height: 2.55rem; padding: .6rem .9rem; font-size: .8rem; }

.notice { padding: 1rem 1.1rem; border-left: 4px solid var(--blue); border-radius: .2rem .8rem .8rem .2rem; color: #425167; background: var(--blue-soft); }
.notice.warning { border-left-color: var(--orange); background: var(--orange-soft); }
.pill-row { display: flex; flex-wrap: wrap; gap: .5rem; margin: 1rem 0; }
.pill { display: inline-flex; padding: .35rem .65rem; border: 1px solid #d7e1ee; border-radius: 999px; color: #4d5c72; background: #fff; font-size: .78rem; font-weight: 750; }

@media (max-width: 1100px) {
  .primary-nav { gap: .8rem; }
  .primary-nav > a:not(.btn) { font-size: .8rem; }
  .primary-nav .btn { padding-inline: .9rem; font-size: .8rem; }
  .card-grid.four { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-main { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-main > :last-child { grid-column: 2 / -1; }
}

@media (max-width: 940px) {
  .topbar { display: none; }
  .header-inner { min-height: 4.6rem; }
  .logo { width: 200px; }
  .menu-toggle { display: block; }
  .primary-nav { position: absolute; left: 1rem; right: 1rem; top: calc(100% + .5rem); display: none; align-items: stretch; flex-direction: column; padding: 1rem; border: 1px solid var(--line); border-radius: 1rem; background: #fff; box-shadow: var(--shadow-lg); }
  .primary-nav.is-open { display: flex; }
  .primary-nav > a:not(.btn) { padding: .45rem .3rem; font-size: .92rem; }
  .hero-inner, .page-hero-inner { grid-template-columns: 1fr; }
  .hero-inner { min-height: auto; padding: 4.5rem 0 5rem; }
  .hero-visual, .page-hero-visual { display: none; }
  .hero-copy h1 { max-width: 800px; }
  .card-grid, .location-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .process-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .team-grid { grid-template-columns: 1fr; }
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .contact-panel { grid-template-columns: 1fr; }
  .contact-map { min-height: 310px; }
}

@media (max-width: 760px) {
  .section { padding: 4rem 0; }
  .section-sm { padding: 2.8rem 0; }
  .hero-copy h1, .page-hero h1 { font-size: clamp(2.4rem,11vw,3.75rem); }
  .trust-strip { margin-top: -1rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item { border-top: 1px solid var(--line); border-left: 0; }
  .card-grid, .card-grid.two, .card-grid.four, .location-grid, .info-grid { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; gap: 2rem; }
  .split.reverse > :first-child { order: 0; }
  .visual-panel, .visual-panel img { min-height: 330px; }
  .cta-band-inner { align-items: flex-start; flex-direction: column; padding: 1.6rem; }
  .cta-actions { width: 100%; }
  .cta-actions .btn { flex: 1; }
  .article-aside { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main > :last-child { grid-column: auto; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .cookie-inner { align-items: stretch; flex-direction: column; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; }
}

@media (max-width: 520px) {
  .container, .narrow { width: min(calc(100% - 1.25rem), var(--max)); }
  .logo { width: 175px; }
  .hero-inner { padding: 3.6rem 0 4.5rem; }
  .hero-actions, .page-hero .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .process-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .whatsapp-float { right: .8rem; bottom: .8rem; width: 3.4rem; height: 3.4rem; }
  .modal { padding: .5rem; }
  .modal-dialog { max-height: calc(100vh - 1rem); border-radius: 1.2rem; }
  .modal-head, .quote-form { padding: 1.1rem; }
}

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

@media print {
  .topbar, .site-header, .hero-actions, .cta-band, .whatsapp-float, .cookie-banner, .site-footer, .article-aside { display: none!important; }
  body { color: #000; background: #fff; }
  .page-hero { color: #000; background: #fff; }
  .page-hero .lead, .page-hero .breadcrumbs { color: #333; }
  .section { padding: 1.5rem 0; }
}
