:root {
    --font-main: "GrayITEuclid", "Euclid Circular A", "Euclid Circular B", Arial, sans-serif;
    --select-arrow: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%23626b76' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    --ink: #111318;
    --ink-2: #1c2024;
    --ink-3: #262b31;
    --muted: #626b76;
    --line: #e7eaee;
    --soft: #f6f7f9;
    --soft-2: #eef1f4;
    --surface: #ffffff;
    --accent: #848484;
    --accent-dark: #5f5f5f;
    --orange: #fd4a36;
    --cyan: #00a0c1;
    --shadow: 0 18px 42px rgba(17, 19, 24, 0.11);
    --shadow-soft: 0 10px 24px rgba(17, 19, 24, 0.08);
    --radius: 8px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    overflow-y: scroll;
    scrollbar-gutter: stable;
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    color: var(--muted);
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: 0;
    background: var(--surface);
}

main {
    flex: 1 0 auto;
}

body,
button,
input,
select,
textarea {
    font-family: var(--font-main);
    letter-spacing: 0;
}

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

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

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--ink);
    line-height: 1.08;
}

h1 {
    max-width: 760px;
    margin-bottom: 22px;
    font-size: clamp(48px, 6vw, 88px);
    font-weight: 800;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 780;
}

h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(17, 19, 24, 0.08);
    backdrop-filter: blur(12px);
}

.top-strip {
    background: var(--ink);
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
}

.top-strip-inner {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.top-strip-contact {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex-wrap: wrap;
}

.top-strip-item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 650;
}

.top-strip-icon {
    width: 15px;
    height: 15px;
    color: rgba(255, 255, 255, 0.64);
}

.top-strip-separator {
    color: rgba(255, 255, 255, 0.24);
    font-weight: 700;
}

.top-strip-inner a:hover,
.top-strip-item:hover {
    color: #fff;
}

.language-switcher {
    margin-left: auto;
    position: relative;
    z-index: 5;
}

.language-switcher summary {
    list-style: none;
    display: inline-flex;
    min-width: 54px;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 5px 9px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.language-switcher summary::-webkit-details-marker {
    display: none;
}

.language-switcher summary:hover,
.language-switcher[open] summary {
    border-color: rgba(255, 255, 255, 0.44);
    background: rgba(255, 255, 255, 0.10);
}

.language-code {
    color: #fff;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: 0;
}

.language-caret {
    width: 7px;
    height: 7px;
    border-right: 2px solid rgba(255, 255, 255, 0.66);
    border-bottom: 2px solid rgba(255, 255, 255, 0.66);
    transform: translateY(-2px) rotate(45deg);
}

.language-menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 112px;
    display: grid;
    gap: 4px;
    padding: 6px;
    border: 1px solid rgba(17, 19, 24, 0.12);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.language-menu a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 9px;
    border-radius: 6px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 850;
}

.language-menu a:hover,
.language-menu a.is-active {
    color: var(--ink);
    background: #f1f3f6;
}

.language-flag {
    position: relative;
    width: 24px;
    height: 16px;
    display: inline-block;
    overflow: hidden;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22), 0 0 0 1px rgba(17, 19, 24, 0.14) inset;
}

