:root {
    --blue: #0a4fa8;
    --blue-dark: #02083f;
    --hero-dark: #01052f;
    --il-light: #8eafbf;
    --il-light-2: #d9e8ef;
    --accent: #5f90aa;
    --accent-soft: #eef6fa;
    --ink: #0b1a24;
    --muted: #526273;
    --line: #dce3ea;
    --soft: #f5f7fa;
    --white: #ffffff;
    --shadow: 0 18px 55px rgba(8, 31, 52, 0.13);
    --max: 1320px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 92px;
}

body {
    margin: 0;
    color: var(--ink);
    background: #181818;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.5;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

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

.page-shell {
    width: min(100% - 32px, 1500px);
    margin: 8px auto 28px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 6px;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.site-header {
    position: relative;
    z-index: 8;
    display: grid;
    grid-template-columns: clamp(410px, 34vw, 540px) minmax(0, 1fr);
    grid-template-areas:
        "brand nav"
        "brand actions";
    align-items: center;
    gap: 8px 28px;
    min-height: 118px;
    padding: 16px clamp(24px, 4vw, 52px) 12px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid var(--line);
}

.brand {
    grid-area: brand;
    position: relative;
    left: auto;
    bottom: auto;
    z-index: 3;
    align-self: end;
    transform: translateY(28px);
}

.brand img {
    width: 100%;
    max-width: none;
    height: auto;
    background: transparent;
    filter:
        drop-shadow(0 0 1px rgba(255, 255, 255, 0.95))
        drop-shadow(0 0 12px rgba(217, 232, 239, 0.42))
        drop-shadow(0 18px 26px rgba(2, 8, 63, 0.24));
}

.main-nav {
    grid-area: nav;
    display: flex;
    justify-content: flex-end;
    gap: clamp(18px, 2vw, 30px);
    padding-left: 0;
    font-size: 16px;
    font-weight: 700;
    white-space: nowrap;
}

.main-nav a,
.header-link {
    transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.header-link:hover,
.header-link:focus-visible {
    color: var(--accent);
}

.header-actions {
    grid-area: actions;
    display: flex;
    align-items: center;
    gap: 22px;
    justify-content: flex-end;
    margin-left: 0;
    color: var(--blue-dark);
    font-weight: 800;
    white-space: nowrap;
}

.header-link.phone {
    min-height: 38px;
    padding: 0 18px;
    color: var(--white);
    background: var(--blue-dark);
    border-radius: 4px;
    box-shadow: 0 12px 26px rgba(2, 8, 63, 0.16);
}

.header-link.phone:hover,
.header-link.phone:focus-visible {
    color: var(--white);
    background: var(--blue);
}

.header-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.header-link svg,
.sticky-link svg,
.btn svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2.4;
}

.sticky-header {
    position: fixed;
    top: 0;
    left: 50%;
    z-index: 35;
    display: grid;
    grid-template-columns: minmax(190px, 250px) minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    width: min(100% - 32px, 1500px);
    min-height: 74px;
    padding: 10px clamp(18px, 3.5vw, 42px);
    color: var(--blue-dark);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(220, 227, 234, 0.95);
    border-top: 0;
    box-shadow: 0 18px 48px rgba(8, 31, 52, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -110%);
    transition: opacity 180ms ease, transform 220ms ease;
}

.sticky-header.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.sticky-brand {
    display: block;
    line-height: 0;
}

.sticky-brand img {
    width: min(250px, 100%);
    height: auto;
    filter:
        drop-shadow(0 0 1px rgba(255, 255, 255, 0.9))
        drop-shadow(0 8px 16px rgba(2, 8, 63, 0.16));
}

.sticky-nav,
.sticky-actions {
    display: flex;
    align-items: center;
    gap: clamp(14px, 1.6vw, 24px);
}

.sticky-nav {
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    white-space: nowrap;
}

.sticky-actions {
    justify-content: flex-end;
    font-weight: 850;
    white-space: nowrap;
}

.sticky-nav a,
.sticky-link {
    transition: color 160ms ease, background 160ms ease;
}

.sticky-nav a:hover,
.sticky-nav a:focus-visible,
.sticky-link:hover,
.sticky-link:focus-visible {
    color: var(--accent);
}

.sticky-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.sticky-link.phone {
    min-height: 42px;
    padding: 0 16px;
    color: var(--white);
    background: var(--blue-dark);
    border-radius: 4px;
    box-shadow: 0 10px 22px rgba(2, 8, 63, 0.15);
}

.sticky-link.phone:hover,
.sticky-link.phone:focus-visible {
    color: var(--white);
    background: var(--blue);
}

.hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(480px, 1fr);
    min-height: 540px;
    color: var(--white);
    background:
        radial-gradient(circle at 7% 18%, rgba(142, 175, 191, 0.25), transparent 28%),
        linear-gradient(135deg, var(--hero-dark) 0%, var(--blue-dark) 52%, #071d48 100%);
}

.hero-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(76px, 8vw, 116px) clamp(24px, 3vw, 42px) clamp(54px, 5vw, 76px) clamp(40px, 5vw, 72px);
    background:
        radial-gradient(circle at 6% 18%, rgba(142, 175, 191, 0.2), transparent 34%),
        linear-gradient(105deg, rgba(1, 5, 47, 0.98) 0%, rgba(2, 8, 63, 0.95) 70%, rgba(2, 8, 63, 0) 70%);
}

.eyebrow,
.section-label {
    margin: 0 0 16px;
    color: var(--accent);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 640px;
    margin: 0;
    font-size: clamp(40px, 4.05vw, 54px);
    line-height: 1;
    letter-spacing: 0;
    color: var(--white);
}

.hero h1 span {
    color: var(--il-light-2);
    font-weight: 400;
}

.hero-checks {
    display: grid;
    gap: 14px;
    margin: 36px 0 0;
    padding: 0;
    list-style: none;
    font-size: clamp(18px, 1.8vw, 21px);
    font-weight: 800;
}

.hero-checks li {
    position: relative;
    padding-left: 42px;
}

.hero-checks li::before {
    position: absolute;
    top: 2px;
    left: 0;
    width: 28px;
    height: 28px;
    content: "";
    background: var(--white);
    border-radius: 50%;
}

.hero-checks li::after {
    position: absolute;
    top: 8px;
    left: 10px;
    width: 7px;
    height: 13px;
    content: "";
    border-right: 4px solid var(--blue-dark);
    border-bottom: 4px solid var(--blue-dark);
    transform: rotate(45deg);
}

.hero-actions,
.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 36px;
}

