.flash {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    margin-bottom: 1rem;
}

.flash p,
.flash ul {
    margin: 0;
}

.flash ul {
    padding-left: 1.25rem;
    margin-top: 0.65rem;
    color: inherit;
}

.flash-success {
    background: rgba(31, 107, 79, 0.11);
    border: 1px solid rgba(31, 107, 79, 0.18);
    color: var(--success);
}

.flash-error {
    background: rgba(178, 80, 69, 0.1);
    border: 1px solid rgba(178, 80, 69, 0.18);
    color: var(--danger);
}

.required-note {
    margin: 0 0 1rem;
    color: var(--muted);
    font-size: 0.93rem;
}

.contact-form,
.contact-form label {
    display: grid;
    gap: 0.5rem;
}

.contact-form {
    gap: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.contact-form span {
    font-weight: 700;
    color: var(--primary-strong);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(16, 59, 99, 0.14);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--text);
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.contact-form input:hover,
.contact-form textarea:hover,
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(16, 59, 99, 0.32);
    box-shadow: 0 0 0 5px rgba(16, 59, 99, 0.07);
}

.contact-form input.is-invalid,
.contact-form textarea.is-invalid {
    border-color: rgba(178, 80, 69, 0.48);
    box-shadow: 0 0 0 5px rgba(178, 80, 69, 0.1);
}

.form-submit {
    width: 100%;
}

.honeypot {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    white-space: nowrap;
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
}

.honeypot label,
.honeypot input {
    display: block;
    width: 1px;
    max-width: 1px;
    height: 1px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
    font-size: 0;
    line-height: 0;
}

.site-footer {
    margin-top: 4rem;
    padding: 2rem 0 0;
    background: linear-gradient(160deg, rgba(15, 33, 51, 0.98), rgba(9, 24, 40, 0.98));
    color: rgba(255, 255, 255, 0.82);
    overflow: hidden;
    border-radius: 0;
}

.footer-grid {
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 0.8fr));
    padding-bottom: 1.5rem;
}

.footer-grid > div {
    min-width: 0;
}

.site-footer h2,
.site-footer h3 {
    margin: 0 0 0.9rem;
    color: white;
}

.footer-actions {
    margin-top: 1.1rem;
}

.footer-links {
    display: grid;
    gap: 0.82rem;
}

.footer-links li {
    position: relative;
    min-width: 0;
    padding-left: 1.25rem;
    line-height: 1.35;
}

.footer-links li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.72rem;
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: linear-gradient(135deg, #5f88ad, #2f6797);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.footer-links a,
.footer-links strong,
.footer-privacy {
    color: rgba(255, 255, 255, 0.92);
    min-width: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
}

.footer-links span {
    display: block;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.82rem;
    margin-bottom: 0;
    line-height: 1.2;
}

.footer-contact {
    gap: 1rem;
}

.footer-contact li {
    display: grid;
    gap: 0.24rem;
    padding-left: 1.35rem;
}

.footer-contact li::before {
    top: 0.56rem;
}

.footer-contact a,
.footer-contact strong,
.footer-contact .footer-privacy {
    display: block;
    width: 100%;
    line-height: 1.3;
}

.footer-privacy {
    border: 0;
    padding: 0;
    background: transparent;
    font-weight: 800;
    cursor: pointer;
    text-align: left;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    padding: 1.2rem 0 1.6rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
}

.footer-powered {
    color: rgba(255, 255, 255, 0.62);
}

.footer-powered a {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 700;
}

.mobile-cta-bar {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    z-index: 35;
    width: min(calc(100% - 1.4rem), 520px);
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    padding: 0.65rem;
    border-radius: 24px;
    background: rgba(10, 24, 40, 0.9);
    box-shadow: 0 22px 50px rgba(9, 24, 40, 0.25);
    transform: translateX(-50%);
    backdrop-filter: blur(14px);
}

.mobile-cta-bar .button-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.16);
}

.consent-banner {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 45;
    width: min(calc(100% - 2rem), 440px);
}

.consent-card {
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
}