.flag-de {
    background: linear-gradient(#000 0 33.33%, #dd0000 33.33% 66.66%, #ffce00 66.66%);
}

.flag-tr {
    background: #e30a17;
}

.flag-tr::before,
.flag-tr::after {
    content: "";
    position: absolute;
    border-radius: 999px;
}

.flag-tr::before {
    left: 5px;
    top: 3px;
    width: 9px;
    height: 9px;
    background: #fff;
}

.flag-tr::after {
    left: 8px;
    top: 4px;
    width: 7px;
    height: 7px;
    background: #e30a17;
}

.flag-en {
    background:
        linear-gradient(90deg, transparent 0 42%, #cf142b 42% 58%, transparent 58%),
        linear-gradient(0deg, transparent 0 39%, #cf142b 39% 61%, transparent 61%),
        #fff;
}

.main-nav {
    position: relative;
    background: rgba(255, 255, 255, 0.94);
}

.nav-inner {
    min-height: 92px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 26px;
}

.brand img {
    width: 250px;
    height: 76px;
    object-fit: contain;
    object-position: left center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-mobile-language {
    display: none;
}

.nav-links a {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
    transform: scaleX(1);
}

.nav-links a.nav-quote-button {
    margin-left: 10px;
    min-height: 50px;
    gap: 10px;
    padding: 14px 21px 14px 23px;
    border: 1px solid rgba(95, 95, 95, 0.92);
    border-radius: var(--radius);
    color: #fff;
    background:
        linear-gradient(180deg, #8e8e8e 0%, #646464 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 10px 22px rgba(17, 19, 24, 0.12);
    font-size: 15px;
    font-weight: 850;
    line-height: 1;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.nav-links a.nav-quote-button::after {
    content: none;
    display: none;
}

.nav-quote-icon {
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 18px;
    color: rgba(255, 255, 255, 0.92);
}

.nav-quote-icon svg {
    width: 18px;
    height: 18px;
    stroke-width: 2;
}

.nav-links a.nav-quote-button:hover {
    transform: translateY(-1px);
    border-color: #4f4f4f;
    color: #fff;
    background:
        linear-gradient(180deg, #777777 0%, #505050 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 14px 30px rgba(17, 19, 24, 0.18);
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 4px auto;
    background: var(--ink);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0 92px;
    color: var(--ink);
    background:
        linear-gradient(115deg, #ffffff 0%, #f7f8fa 42%, #eef1f4 100%);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(253, 74, 54, 0.08), transparent 28%),
        repeating-linear-gradient(135deg, rgba(17, 19, 24, 0.045) 0 1px, transparent 1px 18px);
    pointer-events: none;
}

.hero-shell {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
    gap: 54px;
    align-items: center;
}

.hero-copy {
    max-width: 690px;
}

.hero-copy h1 {
    margin-bottom: 24px;
}

.hero-copy > p:not(.eyebrow) {
    max-width: 640px;
    margin-bottom: 30px;
    color: #3f4853;
    font-size: 20px;
    line-height: 1.55;
}

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

.hero-rail {
    max-width: 650px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-top: 34px;
}

.hero-rail a {
    min-height: 118px;
    display: grid;
    align-content: space-between;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(17, 19, 24, 0.10);
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 14px 34px rgba(17, 19, 24, 0.07);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
}

.hero-rail a:hover {
    transform: translateY(-2px);
    border-color: rgba(253, 74, 54, 0.36);
    background: #fff;
}

.hero-rail span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    color: #fff;
    background: var(--ink);
}

.hero-rail svg {
    width: 19px;
    height: 19px;
}

.hero-media {
    position: relative;
    min-height: 560px;
    display: grid;
    align-items: center;
    justify-items: end;
}

.hero-media::before {
    content: "";
    position: absolute;
    inset: 96px 26px 76px 118px;
    border: 1px solid rgba(132, 132, 132, 0.16);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(238, 241, 244, 0.34));
    box-shadow: 0 20px 52px rgba(17, 19, 24, 0.06);
    transform: rotate(-2deg);
}

.hero-media::after {
    content: "";
    position: absolute;
    right: 28px;
    bottom: 64px;
    width: min(76%, 420px);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(253, 74, 54, 0.42), transparent);
}

.clover-stage {
    --stage-width: min(100%, 620px);
    --stage-height: clamp(330px, 29vw, 390px);
    position: relative;
    z-index: 1;
    width: var(--stage-width);
    height: var(--stage-height);
    margin-left: auto;
}

.clover-stage::before {
    content: "";
    position: absolute;
    inset: 16% 3% 14% 4%;
    border: 1px solid rgba(17, 19, 24, 0.10);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 250, 0.78));
    box-shadow: 0 18px 48px rgba(17, 19, 24, 0.07);
}

.clover-leaf {
    position: absolute;
    z-index: 2;
    overflow: hidden;
    border: 6px solid #fff;
    border-radius: 24px;
    background: #fff;
    box-shadow:
        0 15px 36px rgba(17, 19, 24, 0.16),
        0 0 0 1px rgba(17, 19, 24, 0.05);
    transform: rotate(45deg);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.clover-leaf:hover {
    transform: rotate(45deg) translateY(-5px);
    box-shadow:
        0 22px 58px rgba(17, 19, 24, 0.22),
        0 0 0 1px rgba(17, 19, 24, 0.06);
}

.clover-leaf img {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 142%;
    height: 142%;
    object-fit: cover;
    transform: translate(-50%, -50%) rotate(-45deg) scale(1.02);
}

.clover-leaf-1 {
    left: 2%;
    top: 31%;
    width: 35%;
    height: 45%;
    border-radius: 26px;
}

.clover-leaf-2 {
    left: 33%;
    top: 2%;
    width: 30%;
    height: 42%;
    border-radius: 23px;
    z-index: 4;
}

.clover-leaf-3 {
    right: 2%;
    top: 30%;
    width: 35%;
    height: 45%;
    border-radius: 26px;
}

.clover-leaf-4 {
    left: 34%;
    bottom: 1%;
    width: 35%;
    height: 47%;
    border-radius: 24px;
    z-index: 3;
}

.hero-service-media {
    min-height: 540px;
    justify-items: center;
}

.hero-service-media::before,
.hero-service-media::after {
    content: none;
    display: none;
}

.hero-service-slider {
    position: relative;
    width: min(100%, 650px);
    aspect-ratio: 1.18;
    border: 3px solid rgba(255, 255, 255, 0.96);
    border-radius: 26px;
    background:
        radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.98), rgba(247, 248, 250, 0.92) 42%, rgba(238, 241, 244, 0.80) 100%);
    box-shadow:
        0 26px 70px rgba(17, 19, 24, 0.14),
        0 0 0 1px rgba(17, 19, 24, 0.06);
}

.hero-service-slides {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 23px;
}

.hero-service-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(18px);
    transition: opacity 0.36s ease, transform 0.36s ease;
    pointer-events: none;
}

.hero-service-slide.is-active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
}

.hero-service-image {
    position: absolute;
    inset: 0;
    background: #dfe4ea;
}

.hero-service-image::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(17, 19, 24, 0.05), transparent 42%, rgba(17, 19, 24, 0.18)),
        radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.30), transparent 32%);
    pointer-events: none;
}

.hero-service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(17, 19, 24, 0.08);
    border-radius: 999px;
    color: var(--ink);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 12px 28px rgba(17, 19, 24, 0.16);
    cursor: pointer;
    transform: translateY(-50%);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.hero-slider-arrow::before {
    content: "";
    width: 12px;
    height: 12px;
    border-left: 3px solid currentColor;
    border-bottom: 3px solid currentColor;
}

.hero-slider-prev {
    left: -25px;
}

.hero-slider-prev::before {
    transform: translateX(2px) rotate(45deg);
}

.hero-slider-next {
    right: -25px;
}