.btn {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    min-height: 56px;
    padding: 0 30px;
    border: 1px solid transparent;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 900;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn::after {
    position: absolute;
    inset: -40% auto -40% -65%;
    width: 42%;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
    transform: skewX(-18deg);
    transition: left 420ms ease;
    pointer-events: none;
}

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

.btn:hover::after,
.btn:focus-visible::after {
    left: 118%;
}

.btn-primary {
    color: var(--white);
    background: var(--blue);
    box-shadow: 0 18px 34px rgba(10, 79, 168, 0.26);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    background: var(--blue);
}

.btn-outline {
    color: var(--ink);
    background: var(--white);
    border-color: #bfc8d2;
}

.hero .btn-outline {
    color: var(--white);
    background: rgba(142, 175, 191, 0.18);
    border-color: rgba(217, 232, 239, 0.74);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.hero .btn-outline:hover,
.hero .btn-outline:focus-visible {
    background: rgba(142, 175, 191, 0.28);
}

.hero .btn-primary {
    color: var(--blue-dark);
    background: linear-gradient(135deg, var(--il-light-2), var(--il-light));
    border-color: rgba(255, 255, 255, 0.44);
    box-shadow: 0 22px 42px rgba(142, 175, 191, 0.28);
}

.hero .btn-primary:hover,
.hero .btn-primary:focus-visible {
    background: linear-gradient(135deg, var(--white), var(--il-light-2));
}

.btn-light {
    color: var(--blue-dark);
    background: var(--white);
}

.hero-proof {
    max-width: 580px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    font-weight: 700;
}

.hero-media {
    position: relative;
    overflow: hidden;
    min-width: 0;
    background: #101820;
}

.hero-media::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    content: "";
    background:
        linear-gradient(90deg, rgba(1, 5, 47, 0.38), transparent 26%),
        linear-gradient(180deg, transparent 72%, rgba(1, 5, 47, 0.34));
}

.hero-media::after {
    position: absolute;
    right: 12%;
    bottom: 28px;
    z-index: 2;
    width: 36%;
    height: 2px;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(217, 232, 239, 0.78), transparent);
    animation: shelf-glint 4.5s ease-in-out infinite;
}

