:root {
    --ink: #102033;
    --muted: #5f6f7f;
    --line: #dfe6eb;
    --surface: #ffffff;
    --soft: #f5f7f8;
    --navy: var(--brand-dark, #061a35);
    --blue: var(--brand-primary, #0a2852);
    --green: var(--brand-green, #5c9e3a);
    --ochre: var(--brand-ochre, #d89a2b);
    --sky: var(--brand-sky, #43a7d5);
    --radius-sm: 10px;
    --radius: 18px;
    --radius-lg: 30px;
    --shadow-sm: 0 8px 26px rgba(6, 26, 53, .07);
    --shadow: 0 22px 60px rgba(6, 26, 53, .12);
    --container: 1240px;
    --transition: 180ms ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 112px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
p, h1, h2, h3, h4, ul, ol { margin-top: 0; }
h1, h2, h3, h4 {
    color: var(--navy);
    font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
    letter-spacing: -.025em;
    line-height: 1.12;
}
h1 { font-size: clamp(2.55rem, 5vw, 5.2rem); }
h2 { font-size: clamp(2rem, 3.4vw, 3.4rem); }
h3 { font-size: clamp(1.2rem, 1.8vw, 1.55rem); }
p:last-child { margin-bottom: 0; }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: clamp(76px, 9vw, 128px) 0; }
.section-soft { background: var(--soft); }
.section-dark { color: #fff; background: var(--navy); }
.section-dark h2, .section-dark h3 { color: #fff; }
.section-heading { max-width: 790px; margin-bottom: 48px; }
.section-heading.center { margin-inline: auto; text-align: center; }
.section-heading p { color: var(--muted); font-size: 1.08rem; }
.section-dark .section-heading p { color: rgba(255, 255, 255, .72); }
.narrow { max-width: 840px; }
.center { text-align: center; }
.lead { color: var(--muted); font-size: 1.1rem; }
.page-intro { padding: clamp(62px, 8vw, 105px) 0 clamp(50px, 7vw, 88px); background: linear-gradient(145deg, #f4f8fa 0%, #fff 70%); }
.page-intro h1 { margin-bottom: 20px; }
.page-intro p { max-width: 720px; margin-inline: auto; color: var(--muted); font-size: 1.12rem; }
.split-layout { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px, 7vw, 90px); align-items: start; }
.situation-panel { padding: clamp(26px, 4vw, 38px); background: var(--soft); border: 1px solid var(--line); border-radius: var(--radius); }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 11px; margin: 12px 0; }
.check-list li::before { color: var(--green); content: "✓"; font-weight: 900; }
.image-label { position: absolute; z-index: 3; right: 14px; bottom: 14px; left: 14px; padding: 8px 11px; color: #fff; background: rgba(6, 26, 53, .84); border-radius: 9px; font-size: .68rem; line-height: 1.35; }
.error-page { display: grid; min-height: 62vh; place-items: center; padding: 90px 0 130px; background: var(--soft); }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 16px;
    color: var(--blue);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}
.eyebrow::before { width: 30px; height: 3px; content: ""; background: currentColor; border-radius: 9px; }
.section-dark .eyebrow { color: #9fd5ee; }
.visually-hidden {
    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;
}
.skip-link { position: fixed; z-index: 9999; top: 10px; left: 10px; padding: 12px 16px; color: #fff; background: var(--navy); transform: translateY(-160%); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid #ffbf4d; outline-offset: 3px; }

.button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 22px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.button:hover { transform: translateY(-2px); }
.button-primary { color: #fff; background: var(--blue); box-shadow: 0 12px 28px rgba(10, 40, 82, .2); }
.button-primary:hover { background: var(--navy); box-shadow: 0 16px 34px rgba(6, 26, 53, .24); }
.button-secondary { color: var(--navy); background: #fff; border-color: rgba(6, 26, 53, .16); }
.button-secondary:hover { border-color: var(--blue); }
.button-light { color: var(--navy); background: #fff; }
.button-outline-light { color: #fff; border-color: rgba(255, 255, 255, .45); background: rgba(255, 255, 255, .05); }
.button-outline { color: var(--navy); border-color: rgba(6, 26, 53, .25); background: transparent; }
.button-block { width: 100%; }
.button-small { min-height: 44px; padding: 10px 17px; font-size: .9rem; }
.text-link { display: inline-flex; align-items: center; gap: 8px; color: var(--blue); font-weight: 800; text-underline-offset: 4px; }

.utility-bar { color: rgba(255, 255, 255, .86); background: var(--navy); font-size: .78rem; }
.utility-inner { display: flex; min-height: 38px; align-items: center; justify-content: space-between; gap: 20px; }
.utility-inner p { margin: 0; }
.utility-links { display: flex; gap: 24px; }
.utility-links a { display: inline-flex; align-items: center; gap: 7px; text-decoration: none; }
.utility-links a:hover { color: #fff; }

.site-header { position: sticky; z-index: 1000; top: 0; background: rgba(255, 255, 255, .97); border-bottom: 1px solid rgba(6, 26, 53, .08); backdrop-filter: blur(14px); }
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(6, 26, 53, .09); }
.header-inner { display: flex; min-height: 86px; align-items: center; justify-content: space-between; gap: 30px; }
.brand { flex: 0 0 auto; }
.brand img { width: 245px; height: auto; }
.main-nav { display: flex; align-items: center; gap: clamp(14px, 1.7vw, 28px); }
.main-nav > a { position: relative; color: var(--ink); font-size: .92rem; font-weight: 750; text-decoration: none; }
.main-nav > a:not(.nav-cta):not(.nav-phone)::after { position: absolute; right: 0; bottom: -9px; left: 0; height: 2px; content: ""; background: var(--blue); transform: scaleX(0); transform-origin: right; transition: transform var(--transition); }
.main-nav > a:hover::after, .main-nav > a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; color: var(--blue) !important; white-space: nowrap; }
.nav-cta { padding: 11px 17px; color: #fff !important; background: var(--blue); border-radius: 999px; box-shadow: 0 8px 20px rgba(10, 40, 82, .18); }
.nav-cta:hover { background: var(--navy); }
.menu-toggle { display: none; width: 48px; height: 48px; padding: 0; border: 0; border-radius: 12px; background: var(--navy); }
.menu-toggle span { display: block; width: 22px; height: 2px; margin: 5px auto; background: #fff; border-radius: 3px; transition: transform var(--transition), opacity var(--transition); }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-service-nav { display: none; }

.hero-home { position: relative; overflow: hidden; color: #fff; background: var(--navy); }
.hero-home::before { position: absolute; inset: 0; content: ""; background: radial-gradient(circle at 15% 5%, rgba(67, 167, 213, .18), transparent 35%), radial-gradient(circle at 80% 90%, rgba(92, 158, 58, .14), transparent 30%); }
.hero-grid { position: relative; display: grid; min-height: 690px; grid-template-columns: minmax(0, 1.05fr) minmax(420px, .85fr); align-items: center; gap: clamp(40px, 7vw, 90px); padding-block: clamp(72px, 9vw, 118px); }
.hero-copy { position: relative; z-index: 2; }
.hero-copy .eyebrow { color: #9fd5ee; }
.hero-copy h1 { max-width: 850px; margin-bottom: 26px; color: #fff; }
.hero-copy > p { max-width: 760px; margin-bottom: 32px; color: rgba(255, 255, 255, .78); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px 24px; margin: 28px 0 0; padding: 0; list-style: none; color: rgba(255, 255, 255, .86); font-size: .9rem; }
.hero-trust li { display: flex; align-items: center; gap: 8px; }
.hero-trust i { color: #8cc665; }
.hero-visual { position: relative; min-height: 530px; }
.hero-visual::before { position: absolute; inset: 34px -28px -28px 42px; content: ""; border: 1px solid rgba(255, 255, 255, .18); border-radius: var(--radius-lg); }
.hero-visual img { position: absolute; width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); box-shadow: 0 32px 80px rgba(0, 0, 0, .35); }
.hero-visual-badge { position: absolute; z-index: 2; right: -20px; bottom: 28px; width: 220px; padding: 20px; color: var(--ink); background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-visual-badge strong { display: block; color: var(--blue); font-size: 1.3rem; }
.hero-visual-badge span { font-size: .82rem; line-height: 1.35; }
.illustration-label { position: absolute; z-index: 3; right: 15px; top: 15px; padding: 6px 10px; color: #fff; background: rgba(6, 26, 53, .82); border-radius: 999px; font-size: .7rem; font-weight: 700; }

.proof-strip { position: relative; z-index: 5; margin-top: -34px; }
.proof-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); background: #fff; border: 1px solid rgba(6, 26, 53, .08); border-radius: 20px; box-shadow: var(--shadow); }
.proof-item { display: flex; min-height: 105px; align-items: center; gap: 15px; padding: 24px; border-right: 1px solid var(--line); }
.proof-item:last-child { border-right: 0; }
.proof-item i { display: grid; width: 42px; height: 42px; flex: 0 0 auto; place-items: center; color: #fff; background: var(--blue); border-radius: 12px; }
.proof-item strong { display: block; color: var(--navy); font-size: .95rem; line-height: 1.3; }
.proof-item span { display: block; color: var(--muted); font-size: .78rem; line-height: 1.35; }

.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card { position: relative; overflow: hidden; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform var(--transition), box-shadow var(--transition); }
.service-card:hover { transform: translateY(-7px); box-shadow: var(--shadow); }
.service-card-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.service-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.service-card:hover .service-card-media img { transform: scale(1.035); }
.service-card-media span { position: absolute; left: 16px; bottom: 16px; padding: 7px 11px; color: #fff; background: rgba(6, 26, 53, .88); border-radius: 999px; font-size: .72rem; font-weight: 800; }
.service-card-body { padding: 28px; }
.service-card-icon { display: grid; width: 50px; height: 50px; margin-top: -54px; margin-bottom: 22px; position: relative; place-items: center; color: #fff; background: var(--blue); border: 5px solid #fff; border-radius: 16px; box-sizing: content-box; }
.service-card.green .service-card-icon { background: var(--green); }
.service-card.ochre .service-card-icon { background: var(--ochre); }
.service-card.sky .service-card-icon { background: var(--sky); }
.service-card h3 { margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: .95rem; }
.service-card ul { margin: 20px 0; padding: 0; list-style: none; }
.service-card li { display: flex; gap: 9px; margin: 8px 0; font-size: .88rem; }
.service-card li::before { color: var(--green); content: "✓"; font-weight: 900; }

.situations-section { position: relative; overflow: hidden; background: linear-gradient(180deg, #f5f7f8 0%, #eef3f5 100%); }
.situations-section::before, .situations-section::after { position: absolute; width: 360px; height: 360px; content: ""; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.situations-section::before { top: -240px; left: -170px; background: rgba(92, 158, 58, .09); }
.situations-section::after { right: -210px; bottom: -250px; background: rgba(67, 167, 213, .11); }
.situations-heading { position: relative; z-index: 1; max-width: 840px; }
.situations-heading h2 { max-width: 760px; margin-inline: auto; }
.situations-grid { position: relative; z-index: 1; display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.situation-card {
    --situation-accent: var(--blue);
    --situation-soft: #eaf0f7;
    position: relative;
    display: flex;
    min-height: 390px;
    overflow: hidden;
    flex-direction: column;
    padding: 30px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(6, 26, 53, .1);
    border-radius: 22px;
    box-shadow: 0 14px 40px rgba(6, 26, 53, .07);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.situation-card::before { position: absolute; top: 0; right: 0; left: 0; height: 5px; content: ""; background: var(--situation-accent); }
.situation-card:hover { transform: translateY(-5px); border-color: var(--situation-accent); box-shadow: 0 24px 54px rgba(6, 26, 53, .13); }
.situation-card.green { --situation-accent: var(--green); --situation-soft: #eef7e9; }
.situation-card.ochre { --situation-accent: var(--ochre); --situation-soft: #fff6e5; }
.situation-card.sky { --situation-accent: var(--sky); --situation-soft: #eaf7fc; }
.situation-card-head { display: flex; align-items: center; gap: 13px; margin-bottom: 25px; }
.situation-icon { display: grid; width: 48px; height: 48px; flex: 0 0 auto; place-items: center; color: #fff; background: var(--situation-accent); border-radius: 15px; box-shadow: 0 9px 20px color-mix(in srgb, var(--situation-accent) 24%, transparent); }
.situation-icon i { font-size: 1.08rem; }
.situation-label { color: var(--situation-accent); font-size: .76rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.situation-problem > span, .situation-answer > span { display: block; margin-bottom: 8px; color: var(--muted); font-size: .7rem; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
.situation-problem h3 { margin: 0; font-size: clamp(1.35rem, 2vw, 1.72rem); line-height: 1.22; }
.situation-answer { margin: 24px 0 21px; padding: 20px 21px; background: var(--situation-soft); border-radius: 15px; }
.situation-answer > span { color: var(--situation-accent); }
.situation-answer > span i { margin-right: 5px; }
.situation-answer p { margin: 0; color: #34485a; font-size: .93rem; font-weight: 600; line-height: 1.55; }
.situation-link { display: inline-flex; width: fit-content; align-items: center; gap: 9px; margin-top: auto; color: var(--navy); font-size: .88rem; font-weight: 850; text-decoration: none; }
.situation-link i { color: var(--situation-accent); transition: transform var(--transition); }
.situation-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.situation-link:hover i { transform: translateX(4px); }
.situations-cta { position: relative; z-index: 1; display: grid; grid-template-columns: auto 1fr auto; gap: 20px; align-items: center; margin-top: 24px; padding: 25px 28px; color: #fff; background: linear-gradient(120deg, var(--navy), var(--blue)); border-radius: 20px; box-shadow: 0 18px 46px rgba(6, 26, 53, .2); }
.situations-cta-icon { display: grid; width: 54px; height: 54px; place-items: center; color: var(--navy); background: #fff; border-radius: 16px; }
.situations-cta strong { display: block; margin-bottom: 3px; color: #fff; font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif; font-size: 1.12rem; }
.situations-cta p { margin: 0; color: rgba(255, 255, 255, .74); font-size: .88rem; line-height: 1.5; }
.situations-cta .button { min-width: 210px; }

.advantages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.advantage-card { padding: 28px; border: 1px solid rgba(255, 255, 255, .13); background: rgba(255, 255, 255, .055); border-radius: var(--radius); }
.advantage-card i { display: grid; width: 46px; height: 46px; margin-bottom: 20px; place-items: center; color: var(--navy); background: #fff; border-radius: 13px; }
.advantage-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.advantage-card p { color: rgba(255, 255, 255, .68); font-size: .9rem; }

.gallery-note { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-bottom: 30px; padding: 20px 24px; background: #fff8e8; border-left: 4px solid var(--ochre); border-radius: 0 12px 12px 0; }
.gallery-note p { margin: 0; font-size: .92rem; }
.gallery-grid { display: grid; grid-template-columns: 1.25fr .75fr .75fr; gap: 18px; }
.gallery-card { position: relative; min-height: 340px; overflow: hidden; border-radius: var(--radius); }
.gallery-card img { width: 100%; height: 100%; object-fit: cover; }
.gallery-card figcaption { position: absolute; right: 0; bottom: 0; left: 0; padding: 50px 20px 18px; color: #fff; background: linear-gradient(transparent, rgba(6, 26, 53, .9)); font-size: .8rem; }
.gallery-filters { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 22px; }
.gallery-filters button { min-height: 44px; padding: 9px 18px; border: 1px solid var(--line); border-radius: 999px; color: var(--navy); background: #fff; cursor: pointer; font: inherit; font-weight: 800; }
.gallery-filters button.active, .gallery-filters button:hover { color: #fff; border-color: var(--blue); background: var(--blue); }
.gallery-grid .gallery-card { min-height: 0; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.gallery-card-media { position: relative; height: 230px; overflow: hidden; }
.gallery-card-media img { transition: transform var(--transition); }
.gallery-card:hover .gallery-card-media img { transform: scale(1.025); }
.gallery-card-media span { position: absolute; top: 12px; left: 12px; padding: 6px 10px; border-radius: 999px; color: #fff; background: rgba(6, 26, 53, .86); font-size: .72rem; font-weight: 850; }
.gallery-card-content { padding: 20px; }
.gallery-card-content h3 { margin: 0 0 12px; font-size: 1.2rem; }
.gallery-card-content p { margin: 8px 0; font-size: .9rem; }
.gallery-card-content .gallery-category { color: var(--blue); font-size: .76rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }

.project-showcase { position: relative; overflow: hidden; }
.project-showcase .section-heading { max-width: 900px; margin-bottom: 30px; }
.project-disclaimer { display: grid; max-width: 1030px; grid-template-columns: auto 1fr; gap: 18px; align-items: center; margin: 0 auto 38px; padding: 18px 22px; background: #fff; border: 1px solid rgba(var(--service-accent-rgb), .26); border-radius: 16px; box-shadow: var(--shadow-sm); }
.project-disclaimer p { margin: 0; color: var(--muted); font-size: .86rem; line-height: 1.55; }
.project-disclaimer-badge { padding: 8px 13px; color: #fff; background: var(--service-accent-deep); border-radius: 999px; font-size: .72rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; }
.project-showcase-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 26px; align-items: stretch; }
.project-card { display: flex; min-width: 0; flex-direction: column; overflow: hidden; background: #fff; border: 1px solid rgba(var(--service-accent-rgb), .28); border-radius: 24px; box-shadow: 0 18px 48px rgba(6, 26, 53, .1); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.project-card:hover { border-color: var(--service-accent); transform: translateY(-5px); box-shadow: 0 26px 60px rgba(6, 26, 53, .15); }
.project-card-media { position: relative; aspect-ratio: 3 / 2; margin: 0; overflow: hidden; background: var(--navy); }
.project-card-media::after { position: absolute; right: 0; bottom: 0; left: 0; height: 38%; content: ""; background: linear-gradient(transparent, rgba(6, 26, 53, .46)); pointer-events: none; }
.project-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 420ms ease; }
.project-card:hover .project-card-media img { transform: scale(1.035); }
.project-card-media figcaption { position: absolute; z-index: 2; top: 16px; left: 16px; display: grid; gap: 1px; padding: 9px 12px; color: #fff; background: rgba(6, 26, 53, .9); border: 1px solid rgba(255,255,255,.18); border-radius: 11px; backdrop-filter: blur(8px); line-height: 1.25; }
.project-card-media figcaption strong { font-size: .75rem; }
.project-card-media figcaption small { color: var(--service-accent-light); font-size: .66rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.project-card-content { display: flex; flex: 1; flex-direction: column; padding: clamp(24px, 3vw, 32px); }
.project-location { margin-bottom: 10px; color: var(--service-accent-deep); font-size: .72rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.project-card-content h3 { margin-bottom: 22px; font-size: clamp(1.3rem, 2vw, 1.65rem); }
.project-details { display: grid; margin-bottom: 24px; border-top: 1px solid var(--line); }
.project-detail { display: grid; grid-template-columns: 38px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.project-detail > span { display: grid; width: 34px; height: 34px; place-items: center; color: var(--service-accent-deep); background: var(--service-accent-soft); border-radius: 10px; font-size: .68rem; font-weight: 900; }
.project-detail p { margin: 0; color: var(--muted); font-size: .87rem; line-height: 1.58; }
.project-detail strong { display: block; margin-bottom: 3px; color: var(--navy); font-size: .78rem; letter-spacing: .03em; }
.project-card-cta { display: flex; min-height: 52px; align-items: center; justify-content: space-between; gap: 20px; margin-top: auto; padding: 13px 17px; color: #fff; background: var(--service-accent-deep); border-radius: 13px; font-size: .88rem; font-weight: 850; text-decoration: none; transition: background var(--transition), transform var(--transition); }
.project-card-cta span { font-size: 1.25rem; }
.project-card-cta:hover { background: var(--navy); transform: translateX(2px); }

.process-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; counter-reset: process; }
.process-card { position: relative; padding: 26px 20px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); counter-increment: process; }
.process-card::before { display: grid; width: 34px; height: 34px; margin-bottom: 18px; place-items: center; color: #fff; background: var(--blue); border-radius: 50%; content: counter(process); font-size: .8rem; font-weight: 800; }
.process-card h3 { font-size: 1rem; }
.process-card p { color: var(--muted); font-size: .82rem; line-height: 1.5; }

.reviews-layout { display: grid; grid-template-columns: 310px 1fr; gap: 44px; align-items: start; }
.review-score { position: sticky; top: 130px; padding: 32px; color: #fff; background: var(--blue); border-radius: var(--radius); }
.review-score strong { display: block; margin: 6px 0; font-size: 3.2rem; line-height: 1; }
.review-score .stars { color: #ffd268; letter-spacing: 3px; }
.review-score p { color: rgba(255, 255, 255, .75); font-size: .9rem; }
.review-cards { display: grid; gap: 16px; }
.review-card { padding: 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.review-card .stars { color: var(--ochre); }
.review-card blockquote { margin: 14px 0; color: var(--navy); font-size: 1.05rem; font-weight: 650; }
.review-meta { display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: .78rem; }

.zone-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 48px; align-items: center; }
.zone-map { position: relative; min-height: 430px; overflow: hidden; background: #dfe8ee; border-radius: var(--radius-lg); }
.zone-map::before { position: absolute; inset: 0; content: ""; background: radial-gradient(circle at center, rgba(67, 167, 213, .38) 0 18%, transparent 19%), repeating-radial-gradient(circle at center, transparent 0 55px, rgba(10, 40, 82, .12) 56px 57px); }
.zone-pin { position: absolute; top: 50%; left: 50%; display: grid; width: 92px; height: 92px; place-items: center; color: #fff; background: var(--blue); border: 9px solid rgba(255,255,255,.82); border-radius: 50%; transform: translate(-50%, -50%); box-shadow: var(--shadow); text-align: center; font-size: .75rem; font-weight: 800; }
.city-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 24px 0; }
.city-tags span { padding: 7px 11px; color: var(--blue); background: #eaf0f7; border-radius: 999px; font-size: .78rem; font-weight: 700; }

.faq-section {
    position: relative;
    overflow: hidden;
    --faq-accent: var(--blue);
    --faq-accent-deep: var(--navy);
    --faq-accent-soft: #eaf0f7;
    background: linear-gradient(145deg, #f8fafb 0%, #fff 54%, var(--faq-accent-soft) 160%);
}
.faq-section::before, .faq-section::after { position: absolute; content: ""; border: 1px solid rgba(10, 40, 82, .06); border-radius: 50%; pointer-events: none; }
.faq-section::before { width: 380px; height: 380px; top: -245px; right: -120px; }
.faq-section::after { width: 220px; height: 220px; bottom: -150px; left: -90px; }
.faq-section > .container { position: relative; z-index: 1; }
.faq-list { display: grid; max-width: 980px; margin: 0 auto; gap: 14px; }
.faq-item { position: relative; background: #fff; border: 1px solid rgba(6, 26, 53, .1); border-radius: 18px; overflow: hidden; box-shadow: 0 8px 28px rgba(6, 26, 53, .055); transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition); }
.faq-item::before { position: absolute; z-index: 2; top: 0; bottom: 0; left: 0; width: 4px; content: ""; background: var(--faq-accent); opacity: 0; transform: scaleY(.25); transition: opacity var(--transition), transform var(--transition); }
.faq-item:hover { border-color: rgba(6, 26, 53, .2); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(6, 26, 53, .09); }
.faq-item.is-open { border-color: var(--faq-accent); box-shadow: 0 18px 42px rgba(6, 26, 53, .11); }
.faq-item.is-open::before { opacity: 1; transform: scaleY(1); }
.faq-item h3 { margin: 0; font: inherit; }
.faq-question { display: flex; width: 100%; min-height: 82px; align-items: center; justify-content: space-between; gap: 22px; padding: 18px 20px 18px 24px; color: var(--navy); background: transparent; border: 0; font-size: 1rem; font-weight: 850; line-height: 1.4; text-align: left; }
.faq-question-main { display: flex; min-width: 0; align-items: center; gap: 17px; }
.faq-index { display: grid; width: 40px; height: 40px; flex: 0 0 auto; place-items: center; color: var(--faq-accent-deep); background: var(--faq-accent-soft); border-radius: 12px; font-size: .72rem; font-weight: 900; letter-spacing: .08em; transition: color var(--transition), background var(--transition); }
.faq-toggle { position: relative; width: 42px; height: 42px; flex: 0 0 auto; background: var(--soft); border: 1px solid var(--line); border-radius: 50%; transition: background var(--transition), border-color var(--transition), transform var(--transition); }
.faq-toggle::before, .faq-toggle::after { position: absolute; top: 50%; left: 50%; width: 14px; height: 2px; content: ""; background: var(--navy); border-radius: 3px; transform: translate(-50%, -50%); transition: background var(--transition), transform var(--transition); }
.faq-toggle::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-question[aria-expanded="true"] .faq-index { color: #fff; background: var(--faq-accent-deep); }
.faq-question[aria-expanded="true"] .faq-toggle { background: var(--faq-accent-deep); border-color: var(--faq-accent-deep); }
.faq-question[aria-expanded="true"] .faq-toggle::before, .faq-question[aria-expanded="true"] .faq-toggle::after { background: #fff; }
.faq-question[aria-expanded="true"] .faq-toggle::after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer { color: var(--muted); }
.faq-answer-inner { margin: 0 24px 0 81px; padding: 0 58px 24px 0; border-top: 1px solid var(--line); }
.faq-answer p { max-width: 760px; margin: 0; padding-top: 18px; line-height: 1.75; }
.faq-answer[hidden] { display: none; }

.cta-panel { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; padding: clamp(34px, 6vw, 72px); color: #fff; background: var(--navy); border-radius: var(--radius-lg); overflow: hidden; }
.cta-panel h2 { margin-bottom: 14px; color: #fff; }
.cta-panel p { max-width: 720px; color: rgba(255,255,255,.72); }
.cta-actions { display: flex; flex-direction: column; gap: 12px; min-width: 230px; }

.breadcrumbs { padding-block: 16px; font-size: .78rem; }
.breadcrumbs ol { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.breadcrumbs li:not(:last-child)::after { margin-left: 8px; color: #9aa7b4; content: "/"; }
.breadcrumbs a { color: var(--muted); }

.service-page {
    --service-accent: var(--green);
    --service-accent-deep: #3f7626;
    --service-accent-soft: #eef7e9;
    --service-accent-light: #b9df9f;
    --service-accent-rgb: 92, 158, 58;
}
.service-theme-green {
    --service-accent: var(--green);
    --service-accent-deep: #3f7626;
    --service-accent-soft: #eef7e9;
    --service-accent-light: #b9df9f;
    --service-accent-rgb: 92, 158, 58;
}
.service-theme-ochre {
    --service-accent: var(--ochre);
    --service-accent-deep: #875900;
    --service-accent-soft: #fff5df;
    --service-accent-light: #ffd588;
    --service-accent-rgb: 216, 154, 43;
}
.service-theme-sky {
    --service-accent: var(--sky);
    --service-accent-deep: #176b91;
    --service-accent-soft: #e9f7fc;
    --service-accent-light: #a9e2fa;
    --service-accent-rgb: 67, 167, 213;
}
.service-page .eyebrow { color: var(--service-accent-deep); }
.service-page .section-soft { background: linear-gradient(145deg, var(--soft) 0%, #fff 72%, var(--service-accent-soft) 150%); }
.service-page .button-primary { background: var(--service-accent-deep); box-shadow: 0 12px 28px rgba(var(--service-accent-rgb), .22); }
.service-page .button-primary:hover { background: var(--navy); }
.service-page .situation-panel { background: linear-gradient(145deg, #fff 0%, var(--service-accent-soft) 135%); border-color: rgba(var(--service-accent-rgb), .32); border-top: 4px solid var(--service-accent); box-shadow: var(--shadow-sm); }
.service-page .check-list li::before, .service-page .situation-list li::before { color: var(--service-accent-deep); }
.service-page .category-card { position: relative; border-top: 3px solid rgba(var(--service-accent-rgb), .72); transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition); }
.service-page .category-card:hover { border-top-color: var(--service-accent); transform: translateY(-4px); box-shadow: var(--shadow); }
.service-page .category-card li::marker { color: var(--service-accent-deep); }
.service-page .service-note { background: var(--service-accent-soft); border-left-color: var(--service-accent); }
.service-page .section-dark { background: radial-gradient(circle at 82% 18%, rgba(var(--service-accent-rgb), .18), transparent 28%), var(--navy); }
.service-page .section-dark .eyebrow, .service-page .method-step::before { color: var(--service-accent-light); }
.service-page .method-step { border-top: 2px solid rgba(var(--service-accent-rgb), .56); }
.service-page .audience-tags span { color: var(--service-accent-deep); background: var(--service-accent-soft); border-color: rgba(var(--service-accent-rgb), .26); }
.service-page .city-tags span { color: var(--service-accent-deep); background: var(--service-accent-soft); }
.service-page .gallery-card-content .gallery-category { color: var(--service-accent-deep); }
.service-page .faq-section { --faq-accent: var(--service-accent); --faq-accent-deep: var(--service-accent-deep); --faq-accent-soft: var(--service-accent-soft); }
.service-page .cta-panel { background: radial-gradient(circle at 88% 20%, rgba(var(--service-accent-rgb), .3), transparent 34%), var(--navy); border-bottom: 5px solid var(--service-accent); }

.service-hero { position: relative; overflow: hidden; color: #fff; background: radial-gradient(circle at 12% 5%, rgba(var(--service-accent-rgb), .2), transparent 31%), var(--navy); border-bottom: 5px solid var(--service-accent); }
.service-hero-grid { display: grid; min-height: 520px; grid-template-columns: 1fr .85fr; gap: 60px; align-items: center; padding-block: 70px; }
.service-hero h1 { margin-bottom: 22px; color: #fff; font-size: clamp(2.6rem, 4.5vw, 4.6rem); }
.service-hero p { color: rgba(255,255,255,.76); font-size: 1.12rem; }
.service-hero-media { position: relative; height: 430px; }
.service-hero-media img { width: 100%; height: 100%; object-fit: cover; border: 3px solid rgba(var(--service-accent-rgb), .78); border-radius: var(--radius-lg); box-shadow: 0 28px 70px rgba(0, 0, 0, .28), 0 0 0 9px rgba(var(--service-accent-rgb), .08); }
.service-hero .eyebrow { color: var(--service-accent-light); }
.service-proof { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 26px; padding: 0; list-style: none; font-size: .86rem; }
.service-proof li::before { margin-right: 8px; color: var(--service-accent-light); content: "✓"; }

.two-column { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(38px, 7vw, 84px); align-items: start; }
.situation-list { display: grid; gap: 10px; margin: 0; padding: 0; list-style: none; }
.situation-list li { display: flex; gap: 11px; padding: 12px 14px; background: var(--soft); border-radius: 10px; font-size: .9rem; }
.situation-list li::before { color: var(--green); content: "✓"; font-weight: 900; }
.category-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.category-card { padding: 30px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.category-card h3 { margin-bottom: 10px; }
.category-card > p { color: var(--muted); font-size: .88rem; }
.category-card ul { columns: 2; padding-left: 20px; color: var(--ink); font-size: .84rem; }
.category-card li { margin-bottom: 7px; break-inside: avoid; }
.service-note { margin-top: 36px; padding: 24px 28px; background: #fff8e8; border-left: 4px solid var(--ochre); border-radius: 0 14px 14px 0; }
.method-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; counter-reset: method; }
.method-step { padding: 24px 18px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 16px; counter-increment: method; }
.method-step::before { display: block; margin-bottom: 14px; color: #9fd5ee; content: "0" counter(method); font-size: 1.5rem; font-weight: 800; }
.audience-tags { display: flex; flex-wrap: wrap; justify-content: center; gap: 11px; }
.audience-tags span { padding: 10px 15px; background: #fff; border: 1px solid var(--line); border-radius: 999px; box-shadow: var(--shadow-sm); font-size: .86rem; font-weight: 700; }

.quote-section { background: var(--soft); }
.quote-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 44px; align-items: start; }
.quote-aside { position: sticky; top: 125px; padding: 34px; color: #fff; background: var(--navy); border-radius: var(--radius); }
.quote-aside h2 { color: #fff; }
.quote-aside p { color: rgba(255,255,255,.72); }
.quote-aside ul { padding: 0; list-style: none; }
.quote-aside li { display: flex; gap: 10px; margin: 12px 0; font-size: .9rem; }
.quote-aside li::before { color: #9ed076; content: "✓"; }
.direct-contact { margin-top: 26px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.16); }
.direct-contact a { display: flex; align-items: center; gap: 10px; margin: 9px 0; color: #fff; font-weight: 700; text-decoration: none; overflow-wrap: anywhere; }
.quote-form-card { padding: clamp(26px, 5vw, 48px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.form-section + .form-section { margin-top: 34px; padding-top: 30px; border-top: 1px solid var(--line); }
.form-section h2, .form-section h3 { margin-bottom: 8px; }
.form-help { margin-bottom: 20px; color: var(--muted); font-size: .85rem; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field.full { grid-column: 1/-1; }
.form-field label, .form-label { color: var(--navy); font-size: .84rem; font-weight: 800; }
.required { color: #a9352b; }
.form-field input, .form-field select, .form-field textarea {
    width: 100%; min-height: 50px; padding: 12px 14px; color: var(--ink); background: #fff; border: 1px solid #cbd5dc; border-radius: 10px;
}
.form-field textarea { min-height: 160px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(67,167,213,.18); outline: 0; }
.check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 9px; }
.check-option { display: flex; align-items: flex-start; gap: 9px; padding: 11px 12px; background: var(--soft); border-radius: 9px; font-size: .84rem; }
.check-option input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--blue); }
.form-details { margin: 18px 0; padding: 16px; border: 1px solid var(--line); border-radius: 12px; background: #f8fafc; }
.form-details summary { cursor: pointer; color: var(--navy); font-weight: 850; }
.form-details[open] summary { margin-bottom: 16px; }
.consent { display: flex; align-items: flex-start; gap: 11px; margin: 22px 0; font-size: .8rem; }
.consent input { width: 19px; height: 19px; flex: 0 0 auto; margin-top: 2px; accent-color: var(--blue); }
.file-drop { padding: 18px; background: #f7fafb; border: 1px dashed #9fb0bf; border-radius: 12px; }
.file-drop input { border: 0; padding: 4px; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.notice { margin-bottom: 24px; padding: 16px 18px; border-radius: 10px; font-weight: 700; }
.notice.success { color: #235b24; background: #eaf7e5; border: 1px solid #b8ddb0; }
.notice.error { color: #842b25; background: #fff0ee; border: 1px solid #efc0bc; }
.notice ul { margin: 0; }
.privacy-hint { color: var(--muted); font-size: .78rem; }

.legal-main { padding: 72px 0 110px; background: var(--soft); }
.legal-content { max-width: 900px; margin: 0 auto; padding: clamp(28px, 6vw, 66px); background: #fff; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.legal-content h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
.legal-content h2 { margin-top: 40px; font-size: 1.5rem; }
.legal-content h3 { margin-top: 25px; }
.legal-content p, .legal-content li { color: #475a6b; }
.placeholder-legal { padding: 15px; background: #fff8e8; border: 1px solid #f0d9a2; border-radius: 10px; }

.site-footer { padding-top: 76px; color: rgba(255,255,255,.72); background: var(--navy); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .78fr .95fr 1.15fr; gap: 36px; padding-bottom: 56px; }
.footer-brand-link { display: inline-flex; align-items: center; gap: 14px; color: #fff; text-decoration: none; }
.footer-brand-link img { width: 62px; height: 62px; border-radius: 50%; }
.footer-brand-link strong, .footer-brand-link small { display: block; }
.footer-brand-link strong { font-size: 1.45rem; }
.footer-brand-link small { color: rgba(255,255,255,.6); }
.footer-brand > p { max-width: 380px; margin: 20px 0; font-size: .9rem; }
.footer-review { display: inline-flex; flex-wrap: wrap; gap: 8px; color: #fff; font-size: .8rem; font-weight: 700; text-decoration: none; }
.footer-review span { color: #ffd268; }
.footer-column h2 { margin-bottom: 18px; color: #fff; font-size: 1rem; letter-spacing: 0; }
.footer-column ul { margin: 0; padding: 0; list-style: none; }
.footer-column li { margin: 9px 0; }
.footer-column a { text-decoration: none; }
.footer-column a:hover { color: #fff; text-decoration: underline; text-underline-offset: 3px; }
.footer-column p { font-size: .85rem; }
.footer-cities { color: rgba(255,255,255,.52); }
.footer-contact > a:not(.button), .footer-contact > span { display: flex; align-items: flex-start; gap: 10px; margin: 11px 0; overflow-wrap: anywhere; font-size: .84rem; }
.footer-contact .button { margin-top: 14px; color: var(--navy); }
.footer-bottom { display: flex; min-height: 66px; align-items: center; justify-content: space-between; gap: 30px; border-top: 1px solid rgba(255,255,255,.1); font-size: .75rem; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }
.footer-bottom a { text-decoration: none; }
.mobile-actions { display: none; }

@media (max-width: 1120px) {
    .nav-phone span { display: none; }
    .hero-grid { grid-template-columns: 1fr .82fr; }
    .proof-strip-inner { grid-template-columns: repeat(2, 1fr); }
    .proof-item:nth-child(2) { border-right: 0; }
    .proof-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
    .situations-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid, .method-list { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1050px) {
    .utility-inner > p { display: none; }
    .utility-inner { justify-content: center; }
    .site-header { backdrop-filter: none; }
    .menu-toggle { display: block; }
    .main-nav { position: fixed; z-index: 999; top: 124px; right: 0; bottom: 0; left: 0; display: none; align-items: stretch; flex-direction: column; gap: 0; padding: 22px 24px 120px; overflow-y: auto; background: #fff; }
    .main-nav.is-open { display: flex; }
    .main-nav > a { padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
    .main-nav > a::after { display: none; }
    .nav-phone span { display: inline; }
    .nav-cta { margin-top: 16px; text-align: center; }
    .hero-grid, .service-hero-grid, .split-layout { grid-template-columns: 1fr; }
    .hero-grid { min-height: auto; }
    .hero-visual { min-height: 480px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { display: grid; grid-template-columns: .82fr 1.18fr; }
    .service-card-media { aspect-ratio: auto; min-height: 100%; }
    .service-card-icon { margin-top: 0; }
    .advantages-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-grid { grid-template-columns: 1fr 1fr; }
    .gallery-card:first-child { grid-column: 1/-1; }
    .reviews-layout, .zone-layout, .quote-layout { grid-template-columns: 1fr; }
    .review-score, .quote-aside { position: static; }
    .cta-panel { grid-template-columns: 1fr; }
    .cta-actions { flex-direction: row; min-width: 0; }
    .two-column { grid-template-columns: 1fr; }
    .situations-cta { grid-template-columns: auto 1fr; }
    .situations-cta .button { grid-column: 1 / -1; width: 100%; }
    .category-grid { grid-template-columns: 1fr; }
    .service-hero-media { height: 380px; }
}

@media (max-width: 900px) {
    .project-showcase-grid { grid-template-columns: 1fr; }
    .project-card { display: grid; grid-template-columns: .88fr 1.12fr; }
    .project-card-media { min-height: 430px; aspect-ratio: auto; }
}

@media (max-width: 680px) {
    html { scroll-padding-top: 18px; }
    body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); font-size: 16px; }
    .container { width: min(calc(100% - 32px), var(--container)); }
    .utility-bar { display: none; }
    .site-header { position: relative; top: auto; background: rgba(255, 255, 255, .985); }
    .header-inner { min-height: 82px; justify-content: center; }
    .brand { display: flex; justify-content: center; }
    .brand img { width: min(218px, 72vw); }
    .menu-toggle, .main-nav { display: none !important; }
    .mobile-service-nav {
        display: grid;
        min-height: 50px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        background: #fff;
        border-top: 1px solid rgba(6, 26, 53, .08);
        box-shadow: 0 8px 22px rgba(6, 26, 53, .07);
    }
    .mobile-service-nav a {
        --mobile-nav-accent: var(--green);
        position: relative;
        display: flex;
        min-width: 0;
        min-height: 50px;
        align-items: center;
        justify-content: center;
        padding: 9px 5px;
        color: var(--navy);
        border-right: 1px solid rgba(6, 26, 53, .08);
        font-size: .82rem;
        font-weight: 850;
        line-height: 1.1;
        text-align: center;
        text-decoration: none;
    }
    .mobile-service-nav a:last-child { border-right: 0; }
    .mobile-service-nav a.ochre { --mobile-nav-accent: var(--ochre); }
    .mobile-service-nav a.sky { --mobile-nav-accent: var(--sky); }
    .mobile-service-nav a::after {
        position: absolute;
        right: 22%;
        bottom: 0;
        left: 22%;
        height: 3px;
        content: "";
        background: var(--mobile-nav-accent);
        border-radius: 6px 6px 0 0;
        transform: scaleX(0);
        transition: transform var(--transition);
    }
    .mobile-service-nav a:hover, .mobile-service-nav a.active {
        color: var(--mobile-nav-accent);
        background: color-mix(in srgb, var(--mobile-nav-accent) 8%, #fff);
    }
    .mobile-service-nav a:hover::after, .mobile-service-nav a.active::after { transform: scaleX(1); }
    .hero-grid { padding-block: 56px 76px; }
    .hero-copy h1 { font-size: clamp(2.45rem, 12vw, 3.7rem); }
    .hero-actions, .cta-actions { flex-direction: column; align-items: stretch; }
    .hero-visual { min-height: 390px; }
    .hero-visual-badge { right: 12px; bottom: -22px; width: 190px; }
    .proof-strip { margin-top: -20px; }
    .proof-strip-inner { grid-template-columns: 1fr; }
    .proof-item { min-height: 85px; border-right: 0; border-bottom: 1px solid var(--line); }
    .proof-item:last-child { border-bottom: 0; }
    .service-card { display: block; }
    .service-card-media { min-height: auto; aspect-ratio: 4/3; }
    .service-card-icon { margin-top: -54px; }
    .situations-grid, .advantages-grid, .gallery-grid, .process-grid, .method-list, .footer-grid { grid-template-columns: 1fr; }
    .situation-card { min-height: 0; padding: 25px 21px; }
    .situations-cta { grid-template-columns: 1fr; padding: 24px 21px; }
    .situations-cta-icon { width: 46px; height: 46px; }
    .gallery-card:first-child { grid-column: auto; }
    .gallery-card { min-height: 300px; }
    .gallery-note { align-items: flex-start; flex-direction: column; }
    .project-disclaimer { grid-template-columns: 1fr; padding: 17px; }
    .project-disclaimer-badge { width: fit-content; }
    .project-card { display: flex; }
    .project-card-media { min-height: 0; aspect-ratio: 4 / 3; }
    .project-card-content { padding: 24px 20px; }
    .project-detail { grid-template-columns: 34px 1fr; gap: 11px; }
    .review-meta { flex-direction: column; gap: 5px; }
    .service-hero-grid { padding-block: 45px 60px; }
    .service-hero-media { height: 330px; }
    .category-card ul { columns: 1; }
    .faq-question { min-height: 74px; gap: 14px; padding: 15px 14px; font-size: .94rem; }
    .faq-question-main { gap: 12px; }
    .faq-index { width: 35px; height: 35px; border-radius: 10px; }
    .faq-toggle { width: 37px; height: 37px; }
    .faq-answer-inner { margin: 0 14px 0 61px; padding: 0 8px 20px 0; }
    .faq-answer p { padding-top: 15px; font-size: .92rem; }
    .form-grid, .check-grid { grid-template-columns: 1fr; }
    .footer-bottom { align-items: flex-start; flex-direction: column; padding-block: 20px; }
    .mobile-actions { position: fixed; z-index: 1200; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr 1fr; padding-bottom: env(safe-area-inset-bottom); background: #fff; border-top: 1px solid var(--line); box-shadow: 0 -8px 30px rgba(6,26,53,.13); }
    .mobile-actions a { display: flex; min-height: 66px; align-items: center; justify-content: center; gap: 9px; color: var(--navy); font-size: .86rem; font-weight: 800; text-decoration: none; }
    .mobile-actions a:last-child { color: #fff; background: var(--blue); }
}

@media (max-width: 400px) {
    .brand img { width: min(202px, 72vw); }
    .mobile-service-nav a { font-size: .78rem; }
    .hero-trust { display: grid; }
    .hero-visual { min-height: 330px; }
    .quote-form-card { padding: 22px 17px; }
}

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

@media print {
    .utility-bar, .site-header, .mobile-actions, .site-footer, .hero-actions, .cta-panel { display: none !important; }
    body { color: #000; background: #fff; }
    .section { padding: 30px 0; }
}