.hero-slider-next::before {
    transform: translateX(-2px) rotate(-135deg);
}

.hero-slider-arrow:hover {
    background: #fff;
    box-shadow: 0 16px 34px rgba(17, 19, 24, 0.20);
}

.hero-slider-prev:hover {
    transform: translate(-2px, -50%);
}

.hero-slider-next:hover {
    transform: translate(2px, -50%);
}

.hero-slider-dots {
    position: absolute;
    left: 50%;
    bottom: 40px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 17px;
    transform: translateX(-50%);
}

.hero-slider-dots button {
    width: 34px;
    height: 6px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 19, 24, 0.13);
    cursor: pointer;
    transition: width 0.18s ease, background 0.18s ease, opacity 0.18s ease;
}

.hero-slider-dots button.is-active {
    width: 36px;
    background: var(--ink);
}

.eyebrow {
    display: inline-flex;
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 12px;
    border: 1px solid rgba(132, 132, 132, 0.28);
    border-radius: 999px;
    color: var(--accent-dark);
    background: rgba(132, 132, 132, 0.10);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.page-hero .eyebrow,
.process-section .eyebrow {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.24);
    background: rgba(255, 255, 255, 0.12);
}

.hero .eyebrow {
    color: var(--ink);
    border-color: rgba(17, 19, 24, 0.12);
    background: #fff;
    box-shadow: 0 10px 24px rgba(17, 19, 24, 0.08);
}

