:root {
    --background: #f4f8fa;
    --background-deep: #ddebef;
    --surface: rgba(255, 255, 255, 0.92);
    --surface-strong: #ffffff;
    --surface-dark: #4a6774;
    --text-main: #27404d;
    --text-muted: #667d89;
    --line: rgba(95, 124, 137, 0.14);
    --accent: #5a98ab;
    --accent-strong: #2f7788;
    --accent-soft: rgba(90, 152, 171, 0.12);
    --shadow: 0 18px 40px rgba(86, 116, 131, 0.08);
    --radius-large: 24px;
    --radius-medium: 18px;
    --radius-small: 14px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
    color: var(--text-main);
    background:
        radial-gradient(circle at top left, rgba(90, 152, 171, 0.12), transparent 24%),
        radial-gradient(circle at right 15%, rgba(192, 223, 231, 0.34), transparent 22%),
        linear-gradient(180deg, #fbfeff 0%, var(--background) 58%, #edf5f7 100%);
    position: relative;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font: inherit;
}

.page-glow {
    position: fixed;
    width: 20rem;
    height: 20rem;
    border-radius: 50%;
    filter: blur(70px);
    opacity: 0.22;
    pointer-events: none;
    z-index: 0;
}

.page-glow-left {
    top: -6rem;
    left: -10rem;
    background: rgba(90, 152, 171, 0.18);
}

.page-glow-right {
    right: -10rem;
    bottom: 8rem;
    background: rgba(184, 220, 228, 0.24);
}

.site-shell {
    position: relative;
    z-index: 1;
    width: min(1080px, calc(100% - 28px));
    margin: 0 auto;
    padding: 18px 0 36px;
}

.site-header {
    position: sticky;
    top: 12px;
    z-index: 10;
    margin-bottom: 22px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border: 1px solid rgba(88, 105, 119, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 14px 30px rgba(86, 116, 131, 0.08);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.brand-mark {
    flex: 0 0 auto;
    padding: 8px 10px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
}

.brand-mark img {
    width: 140px;
    height: auto;
}

.section-eyebrow,
.service-card span,
.process-step span,
.note-label {
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.74rem;
    font-weight: 700;
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-call,
.hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 18px;
    text-decoration: none;
}

.header-call span,
.hero-phone span {
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.header-call strong,
.hero-phone strong {
    font-size: 1.12rem;
    line-height: 1.1;
    white-space: nowrap;
}

.header-call {
    flex-wrap: nowrap;
    padding: 10px 16px;
    border: 1px solid rgba(90, 152, 171, 0.22);
    background: rgba(255, 255, 255, 0.92);
    color: var(--accent-strong);
    box-shadow: 0 10px 22px rgba(86, 116, 131, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-call:hover,
.header-call:focus-visible {
    transform: translateY(-1px);
    border-color: rgba(90, 152, 171, 0.34);
    box-shadow: 0 14px 26px rgba(86, 116, 131, 0.1);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 18px;
    color: rgba(50, 66, 77, 0.88);
}

.site-nav a {
    position: relative;
    font-size: 0.92rem;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.language-switcher {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px;
    border-radius: 999px;
    background: rgba(90, 152, 171, 0.08);
}

.language-button {
    border: 0;
    padding: 7px 10px;
    border-radius: 999px;
    color: rgba(50, 66, 77, 0.72);
    background: transparent;
    cursor: pointer;
    transition: background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.language-button:hover,
.language-button:focus-visible {
    transform: translateY(-1px);
    color: var(--text-main);
}

.language-button.is-active {
    background: rgba(255, 255, 255, 0.96);
    color: var(--accent-strong);
}

main {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.section-frame,
.section-block,
.contact-card,
.coverage-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius-large);
    background: var(--surface);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
    gap: 22px;
    padding: 24px;
    overflow: hidden;
}

.hero-copy,
.hero-visual {
    min-width: 0;
}

.hero-copy h1,
.section-heading h2,
.hero-note h2,
.coverage-panel h3,
.contact-card h3 {
    margin: 0;
    line-height: 1.08;
}

.hero-copy h1 {
    font-size: clamp(2.1rem, 3.2vw, 3.8rem);
    max-width: 13ch;
}

.section-eyebrow {
    margin: 0 0 12px;
    color: var(--accent-strong);
}

.hero-text,
.section-heading p,
.hero-note p,
.service-card p,
.advantage-card p,
.process-step p,
.coverage-panel p,
.contact-card p,
.legal-list dt,
.legal-list dd,
.site-footer p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.65;
}

.hero-text {
    max-width: 58ch;
    margin-top: 14px;
    font-size: 0.98rem;
}

.hero-phone {
    width: fit-content;
    min-width: min(100%, 310px);
    margin-top: 18px;
    padding: 14px 16px;
    justify-content: space-between;
    border: 1px solid rgba(90, 152, 171, 0.2);
    background: rgba(248, 252, 253, 0.96);
    box-shadow: 0 14px 28px rgba(86, 116, 131, 0.08);
}

.hero-phone span {
    color: var(--accent-strong);
}

.hero-phone strong {
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
    color: var(--text-main);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
}

.button-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
    box-shadow: 0 12px 24px rgba(47, 119, 136, 0.18);
}

.button-secondary {
    border: 1px solid rgba(88, 105, 119, 0.14);
    background: rgba(255, 255, 255, 0.82);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.stat-card,
.service-card,
.advantage-card,
.process-step {
    padding: 16px;
    border-radius: var(--radius-medium);
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.72);
}

.stat-card strong,
.service-card h3,
.advantage-card h3,
.process-step h3 {
    display: block;
    margin-bottom: 6px;
    font-size: 1rem;
}

.hero-visual {
    position: relative;
    display: grid;
    gap: 18px;
}

.hero-photo {
    position: relative;
    min-height: 430px;
    border-radius: calc(var(--radius-large) - 4px);
    overflow: hidden;
    box-shadow: 0 16px 34px rgba(102, 116, 128, 0.12);
}

.hero-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(61, 95, 109, 0.16));
}

.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    transform: scale(1.02);
}

.hero-note {
    width: min(88%, 320px);
    margin: -76px 0 0 auto;
    padding: 18px;
    border-radius: 20px;
    color: var(--text-main);
    background: linear-gradient(180deg, rgba(248, 252, 253, 0.98), rgba(236, 245, 248, 0.98));
    box-shadow: 0 16px 30px rgba(102, 116, 128, 0.12);
    position: relative;
}

.hero-note h2 {
    font-size: 1.3rem;
    margin-top: 6px;
    margin-bottom: 10px;
}

.hero-note p {
    color: var(--text-muted);
}

.section-block {
    padding: 24px;
}

.section-heading {
    display: grid;
    gap: 12px;
    max-width: 760px;
    margin-bottom: 18px;
}

.section-heading h2 {
    font-size: clamp(1.7rem, 2.4vw, 2.6rem);
}

.services-grid,
.advantage-grid,
.process-grid,
.contact-grid {
    display: grid;
    gap: 16px;
}

.services-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.service-card span,
.process-step span {
    color: var(--accent-strong);
}

.process-step span {
    display: inline-block;
    margin-bottom: 12px;
}

.service-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 12px;
    color: var(--accent-strong);
    background: var(--accent-soft);
    border: 1px solid rgba(90, 152, 171, 0.18);
}

.service-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card {
    min-height: 100%;
    transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover,
.service-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(90, 152, 171, 0.32);
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 34px rgba(103, 117, 129, 0.12);
}

.accent-block {
    background:
        linear-gradient(135deg, rgba(244, 251, 253, 0.98), rgba(232, 243, 246, 0.98)),
        linear-gradient(180deg, rgba(90, 152, 171, 0.08), transparent 60%);
    border-color: rgba(88, 105, 119, 0.1);
}

.accent-block .section-eyebrow {
    color: var(--accent-strong);
}

.accent-block .section-heading h2,
.accent-block .advantage-card h3 {
    color: var(--text-main);
}

.accent-block .section-heading p,
.accent-block .advantage-card p {
    color: var(--text-muted);
}

.advantage-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.advantage-card {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(88, 105, 119, 0.1);
}

.process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 18px;
}

