:root {
    --navy-950: #071c2e;
    --navy-900: #0d2a44;
    --navy-800: #153b5d;
    --blue-700: #176b9e;
    --blue-600: #1e7eb6;
    --blue-500: #2a9bd6;
    --blue-100: #dff3ff;
    --blue-50: #f2faff;
    --accent-600: #ed6f00;
    --accent-500: #ff7a00;
    --accent-400: #ff942e;
    --accent-100: #fff0df;
    --ink: #11283c;
    --muted: #587083;
    --muted-2: #7890a1;
    --line: #d8e5ec;
    --surface: #ffffff;
    --surface-soft: #f5f9fb;
    --success: #1f9f67;
    --shadow-sm: 0 10px 28px rgba(13, 42, 68, 0.08);
    --shadow-md: 0 20px 55px rgba(13, 42, 68, 0.14);
    --shadow-lg: 0 34px 90px rgba(5, 31, 51, 0.22);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --container: 1240px;
    --header-height: 84px;
    --ease: cubic-bezier(.2, .75, .25, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 24px);
    text-size-adjust: 100%;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: var(--surface);
    font-family: Inter, Manrope, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open {
    overflow: hidden;
}

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

img {
    height: auto;
}

button,
input,
select,
textarea {
    font: inherit;
}

button,
select {
    cursor: pointer;
}

button {
    color: inherit;
}

textarea {
    resize: vertical;
}

address {
    font-style: normal;
}

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

p,
h1,
h2,
h3,
ul,
ol,
figure,
fieldset {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--navy-900);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

h1 {
    margin-bottom: 26px;
    font-size: clamp(3rem, 6vw, 6.3rem);
}

h2 {
    margin-bottom: 24px;
    font-size: clamp(2.25rem, 4.2vw, 4.5rem);
}

h3 {
    margin-bottom: 12px;
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}

::selection {
    color: #fff;
    background: var(--accent-500);
}

:focus-visible {
    outline: 3px solid rgba(255, 122, 0, 0.55);
    outline-offset: 4px;
}

[hidden] {
    display: none !important;
}

.container {
    width: min(calc(100% - 40px), var(--container));
    margin-inline: auto;
}

.section {
    position: relative;
    padding-block: 112px;
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.skip-link {
    position: fixed;
    z-index: 9999;
    top: 12px;
    left: 12px;
    padding: 12px 18px;
    color: #fff;
    background: var(--navy-900);
    border-radius: 10px;
    transform: translateY(-160%);
    transition: transform .2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.icon {
    width: 1.25em;
    height: 1.25em;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-weight: 750;
    line-height: 1.1;
    text-align: center;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s ease, color .25s ease, border-color .25s ease;
}

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

.button--small {
    min-height: 44px;
    padding: 11px 20px;
    font-size: .92rem;
}

.button--large {
    min-height: 60px;
    padding: 17px 28px;
}

.button--full {
    width: 100%;
}

.button--accent {
    color: #fff;
    background: linear-gradient(135deg, var(--accent-500), var(--accent-600));
    box-shadow: 0 12px 30px rgba(237, 111, 0, 0.25);
}

.button--accent:hover {
    box-shadow: 0 18px 38px rgba(237, 111, 0, 0.34);
}

.button--ghost {
    color: var(--navy-900);
    background: rgba(255, 255, 255, .72);
    border-color: rgba(13, 42, 68, .13);
    backdrop-filter: blur(12px);
}

.button--ghost:hover {
    background: #fff;
    border-color: rgba(13, 42, 68, .25);
    box-shadow: var(--shadow-sm);
}

.button--white {
    color: var(--navy-900);
    background: #fff;
    box-shadow: 0 18px 44px rgba(5, 29, 47, .18);
}

.button--white:hover {
    color: var(--accent-600);
    box-shadow: 0 24px 50px rgba(5, 29, 47, .26);
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--blue-700);
    font-weight: 800;
}

.text-link .icon {
    transition: transform .2s ease;
}

.text-link:hover .icon {
    transform: translateX(5px);
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--blue-700);
    font-size: .78rem;
    font-weight: 850;
    letter-spacing: .14em;
    line-height: 1.3;
    text-transform: uppercase;
}

.eyebrow > span {
    width: 34px;
    height: 4px;
    border-radius: 999px;
    background: var(--accent-500);
}

.eyebrow--light {
    color: rgba(255, 255, 255, .74);
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
    gap: 64px;
    align-items: end;
    margin-bottom: 54px;
}

.section-heading h2,
.section-heading p:last-child {
    margin-bottom: 0;
}

.section-heading > p {
    color: var(--muted);
    font-size: 1.08rem;
}

.section-heading--center {
    display: block;
    max-width: 790px;
    margin-inline: auto;
    text-align: center;
}

.section-heading--center .eyebrow {
    justify-content: center;
}

.section-heading--center > p {
    max-width: 690px;
    margin-inline: auto;
}

/* Header */
.site-header {
    position: sticky;
    z-index: 1000;
    top: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, .88);
    border-bottom: 1px solid rgba(13, 42, 68, .08);
    backdrop-filter: blur(18px) saturate(140%);
    transition: box-shadow .25s ease, background-color .25s ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, .96);
    box-shadow: 0 10px 30px rgba(13, 42, 68, .08);
}

.header-inner {
    display: flex;
    height: 100%;
    align-items: center;
    gap: 30px;
}

.brand {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 12px;
}

.brand-mark {
    display: grid;
    width: 42px;
    height: 42px;
    grid-template-columns: 17px 20px;
    grid-template-rows: 19px 19px;
    gap: 4px 5px;
}

.brand-mark i {
    display: block;
    border-radius: 2px;
}

.brand-mark i:nth-child(1) {
    background: var(--accent-500);
}

.brand-mark i:nth-child(2) {
    grid-row: 2;
    background: var(--blue-600);
}