.button {
    position: relative;
    overflow: hidden;
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 21px 14px 23px;
    border: 1px solid rgba(17, 19, 24, 0.92);
    border-radius: var(--radius);
    color: #fff;
    background:
        linear-gradient(180deg, #2b3037 0%, #111318 100%);
    font-weight: 850;
    line-height: 1;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.16),
        0 14px 28px rgba(17, 19, 24, 0.20);
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.button::after {
    content: "";
    width: 7px;
    height: 7px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: rotate(45deg);
    opacity: 0.74;
}

.button:hover {
    transform: translateY(-2px);
    border-color: #000;
    background:
        linear-gradient(180deg, #343b43 0%, #0d0f12 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 18px 38px rgba(17, 19, 24, 0.24);
}

.button:focus-visible {
    outline: 3px solid rgba(253, 74, 54, 0.24);
    outline-offset: 2px;
}

.button-ghost {
    color: var(--ink);
    border-color: rgba(17, 19, 24, 0.16);
    background:
        linear-gradient(180deg, #fff 0%, #f6f7f9 100%);
    box-shadow:
        inset 0 1px 0 #fff,
        0 10px 22px rgba(17, 19, 24, 0.08);
}

.button-ghost:hover {
    border-color: var(--ink);
    color: #fff;
    background:
        linear-gradient(180deg, #2b3037 0%, #111318 100%);
}

.text-link {
    display: inline-flex;
    align-items: center;
    color: var(--ink);
    font-weight: 800;
    padding-bottom: 3px;
    border-bottom: 1px solid rgba(17, 19, 24, 0.12);
    transition: color 0.18s ease, border-color 0.18s ease;
}

.text-link::after {
    content: "";
    width: 24px;
    height: 2px;
    margin-left: 10px;
    background: var(--orange);
    transition: width 0.18s ease;
}

.text-link:hover::after {
    width: 34px;
}

.text-link:hover {
    color: #000;
    border-color: rgba(253, 74, 54, 0.36);
}

.stats-strip {
    margin-top: -44px;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 64px rgba(17, 19, 24, 0.13);
    backdrop-filter: blur(14px);
    overflow: hidden;
}

.stat-card {
    min-height: 116px;
    padding: 28px;
    border-right: 1px solid var(--line);
    background:
        linear-gradient(135deg, rgba(253, 74, 54, 0.05), transparent 42%),
        #fff;
}

.stat-card:last-child {
    border-right: 0;
}

.stat-card strong {
    display: block;
    color: var(--ink);
    font-size: 30px;
    line-height: 1;
}

.stat-card > span {
    display: block;
    margin-top: 8px;
    color: var(--muted);
    font-weight: 600;
}

.stat-card small {
    display: block;
    margin-top: 6px;
    color: #3f4853;
    font-size: 14px;
    font-weight: 800;
}

.eu-mark {
    display: flex;
    align-items: center;
    gap: 12px;
}

.eu-mark span {
    color: var(--ink);
}

.eu-flag-icon {
    width: 58px;
    height: auto;
    flex: 0 0 auto;
    filter: drop-shadow(0 8px 14px rgba(30, 74, 168, 0.22));
}

.stat-card .service-area-image-pair {
    min-height: 60px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.stat-card .service-area-image-pair img {
    width: auto;
    max-width: min(45%, 128px);
    max-height: 100px;
    object-fit: contain;
    filter: drop-shadow(0 8px 14px rgba(17, 19, 24, 0.10));
}

.stat-card .service-area-image-pair img:only-child {
    max-width: min(72%, 190px);
}

.section {
    padding: 96px 0;
}

.about-section {
    position: relative;
    background:
        linear-gradient(180deg, #fff 0%, #fff 58%, #f7f8fa 100%);
}

.about-section::before {
    content: "";
    position: absolute;
    left: 0;
    top: 72px;
    width: min(38vw, 520px);
    height: 1px;
    background: linear-gradient(90deg, var(--orange), transparent);
}

.section-heading {
    max-width: 820px;
    margin-bottom: 36px;
}

.split-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
    gap: 58px;
    align-items: center;
}

.split-layout p {
    max-width: 680px;
}

.image-panel {
    position: relative;
}

.image-panel::before {
    content: "";
    position: absolute;
    inset: 18px -18px -18px 18px;
    border: 1px solid rgba(132, 132, 132, 0.32);
    border-radius: var(--radius);
}

.image-panel img {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.services-section,
.why-section {
    background:
        linear-gradient(180deg, var(--soft) 0%, #fff 100%);
}

.service-grid,
.benefit-grid,
.process-grid {
    display: grid;
    gap: 18px;
}

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

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

.service-card,
.benefit-item,
.process-step,
.side-panel,
.contact-form {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 10px 28px rgba(17, 19, 24, 0.06);
}

.service-card,
.benefit-item {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: 26px;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.service-card::before,
.benefit-item::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, var(--ink), var(--accent), var(--orange));
}

.service-card:hover,
.benefit-item:hover {
    transform: translateY(-4px);
    border-color: rgba(132, 132, 132, 0.42);
    box-shadow: var(--shadow);
}

.service-grid .service-card:first-child {
    grid-column: span 2;
    color: rgba(255, 255, 255, 0.78);
    background:
        linear-gradient(135deg, rgba(17, 19, 24, 0.96), rgba(38, 43, 49, 0.94)),
        linear-gradient(90deg, rgba(253, 74, 54, 0.18), transparent);
}

.service-grid .service-card:first-child h2,
.service-grid .service-card:first-child h3 {
    color: #fff;
}

.service-grid .service-card:first-child .text-link {
    color: #fff;
}

.service-grid .service-card:first-child .card-icon {
    background: rgba(255, 255, 255, 0.12);
}

.service-card-large h2 {
    font-size: 28px;
}

.card-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: var(--radius);
    color: #fff;
    background: linear-gradient(135deg, var(--ink), var(--accent-dark));
    box-shadow: 0 12px 24px rgba(17, 19, 24, 0.14);
}

.card-icon svg {
    width: 27px;
    height: 27px;
}

.process-section {
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, 0.78);
    background:
        linear-gradient(135deg, var(--ink) 0%, var(--ink-3) 62%, #34383e 100%);
}

.process-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 20%, rgba(253, 74, 54, 0.16), transparent 24%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 80px);
    pointer-events: none;
}

.process-section > * {
    position: relative;
}

.process-section h2,
.process-section h3 {
    color: #fff;
}

.process-step {
    min-height: 230px;
    padding: 28px;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
}

.process-step span {
    display: block;
    margin-bottom: 28px;
    color: var(--orange);
    font-size: 28px;
    font-weight: 800;
}

.contact-band {
    padding: 96px 0;
    background:
        linear-gradient(180deg, #fff 0%, var(--soft) 100%);
}

.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
    gap: 54px;
    align-items: start;
}

.contact-list {
    margin-top: 26px;
    border-top: 1px solid var(--line);
}

.contact-list p {
    margin: 0;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

.contact-form {
    position: relative;
    padding: 28px;
    overflow: visible;
}

.contact-form::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--accent), var(--ink));
}

.contact-form.has-result {
    min-height: 620px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.contact-form.has-result.is-success::before {
    background: linear-gradient(90deg, #15915b, #7bc9a0, var(--ink));
}

.contact-form.has-result.is-error::before {
    background: linear-gradient(90deg, var(--orange), #b72f2b, var(--ink));
}

.contact-result {
    width: 100%;
    min-height: 520px;
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 20px;
    padding: 54px 22px;
    text-align: center;
}

.contact-result h3 {
    margin-bottom: 8px;
    font-size: clamp(28px, 3vw, 38px);
}

.contact-result p {
    max-width: 460px;
    margin: 0 auto;
    color: #3f4853;
    font-size: 18px;
    line-height: 1.6;
}

.contact-result-icon {
    --result-color: #15915b;
    --result-soft: rgba(21, 145, 91, 0.12);
    position: relative;
    width: 112px;
    height: 112px;
    display: grid;
    place-items: center;
    color: var(--result-color);
}

.contact-result.is-error .contact-result-icon {
    --result-color: #d84235;
    --result-soft: rgba(253, 74, 54, 0.12);
}

.contact-result-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 3px solid currentColor;
    border-radius: 999px;
    opacity: 0;
    transform: scale(0.62);
    animation: result-circle 0.42s cubic-bezier(0.2, 0.9, 0.26, 1.16) forwards;
}

.contact-result-icon::after {
    content: "";
    position: absolute;
    inset: 10px;
    border-radius: 999px;
    background: var(--result-soft);
    opacity: 0;
    transform: scale(0.4);
    animation: result-fill 0.32s ease 0.18s forwards;
}

.contact-result-icon span {
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    display: block;
}

.contact-result.is-success .contact-result-icon span::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 16px;
    width: 34px;
    height: 18px;
    border-left: 6px solid currentColor;
    border-bottom: 6px solid currentColor;
    border-radius: 3px;
    opacity: 0;
    transform: rotate(-45deg) scale(0.55);
    animation: result-check 0.34s ease 0.48s forwards;
}

.contact-result.is-error .contact-result-icon span::before,
.contact-result.is-error .contact-result-icon span::after {
    content: "";
    position: absolute;
    left: 7px;
    top: 25px;
    width: 42px;
    height: 6px;
    border-radius: 999px;
    background: currentColor;
    opacity: 0;
    transform: rotate(var(--mark-rotate)) scaleX(0.2);
    animation: result-x 0.28s ease 0.48s forwards;
}

.contact-result.is-error .contact-result-icon span::before {
    --mark-rotate: 45deg;
}

.contact-result.is-error .contact-result-icon span::after {
    --mark-rotate: -45deg;
}

.contact-result-button {
    min-width: 128px;
}

@keyframes result-circle {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes result-fill {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes result-check {
    to {
        opacity: 1;
        transform: rotate(-45deg) scale(1);
    }
}

@keyframes result-x {
    to {
        opacity: 1;
        transform: rotate(var(--mark-rotate)) scaleX(1);
    }
}

label {
    display: grid;
    gap: 7px;
    margin-bottom: 16px;
    color: var(--ink);
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fbfcfd;
    color: var(--ink);
    font: inherit;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
}

input,
select {
    min-height: 50px;
    padding: 0 14px;
}

select {
    appearance: none;
    border-color: #d9dee5;
    background-color: #fbfcfd;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(247, 248, 250, 0.92) 100%),
        var(--select-arrow);
    background-repeat: no-repeat, no-repeat;
    background-position: 0 0, calc(100% - 16px) 50%;
    background-size: 100% 100%, 18px 18px;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 8px 18px rgba(17, 19, 24, 0.04);
    padding-right: 46px;
    cursor: pointer;
}

select:hover {
    border-color: #cbd2da;
    background-color: #fff;
}

select::-ms-expand {
    display: none;
}

.select-native-hidden {
    position: absolute;
    width: 1px;
    min-width: 1px;
    height: 1px;
    min-height: 1px;
    margin: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
}

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select-trigger {
    width: 100%;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 0 14px;
    border: 1px solid #d9dee5;
    border-radius: var(--radius);
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(247, 248, 250, 0.94) 100%);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.96),
        0 8px 18px rgba(17, 19, 24, 0.04);
    font: inherit;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.custom-select-trigger:hover,
.custom-select.is-open .custom-select-trigger {
    border-color: #cbd2da;
    background: #fff;
}

.custom-select.is-invalid .custom-select-trigger {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(253, 74, 54, 0.14);
}

.custom-select-value {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-select-caret {
    width: 8px;
    height: 8px;
    flex: 0 0 8px;
    border-right: 2px solid rgba(98, 107, 118, 0.72);
    border-bottom: 2px solid rgba(98, 107, 118, 0.72);
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.18s ease;
}

.custom-select.is-open .custom-select-caret {
    transform: translateY(2px) rotate(225deg);
}

.custom-select-options {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    z-index: 30;
    display: none;
    max-height: 260px;
    overflow: auto;
    gap: 3px;
    padding: 6px;
    border: 1px solid rgba(17, 19, 24, 0.12);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: 0 18px 42px rgba(17, 19, 24, 0.14);
}

.custom-select.is-open .custom-select-options {
    display: grid;
}

.custom-select-option {
    width: 100%;
    min-height: 42px;
    display: flex;
    align-items: center;
    padding: 9px 11px;
    border: 0;
    border-radius: 7px;
    color: var(--ink);
    background: transparent;
    font: inherit;
    font-weight: 650;
    line-height: 1.25;
    text-align: left;
    cursor: pointer;
}

.custom-select-option:hover,
.custom-select-option:focus-visible,
.custom-select-option.is-highlighted {
    outline: 0;
    color: var(--ink);
    background: #eef1f4;
}

.custom-select-option.is-selected {
    color: #fff;
    background: linear-gradient(180deg, #2b3037 0%, #111318 100%);
}

.custom-select-option.is-disabled {
    color: var(--muted);
    background: #f7f8fa;
    cursor: not-allowed;
}

.phone-field .custom-select {
    min-width: 0;
}

.phone-field {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 10px;
}

textarea {
    resize: vertical;
    min-height: 140px;
    padding: 12px 14px;
}

input:focus,
textarea:focus {
    outline: 0;
    border-color: var(--accent);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(132, 132, 132, 0.14);
}

select:focus {
    outline: 0;
    border-color: var(--accent);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(132, 132, 132, 0.14);
}

.contact-form .button {
    font-family: inherit;
    font-weight: 800;
}

.map-section {
    margin-top: 24px;
}

.map-section iframe,
.map-placeholder {
    width: 100%;
    height: 310px;
    min-height: 310px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(17, 19, 24, 0.05), transparent 44%),
        repeating-linear-gradient(135deg, rgba(17, 19, 24, 0.045) 0 1px, transparent 1px 18px),
        #fff;
    box-shadow: var(--shadow-soft);
}

.map-section iframe {
    display: block;
}

.map-placeholder {
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    padding: 28px;
    text-align: center;
}

.map-placeholder strong {
    color: var(--ink);
    font-size: 24px;
}

.map-placeholder span {
    max-width: 560px;
}

.page-hero {
    position: relative;
    height: 310px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 0;
    color: #fff;
    background:
        linear-gradient(120deg, rgba(17, 19, 24, 0.96) 0%, rgba(47, 52, 58, 0.92) 52%, rgba(126, 130, 135, 0.72) 100%),
        repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.055) 0 1px, transparent 1px 18px),
        linear-gradient(180deg, #1b1f24 0%, #2d3238 100%);
    isolation: isolate;
}

.page-hero::before {
    content: "Gray-IT";
    position: absolute;
    left: max(22px, calc((100vw - 1180px) / 2));
    bottom: -34px;
    z-index: -1;
    color: rgba(255, 255, 255, 0.055);
    font-size: clamp(82px, 12vw, 170px);
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(17, 19, 24, 0.18), transparent 34%, rgba(255, 255, 255, 0.07)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 42%);
}

.page-hero h1,
.page-hero p {
    color: #fff;
}

.page-hero h1 {
    max-width: 980px;
    margin-bottom: 16px;
    font-size: clamp(46px, 5vw, 68px);
}

.page-hero p:not(.eyebrow) {
    max-width: 850px;
    color: rgba(255, 255, 255, 0.84);
}

.page-main .contact-band {
    padding-top: 64px;
}

.prose-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 48px;
    align-items: start;
}

.prose-layout article,
.narrow-prose {
    max-width: 820px;
}

.prose-layout p,
.narrow-prose p {
    font-size: 18px;
}

.side-panel {
    display: grid;
    gap: 12px;
    padding: 24px;
}

.side-panel strong {
    color: var(--ink);
    font-size: 18px;
}

.site-footer {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.74);
    background: var(--ink);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(180px, 0.72fr) minmax(240px, 0.82fr);
    gap: 58px;
    align-items: start;
    padding: 64px 0 54px;
}