.consent-card h2 {
    margin: 0 0 0.5rem;
    font-family: "Sora", sans-serif;
    color: var(--primary-strong);
}

.consent-copy p {
    margin: 0;
}

.consent-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.consent-preferences {
    display: grid;
    gap: 0.8rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--line);
}

.consent-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.consent-option strong {
    display: block;
    color: var(--primary-strong);
}

.consent-option small {
    display: block;
    margin-top: 0.2rem;
    color: var(--muted);
    line-height: 1.5;
}

@media (max-width: 1080px) {
    .hero-section {
        min-height: calc(100svh - var(--header-height));
        height: auto;
        max-height: none;
        padding-bottom: 1.6rem;
    }

    .hero-showcase {
        padding-top: 0.2rem;
    }

    .hero-showcase-media {
        height: clamp(15rem, 48vw, 24rem);
    }

    .seo-title-banner {
        margin-top: 2.6rem;
    }

    .seo-title-banner-shell {
        min-height: 288px;
    }

    .seo-title-banner-item {
        width: min(100%, 17ch);
        font-size: clamp(1.5rem, 5vw, 2.55rem);
    }

    .hero-section > * {
        height: auto;
    }

    .hero-grid,
    .split-layout,
    .contact-layout,
    .footer-grid,
    .service-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-copy h1,
    .section-head h2 {
        max-width: 14ch;
    }

    .hero-copy h1 {
        max-width: none;
    }
}