.brand-mark i:nth-child(3) {
    grid-column: 2;
    grid-row: 1 / 3;
    background: var(--navy-900);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-copy strong {
    color: var(--navy-900);
    font-size: 1.04rem;
    font-weight: 900;
    letter-spacing: .04em;
}

.brand-copy small {
    margin-top: 4px;
    color: var(--muted-2);
    font-size: .68rem;
    letter-spacing: .03em;
}

.desktop-nav {
    display: flex;
    margin-left: auto;
    align-items: center;
    gap: 27px;
}

.desktop-nav a {
    position: relative;
    color: #355167;
    font-size: .92rem;
    font-weight: 700;
}

.desktop-nav a::after {
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    height: 2px;
    border-radius: 999px;
    background: var(--accent-500);
    content: "";
    transform: scaleX(0);
    transition: transform .2s ease;
}

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

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

.header-phone {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    line-height: 1.15;
}

.header-phone span {
    color: var(--navy-900);
    font-weight: 850;
}

.header-phone small {
    margin-top: 4px;
    color: var(--muted-2);
    font-size: .67rem;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 0;
    align-items: center;
    justify-content: center;
    color: var(--navy-900);
    background: var(--blue-50);
    border: 1px solid var(--line);
    border-radius: 14px;
}

.menu-toggle .icon {
    width: 25px;
    height: 25px;
}

.mobile-menu {
    position: fixed;
    z-index: 999;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    left: 0;
    padding: 24px 20px 38px;
    overflow-y: auto;
    background: rgba(247, 251, 253, .98);
    backdrop-filter: blur(20px);
}

.mobile-nav {
    display: grid;
    gap: 4px;
}

.mobile-nav a {
    padding: 16px 6px;
    color: var(--navy-900);
    border-bottom: 1px solid var(--line);
    font-size: 1.3rem;
    font-weight: 800;
}

.mobile-menu__contacts {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.mobile-menu__contacts a {
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px;
    color: #fff;
    background: var(--navy-900);
    border-radius: 14px;
    font-weight: 800;
}

.mobile-menu__contacts a:last-child {
    background: #20a968;
}

/* Hero */
.hero {
    position: relative;
    min-height: calc(100svh - var(--header-height));
    padding-block: 68px 86px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 12%, rgba(42, 155, 214, .15), transparent 30%),
        radial-gradient(circle at 78% 40%, rgba(255, 122, 0, .11), transparent 32%),
        linear-gradient(145deg, #f8fcfe 0%, #eef8fd 56%, #fff8ef 100%);
}

.hero::before {
    position: absolute;
    top: 0;
    right: 0;
    width: 36%;
    height: 9px;
    background: var(--accent-500);
    content: "";
}

.hero-decoration {
    position: absolute;
    border: 1px solid rgba(23, 107, 158, .12);
    border-radius: 50%;
    pointer-events: none;
}

.hero-decoration--one {
    top: 7%;
    left: -180px;
    width: 460px;
    height: 460px;
}

.hero-decoration--two {
    right: -130px;
    bottom: -170px;
    width: 520px;
    height: 520px;
}

.hero-grid {
    display: grid;
    min-height: 670px;
    grid-template-columns: minmax(0, .94fr) minmax(0, 1.06fr);
    gap: 70px;
    align-items: center;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 em {
    display: block;
    color: var(--blue-700);
    font-style: normal;
}

.hero-lead {
    max-width: 670px;
    margin-bottom: 34px;
    color: #476276;
    font-size: clamp(1.1rem, 1.55vw, 1.35rem);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 28px;
    margin: 32px 0 0;
    padding: 0;
    list-style: none;
}

.hero-points li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #38566c;
    font-size: .9rem;
    font-weight: 750;
}

.hero-points .icon {
    width: 19px;
    height: 19px;
    padding: 3px;
    color: #fff;
    background: var(--success);
    border-radius: 50%;
    stroke-width: 2.5;
}

.hero-visual {
    position: relative;
    z-index: 1;
    min-width: 0;
}

.hero-visual picture {
    display: block;
    overflow: hidden;
    border: 10px solid rgba(255, 255, 255, .78);
    border-radius: 42px 42px 130px 42px;
    box-shadow: var(--shadow-lg);
    transform: rotate(1.2deg);
}

.hero-visual picture img {
    width: 100%;
    aspect-ratio: 1.36 / 1;
    object-fit: cover;
    transition: transform .8s var(--ease);
}

.hero-visual:hover picture img {
    transform: scale(1.025);
}

.hero-accent {
    position: absolute;
    z-index: -1;
    right: -32px;
    bottom: -32px;
    width: 64%;
    height: 68%;
    background: var(--blue-600);
    border-radius: 30px 30px 120px 30px;
    opacity: .14;
}

.hero-badge {
    position: absolute;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    background: rgba(255, 255, 255, .94);
    border: 1px solid rgba(255, 255, 255, .9);
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(12px);
}

.hero-badge--top {
    top: 40px;
    left: -48px;
}

.hero-badge--top .icon {
    width: 31px;
    height: 31px;
    color: var(--blue-700);
}

.hero-badge--top span {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.hero-badge--top strong {
    color: var(--navy-900);
    font-size: .93rem;
}

.hero-badge--top small {
    margin-top: 4px;
    color: var(--muted);
    font-size: .72rem;
}

.hero-badge--bottom {
    right: -20px;
    bottom: 34px;
    color: #fff;
    background: linear-gradient(145deg, var(--accent-500), var(--accent-600));
    border-color: rgba(255, 255, 255, .18);
}

.hero-badge--bottom strong {
    font-size: 2.4rem;
    line-height: 1;
}

.hero-badge--bottom span {
    font-size: .78rem;
    font-weight: 750;
    line-height: 1.25;
}

/* Facts */
.fact-strip {
    position: relative;
    z-index: 5;
    margin-top: -36px;
}

.fact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(13, 42, 68, .08);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.fact {
    position: relative;
    padding: 25px 28px;
}

.fact:not(:last-child)::after {
    position: absolute;
    top: 24%;
    right: 0;
    width: 1px;
    height: 52%;
    background: var(--line);
    content: "";
}

.fact strong,
.fact span {
    display: block;
}

.fact strong {
    color: var(--navy-900);
    font-size: 1.12rem;
    line-height: 1.2;
    text-transform: uppercase;
}

.fact span {
    margin-top: 5px;
    color: var(--muted);
    font-size: .82rem;
}

/* Services */
.services {
    background: #fff;
}

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

.service-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s ease;
}

.service-card:hover {
    z-index: 2;
    border-color: rgba(30, 126, 182, .28);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.service-card__image {
    position: relative;
    overflow: hidden;
}

.service-card__image::after {
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(transparent, rgba(4, 24, 39, .34));
    content: "";
}

.service-card__image img {
    width: 100%;
    aspect-ratio: 1.38 / 1;
    object-fit: cover;
    transition: transform .55s var(--ease);
}

.service-card:hover .service-card__image img {
    transform: scale(1.045);
}

.service-card__number {
    position: absolute;
    z-index: 2;
    right: 16px;
    bottom: 14px;
    color: rgba(255, 255, 255, .9);
    font-size: 1.6rem;
    font-weight: 900;
    letter-spacing: -.04em;
}

.service-card__body {
    position: relative;
    padding: 30px 26px 28px;
}

.service-card__icon {
    position: absolute;
    top: -26px;
    left: 25px;
    display: grid;
    width: 52px;
    height: 52px;
    place-items: center;
    color: #fff;
    background: var(--blue-700);
    border: 5px solid #fff;
    border-radius: 15px;
    box-shadow: 0 10px 24px rgba(23, 107, 158, .22);
}

.service-card__icon .icon {
    width: 24px;
    height: 24px;
}

.service-card__body h3 {
    margin-top: 6px;
}

.service-card__body p {
    min-height: 78px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: .95rem;
}

.tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tag-list li {
    padding: 6px 10px;
    color: var(--blue-700);
    background: var(--blue-50);
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 800;
}

/* Compare */
.compare-section {
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 88% 12%, rgba(42, 155, 214, .25), transparent 30%),
        linear-gradient(135deg, var(--navy-950), var(--navy-800));
}

.compare-section::before {
    position: absolute;
    top: -120px;
    right: 20%;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 50%;
    content: "";
}

.compare-grid {
    display: grid;
    grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
    gap: 72px;
    align-items: center;
}

.compare-copy {
    position: relative;
    z-index: 2;
}

.compare-copy h2 {
    color: #fff;
}

.compare-copy > p:not(.eyebrow):not(.compare-note) {
    color: rgba(255, 255, 255, .72);
    font-size: 1.04rem;
}

.check-list {
    display: grid;
    gap: 12px;
    margin: 28px 0;
    padding: 0;
    list-style: none;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 11px;
}

.check-list .icon {
    width: 21px;
    height: 21px;
    padding: 4px;
    color: #fff;
    background: var(--success);
    border-radius: 50%;
    stroke-width: 2.5;
}

.check-list--light {
    color: rgba(255, 255, 255, .9);
}

.compare-note {
    margin-bottom: 0;
    color: var(--blue-100);
    font-size: .88rem;
    font-weight: 750;
}

.compare {
    --position: 52%;
    position: relative;
    overflow: hidden;
    border: 8px solid rgba(255, 255, 255, .1);
    border-radius: 28px;
    box-shadow: 0 35px 70px rgba(0, 0, 0, .28);
    isolation: isolate;
}

.compare img {
    width: 100%;
    aspect-ratio: 1.34 / 1;
    object-fit: cover;
}

.compare__after {
    position: absolute;
    z-index: 2;
    inset: 0;
    overflow: hidden;
    clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.compare__handle {
    position: absolute;
    z-index: 4;
    top: 0;
    bottom: 0;
    left: var(--position);
    width: 3px;
    background: #fff;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .15);
    transform: translateX(-50%);
    pointer-events: none;
}

.compare__handle i {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 54px;
    height: 54px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 26px rgba(0, 0, 0, .28);
    transform: translate(-50%, -50%);
}

.compare__handle i::before,
.compare__handle i::after {
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border-top: 7px solid transparent;
    border-bottom: 7px solid transparent;
    content: "";
    transform: translateY(-50%);
}

.compare__handle i::before {
    left: 10px;
    border-right: 9px solid var(--blue-700);
}

.compare__handle i::after {
    right: 10px;
    border-left: 9px solid var(--accent-500);
}

.compare__range {
    position: absolute;
    z-index: 6;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    opacity: .001;
    cursor: ew-resize;
}

.compare__label {
    position: absolute;
    z-index: 5;
    top: 18px;
    padding: 8px 13px;
    color: #fff;
    background: rgba(7, 28, 46, .72);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.compare__label--before {
    left: 18px;
}

.compare__label--after {
    right: 18px;
    background: rgba(255, 122, 0, .84);
}

/* Color selector */
.color-section {
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(223, 243, 255, .68) 0 45%, transparent 45%),
        #fff;
}

.color-grid {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 90px;
    align-items: center;
}

.color-stage {
    position: relative;
    display: grid;
    min-height: 630px;
    place-items: center;
    padding: 45px;
    overflow: hidden;
    background: linear-gradient(145deg, #fff, #eaf7fd);
    border: 1px solid rgba(30, 126, 182, .12);
    border-radius: 46px 46px 120px 46px;
    box-shadow: var(--shadow-md);
}

.color-stage::before {
    position: absolute;
    right: 7%;
    bottom: 8%;
    left: 7%;
    height: 72px;
    background: radial-gradient(ellipse, rgba(13, 42, 68, .22), transparent 68%);
    filter: blur(12px);
    content: "";
}

.color-stage__glow {
    position: absolute;
    top: 4%;
    right: 7%;
    width: 220px;
    height: 220px;
    background: rgba(255, 122, 0, .11);
    border-radius: 50%;
    filter: blur(10px);
}

.color-stage > img {
    position: relative;
    z-index: 2;
    width: min(92%, 530px);
    filter: drop-shadow(0 26px 24px rgba(13, 42, 68, .20));
    transition: opacity .2s ease, transform .35s var(--ease);
}

.color-stage.is-changing > img {
    opacity: .2;
    transform: scale(.96);
}

.color-stage__caption {
    position: absolute;
    z-index: 4;
    bottom: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    padding: 13px 17px;
    background: rgba(255, 255, 255, .86);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 14px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.color-stage__caption span {
    color: var(--muted);
    font-size: .7rem;
    text-transform: uppercase;
}

.color-stage__caption strong {
    color: var(--navy-900);
}

.color-copy > p:not(.eyebrow) {
    max-width: 680px;
    color: var(--muted);
    font-size: 1.05rem;
}

.swatches {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 11px;
    margin-top: 30px;
}

.swatch {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
    padding: 9px;
    color: var(--ink);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 13px;
    text-align: left;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.swatch:hover {
    transform: translateY(-2px);
}

.swatch.is-active {
    border-color: var(--accent-500);
    box-shadow: 0 0 0 3px rgba(255, 122, 0, .12);
}

.swatch img {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    object-fit: cover;
    border-radius: 9px;
}

.swatch span {
    overflow: hidden;
    font-size: .78rem;
    font-weight: 750;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.color-note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-top: 23px;
    padding: 15px 17px;
    color: #456276;
    background: var(--blue-50);
    border-radius: 14px;
    font-size: .82rem;
}

.color-note .icon {
    width: 23px;
    height: 23px;
    color: var(--blue-700);
}

/* Production */
.production {
    background: var(--surface-soft);
}

.production-grid {
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr);
    gap: 80px;
    align-items: center;
}

.production-copy > p:not(.eyebrow) {
    color: var(--muted);
    font-size: 1.04rem;
}

.production-points {
    display: grid;
    gap: 18px;
    margin-top: 32px;
}

.production-points article {
    display: flex;
    gap: 16px;
    padding: 18px;
    background: rgba(255, 255, 255, .8);
    border: 1px solid var(--line);
    border-radius: 16px;
}

.production-points article > span {
    display: grid;
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    place-items: center;
    color: #fff;
    background: var(--blue-700);
    border-radius: 13px;
}

.production-points article > span .icon {
    width: 23px;
    height: 23px;
}

.production-points h3 {
    margin-bottom: 5px;
    font-size: 1rem;
    letter-spacing: -.01em;
}

.production-points p {
    margin: 0;
    color: var(--muted);
    font-size: .87rem;
}

.supplier-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 13px;
    margin-top: 30px;
}

.supplier-row > span {
    color: var(--muted-2);
    font-size: .77rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.supplier-logo {
    display: grid;
    width: 104px;
    height: 45px;
    place-items: center;
    padding: 6px 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
}

.supplier-logo img {
    max-width: 86px;
    max-height: 29px;
    object-fit: contain;
}

.production-media {
    position: relative;
    min-height: 650px;
}

.production-media figure {
    margin: 0;
    overflow: hidden;
    background: #fff;
    border: 8px solid #fff;
    border-radius: 24px;
    box-shadow: var(--shadow-md);
}

.production-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.production-media figcaption {
    position: absolute;
    right: 14px;
    bottom: 14px;
    padding: 7px 10px;
    color: #fff;
    background: rgba(7, 28, 46, .76);
    border-radius: 8px;
    font-size: .7rem;
    backdrop-filter: blur(8px);
}

.production-media__large {
    position: absolute;
    top: 0;
    right: 0;
    width: 82%;
    height: 60%;
}

.production-media__small {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70%;
    height: 48%;
}

.production-media__stamp {
    position: absolute;
    z-index: 3;
    right: 2%;
    bottom: 13%;
    display: grid;
    width: 150px;
    height: 150px;
    place-items: center;
    align-content: center;
    color: #fff;
    background: var(--accent-500);
    border: 10px solid var(--surface-soft);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.production-media__stamp strong {
    font-size: 2rem;
    line-height: 1;
}

.production-media__stamp span {
    margin-top: 6px;
    font-size: .68rem;
    font-weight: 800;
    line-height: 1.2;
    text-transform: uppercase;
}

/* Projects */
.projects {
    background: #fff;
}

.project-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 30px;
}

.filter-button {
    padding: 10px 17px;
    color: #476276;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 800;
    transition: all .2s ease;
}

.filter-button:hover,
.filter-button.is-active {
    color: #fff;
    background: var(--navy-900);
    border-color: var(--navy-900);
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 22px;
}

.project-card {
    grid-column: span 4;
    min-width: 0;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}

.project-card:nth-child(1),
.project-card:nth-child(6) {
    grid-column: span 8;
}

.project-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-5px);
}

.project-card__button {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden;
    background: var(--navy-900);
    border: 0;
}

.project-card__button img {
    width: 100%;
    aspect-ratio: 1.32 / 1;
    object-fit: cover;
    transition: opacity .3s ease, transform .5s var(--ease);
}

.project-card:nth-child(1) .project-card__button img,
.project-card:nth-child(6) .project-card__button img {
    aspect-ratio: 1.8 / 1;
}

.project-card:hover .project-card__button img {
    opacity: .88;
    transform: scale(1.035);
}

.project-card__zoom {
    position: absolute;
    right: 16px;
    bottom: 16px;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: #fff;
    background: rgba(255, 122, 0, .92);
    border-radius: 50%;
    font-size: 1.45rem;
    font-weight: 300;
    opacity: 0;
    transform: scale(.8);
    transition: opacity .25s ease, transform .25s ease;
}

.project-card:hover .project-card__zoom,
.project-card__button:focus-visible .project-card__zoom {
    opacity: 1;
    transform: scale(1);
}

.project-card__body {
    padding: 18px 20px 21px;
}

.project-card__body span {
    color: var(--blue-700);
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.project-card__body h3 {
    margin: 7px 0 0;
    font-size: 1.08rem;
    letter-spacing: -.015em;
}

/* Process */
.process {
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 15%, rgba(42, 155, 214, .09), transparent 26%),
        var(--blue-50);
}

.process-list {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin: 60px 0 0;
    padding: 0;
    list-style: none;
}

.process-list::before {
    position: absolute;
    top: 47px;
    right: 8%;
    left: 8%;
    height: 2px;
    background: repeating-linear-gradient(90deg, var(--line) 0 10px, transparent 10px 18px);
    content: "";
}

.process-list li {
    position: relative;
    z-index: 1;
    padding: 0 14px;
    text-align: center;
}

.process-list li > span {
    position: absolute;
    top: -9px;
    right: 17%;
    color: var(--accent-500);
    font-size: .75rem;
    font-weight: 900;
}

.process-icon {
    display: grid;
    width: 96px;
    height: 96px;
    margin: 0 auto 24px;
    place-items: center;
    color: var(--blue-700);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    box-shadow: var(--shadow-sm);
    transform: rotate(-3deg);
    transition: transform .3s var(--ease), color .3s ease, background-color .3s ease;
}

.process-list li:nth-child(even) .process-icon {
    transform: rotate(3deg);
}

.process-list li:hover .process-icon {
    color: #fff;
    background: var(--blue-700);
    transform: rotate(0) translateY(-5px);
}

.process-icon .icon {
    width: 38px;
    height: 38px;
}

.process-list h3 {
    font-size: 1.05rem;
}

.process-list p {
    margin: 0;
    color: var(--muted);
    font-size: .84rem;
}

/* Estimate */
.estimate {
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 10% 90%, rgba(255, 255, 255, .14), transparent 24%),
        linear-gradient(135deg, #f57900 0%, #ff8e22 45%, #e76600 100%);
}

.estimate::before,
.estimate::after {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    content: "";
}

.estimate::before {
    top: -150px;
    left: -80px;
    width: 420px;
    height: 420px;
}

.estimate::after {
    right: -200px;
    bottom: -280px;
    width: 650px;
    height: 650px;
}

.estimate-shell {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
    gap: 80px;
    align-items: center;
}

.estimate-copy h2 {
    color: #fff;
}

.estimate-copy > p:not(.eyebrow) {
    color: rgba(255, 255, 255, .86);
    font-size: 1.04rem;
}

.estimate-contact {
    display: flex;
    flex-direction: column;
    margin-top: 36px;
    padding: 20px 22px;
    background: rgba(7, 28, 46, .14);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 17px;
    backdrop-filter: blur(10px);
}

.estimate-contact span,
.estimate-contact small {
    color: rgba(255, 255, 255, .72);
    font-size: .75rem;
}

.estimate-contact a {
    margin-block: 3px;
    font-size: 1.55rem;
    font-weight: 900;
}

.estimate-form {
    padding: 34px;
    color: var(--ink);
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .6);
    border-radius: 27px;
    box-shadow: 0 36px 80px rgba(87, 35, 0, .28);
}

.form-row {
    display: grid;
    gap: 8px;
    margin-bottom: 18px;
}

.form-row label,
.form-priority legend {
    color: var(--navy-900);
    font-size: .82rem;
    font-weight: 850;
}

.form-row label span {
    color: var(--muted-2);
    font-weight: 600;
}

.form-row select,
.form-row textarea {
    width: 100%;
    color: var(--ink);
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 13px;
    outline: 0;
    transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.form-row select {
    height: 54px;
    padding: 0 44px 0 15px;
}

.form-row textarea {
    min-height: 92px;
    padding: 13px 15px;
}

.form-row select:focus,
.form-row textarea:focus {
    background: #fff;
    border-color: var(--blue-600);
    box-shadow: 0 0 0 4px rgba(30, 126, 182, .12);
}

.form-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-priority {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 20px;
    padding: 0;
    border: 0;
}

.form-priority legend {
    width: 100%;
    margin-bottom: 8px;
}

.form-priority input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.form-priority span {
    display: block;
    padding: 9px 13px;
    color: #496479;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: .76rem;
    font-weight: 800;
    transition: all .2s ease;
}

.form-priority input:checked + span {
    color: #fff;
    background: var(--blue-700);
    border-color: var(--blue-700);
}

.form-priority input:focus-visible + span {
    outline: 3px solid rgba(255, 122, 0, .55);
    outline-offset: 3px;
}

.estimate-form .button .icon {
    width: 22px;
    height: 22px;
}

.form-privacy {
    margin: 14px 0 0;
    color: var(--muted-2);
    font-size: .72rem;
    line-height: 1.45;
    text-align: center;
}

/* Dealers */
.dealers {
    background: var(--surface-soft);
}

.dealers-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .75fr);
    gap: 40px 70px;
    align-items: center;
    padding: 65px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 85% 5%, rgba(42, 155, 214, .32), transparent 28%),
        linear-gradient(135deg, var(--navy-950), var(--navy-800));
    border-radius: 36px;
    box-shadow: var(--shadow-lg);
}