.footer-grid h2 {
    margin-bottom: 18px;
    color: #fff;
    font-size: 18px;
}

.footer-brand {
    display: grid;
    gap: 18px;
    justify-items: start;
}

.footer-brand p {
    max-width: 500px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
}

.footer-logo {
    width: 258px;
    height: 82px;
    object-fit: contain;
    object-position: left center;
    filter: brightness(0) invert(1);
}

.footer-links,
.footer-contact {
    display: grid;
    gap: 10px;
}

.footer-links a,
.footer-contact a,
.footer-bottom-inner a {
    position: relative;
    width: fit-content;
    color: rgba(255, 255, 255, 0.78);
    transition: color 0.18s ease;
}

.footer-links a::after,
.footer-contact a::after,
.footer-bottom-inner a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -3px;
    height: 1px;
    background: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.18s ease;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom-inner a:hover {
    color: #fff;
}

.footer-links a:hover::after,
.footer-contact a:hover::after,
.footer-bottom-inner a:hover::after {
    transform: scaleX(1);
}

.footer-contact p {
    margin: 0;
}

.social-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.social-links a::after {
    display: none;
}

.social-links a:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.30);
    background: rgba(255, 255, 255, 0.12);
}

.social-links svg {
    width: 20px;
    height: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.10);
}

