:root {
    --brand: #0e6fd1;
    --brand-dark: #0a4f96;
    --brand-darker: #0b3c73;
    --accent: #f5a524;
    --ink: #12202f;
    --body: #45566a;
    --muted: #5b6c81;
    --line: #e2e8f0;
    --bg: #ffffff;
    --bg-soft: #f4f7fb;
    --radius: 14px;
    --radius-lg: 22px;
    --shadow: 0 1px 2px rgba(16, 32, 47, .06), 0 12px 32px -12px rgba(16, 32, 47, .18);
    --shadow-sm: 0 1px 2px rgba(16, 32, 47, .06), 0 6px 18px -10px rgba(16, 32, 47, .16);
    --container: 1140px;
    --font: "Manrope", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--bg); color: var(--body); font: 400 16px/1.65 var(--font); }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: clamp(18px, 4vw, 28px); }
.skip-link { position: fixed; left: 1rem; top: -4rem; z-index: 300; padding: .7rem 1rem; color: #fff; background: var(--brand-darker); border-radius: 8px; }
.skip-link:focus { top: 1rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

.site-header { position: sticky; top: 0; z-index: 100; height: 78px; background: rgba(255,255,255,.96); border-bottom: 1px solid rgba(226,232,240,.85); backdrop-filter: saturate(160%) blur(10px); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); }
.brand-mark { display: grid; place-items: center; width: 40px; height: 40px; color: #fff; font-weight: 800; font-size: 1.1rem; border-radius: 8px; background: var(--brand-darker); box-shadow: 3px 3px 0 var(--accent); }
.brand-copy { display: grid; line-height: 1.05; }
.brand-copy strong { font-size: .95rem; letter-spacing: .08em; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: .48rem; font-weight: 800; letter-spacing: .14em; }
.site-nav { display: flex; align-items: center; gap: clamp(18px, 2.5vw, 32px); color: var(--body); font-size: .79rem; font-weight: 700; }
.site-nav a:not(.nav-phone) { transition: color .18s ease; }
.site-nav a:not(.nav-phone):hover { color: var(--brand); }
.nav-phone { display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px; color: #fff; border-radius: 999px; background: var(--brand); box-shadow: 0 10px 24px -12px rgba(14,111,209,.9); transition: background .18s ease, transform .18s ease; }
.nav-phone:hover { background: var(--brand-dark); transform: translateY(-1px); }
.phone-icon { font-size: 1.1rem; transform: rotate(-25deg); }
.menu-toggle { display: none; border: 0; background: none; cursor: pointer; }

.section { padding: clamp(68px, 8vw, 112px) 0; }
.hero { position: relative; overflow: hidden; padding: clamp(68px, 8vw, 108px) 0 82px; background-color: var(--bg-soft); background-image: linear-gradient(rgba(14,111,209,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(14,111,209,.035) 1px, transparent 1px); background-size: 36px 36px; }
.hero::before { position: absolute; inset: 0 0 auto; height: 5px; background: linear-gradient(90deg, var(--brand) 0 76%, var(--accent) 76% 80%, transparent 80%); content: ""; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px, 6vw, 82px); align-items: center; }
.eyebrow { margin: 0 0 12px; color: var(--brand-dark); font-size: .68rem; font-weight: 800; letter-spacing: .16em; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { color: var(--ink); }
h1 { max-width: 650px; margin-bottom: 22px; font-size: clamp(2.4rem, 1.6rem + 3vw, 4.1rem); font-weight: 800; line-height: 1.07; letter-spacing: -.02em; }
h2 { margin-bottom: 16px; font-size: clamp(2rem, 1.6rem + 1.6vw, 3rem); font-weight: 800; line-height: 1.12; letter-spacing: -.03em; }
h3 { font-size: 1rem; line-height: 1.35; }
.hero-text { max-width: 560px; margin-bottom: 28px; font-size: 1.02rem; color: var(--muted); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55em; border: 1.5px solid transparent; border-radius: 999px; cursor: pointer; font-weight: 800; transition: transform .18s ease, background .18s ease, border-color .18s ease, box-shadow .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-lg { padding: .9em 1.35em; font-size: .86rem; }
.btn-primary { color: #fff; background: var(--brand); box-shadow: 0 10px 24px -12px rgba(14,111,209,.8); }
.btn-primary:hover { background: var(--brand-dark); box-shadow: 0 13px 28px -12px rgba(14,111,209,.9); }
.btn-ghost { color: var(--brand-dark); border-color: var(--line); background: rgba(255,255,255,.65); }
.btn-ghost:hover { border-color: #b9d3ee; background: #fff; }
.hero-points { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 20px; color: var(--ink); font-size: .72rem; font-weight: 700; }
.hero-points span { display: inline-flex; align-items: center; gap: 6px; }
.hero-points i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(245,165,36,.15); }
.hero-visual { position: relative; min-height: 450px; }
.hero-visual::before { position: absolute; top: 8%; right: 0; width: 78%; height: 78%; border-radius: 8px; background: var(--brand-dark); content: ""; }
.image-frame { position: absolute; top: 28px; right: 16px; width: min(100%, 520px); height: 360px; overflow: hidden; border: 5px solid #fff; border-radius: 8px; box-shadow: 0 22px 48px -24px rgba(9,47,92,.45); }
.image-frame picture { display: block; width: 100%; height: 100%; }
.image-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.92) contrast(1.02); }
.image-shine { position: absolute; inset: 0; background: linear-gradient(115deg, rgba(255,255,255,.18), transparent 35%); pointer-events: none; }
.location-card { position: absolute; left: 0; bottom: 36px; display: flex; align-items: center; gap: 10px; padding: 13px 17px; background: #fff; border: 1px solid var(--line); border-radius: 8px; box-shadow: 5px 5px 0 var(--accent); }
.location-pin { display: grid; place-items: center; width: 31px; height: 31px; color: var(--brand); border-radius: 9px; background: #eaf3fc; font-size: 1.25rem; }
.location-card div { display: grid; line-height: 1.35; }
.location-card strong { color: var(--ink); font-size: .7rem; }
.location-card small { color: var(--muted); font-size: .62rem; }
.hero-badge { position: absolute; top: 0; right: 0; display: grid; place-items: center; width: 88px; height: 88px; color: #fff; text-align: center; border: 4px solid var(--bg-soft); border-radius: 50%; background: var(--brand-darker); }
.hero-badge strong { font-size: 1.45rem; line-height: 1; }
.hero-badge span { width: 60px; font-size: .56rem; font-weight: 700; line-height: 1.2; }

.trust-strip { position: relative; z-index: 2; padding: 22px 0; background: var(--brand-darker); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.trust-card { display: flex; gap: 12px; min-height: 120px; padding: 16px 14px; border-right: 1px solid rgba(205,217,234,.2); }
.trust-card:last-child { border-right: 0; }
.trust-card h3 { color: #fff; }
.trust-card p { color: #b6cbe1; }
.icon-box, .service-icon { flex: 0 0 auto; display: grid; place-items: center; width: 38px; height: 38px; color: var(--brand); font-size: 1.45rem; border-radius: 8px; background: #edf5fd; }
.trust-card .icon-box { color: var(--accent); background: rgba(245,165,36,.12); }
.accent-icon { color: var(--accent); }
.trust-card h3 { margin: 2px 0 7px; font-size: .82rem; }
.trust-card p, .service-card p { margin-bottom: 0; color: var(--muted); font-size: .72rem; line-height: 1.55; }
.section-head { max-width: 650px; margin: 0 auto 46px; text-align: center; }
.section-head > p:last-child { margin-bottom: 0; color: var(--muted); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card { padding: 26px 23px 22px; background: #fff; border: 1px solid var(--line); border-top: 3px solid var(--brand); border-radius: 8px; box-shadow: none; transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.service-card:hover { border-color: #cfe0f4; border-top-color: var(--accent); box-shadow: 0 12px 28px -20px rgba(11,60,115,.55); transform: translateY(-3px); }
.service-icon { width: 46px; height: 46px; margin-bottom: 22px; color: var(--brand-dark); font-size: 1.5rem; background: #edf5fd; }
.service-card h3 { margin-bottom: 10px; }
.text-link { display: inline-flex; gap: 8px; margin-top: 22px; color: var(--brand-dark); font-size: .78rem; font-weight: 800; }
.text-link span { transition: transform .18s ease; }
.text-link:hover span { transform: translateX(4px); }
.service-card summary { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; color: var(--brand-dark); font-size: .78rem; font-weight: 800; cursor: pointer; list-style: none; }
.service-card summary::-webkit-details-marker { display: none; }
.service-card summary span { display: inline-block; transition: transform .18s ease; }
.service-card details:not([open]) summary:hover span { transform: translateX(4px); }
.service-card details[open] summary span { transform: rotate(90deg); }
.service-card .service-more { margin-top: 12px; font-size: .78rem; line-height: 1.6; }
.service-highlight { background: var(--brand-darker); border-color: var(--brand-darker); }
.service-highlight h3, .service-highlight summary { color: #fff; }
.service-highlight .service-more { color: #cdd9ea; }
.service-highlight p { color: #cdd9ea; }
.service-highlight .service-icon { color: var(--accent); background: rgba(245,165,36,.16); }

.gallery-section { background: var(--bg-soft); }
.gallery-intro { display: grid; grid-template-columns: 1fr .85fr; gap: 40px; align-items: end; margin-bottom: 34px; }
.gallery-intro h2 { margin-bottom: 0; }
.gallery-intro > p { max-width: 510px; margin: 0 0 4px; color: var(--muted); font-size: .88rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-photo { position: relative; min-width: 0; margin: 0; overflow: hidden; aspect-ratio: 1.3; border: 1px solid var(--line); border-radius: var(--radius); background: #dce6ef; box-shadow: var(--shadow-sm); }
.gallery-photo picture { display: block; width: 100%; height: 100%; }
.gallery-photo img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.gallery-photo:hover img { transform: scale(1.035); }
.gallery-photo figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 28px 16px 14px; color: #fff; background: linear-gradient(transparent, rgba(9,47,92,.8)); font-size: .78rem; font-weight: 800; }

.section-alt { background: var(--bg-soft); }
.process-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(38px, 7vw, 100px); align-items: start; }
.align-left { margin: 0; text-align: left; }
.align-left h2 { max-width: 460px; }
.text-link { font-size: .85rem; }
.steps-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.step { position: relative; padding: 24px; border-top: 2px solid #d7e7f7; }
.step > span { display: block; margin-bottom: 22px; color: var(--brand); font-size: .76rem; font-weight: 800; letter-spacing: .1em; }
.step h3 { margin-bottom: 9px; font-size: 1.05rem; }
.step p { margin-bottom: 0; color: var(--muted); font-size: .78rem; }

.contact-section { color: #cdd9ea; background: var(--brand-darker); }
.contact-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(38px, 8vw, 120px); align-items: center; }
.contact-copy .eyebrow { color: #8cc4f5; }
.contact-copy h2 { color: #fff; }
.contact-copy h2 em { color: #8cc4f5; font-style: normal; }
.contact-copy > p { max-width: 440px; color: #b6cbe1; }
.contact-detail { display: flex; gap: 12px; align-items: center; margin-top: 24px; }
.contact-detail > span { display: grid; place-items: center; width: 38px; height: 38px; color: var(--accent); border: 1px solid rgba(245,165,36,.28); border-radius: 10px; }
.contact-detail div { display: grid; line-height: 1.4; }
.contact-detail strong { color: #fff; font-size: .84rem; }
.contact-detail small { color: #9db6d6; font-size: .69rem; }
.contact-detail a:hover strong { color: #8cc4f5; }
.contact-map { overflow: hidden; border-radius: 10px; box-shadow: 8px 8px 0 rgba(245,165,36,.9); }
.contact-map iframe { display: block; width: 100%; height: 420px; border: 0; }

.legal-section h1 { max-width: none; font-size: clamp(2rem, 1.6rem + 1.6vw, 3rem); }
.legal { max-width: 720px; }
.legal .lead { max-width: 620px; margin-bottom: 8px; color: var(--muted); font-size: 1.02rem; }
.legal h2 { margin-top: 44px; font-size: 1.3rem; }
.legal dl { margin: 18px 0 0; }
.legal dt { margin-top: 16px; color: var(--ink); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.legal dt:first-child { margin-top: 0; }
.legal dd { margin: 5px 0 0; color: var(--body); font-size: .92rem; line-height: 1.6; }
.legal dd a { color: var(--brand-dark); font-weight: 700; }
.legal dd a:hover { text-decoration: underline; }
.legal > p { max-width: 660px; color: var(--body); font-size: .92rem; line-height: 1.65; }
.legal .back { margin-top: 40px; }

.faq-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 8vw, 120px); }
.faq-list details { padding: 20px 0; border-bottom: 1px solid var(--line); }
.faq-list details:first-child { border-top: 1px solid var(--line); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; color: var(--ink); font-size: .95rem; font-weight: 800; cursor: pointer; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; color: var(--brand); font-size: 1.4rem; font-weight: 400; }
.faq-list details[open] summary { color: var(--brand-dark); }
.faq-list details[open] summary::after { content: "−"; }
.faq-list details p { max-width: 640px; margin: 12px 38px 0 0; color: var(--muted); font-size: .82rem; }

.site-footer { padding: 58px 0 22px; color: #cdd9ea; background: #092f5c; border-top: 5px solid var(--accent); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; padding-bottom: 48px; }
.footer-brand { color: #fff; }
.footer-grid > div:first-child p { max-width: 320px; margin-top: 18px; color: #9db6d6; font-size: .77rem; }
.site-footer h3 { margin: 4px 0 16px; color: #fff; font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.site-footer > .container > div:not(:first-child) a, .site-footer > .container > div:not(:first-child) span { display: block; margin: 9px 0; color: #b7cbe2; font-size: .78rem; }
.site-footer a:hover { color: #fff !important; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 18px; color: #86a7ce; border-top: 1px solid rgba(205,217,234,.16); font-size: .68rem; }
.footer-bottom a { color: #cdd9ea; font-weight: 700; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: .13s; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
@media (max-width: 1080px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 860px) {
    .site-header { height: 66px; }
    .menu-toggle { display: grid; gap: 4px; padding: 9px; }
    .menu-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); transition: transform .18s ease, opacity .18s ease; }
    .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
    .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
    .site-nav { position: absolute; top: 66px; right: 0; left: 0; display: grid; gap: 0; max-height: 0; padding: 0 22px; overflow: hidden; background: rgba(255,255,255,.98); border-bottom: 1px solid transparent; transition: max-height .25s ease, padding .25s ease, border-color .25s ease; }
    .site-nav.open { max-height: 420px; padding: 10px 22px 20px; border-color: var(--line); }
    .site-nav a:not(.nav-phone) { padding: 12px 0; border-bottom: 1px solid var(--line); }
    .nav-phone { width: max-content; margin-top: 15px; }
    .hero-grid, .process-layout, .faq-layout { grid-template-columns: 1fr; }
    .gallery-intro { grid-template-columns: 1fr; gap: 16px; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-grid { gap: 30px; }
    .hero-visual { order: -1; min-height: 390px; }
    .trust-card { border-right: 0; border-bottom: 1px solid rgba(205,217,234,.2); }
    .trust-card:nth-last-child(-n+2) { border-bottom: 0; }
    .hero-copy { max-width: 700px; }
    .process-layout { gap: 45px; }
    .contact-layout { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 620px) {
    body { font-size: 16px; }
    .section { padding: 64px 0; }
    h1 { font-size: 2.5rem; }
    .hero { padding-top: 46px; }
    .hero-actions, .hero-actions .btn { width: 100%; }
    .hero-actions .btn { text-align: center; }
    .hero-points { gap: 10px 14px; }
    .hero-visual { min-height: 310px; }
    .image-frame { top: 20px; right: 10px; height: 250px; }
    .location-card { left: 0; bottom: 13px; }
    .hero-badge { top: 0; right: 0; width: 76px; height: 76px; }
    .trust-grid, .card-grid, .steps-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; }
    .trust-card { min-height: auto; border-bottom: 1px solid rgba(205,217,234,.2); }
    .trust-card:last-child { border-bottom: 0; }
    .section-head { margin-bottom: 32px; text-align: left; }
    .section-head h2 { font-size: 2rem; }
    .contact-map iframe { height: 280px; }
    .footer-grid { grid-template-columns: 1fr; gap: 26px; padding-bottom: 32px; }
    .footer-bottom { display: grid; gap: 10px; }
}
@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; } }