.dealers-shell::after {
    position: absolute;
    top: -95px;
    right: -70px;
    width: 360px;
    height: 360px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 50%;
    content: "";
}

.dealers-number {
    position: absolute;
    right: 5%;
    bottom: -13%;
    color: rgba(255, 255, 255, .035);
    font-size: 14rem;
    font-weight: 950;
    letter-spacing: -.09em;
    line-height: 1;
    pointer-events: none;
}

.dealers-copy,
.dealers-benefits,
.dealer-link {
    position: relative;
    z-index: 2;
}

.dealers-copy h2 {
    color: #fff;
    font-size: clamp(2.2rem, 4vw, 4rem);
}

.dealers-copy > p:not(.eyebrow) {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .72);
}

.dealers-benefits {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dealers-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 15px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 12px;
    font-size: .9rem;
    font-weight: 750;
}

.dealers-benefits .icon {
    width: 20px;
    height: 20px;
    color: var(--accent-400);
    stroke-width: 2.4;
}

.dealer-link {
    grid-column: 1 / -1;
    justify-self: start;
}

/* Reviews */
.reviews {
    overflow: hidden;
    background: #fff;
}

.slider-controls {
    display: flex;
    gap: 8px;
}

.slider-button {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: var(--navy-900);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all .2s ease;
}