.footer-bottom-inner {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 14px;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 20;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border-radius: 999px;
    color: #fff;
    background:
        linear-gradient(180deg, #29b865 0%, #168b49 100%);
    border: 1px solid rgba(10, 105, 52, 0.55);
    font-size: 13px;
    font-weight: 900;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.18),
        0 16px 34px rgba(17, 19, 24, 0.20);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.20),
        0 20px 42px rgba(17, 19, 24, 0.24);
}

.cookie-preferences-button {
    position: fixed;
    left: 18px;
    bottom: 18px;
    z-index: 26;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px 8px 9px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    color: #fff;
    background: rgba(17, 19, 24, 0.94);
    box-shadow: var(--shadow);
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.cookie-preferences-button svg {
    width: 34px;
    height: 34px;
}

.cookie-panel {
    position: fixed;
    left: 18px;
    bottom: 84px;
    z-index: 27;
    width: min(560px, calc(100% - 36px));
    max-height: min(720px, calc(100vh - 110px));
    display: none;
    overflow: auto;
    border: 1px solid rgba(17, 19, 24, 0.12);
    border-radius: var(--radius);
    color: #2c333b;
    background: #fff;
    box-shadow: 0 24px 84px rgba(17, 19, 24, 0.24);
}

.cookie-panel.is-visible {
    display: block;
}

.cookie-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 22px;
    border-bottom: 1px solid var(--line);
}

.cookie-panel h2 {
    margin-bottom: 0;
    font-size: 20px;
}

.cookie-panel-header button {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    color: var(--muted);
    background: #f1f3f6;
    font-size: 24px;
    cursor: pointer;
}

.cookie-panel > p {
    margin: 0;
    padding: 18px 22px;
    border-bottom: 1px solid var(--line);
}

.cookie-options {
    display: grid;
}

.cookie-options label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 88px;
    margin: 0;
    padding: 18px 22px;
    border-bottom: 1px solid var(--line);
}

.cookie-options label > span {
    min-width: 0;
}

.cookie-options strong {
    display: block;
    color: var(--ink);
}

.cookie-options small {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 600;
}