@media (max-width: 940px) {
    :root {
        --header-height: 78px;
        --mobile-nav-bottom-space: calc(0.9rem + env(safe-area-inset-bottom, 0px));
    }

    .site-header {
        background: rgba(238, 243, 248, 0.9);
        border-bottom-color: rgba(255, 255, 255, 0.72);
    }

    body.nav-is-open .site-header {
        background: rgba(235, 241, 247, 0.96);
    }

    .shell {
        min-height: 78px;
        gap: 0.75rem;
    }

    .brand {
        gap: 0.78rem;
        flex: 1 1 auto;
    }

    .brand-logo,
    .brand-mark {
        width: 50px;
        height: 50px;
        border-radius: 16px;
    }

    .brand-copy strong {
        font-size: 0.95rem;
        line-height: 1.15;
    }

    .header-tools {
        position: relative;
        gap: 0.65rem;
        flex-shrink: 0;
        z-index: 45;
    }

    .header-call {
        display: none;
    }

    .language-switch {
        position: relative;
        z-index: 45;
        padding: 0.18rem;
        background: rgba(255, 255, 255, 0.86);
        box-shadow:
            0 12px 24px rgba(10, 33, 57, 0.08),
            inset 0 1px 0 rgba(255, 255, 255, 0.78);
    }

    .language-switch a {
        min-width: 38px;
        min-height: 36px;
        font-size: 0.86rem;
    }

    .site-nav {
        position: fixed;
        inset: 0;
        height: 100dvh;
        padding: calc(var(--header-height) + 0.9rem) clamp(0.9rem, 3vw, 1.35rem) var(--mobile-nav-bottom-space);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translate3d(0, -18px, 0) scale(0.985);
        transform-origin: top center;
        transition:
            opacity 220ms ease,
            transform 360ms cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0s linear 360ms;
        overflow-x: hidden;
        overflow-x: clip;
        overflow-y: hidden;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        z-index: 43;
    }

    .site-nav::before,
    .site-nav::after {
        content: "";
        position: absolute;
        inset: 0;
        pointer-events: none;
    }

    .site-nav::before {
        background:
            radial-gradient(circle at top right, rgba(16, 59, 99, 0.14), transparent 32%),
            linear-gradient(180deg, rgba(237, 243, 248, 0.94), rgba(225, 234, 243, 0.9));
    }

    .site-nav::after {
        inset: 10% 4% auto auto;
        width: min(54vw, 17rem);
        aspect-ratio: 1;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(95, 136, 173, 0.2), transparent 68%);
        filter: blur(6px);
    }

    .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translate3d(0, 0, 0) scale(1);
        transition:
            opacity 220ms ease,
            transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
            visibility 0s linear 0s;
    }

    .site-nav-shell {
        position: relative;
        z-index: 1;
        width: min(100%, 40rem);
        height: calc(100dvh - var(--header-height) - 0.9rem - var(--mobile-nav-bottom-space));
        max-height: calc(100dvh - var(--header-height) - 0.9rem - var(--mobile-nav-bottom-space));
        min-height: 0;
        margin: 0 auto;
        display: grid;
        grid-template-rows: auto minmax(0, 1fr) auto;
        gap: 0.88rem;
        overflow: hidden;
        overflow-x: clip;
    }

    .site-nav-intro,
    .site-nav-actions {
        display: grid;
    }

    .site-nav-actions {
        display: none;
    }

    .site-nav-intro {
        gap: 0;
        padding: 1.1rem 1rem;
        border-radius: 28px;
        background: linear-gradient(155deg, rgba(16, 59, 99, 0.96), rgba(33, 81, 120, 0.9));
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow:
            0 26px 52px rgba(9, 24, 40, 0.18),
            inset 0 1px 0 rgba(255, 255, 255, 0.12);
        color: white;
    }

    .site-nav-kicker {
        margin: 0;
        color: rgba(219, 231, 241, 0.72);
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.18em;
        text-transform: uppercase;
    }

    .site-nav-title {
        display: block;
        margin-top: 0.45rem;
        font-family: "Sora", sans-serif;
        font-size: clamp(1.26rem, 5vw, 1.7rem);
        line-height: 1.04;
        letter-spacing: -0.04em;
    }

    .site-nav-copy {
        margin: 0.58rem 0 0;
        max-width: 30ch;
        color: rgba(240, 246, 251, 0.8);
        line-height: 1.58;
        font-size: 0.94rem;
    }

    .site-nav-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 0.55rem;
        margin-top: 0.95rem;
    }

    .site-nav-chip {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 39px;
        padding: 0.62rem 0.92rem;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.14);
        color: white;
        font-weight: 700;
        line-height: 1;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }

    .site-nav ul {
        display: grid;
        align-items: stretch;
        gap: 0.64rem;
        padding: 0.9rem;
        border-radius: 28px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 249, 252, 0.88));
        border: 1px solid rgba(255, 255, 255, 0.76);
        box-shadow:
            0 26px 56px rgba(9, 24, 40, 0.12),
            inset 0 1px 0 rgba(255, 255, 255, 0.82);
        min-height: 0;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
    }

    .site-nav li {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
        transition:
            opacity 260ms ease,
            transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
        transition-delay: calc(var(--nav-order, 0) * 42ms);
    }

    .site-nav.is-open li {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }

    .site-nav a {
        width: 100%;
        justify-content: space-between;
        min-height: 66px;
        padding: 1rem 1.1rem;
        border-radius: 22px;
        background: linear-gradient(180deg, rgba(248, 251, 253, 0.98), rgba(236, 243, 248, 0.94));
        border: 1px solid rgba(16, 59, 99, 0.08);
        color: var(--primary-strong);
        font-family: "Sora", sans-serif;
        font-size: clamp(1.04rem, 4.5vw, 1.36rem);
        letter-spacing: -0.02em;
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.82);
    }

    .site-nav a::after {
        content: "";
        width: 10px;
        height: 10px;
        border-top: 2px solid rgba(16, 59, 99, 0.48);
        border-right: 2px solid rgba(16, 59, 99, 0.48);
        transform: rotate(45deg);
        transition: transform 180ms ease, border-color 180ms ease;
    }

    .site-nav a:hover,
    .site-nav a:focus-visible {
        background: white;
        color: var(--primary);
        border-color: rgba(16, 59, 99, 0.16);
    }

    .site-nav a:hover::after,
    .site-nav a:focus-visible::after {
        transform: translateX(3px) rotate(45deg);
        border-color: var(--primary);
    }

    .nav-toggle {
        display: grid;
        place-items: center;
        position: relative;
        z-index: 45;
        width: 52px;
        height: 52px;
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.9);
        box-shadow:
            0 16px 30px rgba(10, 33, 57, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.84);
    }

    .nav-backdrop {
        display: block;
        position: fixed;
        inset: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(8, 22, 38, 0.24);
        backdrop-filter: blur(10px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 220ms ease;
        z-index: 42;
    }

    .nav-backdrop.is-open {
        opacity: 1;
        pointer-events: auto;
    }
}