.hero-finder-card {
    position: absolute;
    right: clamp(24px, 4vw, 64px);
    bottom: clamp(28px, 5vw, 66px);
    z-index: 3;
    width: min(310px, 38vw);
    padding: 18px 20px;
    color: var(--white);
    background: rgba(2, 8, 63, 0.78);
    border: 1px solid rgba(217, 232, 239, 0.38);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(8px);
    animation: finder-float 5.2s ease-in-out infinite;
}

.hero-finder-card span {
    display: block;
    margin-bottom: 4px;
    color: var(--il-light);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.hero-finder-card strong {
    display: block;
    font-size: 21px;
    line-height: 1.1;
}

.finder-checklist {
    display: grid;
    gap: 9px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.finder-checklist li {
    position: relative;
    padding-left: 30px;
    color: rgba(255, 255, 255, 0.88);
    font-size: 15px;
    font-weight: 800;
}

.finder-checklist li::before {
    position: absolute;
    top: 1px;
    left: 0;
    width: 18px;
    height: 18px;
    content: "";
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(217, 232, 239, 0.58);
    border-radius: 50%;
}

.finder-checklist li::after {
    position: absolute;
    top: 4px;
    left: 7px;
    width: 4px;
    height: 9px;
    content: "";
    border-right: 3px solid var(--il-light-2);
    border-bottom: 3px solid var(--il-light-2);
    opacity: 0;
    transform: rotate(45deg) scale(0.4);
    animation: checklist-mark 4.8s ease-in-out infinite;
}

.finder-checklist li:nth-child(2)::after {
    animation-delay: 0.45s;
}

.finder-checklist li:nth-child(3)::after {
    animation-delay: 0.9s;
}

.finder-checklist li:nth-child(4)::after {
    animation-delay: 1.35s;
}

.finder-checklist li:nth-child(5)::after {
    animation-delay: 1.8s;
}

.hero-media img {
    width: 100%;
    height: 100%;
    min-height: 470px;
    object-fit: cover;
}

.brand-strip {
    position: relative;
    z-index: 4;
    overflow: hidden;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.brand-track {
    display: flex;
    width: max-content;
    animation: brand-marquee 74s linear infinite;
    will-change: transform;
}

.brand-strip:hover .brand-track,
.brand-strip:focus-within .brand-track {
    animation-play-state: paused;
}

.brand-sequence {
    display: flex;
    flex: 0 0 auto;
}

.brand-tile {
    position: relative;
    display: grid;
    place-items: center;
    width: clamp(148px, 13.5vw, 188px);
    min-height: 106px;
    padding: 18px;
    border-right: 1px solid var(--line);
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.brand-tile:hover,
.brand-tile:focus-within {
    z-index: 2;
    background: #fbfdfe;
    box-shadow: 0 18px 38px rgba(8, 31, 52, 0.12);
    transform: translateY(-4px);
}

.brand-tile::after {
    position: absolute;
    left: 50%;
    bottom: 10px;
    z-index: 3;
    padding: 5px 9px;
    color: var(--white);
    content: attr(data-brand);
    background: var(--blue-dark);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 8px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.brand-tile:hover::after,
.brand-tile:focus-within::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

.brand-tile img {
    max-width: min(132px, 88%);
    max-height: 60px;
    object-fit: contain;
}

.brand-tile span,
.brand-wordmark {
    color: var(--blue-dark);
    font-size: 22px;
    font-weight: 950;
    letter-spacing: 0.03em;
}

.brand-wordmark.mann {
    display: inline-grid;
    place-items: center;
    min-width: 78px;
    min-height: 46px;
    padding: 4px 7px;
    color: #ffed00;
    background: #0b7d3b;
    font-size: 18px;
    line-height: 0.9;
}

.brand-wordmark.sachs {
    color: var(--blue);
    font-size: 24px;
}

.brand-wordmark.valeo {
    color: #55a337;
    font-size: 25px;
}

.service-overview,
.content-section,
.seo-local,
.faq-section {
    padding: clamp(56px, 7vw, 88px) clamp(28px, 6vw, 86px);
}

.service-overview {
    background: linear-gradient(180deg, #fbfdfe, #f4f8fb);
    padding-right: clamp(34px, 4.2vw, 64px);
    padding-left: clamp(34px, 4.2vw, 64px);
}

.service-overview h2,
.content-section h2,
.seo-local h2,
.faq-section h2,
.contact-band h2 {
    margin: 0;
    font-size: clamp(34px, 4.4vw, 54px);
    line-height: 1.04;
    letter-spacing: 0;
}

.service-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    margin-top: 28px;
}

.service-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
    min-height: auto;
    padding: 8px 22px 8px 0;
    background: transparent;
    border: 0;
    border-right: 1px solid var(--line);
    box-shadow: none;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-item + .service-item {
    padding-left: 22px;
}

.service-item:last-child {
    border-right: 0;
}

.service-item:hover {
    border-color: var(--line);
    box-shadow: none;
    transform: translateY(-3px);
}

.service-item h3,
.assortment-card h3 {
    margin: 0 0 8px;
    font-size: 16px;
    line-height: 1.25;
}

.service-item p,
.assortment-card p,
.lead,
.quality-grid p,
.seo-local p,
.faq-list p,
.about-card span,
.site-footer span {
    margin: 0;
    color: var(--muted);
}

.service-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: var(--blue);
    background: transparent;
    border-radius: 0;
}

.service-icon svg,
.assortment-icon svg {
    width: 44px;
    height: 44px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 3;
}

.assortment-icon svg {
    width: 34px;
    height: 34px;
}

.service-icon::before,
.service-icon::after {
    position: absolute;
    content: "";
}

.service-icon.clock::before {
    inset: 9px;
    border: 4px solid currentColor;
    border-radius: 50%;
}

.service-icon.clock::after {
    top: 18px;
    left: 26px;
    width: 13px;
    height: 15px;
    border-bottom: 4px solid currentColor;
    border-left: 4px solid currentColor;
}

.service-icon.shield::before {
    inset: 7px 10px;
    background: currentColor;
    clip-path: polygon(50% 0, 92% 18%, 83% 74%, 50% 100%, 17% 74%, 8% 18%);
}

.service-icon.shield::after {
    left: 21px;
    top: 18px;
    width: 9px;
    height: 18px;
    border-right: 5px solid var(--white);
    border-bottom: 5px solid var(--white);
    transform: rotate(45deg);
}

.service-icon.search::before {
    top: 9px;
    left: 9px;
    width: 26px;
    height: 26px;
    border: 5px solid currentColor;
    border-radius: 50%;
}

.service-icon.search::after {
    right: 8px;
    bottom: 9px;
    width: 20px;
    height: 5px;
    background: currentColor;
    transform: rotate(45deg);
}

.service-icon.warehouse::before {
    inset: 18px 9px 8px;
    border: 5px solid currentColor;
}

.service-icon.warehouse::after {
    left: 8px;
    top: 8px;
    width: 36px;
    height: 22px;
    background: currentColor;
    clip-path: polygon(50% 0, 100% 45%, 100% 62%, 50% 18%, 0 62%, 0 45%);
}

.service-icon.people::before {
    top: 10px;
    left: 10px;
    width: 15px;
    height: 15px;
    background: currentColor;
    border-radius: 50%;
    box-shadow: 20px 0 0 currentColor;
}

.service-icon.people::after {
    left: 7px;
    bottom: 9px;
    width: 39px;
    height: 22px;
    background: currentColor;
    border-radius: 28px 28px 8px 8px;
}

.service-icon::before,
.service-icon::after {
    display: none;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr);
    gap: 48px;
    align-items: start;
}

.lead {
    margin-top: 22px;
    font-size: 19px;
}

.text-link {
    display: inline-block;
    margin-top: 26px;
    color: var(--blue-dark);
    font-weight: 900;
}

.inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-top: 26px;
}

.inline-actions .text-link {
    margin-top: 0;
}

.text-link::after {
    color: var(--accent);
    content: " →";
}

.assortment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.assortment-card {
    display: grid;
    grid-template-columns: 62px 1fr;
    gap: 18px;
    padding: 26px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 254, 0.98));
    border: 1px solid var(--line);
    box-shadow: 0 14px 42px rgba(8, 31, 52, 0.08);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.assortment-card:hover {
    border-color: rgba(142, 175, 191, 0.72);
    box-shadow: 0 20px 52px rgba(8, 31, 52, 0.13);
    transform: translateY(-3px);
}

.assortment-icon {
    position: relative;
    display: grid;
    place-items: center;
    width: 54px;
    height: 54px;
    color: var(--blue-dark);
    background: var(--il-light-2);
    border: 1px solid rgba(142, 175, 191, 0.55);
    border-radius: 10px;
}

.assortment-icon::before,
.assortment-icon::after {
    position: absolute;
    content: "";
}

.assortment-icon.brake::before {
    inset: 10px;
    border: 6px solid currentColor;
    border-radius: 50%;
}

.assortment-icon.brake::after {
    top: 22px;
    left: 22px;
    width: 10px;
    height: 10px;
    background: currentColor;
    border-radius: 50%;
}

.assortment-icon.filter::before {
    left: 14px;
    top: 9px;
    width: 26px;
    height: 34px;
    border: 4px solid currentColor;
    border-radius: 3px;
}

.assortment-icon.filter::after {
    left: 20px;
    top: 14px;
    width: 14px;
    height: 24px;
    background: repeating-linear-gradient(90deg, currentColor 0 2px, transparent 2px 5px);
}

.assortment-icon.battery::before {
    left: 9px;
    top: 16px;
    width: 34px;
    height: 23px;
    border: 4px solid currentColor;
    border-radius: 3px;
}

.assortment-icon.battery::after {
    right: 5px;
    top: 23px;
    width: 7px;
    height: 9px;
    background: currentColor;
}

.assortment-icon.care::before {
    left: 18px;
    top: 9px;
    width: 18px;
    height: 30px;
    background: currentColor;
    border-radius: 10px 10px 14px 14px;
    clip-path: polygon(50% 0, 100% 45%, 80% 100%, 20% 100%, 0 45%);
}

.assortment-icon.care::after {
    left: 16px;
    bottom: 10px;
    width: 22px;
    height: 5px;
    background: var(--white);
    border-radius: 999px;
}

.assortment-icon::before,
.assortment-icon::after {
    display: none;
}

.quality {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
    gap: 42px;
    background:
        linear-gradient(135deg, var(--blue-dark), #12395f);
    color: var(--white);
}

.quality .section-label {
    color: var(--il-light);
}

.quality-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.quality-grid p {
    position: relative;
    padding: 22px 22px 22px 50px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.quality-grid p::before {
    position: absolute;
    left: 22px;
    color: var(--il-light);
    content: "■";
}

.about {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 36px;
    align-items: center;
    background: var(--soft);
}

.about-card {
    display: grid;
    gap: 12px;
    padding: 30px;
    background: var(--white);
    border-top: 5px solid var(--il-light);
    box-shadow: var(--shadow);
}

.about-card-image {
    width: calc(100% + 60px);
    max-width: none;
    height: 150px;
    margin: -30px -30px 10px;
    object-fit: cover;
}

.about-card-label {
    color: var(--accent);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.about-card strong {
    font-size: 22px;
}

.about-card a {
    color: var(--blue-dark);
    font-weight: 900;
}

.faq-section {
    background: var(--white);
    border-top: 1px solid var(--line);
}

.faq-section h2 {
    max-width: 820px;
    margin-bottom: 26px;
}

.faq-list {
    display: grid;
    gap: 12px;
    max-width: 980px;
}

.faq-list details {
    background: #f7fafc;
    border: 1px solid var(--line);
}

.faq-list details[open] {
    background: var(--white);
    box-shadow: 0 18px 46px rgba(8, 31, 52, 0.1);
}

.faq-list summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 20px 22px;
    color: var(--blue-dark);
    font-size: 18px;
    font-weight: 900;
    cursor: pointer;
}

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

.faq-list summary::after {
    flex: 0 0 auto;
    width: 22px;
    height: 22px;
    color: var(--blue);
    content: "+";
    border: 2px solid currentColor;
    border-radius: 50%;
    display: grid;
    place-items: center;
    line-height: 1;
}

.faq-list details[open] summary::after {
    content: "–";
}

.faq-list p {
    padding: 0 22px 22px;
}

.contact-band {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 58px clamp(28px, 6vw, 86px);
    color: var(--white);
    background:
        radial-gradient(circle at 12% 20%, rgba(142, 175, 191, 0.28), transparent 32%),
        linear-gradient(135deg, var(--blue-dark), #071d48 64%, #12395f);
    border-top: 0;
    border-bottom: 0;
}

.contact-band::before {
    position: absolute;
    inset: 0;
    pointer-events: none;
    content: "";
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    animation: contact-sweep 7s ease-in-out infinite;
}

.contact-band > * {
    position: relative;
    z-index: 1;
}

.contact-band .section-label {
    color: var(--il-light);
}

.contact-band .btn-primary {
    color: var(--blue-dark);
    background: var(--white);
    box-shadow: 0 18px 34px rgba(0, 0, 0, 0.24);
}

.contact-band .btn-outline {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.46);
}

.contact-actions {
    justify-content: flex-end;
    margin-top: 0;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(260px, 1.2fr) minmax(220px, 0.8fr) auto;
    align-items: center;
    gap: 28px;
    padding: 34px clamp(28px, 6vw, 86px);
    color: var(--muted);
    background: #f7fafc;
    border-top: 1px solid var(--line);
}

.footer-brand,
.footer-contact {
    display: grid;
    gap: 8px;
}

.footer-brand img {
    width: 230px;
}

.site-footer strong {
    color: var(--ink);
}

.site-footer span {
    display: block;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 18px;
    color: var(--blue-dark);
    font-weight: 800;
}

.footer-link-button {
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    font: inherit;
    cursor: pointer;
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-link-button:hover,
.footer-link-button:focus-visible {
    color: var(--accent);
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: grid;
    place-items: end center;
    padding: 18px;
    background: rgba(1, 5, 47, 0.44);
}

.cookie-consent__panel {
    display: grid;
    gap: 18px;
    width: min(100%, 920px);
    padding: clamp(22px, 3.2vw, 34px);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(142, 175, 191, 0.55);
    box-shadow: 0 24px 80px rgba(1, 5, 47, 0.28);
}

.cookie-consent__intro h2 {
    margin: 0 0 8px;
    color: var(--blue-dark);
    font-size: clamp(28px, 3.4vw, 40px);
    line-height: 1;
}

.cookie-consent__intro p:last-child,
.cookie-consent__links {
    margin: 0;
    color: var(--muted);
}

.cookie-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.cookie-option {
    display: grid;
    grid-template-columns: 24px 1fr;
    gap: 12px;
    align-items: start;
    min-height: 118px;
    padding: 18px;
    background: #f7fafc;
    border: 1px solid var(--line);
}

.cookie-option input {
    width: 20px;
    height: 20px;
    margin: 3px 0 0;
    accent-color: var(--blue-dark);
}

.cookie-option strong,
.cookie-option small {
    display: block;
}

.cookie-option strong {
    color: var(--blue-dark);
    font-size: 18px;
}

.cookie-option small {
    margin-top: 4px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.45;
}

.cookie-option.is-required {
    background: var(--accent-soft);
}

.cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-end;
}

.cookie-consent__actions .btn {
    min-height: 50px;
}

.cookie-consent__links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    font-size: 14px;
    font-weight: 800;
}

.cookie-consent__links a {
    color: var(--blue-dark);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-page {
    max-width: 940px;
    padding: clamp(54px, 7vw, 86px) clamp(24px, 6vw, 72px);
}

.legal-page h1 {
    margin: 0 0 34px;
    color: var(--blue-dark);
    font-size: clamp(40px, 5vw, 58px);
    line-height: 1;
}

.legal-page section {
    padding: 26px 0;
    border-top: 1px solid var(--line);
}

.legal-page h2 {
    margin: 0 0 10px;
    font-size: 22px;
}

.legal-page h3 {
    margin: 24px 0 8px;
    color: var(--blue-dark);
    font-size: 18px;
}

.legal-page p {
    margin: 0 0 12px;
    color: var(--muted);
}

.legal-updated {
    margin-top: -22px;
    margin-bottom: 26px;
    color: var(--accent);
    font-weight: 800;
}

.legal-page ul {
    display: grid;
    gap: 8px;
    margin: 0 0 16px;
    padding-left: 22px;
    color: var(--muted);
}

.legal-page li::marker {
    color: var(--blue);
}

.legal-page code {
    padding: 2px 5px;
    color: var(--blue-dark);
    background: var(--accent-soft);
    border-radius: 4px;
}

.legal-page a {
    color: var(--blue-dark);
    font-weight: 800;
}

@keyframes shelf-glint {
    0%,
    62%,
    100% {
        opacity: 0;
        transform: translateX(-22px);
    }

    22% {
        opacity: 1;
        transform: translateX(22px);
    }
}

@keyframes contact-sweep {
    0%,
    70%,
    100% {
        transform: translateX(-65%);
    }

    35% {
        transform: translateX(65%);
    }
}

@keyframes brand-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@keyframes finder-float {
    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes checklist-mark {
    0%,
    9% {
        opacity: 0;
        transform: rotate(45deg) scale(0.4);
    }

    16%,
    72% {
        opacity: 1;
        transform: rotate(45deg) scale(1);
    }

    100% {
        opacity: 0;
        transform: rotate(45deg) scale(1);
    }
}

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

    .brand-track {
        animation: none !important;
        transform: none;
    }
}

@media (max-width: 1360px) {
    .header-link.email {
        display: none;
    }
}

@media (max-width: 1180px) {
    .sticky-link.email {
        display: none;
    }

    .site-header {
        grid-template-columns: 1fr;
        grid-template-areas:
            "brand"
            "nav"
            "actions";
        gap: 18px;
    }

    .brand {
        position: relative;
        left: auto;
        bottom: auto;
        align-self: start;
        margin-bottom: 0;
        transform: none;
    }

    .main-nav {
        padding-left: 0;
    }

    .main-nav,
    .header-actions {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .sticky-header {
        grid-template-columns: minmax(170px, 230px) 1fr auto;
        gap: 12px;
    }

    .sticky-nav {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .sticky-nav::-webkit-scrollbar {
        display: none;
    }

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

    .hero-copy {
        background:
            radial-gradient(circle at 6% 18%, rgba(142, 175, 191, 0.2), transparent 34%),
            linear-gradient(135deg, rgba(1, 5, 47, 0.98), rgba(2, 8, 63, 0.94));
    }

    .hero-media img {
        min-height: 340px;
        max-height: 430px;
    }

    .hero-finder-card {
        right: 24px;
        bottom: 24px;
        width: min(310px, calc(100% - 48px));
    }

    .brand-tile {
        width: 166px;
    }

.service-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 0;
    }

    .service-item:nth-child(even) {
        border-right: 0;
    }

    .split,
    .quality,
    .seo-local,
    .about,
    .contact-band {
        grid-template-columns: 1fr;
    }

    .contact-actions {
        justify-content: flex-start;
    }
}

.seo-local {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.68fr);
    gap: clamp(48px, 6vw, 88px);
    align-items: center;
    background:
        radial-gradient(circle at 12% 22%, rgba(142, 175, 191, 0.16), transparent 32%),
        linear-gradient(180deg, #ffffff, #f6fafc);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.seo-local h2 {
    max-width: 720px;
    margin-bottom: 24px;
    font-size: clamp(38px, 4vw, 52px);
}

.seo-local .lead {
    max-width: 760px;
}

.seo-local__panel {
    display: grid;
    gap: 18px;
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: 0 18px 42px rgba(8, 31, 52, 0.09);
}

.seo-local__panel h3 {
    margin: 0;
    color: var(--blue-dark);
    font-size: 18px;
}

.search-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    color: var(--blue-dark);
    background: var(--accent-soft);
    border: 1px solid rgba(142, 175, 191, 0.45);
    font-size: 14px;
    font-weight: 850;
}

@media (max-width: 720px) {
    html {
        scroll-padding-top: 108px;
    }

    .page-shell {
        width: 100%;
        margin: 0;
        border: 0;
        border-radius: 0;
    }

    .site-header {
        min-height: 0;
        padding: 16px 18px;
    }

    .brand img {
        width: min(330px, 86vw);
    }

    .main-nav {
        gap: 14px 20px;
        font-size: 15px;
    }

    .header-actions {
        gap: 14px;
        white-space: normal;
    }

    .header-link.email {
        display: none;
    }

    .sticky-header {
        grid-template-columns: minmax(132px, 42vw) 1fr;
        grid-template-areas:
            "sticky-brand sticky-actions"
            "sticky-nav sticky-nav";
        width: 100%;
        min-height: 0;
        padding: 9px 14px 10px;
        gap: 8px 12px;
        border-right: 0;
        border-left: 0;
    }

    .sticky-brand {
        grid-area: sticky-brand;
    }

    .sticky-brand img {
        width: min(190px, 42vw);
    }

    .sticky-nav {
        grid-area: sticky-nav;
        gap: 16px;
        font-size: 14px;
    }

    .sticky-actions {
        grid-area: sticky-actions;
        justify-content: flex-end;
    }

    .sticky-link.phone {
        min-height: 40px;
        padding: 0 12px;
        font-size: 0;
    }

    .sticky-link.phone svg {
        width: 22px;
        height: 22px;
    }

    .hero-copy,
    .service-overview,
    .content-section,
    .seo-local,
    .faq-section,
    .contact-band {
        padding-right: 18px;
        padding-left: 18px;
    }

    .hero h1 {
        max-width: 100%;
        font-size: 34px;
        line-height: 1.06;
    }

    .hero-actions {
        width: 100%;
    }

    .hero-checks {
        font-size: 18px;
    }

    .hero-actions,
    .contact-actions {
        flex-direction: column;
        gap: 12px;
    }

    .btn {
        width: 100%;
        max-width: 100%;
        min-height: 56px;
        font-size: 17px;
    }

    .hero-media img {
        min-height: 260px;
    }

    .hero-media {
        overflow: hidden;
        padding-bottom: 0;
        background: var(--hero-dark);
    }

    .hero-finder-card {
        position: absolute;
        right: 18px;
        bottom: 18px;
        left: 18px;
        width: auto;
        margin: 0;
        padding: 16px 18px;
    }

    .hero-finder-card strong {
        font-size: 20px;
    }

    .finder-checklist {
        gap: 8px;
        margin-top: 14px;
    }

    .finder-checklist li {
        font-size: 14px;
    }

    .brand-tile {
        width: 148px;
        min-height: 88px;
        padding: 14px;
    }

    .service-list,
    .assortment-grid,
    .quality-grid {
        grid-template-columns: 1fr;
    }

    .seo-local {
        grid-template-columns: 1fr;
        gap: 28px;
        align-items: start;
    }

    .seo-local__panel {
        padding: 22px;
    }

    .seo-local h2 {
        margin-bottom: 18px;
        font-size: 34px;
    }

    .seo-local .section-label {
        max-width: 100%;
    }

    .faq-list summary {
        align-items: flex-start;
        padding: 18px;
        font-size: 16px;
    }

    .faq-list p {
        padding: 0 18px 18px;
    }

    .service-item {
        min-height: auto;
        grid-template-columns: 58px 1fr;
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .service-item + .service-item {
        padding-left: 0;
    }

    .service-icon svg {
        width: 42px;
        height: 42px;
    }

    .brand-tile img {
        max-height: 52px;
    }

    .site-footer {
        grid-template-columns: 1fr;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .cookie-consent {
        align-items: end;
        padding: 10px;
    }

    .cookie-consent__panel {
        max-height: calc(100vh - 20px);
        overflow: auto;
    }

    .cookie-options {
        grid-template-columns: 1fr;
    }

    .cookie-consent__actions {
        justify-content: stretch;
    }

    .cookie-consent__actions .btn {
        width: 100%;
    }
}