.slider-button:hover {
    color: #fff;
    background: var(--navy-900);
    border-color: var(--navy-900);
}

.reviews-track {
    display: flex;
    gap: 20px;
    padding: 4px 2px 25px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--line) transparent;
}

.review-card {
    display: flex;
    min-width: min(390px, 84vw);
    min-height: 330px;
    flex: 0 0 min(390px, 84vw);
    flex-direction: column;
    padding: 31px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 22px;
    scroll-snap-align: start;
}

.review-quote {
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: 22px;
    place-items: center;
    color: #fff;
    background: var(--accent-500);
    border-radius: 14px;
}

.review-quote .icon {
    width: 25px;
    height: 25px;
}

.review-card > p {
    margin-bottom: 26px;
    color: #405d72;
    font-size: .98rem;
}

.review-card footer {
    display: flex;
    margin-top: auto;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    color: #fff;
    background: var(--blue-700);
    border-radius: 50%;
    font-weight: 900;
}

.review-card footer div {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.review-card footer strong {
    color: var(--navy-900);
    font-size: .9rem;
}

.review-card footer small {
    margin-top: 3px;
    color: var(--muted-2);
    font-size: .72rem;
}

.reviews-note {
    margin: 12px 0 0;
    color: var(--muted-2);
    font-size: .75rem;
}

/* FAQ */
.faq {
    background: var(--surface-soft);
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(280px, .55fr) minmax(0, 1.45fr);
    gap: 90px;
    align-items: start;
}

.faq-intro {
    position: sticky;
    top: calc(var(--header-height) + 36px);
}

.faq-intro > p:not(.eyebrow) {
    color: var(--muted);
}

.faq-list {
    display: grid;
    gap: 10px;
}

.faq-list details {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.faq-list details[open] {
    border-color: rgba(30, 126, 182, .28);
    box-shadow: var(--shadow-sm);
}

.faq-list summary {
    display: grid;
    grid-template-columns: 40px 1fr 30px;
    gap: 14px;
    align-items: center;
    padding: 20px 22px;
    color: var(--navy-900);
    font-weight: 820;
    list-style: none;
    cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary > span {
    color: var(--blue-700);
    font-size: .72rem;
    font-weight: 900;
}

.faq-list summary i {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: var(--blue-700);
    background: var(--blue-50);
    border-radius: 50%;
    font-style: normal;
    transition: transform .25s ease, color .25s ease, background-color .25s ease;
}

.faq-list details[open] summary i {
    color: #fff;
    background: var(--accent-500);
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 68px 21px 76px;
}

.faq-answer p {
    margin: 0;
    color: var(--muted);
}

/* Contacts */
.contacts {
    background: #fff;
}

.contacts-grid {
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
    gap: 70px;
    align-items: center;
}

.contact-list {
    display: grid;
    gap: 12px;
    margin-top: 34px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    background: var(--surface-soft);
    border: 1px solid var(--line);
    border-radius: 16px;
    transition: transform .25s var(--ease), border-color .25s ease, background-color .25s ease;
}

.contact-item:hover {
    background: #fff;
    border-color: rgba(30, 126, 182, .35);
    transform: translateX(5px);
}

.contact-item > span {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    color: #fff;
    background: var(--blue-700);
    border-radius: 14px;
}

.contact-item:nth-child(2) > span {
    background: var(--accent-500);
}

.contact-item:nth-child(3) > span {
    background: var(--navy-900);
}

.contact-item > span .icon {
    width: 24px;
    height: 24px;
}

.contact-item div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    line-height: 1.3;
}

.contact-item small {
    color: var(--muted-2);
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.contact-item strong {
    margin-top: 4px;
    overflow-wrap: anywhere;
    color: var(--navy-900);
    font-size: 1.02rem;
}

.contact-item em {
    margin-top: 4px;
    color: var(--muted);
    font-size: .75rem;
    font-style: normal;
}

.extra-contacts {
    margin-top: 18px;
    color: var(--muted);
    font-size: .82rem;
}

.extra-contacts summary {
    color: var(--blue-700);
    font-weight: 800;
    cursor: pointer;
}

.extra-contacts p {
    margin: 8px 0 0;
}

.extra-contacts a {
    color: var(--navy-900);
    font-weight: 750;
}

.map-card {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    background:
        linear-gradient(28deg, transparent 46%, rgba(255, 255, 255, .45) 46% 49%, transparent 49%),
        linear-gradient(120deg, #dbeef7, #f5fbfe);
    border: 1px solid var(--line);
    border-radius: 34px;
    box-shadow: var(--shadow-md);
    isolation: isolate;
}

.map-card::before {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(23, 107, 158, .08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(23, 107, 158, .08) 1px, transparent 1px);
    background-size: 38px 38px;
    content: "";
    opacity: .62;
}

.map-card__road {
    position: absolute;
    z-index: 1;
    display: block;
    height: 30px;
    background: #fff;
    border: 1px solid rgba(13, 42, 68, .06);
    border-radius: 999px;
    box-shadow: 0 5px 10px rgba(13, 42, 68, .06);
}

.map-card__road::after {
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--accent-400) 0 12px, transparent 12px 21px);
    content: "";
}

.map-card__road--one {
    top: 33%;
    left: -9%;
    width: 120%;
    transform: rotate(-18deg);
}

.map-card__road--two {
    top: 54%;
    left: -12%;
    width: 112%;
    transform: rotate(32deg);
}

.map-card__road--three {
    top: 10%;
    left: 53%;
    width: 72%;
    transform: rotate(78deg);
}

.map-card__water {
    position: absolute;
    z-index: 0;
    right: -13%;
    bottom: -14%;
    width: 60%;
    height: 48%;
    background: linear-gradient(145deg, #6dc4e9, #3095c8);
    border-radius: 50% 50% 0 0;
    opacity: .75;
    transform: rotate(-16deg);
}

.map-card__pin {
    position: absolute;
    z-index: 4;
    top: 42%;
    left: 53%;
    display: grid;
    width: 72px;
    height: 72px;
    place-items: center;
    color: #fff;
    background: var(--accent-500);
    border: 9px solid rgba(255, 255, 255, .9);
    border-radius: 50% 50% 50% 12px;
    box-shadow: 0 22px 45px rgba(237, 111, 0, .35);
    transform: rotate(-45deg) translate(-50%, -50%);
    transform-origin: center;
    transition: transform .3s var(--ease);
}

.map-card__pin .icon {
    width: 28px;
    height: 28px;
    transform: rotate(45deg);
}

.map-card:hover .map-card__pin {
    transform: rotate(-45deg) translate(-50%, -58%);
}

.map-card__label {
    position: absolute;
    z-index: 5;
    right: 24px;
    bottom: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    padding: 20px 22px;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(255, 255, 255, .88);
    border-radius: 18px;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(12px);
}

.map-card__label small {
    color: var(--blue-700);
    font-size: .7rem;
    font-weight: 850;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.map-card__label strong {
    margin-top: 4px;
    color: var(--navy-900);
    font-size: 1.18rem;
}

.map-card__label em {
    display: flex;
    margin-top: 10px;
    align-items: center;
    gap: 7px;
    color: var(--accent-600);
    font-size: .82rem;
    font-style: normal;
    font-weight: 850;
}

/* Footer */
.site-footer {
    padding: 70px 0 26px;
    color: rgba(255, 255, 255, .72);
    background: var(--navy-950);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr .7fr .85fr 1fr;
    gap: 55px;
}

.brand--footer .brand-copy strong {
    color: #fff;
}

.brand--footer .brand-copy small {
    color: rgba(255, 255, 255, .52);
}

.footer-brand p {
    max-width: 330px;
    margin: 22px 0 0;
    font-size: .88rem;
}

.footer-title {
    margin-bottom: 20px;
    color: #fff;
    font-size: .84rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.footer-nav,
.footer-contacts {
    display: grid;
    gap: 10px;
}

.footer-nav a,
.footer-contacts a,
.footer-map-link {
    transition: color .2s ease;
}

.footer-nav a:hover,
.footer-contacts a:hover,
.footer-map-link:hover {
    color: var(--accent-400);
}

.footer-contacts span,
.site-footer address {
    font-size: .88rem;
}

.footer-map-link {
    display: inline-flex;
    margin-top: 13px;
    align-items: center;
    gap: 7px;
    color: #fff;
    font-size: .82rem;
    font-weight: 800;
}

.footer-bottom {
    display: flex;
    margin-top: 54px;
    padding-top: 23px;
    justify-content: space-between;
    gap: 30px;
    border-top: 1px solid rgba(255, 255, 255, .1);
}

.footer-bottom p {
    max-width: 650px;
    margin: 0;
    color: rgba(255, 255, 255, .48);
    font-size: .72rem;
}

.mobile-actions {
    display: none;
}

/* Dialog */
.lightbox {
    width: min(1100px, calc(100% - 32px));
    max-width: none;
    padding: 0;
    overflow: visible;
    background: transparent;
    border: 0;
}

.lightbox::backdrop {
    background: rgba(3, 18, 30, .88);
    backdrop-filter: blur(8px);
}

.lightbox img {
    width: 100%;
    max-height: 82vh;
    object-fit: contain;
    background: #061827;
    border-radius: 18px;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .55);
}

.lightbox p {
    margin: 12px 0 0;
    color: #fff;
    font-weight: 750;
    text-align: center;
}

.lightbox__close {
    position: absolute;
    z-index: 2;
    top: -18px;
    right: -18px;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    color: #fff;
    background: var(--accent-500);
    border: 4px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
}

.lightbox__close .icon {
    width: 22px;
    height: 22px;
}

/* Internal pages */
.internal-hero {
    padding: 90px 0 65px;
    background: linear-gradient(145deg, var(--blue-50), #fff5e9);
}

.internal-hero .container {
    max-width: 920px;
}

.internal-hero h1 {
    font-size: clamp(2.7rem, 6vw, 5.4rem);
}

.internal-content {
    padding: 75px 0 110px;
}

.prose {
    max-width: 860px;
    margin-inline: auto;
}

.prose h2 {
    margin-top: 48px;
    font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.prose h3 {
    margin-top: 34px;
}

.prose p,
.prose li {
    color: #425f73;
}

.prose a {
    color: var(--blue-700);
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.prose-note {
    padding: 18px 20px;
    color: #3d5c70;
    background: var(--blue-50);
    border-left: 4px solid var(--blue-600);
    border-radius: 0 14px 14px 0;
}

.error-page {
    display: grid;
    min-height: calc(100svh - var(--header-height));
    place-items: center;
    padding: 70px 0;
    background: linear-gradient(145deg, var(--blue-50), #fff7ee);
}

.error-card {
    max-width: 760px;
    text-align: center;
}

.error-code {
    color: var(--accent-500);
    font-size: clamp(7rem, 20vw, 15rem);
    font-weight: 950;
    letter-spacing: -.09em;
    line-height: .8;
}

.error-card h1 {
    margin-top: 30px;
    font-size: clamp(2.1rem, 5vw, 4rem);
}

.error-card p {
    max-width: 600px;
    margin-inline: auto;
    color: var(--muted);
}

/* Reveal */
.reveal-ready {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal-ready.is-visible {
    opacity: 1;
    transform: none;
}

/* Responsive */
@media (max-width: 1180px) {
    .desktop-nav {
        gap: 18px;
    }

    .header-contact .button {
        display: none;
    }

    .hero-grid {
        gap: 45px;
    }

    .hero-badge--top {
        left: -25px;
    }

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

    .service-card__body p {
        min-height: auto;
    }

    .color-grid,
    .production-grid {
        gap: 55px;
    }

    .footer-grid {
        grid-template-columns: 1.25fr .75fr .9fr;
    }

    .footer-grid > div:last-child {
        grid-column: 1 / -1;
    }
}

@media (max-width: 980px) {
    :root {
        --header-height: 74px;
    }

    .section {
        padding-block: 88px;
    }

    .desktop-nav,
    .header-contact {
        display: none;
    }

    .menu-toggle {
        display: flex;
        margin-left: auto;
    }

    .hero {
        padding-block: 58px 82px;
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
    }

    .hero-content {
        max-width: 780px;
    }

    .hero-visual {
        width: min(100%, 800px);
        margin-inline: auto;
    }

    .hero-visual picture img {
        aspect-ratio: 1.55 / 1;
    }

    .hero-badge--top {
        left: 22px;
    }

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

    .fact:nth-child(2)::after {
        display: none;
    }

    .fact:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .compare-grid,
    .color-grid,
    .production-grid,
    .estimate-shell,
    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .compare-copy,
    .estimate-copy {
        max-width: 760px;
    }

    .compare {
        max-width: 850px;
    }

    .color-section {
        background: linear-gradient(180deg, rgba(223, 243, 255, .7) 0 38%, #fff 38%);
    }

    .color-stage {
        width: min(100%, 720px);
        min-height: 560px;
        margin-inline: auto;
    }

    .production-copy {
        order: 2;
    }

    .production-media {
        min-height: 620px;
    }

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

    .project-card,
    .project-card:nth-child(1),
    .project-card:nth-child(6) {
        grid-column: auto;
    }

    .project-card:nth-child(1) .project-card__button img,
    .project-card:nth-child(6) .project-card__button img {
        aspect-ratio: 1.32 / 1;
    }

    .process-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px 16px;
    }

    .process-list::before {
        display: none;
    }

    .dealers-shell {
        grid-template-columns: 1fr;
    }

    .dealer-link {
        grid-column: auto;
    }

    .faq-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .faq-intro {
        position: static;
        max-width: 760px;
    }

    .map-card {
        min-height: 480px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr .8fr;
    }

    .footer-grid > div:last-child {
        grid-column: auto;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(calc(100% - 28px), var(--container));
    }

    .section {
        padding-block: 72px;
    }

    h1 {
        font-size: clamp(2.65rem, 14vw, 4.6rem);
    }

    h2 {
        font-size: clamp(2rem, 10vw, 3.25rem);
    }

    .brand-copy strong {
        font-size: .92rem;
    }

    .brand-copy small {
        font-size: .61rem;
    }

    .brand-mark {
        width: 37px;
        height: 37px;
        grid-template-columns: 15px 18px;
        grid-template-rows: 16px 16px;
        gap: 4px;
    }

    .hero {
        padding-top: 43px;
    }

    .hero-grid {
        gap: 42px;
    }

    .hero-lead {
        font-size: 1.02rem;
    }

    .hero-actions {
        display: grid;
    }

    .hero-actions .button {
        width: 100%;
    }

    .hero-points {
        display: grid;
        gap: 12px;
    }

    .hero-visual picture {
        border-width: 6px;
        border-radius: 26px 26px 70px 26px;
        transform: none;
    }

    .hero-visual picture img {
        aspect-ratio: .94 / 1;
    }

    .hero-badge--top {
        top: 18px;
        left: 12px;
        padding: 11px 13px;
    }

    .hero-badge--bottom {
        right: 8px;
        bottom: 14px;
        padding: 11px 13px;
    }

    .hero-badge--bottom strong {
        font-size: 1.7rem;
    }

    .fact-strip {
        margin-top: -25px;
    }

    .fact-grid {
        grid-template-columns: 1fr;
    }

    .fact {
        padding: 18px 20px;
    }

    .fact:not(:last-child)::after {
        top: auto;
        right: 18px;
        bottom: 0;
        left: 18px;
        width: auto;
        height: 1px;
    }

    .fact:nth-child(-n+2) {
        border-bottom: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card__image img {
        aspect-ratio: 1.5 / 1;
    }

    .compare-grid,
    .color-grid,
    .production-grid,
    .estimate-shell,
    .contacts-grid {
        gap: 42px;
    }

    .compare {
        border-width: 5px;
        border-radius: 18px;
    }

    .compare img {
        aspect-ratio: 1 / 1;
    }

    .compare__handle i {
        width: 46px;
        height: 46px;
    }

    .color-stage {
        min-height: 430px;
        padding: 26px;
        border-radius: 28px 28px 70px 28px;
    }

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

    .production-media {
        min-height: 470px;
    }

    .production-media__large {
        width: 88%;
        height: 58%;
    }

    .production-media__small {
        width: 75%;
        height: 47%;
    }

    .production-media__stamp {
        width: 110px;
        height: 110px;
        border-width: 7px;
    }

    .production-media__stamp strong {
        font-size: 1.45rem;
    }

    .projects-grid {
        grid-template-columns: 1fr;
    }

    .project-card__button img,
    .project-card:nth-child(1) .project-card__button img,
    .project-card:nth-child(6) .project-card__button img {
        aspect-ratio: 1.4 / 1;
    }

    .process-list {
        grid-template-columns: 1fr 1fr;
    }

    .process-list li:last-child {
        grid-column: 1 / -1;
        max-width: 280px;
        justify-self: center;
    }

    .estimate-form {
        padding: 24px 18px;
        border-radius: 20px;
    }

    .form-split {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .dealers-shell {
        padding: 40px 22px;
        border-radius: 24px;
    }

    .dealers-number {
        font-size: 9rem;
    }

    .slider-controls {
        margin-top: 20px;
    }

    .review-card {
        min-width: 86vw;
        flex-basis: 86vw;
        padding: 25px;
    }

    .faq-list summary {
        grid-template-columns: 30px 1fr 28px;
        gap: 10px;
        padding: 17px 15px;
        font-size: .92rem;
    }

    .faq-answer {
        padding: 0 20px 18px 55px;
    }

    .map-card {
        min-height: 430px;
        border-radius: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .site-footer {
        padding-bottom: 95px;
    }

    .mobile-actions {
        position: fixed;
        z-index: 900;
        right: 10px;
        bottom: max(10px, env(safe-area-inset-bottom));
        left: 10px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        padding: 7px;
        background: rgba(7, 28, 46, .94);
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 18px;
        box-shadow: 0 18px 48px rgba(0, 0, 0, .3);
        backdrop-filter: blur(14px);
    }

    .mobile-actions a {
        display: flex;
        min-height: 48px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 3px;
        color: #fff;
        border-radius: 12px;
        font-size: .65rem;
        font-weight: 750;
    }

    .mobile-actions a:nth-child(2) {
        background: #1c9f62;
    }

    .mobile-actions a:nth-child(3) {
        background: var(--accent-500);
    }

    .mobile-actions .icon {
        width: 20px;
        height: 20px;
    }

    .lightbox__close {
        top: 8px;
        right: 8px;
    }
}

@media (max-width: 430px) {
    .brand-copy small {
        display: none;
    }

    .swatches {
        grid-template-columns: 1fr;
    }

    .swatch span {
        white-space: normal;
    }

    .process-list {
        grid-template-columns: 1fr;
    }

    .process-list li:last-child {
        grid-column: auto;
    }

    .production-media {
        min-height: 390px;
    }

    .production-media__stamp {
        right: -2%;
        bottom: 11%;
        width: 95px;
        height: 95px;
    }

    .estimate-contact a {
        font-size: 1.3rem;
    }

    .contact-item {
        padding: 14px;
    }

    .contact-item > span {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }
}

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

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    .reveal-ready {
        opacity: 1;
        transform: none;
    }
}