@media (max-width: 820px) {
    .header-call {
        display: none;
    }

    .hero-section {
        min-height: auto;
        height: auto;
        max-height: none;
        padding-bottom: 1.35rem;
    }

    .hero-copy,
    .hero-panel,
    .contact-panel,
    .contact-form-card {
        padding: 1.6rem;
    }

    .site-footer {
        padding: 1.6rem 0 0;
    }

    .hero-metrics,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .consent-banner {
        right: 0.7rem;
        left: 0.7rem;
        width: auto;
    }

    .hero-grid {
        gap: 0;
    }

    .hero-copy {
        position: relative;
        z-index: 2;
        padding-bottom: 1rem;
        border-bottom-left-radius: 30px;
        border-bottom-right-radius: 30px;
    }

    .hero-metrics {
        margin-top: 0.7rem;
        gap: 0.55rem;
    }

    .metric-card {
        padding: 0.56rem 0.68rem;
        border-radius: 18px;
    }

    .hero-panel {
        width: calc(100% - 0.7rem);
        justify-self: center;
        position: relative;
        z-index: 1;
        margin-top: calc(-0.42rem - 20px);
        padding: calc(1.15rem + 20px) 1rem 1.05rem;
        border-radius: 0 0 26px 26px;
        box-shadow:
            0 24px 44px rgba(10, 33, 57, 0.16),
            inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .panel-label {
        font-size: 0.72rem;
        letter-spacing: 0.18em;
    }

    .panel-value {
        margin-top: 0.45rem;
        font-size: clamp(1.6rem, 8vw, 2.15rem);
    }

    .panel-copy {
        margin: 0.6rem 0 0.8rem;
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .panel-list {
        gap: 0.48rem;
    }

    .panel-list li {
        padding: 0.66rem 0.82rem 0.66rem 1.72rem;
        font-size: 0.86rem;
        border-radius: 16px;
    }

    .panel-list li::before {
        left: 0.72rem;
        top: 0.92rem;
        width: 7px;
        height: 7px;
    }

    .service-grid {
        gap: 0.9rem;
    }

    .service-card {
        padding: 1.2rem;
        border-radius: 24px;
        box-shadow:
            0 18px 38px rgba(10, 33, 57, 0.09),
            inset 0 1px 0 rgba(255, 255, 255, 0.82);
    }

    .service-card:active {
        transform: translateY(-1px) scale(0.995);
    }

    .service-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.9rem;
        border-radius: 16px;
    }

    .service-icon-glyph {
        font-size: 1.1rem;
    }

    .service-card h3 {
        margin-bottom: 0.45rem;
        font-size: 1.08rem;
    }

    .service-card p {
        font-size: 0.95rem;
        line-height: 1.62;
    }

    .service-points {
        gap: 0.55rem;
        margin-top: 0.85rem;
    }

    .service-points li {
        padding: 0.62rem 0.76rem 0.62rem 1.66rem;
        border-radius: 14px;
        font-size: 0.88rem;
        line-height: 1.45;
    }

    .service-points li::before {
        left: 0.68rem;
        top: 0.9rem;
        width: 7px;
        height: 7px;
    }

    .contact-point,
    .special-cta-card {
        text-align: center;
    }

    .contact-form-card {
        border-radius: 24px;
    }

    .contact-point {
        padding: 1.1rem 1rem;
        border-radius: 22px;
    }

    .contact-point h3,
    .special-cta-card h3 {
        margin-inline: auto;
        max-width: 15ch;
    }

    .contact-point p,
    .special-cta-card p {
        margin-inline: auto;
        max-width: 28ch;
    }

    .special-cta-card {
        padding: 1.25rem;
        border-radius: 24px;
    }

    .special-cta-actions {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    :root {
        --header-height: 74px;
        --mobile-nav-bottom-space: calc(0.82rem + env(safe-area-inset-bottom, 0px));
    }

    .shell {
        min-height: 74px;
        gap: 0.62rem;
    }

    .hero-showcase-media {
        height: clamp(13.5rem, 64vw, 19rem);
    }

    .seo-title-banner {
        margin-top: 2.25rem;
    }

    .seo-title-banner-shell {
        min-height: 272px;
        padding: 1.5rem 0.95rem;
    }

    .seo-title-banner-stage {
        min-height: 7.25rem;
    }

    .seo-title-banner-item {
        width: min(100%, 15ch);
        font-size: clamp(1.36rem, 8vw, 2.05rem);
        line-height: 1.08;
    }

    .brand {
        gap: 0.68rem;
    }

    .brand-logo,
    .brand-mark {
        width: 46px;
        height: 46px;
        border-radius: 14px;
    }

    .brand-copy strong {
        font-size: 0.92rem;
        max-width: 11ch;
    }

    .brand-copy small {
        display: none;
    }

    .language-switch {
        margin-left: 0;
    }

    .language-switch a {
        min-width: 36px;
        min-height: 36px;
        font-size: 0.82rem;
    }

    .nav-toggle {
        width: 48px;
        height: 48px;
        border-radius: 17px;
    }

    .site-nav {
        padding: calc(var(--header-height) + 0.72rem) 0.82rem var(--mobile-nav-bottom-space);
    }

    .site-nav-shell {
        gap: 0.76rem;
        height: calc(100dvh - var(--header-height) - 0.72rem - var(--mobile-nav-bottom-space));
        max-height: calc(100dvh - var(--header-height) - 0.72rem - var(--mobile-nav-bottom-space));
    }

    .site-nav-intro {
        padding: 1.08rem 1rem;
        border-radius: 26px;
    }

    .site-nav-copy {
        font-size: 0.9rem;
    }

    .site-nav ul,
    .site-nav-actions {
        padding: 0.84rem;
        border-radius: 26px;
    }

    .site-nav a {
        min-height: 60px;
        padding: 0.92rem 1rem;
        border-radius: 20px;
        font-size: 1rem;
    }

    .button,
    .cta-strip-actions,
    .footer-actions,
    .special-cta-actions,
    .consent-actions {
        width: 100%;
    }

    .hero-copy h1 {
        max-width: none;
    }

    .section-head h2 {
        font-size: 2.15rem;
        max-width: 100%;
    }

    .hero-title-main {
        font-size: clamp(1.62rem, 8.8vw, 2.3rem);
        white-space: normal;
        text-wrap: balance;
    }

    .hero-title-accent {
        max-width: none;
        font-size: clamp(1.02rem, 5.1vw, 1.5rem);
    }

    .hero-title-accent-line {
        white-space: normal;
        text-wrap: balance;
    }

    .hero-copy {
        padding-bottom: 0.9rem;
    }

    .hero-panel {
        width: calc(100% - 0.5rem);
        margin-top: calc(-0.38rem - 20px);
        padding: calc(0.98rem + 20px) 0.92rem 0.96rem;
    }

    .panel-value {
        font-size: clamp(1.45rem, 7.6vw, 1.85rem);
    }

    .panel-copy {
        font-size: 0.92rem;
    }

    .panel-list li {
        padding: 0.62rem 0.78rem 0.62rem 1.62rem;
        font-size: 0.84rem;
    }

    .panel-list li::before {
        left: 0.66rem;
        top: 0.88rem;
    }

    .service-grid {
        gap: 1rem;
    }

    .service-card {
        display: block;
        padding: 1.18rem 1rem 1rem;
        border-radius: 26px;
        border-color: rgba(255, 255, 255, 0.78);
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(243, 248, 252, 0.96)),
            linear-gradient(135deg, rgba(212, 226, 239, 0.36), rgba(255, 255, 255, 0));
        box-shadow:
            0 24px 42px rgba(10, 33, 57, 0.12),
            0 8px 18px rgba(10, 33, 57, 0.05),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

    .service-card::before {
        inset: 0 0 auto;
        height: 5.2rem;
        background:
            linear-gradient(180deg, rgba(220, 232, 243, 0.9), rgba(247, 250, 253, 0)),
            linear-gradient(90deg, transparent, rgba(16, 59, 99, 0.14), transparent);
    }

    .service-card::after {
        right: -1.2rem;
        bottom: -1rem;
        width: 7.2rem;
        height: 7.2rem;
        opacity: 0.46;
        transform: translate3d(0, 0, 0);
    }

    .service-card > * {
        position: relative;
        z-index: 1;
    }

    .service-card-head {
        margin-bottom: 0.92rem;
        padding-bottom: 0.9rem;
        border-bottom: 1px solid rgba(16, 59, 99, 0.08);
    }

    .service-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 0;
        border-radius: 18px;
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.88),
            0 14px 28px rgba(16, 59, 99, 0.12),
            0 0 0 8px rgba(16, 59, 99, 0.04);
    }

    .service-icon-glyph {
        font-size: 1.18rem;
    }

    .service-card-body {
        gap: 0.72rem;
    }

    .service-card h3 {
        margin: 0;
        min-width: 0;
        font-size: 1.14rem;
        line-height: 1.1;
        text-wrap: balance;
    }

    .service-card p {
        padding: 0.92rem 0.96rem;
        border-radius: 18px;
        border: 1px solid rgba(16, 59, 99, 0.06);
        background: linear-gradient(180deg, rgba(246, 250, 253, 0.98), rgba(232, 239, 246, 0.92));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
        font-size: 0.91rem;
        line-height: 1.6;
        color: rgba(16, 33, 50, 0.78);
    }

    .service-points {
        gap: 0.56rem;
        margin-top: 0.82rem;
    }

    .service-points li {
        padding: 0.78rem 0.9rem 0.78rem 2.22rem;
        border-radius: 16px;
        font-size: 0.83rem;
        line-height: 1.42;
        color: rgba(11, 39, 66, 0.8);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 251, 0.94));
        border-color: rgba(16, 59, 99, 0.08);
        box-shadow:
            0 10px 20px rgba(10, 33, 57, 0.04),
            inset 0 1px 0 rgba(255, 255, 255, 0.9);
    }

    .service-points li::before {
        left: 0.92rem;
        top: 1rem;
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: radial-gradient(circle at 35% 35%, #9bc1e3 0 24%, var(--primary) 25% 100%);
        box-shadow: 0 0 0 4px rgba(16, 59, 99, 0.08);
    }

    .contact-point {
        padding: 0.95rem 0.9rem;
    }

    .contact-form-card {
        border-radius: 22px;
    }

    .flash {
        border-radius: 17px;
    }

    .contact-point h3,
    .special-cta-card h3 {
        max-width: 13ch;
        font-size: 1.06rem;
    }

    .contact-point p,
    .special-cta-card p {
        max-width: 24ch;
        font-size: 0.92rem;
        line-height: 1.58;
    }

    .special-cta-card {
        padding: 1.1rem;
    }

    .contact-form input,
    .contact-form textarea {
        border-radius: 17px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 5px;
        width: 100%;
        max-width: none;
        margin-inline: 0;
    }

    .gallery-card {
        width: 100%;
        min-width: 0;
        padding: 0;
        overflow: hidden;
        background: transparent;
        box-shadow: none;
    }

    .gallery-media,
    .gallery-skeleton {
        width: 100%;
        border: 3px solid #ffffff;
        border-radius: 15px;
        box-shadow: 0 10px 20px rgba(10, 33, 57, 0.08);
    }

    .cta-strip-actions,
    .footer-actions,
    .special-cta-actions {
        flex-direction: column;
    }
}