.cookie-options input {
    position: relative;
    flex: 0 0 54px;
    width: 54px;
    min-width: 54px;
    height: 30px;
    min-height: 30px;
    margin: 0;
    padding: 0;
    appearance: none;
    border: 1px solid rgba(17, 19, 24, 0.12);
    border-radius: 999px;
    background: linear-gradient(180deg, #e7ebf0 0%, #d2d8df 100%);
    box-shadow:
        inset 0 1px 2px rgba(17, 19, 24, 0.16),
        inset 0 -1px 0 rgba(255, 255, 255, 0.65);
    cursor: pointer;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.cookie-options input::before {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 22px;
    height: 22px;
    display: block;
    margin: 0;
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 2px 7px rgba(17, 19, 24, 0.22);
    transition: transform 0.18s ease;
}

.cookie-options input:checked {
    border-color: var(--orange);
    background: linear-gradient(180deg, #ff5a48 0%, var(--orange) 100%);
}

.cookie-options input:checked::before {
    transform: translateX(24px);
}

.cookie-options input:disabled {
    border-color: #168b49;
    background: linear-gradient(180deg, #1c9a55 0%, #168b49 100%);
    cursor: not-allowed;
    opacity: 1;
}

.cookie-options input:focus-visible {
    outline: 3px solid rgba(253, 74, 54, 0.24);
    outline-offset: 3px;
}

.cookie-actions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    padding: 18px 22px 22px;
}

.cookie-actions button {
    min-height: 44px;
    border: 1px solid rgba(17, 19, 24, 0.12);
    border-radius: var(--radius);
    color: var(--ink);
    background: #f7f8fa;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.cookie-actions button:last-child {
    color: #fff;
    border-color: var(--orange);
    background: var(--orange);
}

.notice {
    margin-top: 26px;
    padding: 14px 16px;
    border-radius: var(--radius);
    font-weight: 700;
}

.notice.success {
    color: #0b5134;
    background: #dff7ea;
}

.notice.danger {
    color: #7b1f1f;
    background: #ffe2e2;
}

.setup-notice,
.install-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    background: var(--soft);
}

.setup-box,
.install-panel {
    width: min(100% - 32px, 560px);
    padding: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    box-shadow: var(--shadow-soft);
}

.setup-logo,
.install-logo {
    width: 190px;
    height: 58px;
    margin-bottom: 22px;
    object-fit: contain;
}

pre {
    overflow: auto;
    padding: 14px;
    border-radius: var(--radius);
    background: #f0f2f4;
}

@media (max-width: 980px) {
    body.menu-open {
        overflow: hidden;
    }

    .site-header {
        backdrop-filter: blur(16px);
    }

    .top-strip-inner {
        min-height: 38px;
        justify-content: center;
    }

    .top-strip-contact {
        width: 100%;
        justify-content: center;
        flex-wrap: nowrap;
        overflow: hidden;
    }

    .top-strip-item span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .top-language-switcher {
        display: none;
    }

    .menu-toggle {
        position: relative;
        display: grid;
        place-items: center;
        flex: 0 0 46px;
        padding: 0;
        cursor: pointer;
        box-shadow: 0 10px 20px rgba(17, 19, 24, 0.07);
        transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
    }

    .menu-toggle span {
        position: absolute;
        margin: 0;
        transition: transform 0.18s ease, opacity 0.18s ease;
    }

    .menu-toggle span:nth-child(1) {
        transform: translateY(-7px);
    }

    .menu-toggle span:nth-child(3) {
        transform: translateY(7px);
    }

    .menu-toggle[aria-expanded="true"] {
        border-color: rgba(17, 19, 24, 0.20);
        background: #f6f7f9;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(1) {
        transform: rotate(45deg);
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle[aria-expanded="true"] span:nth-child(3) {
        transform: rotate(-45deg);
    }

    .nav-links {
        position: absolute;
        left: 20px;
        right: 20px;
        top: calc(100% + 10px);
        z-index: 40;
        display: none;
        gap: 8px;
        max-height: calc(100vh - 132px);
        overflow: auto;
        padding: 12px;
        border: 1px solid rgba(17, 19, 24, 0.10);
        border-radius: var(--radius);
        background:
            linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 248, 250, 0.98));
        box-shadow: 0 24px 70px rgba(17, 19, 24, 0.18);
    }

    .nav-links.is-open {
        display: grid;
    }

    .nav-links a {
        min-height: 48px;
        justify-content: flex-start;
        padding: 12px 14px;
        border: 1px solid rgba(17, 19, 24, 0.08);
        border-radius: var(--radius);
        background: #fff;
        box-shadow: 0 8px 18px rgba(17, 19, 24, 0.04);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links a:hover,
    .nav-links a.is-active {
        border-color: rgba(17, 19, 24, 0.16);
        background: #f1f3f6;
    }

    .nav-links a.nav-quote-button {
        width: 100%;
        margin-left: 0;
        padding: 13px 16px;
        justify-content: center;
    }

    .nav-mobile-language {
        display: grid;
        gap: 8px;
        margin-top: 2px;
        padding: 12px;
        border: 1px solid rgba(17, 19, 24, 0.08);
        border-radius: var(--radius);
        background: rgba(255, 255, 255, 0.72);
    }

    .nav-mobile-language > span {
        color: var(--muted);
        font-size: 12px;
        font-weight: 850;
        text-transform: uppercase;
    }

    .nav-mobile-language .language-switcher {
        width: 100%;
        margin-left: 0;
    }

    .nav-mobile-language .language-switcher summary {
        width: 100%;
        min-height: 46px;
        justify-content: flex-start;
        padding: 9px 12px;
        border-color: rgba(17, 19, 24, 0.12);
        color: var(--ink);
        background: #fff;
        border-radius: var(--radius);
    }

    .nav-mobile-language .language-switcher summary:hover,
    .nav-mobile-language .language-switcher[open] summary {
        border-color: rgba(17, 19, 24, 0.18);
        background: #fff;
    }

    .nav-mobile-language .language-code {
        color: var(--ink);
    }

    .nav-mobile-language .language-caret {
        margin-left: auto;
        border-color: rgba(98, 107, 118, 0.72);
    }

    .nav-mobile-language .language-menu {
        position: static;
        min-width: 0;
        margin-top: 8px;
        box-shadow: none;
        background: #fff;
    }

    .nav-mobile-language .language-menu a {
        min-height: 42px;
        justify-content: flex-start;
        padding: 9px 10px;
        border: 0;
        box-shadow: none;
    }

    .nav-mobile-language .language-menu a:hover,
    .nav-mobile-language .language-menu a.is-active {
        color: var(--ink);
        background: #eef1f4;
    }

    .split-layout,
    .contact-layout,
    .prose-layout,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 56px 0 86px;
    }

    .page-hero {
        height: 280px;
        padding: 0;
    }

    .hero-shell {
        grid-template-columns: 1fr;
        gap: 38px;
    }

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

    .hero-media {
        min-height: auto;
        justify-items: center;
    }

    .clover-stage {
        width: min(100%, 540px);
        height: 360px;
    }

    .hero-service-media {
        min-height: auto;
    }

    .hero-service-slider {
        width: min(100%, 650px);
    }

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

    .service-grid .service-card:first-child {
        grid-column: span 2;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 24px, 1180px);
    }

    .nav-inner {
        min-height: 78px;
        gap: 14px;
    }

    .brand img {
        width: 178px;
        height: 58px;
    }

    .top-strip-contact {
        gap: 8px;
    }

    .top-strip-hours,
    .top-strip-separator-hours {
        display: none;
    }

    .hero {
        padding: 42px 0 66px;
    }

    .page-hero {
        height: 230px;
        padding: 0;
    }

    .page-hero::before {
        bottom: -18px;
        font-size: 78px;
    }

    .page-hero h1 {
        font-size: 40px;
    }

    .hero-rail {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .hero-rail a {
        min-height: 92px;
        grid-template-columns: 38px minmax(0, 1fr);
        align-items: center;
        align-content: center;
    }

    .hero-media::before {
        inset: 42px 0 36px 0;
    }

    .clover-stage {
        width: min(100%, 330px);
        height: 250px;
    }

    .clover-leaf {
        border-width: 6px;
        border-radius: 20px;
    }

    .hero-service-slider {
        aspect-ratio: auto;
        min-height: 0;
        height: min(84vw, 430px);
        border-radius: 20px;
    }

    .hero-service-slides {
        border-radius: 17px;
    }

    .hero-service-slide {
        display: block;
    }

    .hero-service-image {
        inset: 0;
    }

    .hero-slider-prev {
        left: 10px;
    }

    .hero-slider-next {
        right: 10px;
    }

    .hero-slider-dots {
        bottom: 26px;
        gap: 12px;
    }

    .hero-slider-dots button {
        width: 26px;
    }

    h1 {
        font-size: clamp(38px, 10.6vw, 44px);
    }

    .hero-copy > p:not(.eyebrow) {
        font-size: 18px;
    }

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

    .stats-strip {
        margin-top: -30px;
    }

    .stats-grid {
        border-radius: var(--radius);
    }

    .contact-form {
        padding: 22px;
    }

    .phone-field {
        grid-template-columns: 1fr;
    }

    .contact-form.has-result {
        min-height: 440px;
    }

    .contact-result {
        min-height: 360px;
        padding: 42px 8px;
    }

    .contact-result-icon {
        width: 92px;
        height: 92px;
    }

    .stats-grid,
    .service-grid,
    .benefit-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .service-grid .service-card:first-child {
        grid-column: span 1;
    }

    .stat-card {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .stat-card:last-child {
        border-bottom: 0;
    }

    .section,
    .contact-band {
        padding: 70px 0;
    }

    .map-section iframe,
    .map-placeholder {
        height: 250px;
        min-height: 250px;
    }

    .image-panel::before {
        display: none;
    }

    .footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        padding: 18px 0;
    }

    .footer-grid {
        gap: 34px;
        padding: 52px 0 42px;
    }

    .footer-logo {
        width: 210px;
        height: 68px;
    }

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

    .cookie-preferences-button span {
        display: none;
    }
}

@media (max-width: 420px) {
    .container {
        width: min(100% - 20px, 1180px);
    }

    .top-strip {
        font-size: 12px;
    }

    .top-strip-inner {
        min-height: 36px;
    }

    .top-strip-contact {
        gap: 7px;
    }

    .top-strip-email span {
        max-width: 132px;
    }

    .top-strip-phone span {
        max-width: 126px;
    }

    .nav-inner {
        min-height: 72px;
    }

    .brand img {
        width: 156px;
        height: 52px;
    }

    .menu-toggle {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
    }

    .nav-links {
        left: 10px;
        right: 10px;
        max-height: calc(100vh - 118px);
    }

    .hero {
        padding: 34px 0 58px;
    }

    .eyebrow {
        max-width: 100%;
        font-size: 11px;
        line-height: 1.35;
    }

    .hero-copy > p:not(.eyebrow) {
        font-size: 17px;
    }

    .hero-service-slider {
        height: min(82vw, 350px);
        border-width: 2px;
        border-radius: 16px;
    }

    .hero-service-slides {
        border-radius: 14px;
    }

    .hero-slider-arrow {
        width: 40px;
        height: 40px;
    }

    .hero-slider-prev {
        left: 8px;
    }

    .hero-slider-next {
        right: 8px;
    }

    .hero-slider-dots {
        bottom: 20px;
    }

    .hero-slider-dots button {
        width: 22px;
        height: 5px;
    }

    .hero-slider-dots button.is-active {
        width: 28px;
    }

    .stat-card,
    .service-card,
    .benefit-item,
    .process-step,
    .side-panel {
        padding: 22px;
    }

    .contact-form {
        padding: 18px;
    }

    .contact-result h3 {
        font-size: 28px;
    }

    .cookie-panel {
        left: 10px;
        bottom: 78px;
        width: calc(100% - 20px);
        max-height: calc(100vh - 96px);
    }
}