.coverage-panel {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(90, 152, 171, 0.08), rgba(255, 255, 255, 0.88));
}

.coverage-panel h3 {
    font-size: 1.45rem;
}

.contact-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.contact-card {
    padding: 22px;
}

.contact-card-primary {
    background: linear-gradient(135deg, rgba(90, 152, 171, 0.08), rgba(255, 255, 255, 0.92));
}

.contact-actions {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.contact-actions a {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 14px 16px;
    border-radius: var(--radius-small);
    border: 1px solid rgba(88, 105, 119, 0.12);
    background: rgba(255, 255, 255, 0.82);
    transition: transform 180ms ease, border-color 180ms ease;
}

.contact-actions a:hover,
.contact-actions a:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(90, 152, 171, 0.3);
}

.contact-actions span,
.legal-list dt {
    font-size: 0.88rem;
    color: var(--text-muted);
}

.contact-actions strong,
.legal-list dd {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
}

.legal-list {
    margin: 14px 0 0;
    display: grid;
    gap: 12px;
}

.legal-list div {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(31, 42, 51, 0.08);
}

.legal-list div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.site-footer {
    padding: 14px 10px 4px;
    text-align: center;
}

.section-frame,
.section-block {
    animation: fade-up 420ms ease both;
}

.section-frame {
    animation-delay: 80ms;
}

.section-block:nth-of-type(2) {
    animation-delay: 140ms;
}

.section-block:nth-of-type(3) {
    animation-delay: 220ms;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1100px) {
    .site-header {
        border-radius: 30px;
        align-items: flex-start;
        flex-direction: column;
    }

    .header-tools {
        width: 100%;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .header-call {
        order: 3;
    }

    .hero,
    .coverage-panel,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-copy h1 {
        max-width: 14ch;
    }
}

@media (max-width: 760px) {
    .site-shell {
        width: min(100% - 20px, 1200px);
        padding-top: 10px;
    }

    .site-header,
    .hero,
    .section-block,
    .contact-card {
        padding: 18px;
    }

    .brand {
        width: 100%;
    }

    .brand-mark img {
        width: 118px;
    }

    .brand-tag {
        font-size: 0.66rem;
    }

    .site-nav {
        width: 100%;
        flex-wrap: wrap;
        gap: 14px;
    }

    .header-tools {
        gap: 14px;
    }

    .header-call,
    .hero-phone {
        width: 100%;
    }

    .hero-photo {
        min-height: 320px;
    }

    .hero-note {
        width: 100%;
        margin-top: -30px;
    }

    .hero-stats,
    .services-grid,
    .advantage-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-card-top {
        margin-bottom: 10px;
    }

    .hero-copy h1,
    .section-heading h2 {
        max-width: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}
