:root {
    --ink: #071522;
    --deep: #06101c;
    --muted: #a8b2bf;
    --paper: #08131f;
    --white: #fff;
    --line: rgba(255, 255, 255, .13);
    --light-surface: #f3f6f8;
    --light-panel: #ffffff;
    --light-ink: #102033;
    --light-muted: #5f6d7c;
    --light-line: rgba(16, 32, 51, .12);
    --brand: #d71920;
    --brand-dark: #a70f18;
    --gold: #fff;
    --cyan: #00a9b7;
    --green: #16724f;
    --radius: 8px;
    --shadow: 0 28px 90px rgba(0, 0, 0, .34);
    --font-display: "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --font-body: "Outfit", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --content-max: 1360px;
    --page-gutter: clamp(12px, 2vw, 24px);
    --content-width: min(var(--content-max), calc(100% - (var(--page-gutter) * 2)));
    --section-pad-block: clamp(2.6rem, 5vw, 4.8rem);
    --header-height: 82px;
    --header-height-scrolled: 68px;
    font-family: var(--font-body);
}

* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--header-height) + 12px);
    overflow-x: hidden;
}

body {
    margin: 0;
    padding-top: var(--header-height);
    background:
        radial-gradient(circle at 78% 8%, rgba(215, 25, 32, .12), transparent 24%),
        radial-gradient(circle at 12% 60%, rgba(0, 169, 183, .08), transparent 28%),
        var(--paper);
    color: var(--white);
    line-height: 1.6;
    font-family: var(--font-body);
    font-weight: 400;
    text-rendering: geometricPrecision;
    overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

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

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

.skip-link {
    position: fixed;
    left: 1rem;
    top: -4rem;
    z-index: 80;
    background: var(--ink);
    color: var(--white);
    padding: .65rem .9rem;
    border-radius: var(--radius);
}

.skip-link:focus { top: 1rem; }

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 60;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .045), transparent 72%),
        rgba(6, 16, 28, .9);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 18px 48px rgba(7, 16, 24, .16);
    backdrop-filter: blur(22px) saturate(130%);
    transition: background .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(215, 25, 32, .85) 16%, rgba(255, 255, 255, .32) 50%, transparent 84%);
    opacity: .5;
    pointer-events: none;
}

.site-header.is-scrolled {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .055), transparent 70%),
        rgba(6, 16, 28, .74);
    border-bottom-color: rgba(255, 255, 255, .16);
    box-shadow: 0 18px 58px rgba(0, 0, 0, .28);
}

.nav-shell {
    width: var(--content-width);
    min-height: var(--header-height);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.15rem;
    transition: min-height .22s ease;
}

.site-header.is-scrolled .nav-shell {
    min-height: var(--header-height-scrolled);
}

.brand {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    padding: .46rem .9rem;
    border: 0;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .94);
    box-shadow: 0 14px 36px rgba(0, 0, 0, .18);
    transition: transform .18s ease, box-shadow .18s ease;
}

.site-header.is-scrolled .brand {
    min-height: 42px;
    padding: .36rem .72rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .24);
}

.site-header.is-scrolled .brand img {
    width: 124px;
}

.brand:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
}

.brand img { width: 142px; }

.brand img { transition: width .22s ease; }

.nav-panel {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: .18rem;
    min-height: 48px;
    padding: .28rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    transition: background .22s ease, border-color .22s ease, box-shadow .22s ease, padding .22s ease;
}

.site-header.is-scrolled .nav-panel {
    padding: .12rem 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.nav-item {
    position: relative;
}

.nav-panel a,
.nav-trigger {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    position: relative;
    border-radius: 0;
    padding: .48rem .82rem;
    color: rgba(255, 255, 255, .76);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .9rem;
    transition: color .18s ease, background .18s ease, transform .18s ease;
}

.nav-trigger {
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.site-header.is-scrolled .nav-panel a,
.site-header.is-scrolled .nav-trigger {
    min-height: 36px;
    border-radius: 0;
    padding: .42rem .72rem;
}

.nav-panel a::after,
.nav-trigger::after {
    content: "";
    position: absolute;
    left: .8rem;
    right: .8rem;
    bottom: .2rem;
    height: 2px;
    background: var(--brand);
    opacity: 0;
    transform: scaleX(.35);
    transform-origin: left center;
    transition: opacity .18s ease, transform .18s ease;
}

.nav-trigger i {
    font-size: .92rem;
    transition: transform .18s ease;
}

.nav-panel a:hover,
.nav-item:hover > .nav-trigger,
.nav-item:focus-within > .nav-trigger {
    background: transparent;
    color: var(--white);
    transform: none;
}

.nav-panel a:hover::after,
.nav-item:hover > .nav-trigger::after,
.nav-item:focus-within > .nav-trigger::after {
    opacity: .78;
    transform: scaleX(1);
}

.nav-item:hover > .nav-trigger i,
.nav-item:focus-within > .nav-trigger i {
    transform: rotate(180deg);
}

.nav-panel a[aria-current="page"],
.nav-panel a.is-section-active,
.nav-trigger.is-section-active {
    background: transparent;
    color: var(--white);
    box-shadow: none;
}

.site-header.is-scrolled .nav-panel a[aria-current="page"],
.site-header.is-scrolled .nav-panel a.is-section-active,
.site-header.is-scrolled .nav-trigger.is-section-active {
    background: transparent;
    box-shadow: none;
}

.nav-panel a[aria-current="page"]::after,
.nav-panel a.is-section-active::after,
.nav-trigger.is-section-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.nav-dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + .6rem);
    width: 250px;
    z-index: 11;
    padding: .5rem;
    display: grid;
    gap: .18rem;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, .14);
    background:
        linear-gradient(135deg, rgba(215, 25, 32, .1), transparent 42%),
        rgba(7, 16, 24, .97);
    box-shadow: 0 24px 70px rgba(7, 16, 24, .36);
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
}

.nav-dropdown::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -.7rem;
    height: .7rem;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-dropdown a {
    width: fit-content;
    max-width: 100%;
    justify-content: flex-start;
    min-height: 40px;
    color: rgba(255, 255, 255, .78);
    white-space: normal;
}

.nav-dropdown a:hover,
.nav-dropdown a[aria-current="page"] {
    background: transparent;
    color: var(--white);
    box-shadow: none;
}

.nav-login {
    margin-left: .38rem;
    background: transparent !important;
    color: var(--brand) !important;
    box-shadow: none;
}

.nav-login:hover {
    background: transparent !important;
    color: #ff4c52 !important;
    box-shadow: none;
}

.icon-button {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .1);
    color: var(--white);
    display: inline-grid;
    place-items: center;
    cursor: pointer;
}

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

.hero {
    position: relative;
    min-height: calc(100svh - 82px);
    display: grid;
    grid-template-rows: 1fr auto;
    isolation: isolate;
    overflow: hidden;
    background: var(--deep);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-video {
    z-index: -3;
    object-fit: cover;
    opacity: .9;
    filter: saturate(112%) contrast(106%);
    transform: scale(1.03);
    animation: heroImageDrift 18s ease-in-out infinite alternate;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background: rgba(6, 16, 28, .5);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    display: none;
}

.hero-grid {
    width: var(--content-width);
    margin: 0 auto;
    padding: clamp(2rem, 4vw, 4.2rem) 0 clamp(3rem, 6vw, 5.5rem);
    display: grid;
    grid-template-columns: minmax(0, 760px);
    gap: 1rem;
    align-items: end;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: var(--white);
    animation: heroContentRise .8s ease-out both;
}

.hero-title span {
    display: block;
    white-space: nowrap;
}

.hero .hero-title {
    font-size: clamp(2.25rem, 4.15vw, 4.4rem);
}

.eyebrow {
    width: fit-content;
    min-width: max-content;
    display: flex;
    align-items: center;
    gap: .45rem;
    margin-bottom: .72rem;
    border: 1px solid rgba(215, 25, 32, .16);
    border-radius: var(--radius);
    padding: .42rem .72rem;
    background: rgba(215, 25, 32, .08);
    color: var(--brand);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.hero .eyebrow {
    color: var(--gold);
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .26);
}

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

h1 {
    max-width: 720px;
    margin-bottom: 1rem;
    font-size: clamp(2.2rem, 5.2vw, 5.35rem);
    line-height: .96;
    letter-spacing: 0;
    font-family: var(--font-display);
    font-weight: 700;
}

.hero h1 {
    font-size: clamp(2.3rem, 4.9vw, 5.4rem);
}

h2 {
    font-size: clamp(1.75rem, 3vw, 3.2rem);
    line-height: 1.08;
    letter-spacing: 0;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    font-weight: 700;
}

h3 {
    line-height: 1.2;
    font-family: var(--font-display);
    font-weight: 500;
}

.hero p {
    max-width: 560px;
    font-size: clamp(.98rem, 1.35vw, 1.12rem);
    color: rgba(255, 255, 255, .84);
    font-weight: 400;
}

.hero-actions,
.cookie-banner div {
    display: flex;
    gap: .75rem;
    flex-wrap: wrap;
}

@keyframes heroImageDrift {
    from {
        transform: scale(1.03) translate3d(0, 0, 0);
    }
    to {
        transform: scale(1.09) translate3d(-1.5%, -1%, 0);
    }
}

@keyframes heroLightSweep {
    from {
        opacity: .72;
        transform: translate3d(-1.5%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(1.5%, 0, 0);
    }
}

@keyframes heroContentRise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: var(--radius);
    padding: .75rem 1rem;
    font-family: var(--font-display);
    font-weight: 600;
    cursor: pointer;
}

.button-primary {
    background: var(--brand);
    color: var(--white);
    box-shadow: 0 18px 40px rgba(215, 25, 32, .28);
}

.button-primary:hover { background: #b91017; }

.button-soft {
    background: rgba(255, 255, 255, .11);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .28);
    backdrop-filter: blur(12px);
}

.button-ghost {
    background: rgba(255, 255, 255, .08);
    color: var(--white);
    border: 1px solid var(--line);
}

.hero-console {
    position: relative;
    min-height: 500px;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .06)),
        rgba(7, 16, 24, .72);
    color: var(--white);
    box-shadow: 0 32px 110px rgba(0, 0, 0, .36);
    backdrop-filter: blur(22px);
    overflow: hidden;
}

.hero-console::before {
    content: "";
    position: absolute;
    inset: 58px -30% auto;
    height: 3px;
    transform: rotate(-18deg);
    background: linear-gradient(90deg, transparent, var(--gold), var(--cyan), transparent);
    box-shadow: 0 0 34px rgba(0, 169, 183, .7);
}

.console-top,
.console-readouts,
.console-link {
    position: relative;
    z-index: 1;
}

.console-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, .72);
    font-weight: 600;
}

.console-top strong {
    color: var(--gold);
}

.console-map {
    position: relative;
    height: 285px;
    margin: 2rem 0 1rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 22% 18%, rgba(255, 255, 255, .18), transparent 22%),
        radial-gradient(circle at 78% 76%, rgba(215, 25, 32, .2), transparent 26%),
        linear-gradient(135deg, rgba(0, 169, 183, .14), rgba(7, 16, 24, .52) 48%, rgba(215, 25, 32, .1));
    overflow: hidden;
}

.console-map::before {
    content: "";
    position: absolute;
    inset: 18%;
    border: 1px solid rgba(255, 255, 255, .36);
    transform: skew(-16deg) rotate(-8deg);
}

.console-map::after {
    content: "TÜRKİYE BAYİ AĞI";
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    color: rgba(255, 255, 255, .45);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
}

.console-map span {
    position: absolute;
    left: var(--x);
    top: var(--y);
    width: 13px;
    height: 13px;
    border-radius: 999px;
    background: var(--gold);
    box-shadow: 0 0 0 8px rgba(255, 255, 255, .14), 0 0 28px rgba(255, 255, 255, .55);
}

.console-readouts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .14);
}

.console-readouts div {
    background: rgba(7, 16, 24, .58);
    padding: .9rem;
}

.console-readouts span {
    display: block;
    color: rgba(255, 255, 255, .58);
    font-size: .78rem;
    font-weight: 600;
}

.console-readouts strong {
    display: block;
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    line-height: 1.1;
}

.console-link {
    min-height: 52px;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius: var(--radius);
    padding: .85rem 1rem;
    background: rgba(255, 255, 255, .1);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, .16);
    font-weight: 700;
}

.hero-map-panel {
    position: relative;
    min-height: 560px;
    padding: 1.05rem;
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .16), rgba(255, 255, 255, .06)),
        rgba(7, 16, 24, .72);
    color: var(--white);
    box-shadow: none;
    backdrop-filter: blur(22px);
    overflow: hidden;
}

.hero-map-panel::before {
    display: none;
}

.hero-map-panel::after {
    display: none;
}

.map-panel-head,
.turkey-network,
.hero-data-grid,
.map-panel-link {
    position: relative;
    z-index: 1;
}

.map-panel-head {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    color: rgba(255, 255, 255, .7);
    font-family: var(--font-display);
    font-weight: 600;
    padding-inline: clamp(1rem, 2vw, 1.4rem);
}

.map-stage {
    padding-top: var(--section-pad-block);
}

.map-stage .hero-map-panel {
    min-height: 0;
    padding: clamp(.8rem, 1.4vw, 1.1rem) 0 clamp(1rem, 2vw, 1.45rem);
    background: transparent;
}

.map-stage .turkey-network {
    min-height: clamp(430px, 52vw, 680px);
}

.map-stage .codepen-turkey-map {
    width: min(100%, 1280px);
    max-height: 640px;
}

.map-panel-head span {
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .78rem;
    color: var(--white);
}

.map-panel-head strong {
    color: var(--white);
    font-size: .95rem;
}

.turkey-network {
    min-height: 370px;
    margin: .35rem 0 1rem;
    display: grid;
    place-items: center;
    border-radius: 0;
    background: transparent;
    overflow: hidden;
}

.codepen-turkey-map {
    width: min(100%, 1180px);
    height: auto;
    display: block;
    overflow: hidden;
    filter: drop-shadow(0 28px 46px rgba(0, 0, 0, .42));
}

.codepen-turkey-map path {
    fill: rgba(255, 255, 255, .18);
    stroke: rgba(255, 255, 255, .5);
    stroke-width: 1.25;
    vector-effect: non-scaling-stroke;
    transition: fill .18s ease, stroke .18s ease, filter .18s ease;
}

.fallback-turkey-map .fallback-map-land {
    fill: rgba(255, 255, 255, .12);
    stroke: rgba(255, 255, 255, .42);
    stroke-width: 2;
}

.codepen-turkey-map circle {
    fill: rgba(255, 255, 255, .32);
    stroke: rgba(255, 255, 255, .68);
    stroke-width: 1.2;
    vector-effect: non-scaling-stroke;
    transition: fill .18s ease, stroke .18s ease, filter .18s ease, r .18s ease;
}

.codepen-turkey-map g[data-plakakodu]:hover > path,
.codepen-turkey-map g[data-plakakodu]:hover > g > path,
.codepen-turkey-map g[data-plakakodu]:hover > circle {
    cursor: pointer;
    fill: rgba(255, 255, 255, .72);
    stroke: rgba(255, 255, 255, .9);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, .58));
}

.turkey-network::after {
    content: "";
    position: absolute;
    left: 15%;
    right: 9%;
    top: 47%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--brand), var(--cyan));
    box-shadow: 0 0 34px rgba(255, 255, 255, .35);
    transform: rotate(-9deg);
    pointer-events: none;
}


.map-orbit {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    transform: rotate(-14deg);
    pointer-events: none;
}

.map-orbit-one {
    width: 82%;
    height: 48%;
}

.map-orbit-two {
    width: 58%;
    height: 32%;
    border-color: rgba(0, 169, 183, .2);
}

.map-tooltip {
    position: absolute;
    z-index: 5;
    left: 0;
    top: 0;
    max-width: 220px;
    transform: translate(-50%, calc(-100% - 14px));
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .94);
    color: var(--ink);
    box-shadow: 0 18px 48px rgba(0, 0, 0, .26);
    padding: .65rem .8rem;
    font-size: .9rem;
    font-family: var(--font-display);
    font-weight: 600;
    opacity: 0;
    pointer-events: none;
    transition: opacity .12s ease;
}

.map-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -7px;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, .94);
    transform: translateX(-50%) rotate(45deg);
}

.map-tooltip.is-visible {
    opacity: 1;
}

.hero-data-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .14);
    margin-inline: clamp(1rem, 2vw, 1.4rem);
}

.hero-data-grid div {
    min-height: 82px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(7, 16, 24, .58);
    padding: .85rem;
}

.hero-data-grid span {
    color: rgba(255, 255, 255, .58);
    font-size: .76rem;
    font-family: var(--font-display);
    font-weight: 500;
}

.hero-data-grid strong {
    margin-top: .25rem;
    line-height: 1.05;
    font-family: var(--font-display);
    font-weight: 600;
}

.map-panel-link {
    min-height: 52px;
    margin-top: 1rem;
    margin-bottom: 0;
    margin-inline: clamp(1rem, 2vw, 1.4rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-radius: var(--radius);
    padding: .85rem 1rem;
    background: linear-gradient(135deg, var(--brand), #ef3f26);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 600;
}

.hero-marquee {
    width: 100%;
    background: transparent;
    color: var(--ink);
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.hero-marquee div {
    width: var(--content-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    font-family: var(--font-display);
}

.hero-marquee a {
    min-height: 86px;
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: 1rem 1.35rem;
    background: var(--gold);
    border-right: 1px solid rgba(7, 21, 34, .18);
    color: var(--ink);
    font-weight: 600;
    transition: background .18s ease, transform .18s ease;
}

.hero-marquee a:first-child {
    background: var(--brand);
    color: var(--white);
}

.hero-marquee a:hover {
    background: var(--white);
    transform: translateY(-2px);
}

.hero-marquee a:first-child:hover {
    background: #b91017;
}

.hero-marquee i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(7, 21, 34, .12);
    font-size: 1.35rem;
}

.hero-marquee a:first-child i {
    background: rgba(255, 255, 255, .16);
}

.hero-marquee span {
    font-size: clamp(.95rem, 1.3vw, 1.15rem);
}

.section {
    width: var(--content-width);
    margin: 0 auto;
    padding: var(--section-pad-block) 0;
    position: relative;
    isolation: isolate;
}

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

.section::before {
    content: "";
    position: absolute;
    top: 0;
    right: calc((100% - 100vw) / 2);
    bottom: 0;
    left: calc((100% - 100vw) / 2);
    z-index: 0;
    background:
        linear-gradient(90deg, rgba(11, 27, 42, .96), rgba(7, 18, 30, .9)),
        var(--deep);
    pointer-events: none;
}

.section::after {
    content: "";
    position: absolute;
    top: 0;
    right: calc((100% - 100vw) / 2);
    left: calc((100% - 100vw) / 2);
    height: 1px;
    z-index: 0;
    background: linear-gradient(90deg, transparent, rgba(215, 25, 32, .28), rgba(255, 255, 255, .34), transparent);
    pointer-events: none;
}

.section:nth-of-type(odd)::before {
    background:
        linear-gradient(90deg, rgba(215, 25, 32, .42) 0 8px, transparent 8px),
        linear-gradient(120deg, rgba(14, 35, 52, .96), rgba(7, 18, 30, .94));
}

.section:nth-of-type(even)::before {
    background: linear-gradient(120deg, rgba(8, 19, 31, .98), rgba(13, 32, 47, .94));
}

.map-stage::before {
    background:
        radial-gradient(circle at 28% 26%, rgba(255, 255, 255, .13), transparent 22%),
        radial-gradient(circle at 46% 52%, rgba(255, 255, 255, .12), transparent 34%),
        radial-gradient(circle at 78% 70%, rgba(215, 25, 32, .16), transparent 26%),
        linear-gradient(135deg, rgba(0, 169, 183, .12), rgba(7, 16, 24, .54)),
        linear-gradient(90deg, rgba(6, 16, 28, .98) 0 38%, rgba(12, 30, 44, .98) 38%),
        var(--ink);
}

.map-stage::after {
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .3), rgba(215, 25, 32, .3), transparent);
}

main > section {
    scroll-margin-top: 82px;
}

@media (min-width: 981px) {
    .hero::after {
        background: linear-gradient(90deg, rgba(6, 16, 28, .99) 0%, rgba(6, 16, 28, .88) 48%, rgba(6, 16, 28, .62) 100%);
    }

    .hero-grid {
        align-items: center;
        padding-block: clamp(2rem, 4vw, 4.2rem);
    }

    main > section {
        min-height: calc(100svh - 82px);
    }

    main > .page-hero {
        min-height: 0;
        height: 500px;
    }

    main > .section {
        display: grid;
        align-content: center;
        padding-block: var(--section-pad-block);
    }

    main > .page-hero + .section {
        min-height: auto;
        align-content: initial;
        padding-block: var(--section-pad-block);
    }

    .hero {
        min-height: calc(100svh - 82px);
    }

    .map-stage .turkey-network {
        min-height: clamp(300px, 43vh, 430px);
    }

    .map-stage .codepen-turkey-map {
        max-height: 400px;
    }

    .fuel-product-cards {
        align-content: center;
    }

    .network-stage {
        display: grid;
        align-items: center;
    }

    .network-visual,
    .network-visual img {
        min-height: min(480px, 58vh);
    }

    .news-list article {
        min-height: min(210px, 32vh);
    }

}

.scroll-reveal {
    opacity: 0;
    transform: translateY(54px);
    transition:
        opacity .72s ease,
        transform .72s cubic-bezier(.2, .76, .24, 1);
    transition-delay: var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.scroll-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.section-tight { padding-top: var(--section-pad-block); }

.product-cards-section {
    width: 100%;
    margin-top: 0;
    padding-inline: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
    color: var(--light-ink);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .84), rgba(255, 255, 255, .52)),
        linear-gradient(135deg, #f8fafc 0%, #eef3f6 100%);
    box-shadow: inset 0 1px 0 var(--light-line), inset 0 -1px 0 var(--light-line);
    position: relative;
    overflow: hidden;
}

.section.product-cards-section::before {
    display: none;
}

.section.product-cards-section::after {
    background: linear-gradient(90deg, transparent, rgba(16, 32, 51, .14), transparent);
}

.section.product-cards-section::before {
    content: "";
}

.product-cards-section .section-head,
.product-cards-section .fuel-product-cards {
    width: min(var(--content-max), 100%);
    margin-inline: auto;
    position: relative;
    z-index: 1;
}

.product-cards-section h2 {
    color: var(--light-ink);
}

.product-cards-section .section-head-row p {
    color: var(--light-muted);
}

.fuel-product-cards {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.fuel-product-card {
    min-height: 430px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    background: rgba(255, 255, 255, .88);
    border: 1px solid var(--light-line);
    border-radius: var(--radius);
    color: var(--light-ink);
    box-shadow: 0 18px 48px rgba(16, 32, 51, .12);
    position: relative;
    overflow: hidden;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.fuel-product-card::before {
    content: "";
    position: absolute;
    left: clamp(1rem, 2vw, 1.25rem);
    right: clamp(1rem, 2vw, 1.25rem);
    top: 238px;
    width: auto;
    height: 3px;
    background: var(--brand);
    z-index: 2;
}

.fuel-product-card::after {
    content: "";
    position: absolute;
    right: -44px;
    bottom: -44px;
    width: 130px;
    height: 130px;
    inset: auto -58px -58px auto;
    width: 140px;
    height: 140px;
    border: 1px solid rgba(16, 32, 51, .1);
    border-radius: 0;
    background: transparent;
    transform: rotate(18deg);
    z-index: 0;
}

.fuel-product-card:hover {
    border-color: rgba(215, 25, 32, .22);
    transform: translateY(-4px);
    box-shadow: 0 24px 58px rgba(16, 32, 51, .18);
}

.fuel-product-card img {
    position: relative;
    width: 100%;
    height: 240px;
    object-fit: cover;
    opacity: 1;
    filter: saturate(104%) contrast(102%);
    transition: transform .24s ease, filter .24s ease;
}

.fuel-product-card:hover img {
    filter: saturate(112%) contrast(104%);
    transform: scale(1.05);
}

.fuel-product-card i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin: -23px clamp(1rem, 2vw, 1.25rem) .75rem;
    border: 1px solid rgba(215, 25, 32, .16);
    border-radius: var(--radius);
    background: var(--light-panel);
    color: var(--brand);
    font-size: 1.35rem;
    position: relative;
    z-index: 3;
    box-shadow: 0 14px 28px rgba(16, 32, 51, .12);
}

.fuel-product-card span {
    margin: 0 clamp(1rem, 2vw, 1.25rem) .35rem;
    color: var(--brand);
    font-family: var(--font-display);
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    font-size: .72rem;
    position: relative;
    z-index: 2;
}

.fuel-product-card h3 {
    margin: 0 clamp(1rem, 2vw, 1.25rem) .55rem;
    color: var(--light-ink);
    font-size: clamp(1.35rem, 1.8vw, 1.85rem);
    position: relative;
    z-index: 2;
}

.fuel-product-card p {
    margin: 0 clamp(1rem, 2vw, 1.25rem) 1rem;
    color: var(--light-muted);
    position: relative;
    z-index: 2;
}

.fuel-product-card strong {
    display: inline-flex;
    width: max-content;
    min-height: 34px;
    align-items: center;
    margin: auto clamp(1rem, 2vw, 1.25rem) clamp(1rem, 2vw, 1.25rem);
    border: 1px solid rgba(16, 32, 51, .1);
    border-radius: calc(var(--radius) - 2px);
    padding: .38rem .65rem;
    background: rgba(16, 32, 51, .045);
    color: var(--light-ink);
    font-family: var(--font-display);
    font-size: .82rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.section-head {
    display: grid;
    gap: 0;
    margin-bottom: 1.5rem;
}

.section-head h2 {
    max-width: 780px;
    margin-bottom: 0;
}

.section-head-row {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
    align-items: end;
}

.section-head-row p {
    margin: 0;
    color: var(--muted);
}

.section-head-row > div:only-child {
    max-width: 780px;
}

.split-section {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: clamp(1.2rem, 5vw, 4rem);
    align-items: center;
}

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

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

.feature-grid article,
.feature-grid a,
.news-list article,
.contact-grid article,
.value-stack article {
    background: rgba(13, 32, 48, .92);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 1.15rem;
    box-shadow: 0 14px 44px rgba(0, 0, 0, .22);
}

.feature-grid a {
    display: block;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.feature-grid a:hover {
    transform: translateY(-3px);
    border-color: rgba(215, 25, 32, .28);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
}

.energy-section {
    width: 100%;
    margin-top: 0;
    padding-inline: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
    position: relative;
    isolation: isolate;
    overflow: hidden;
    color: var(--light-ink);
    background: var(--white);
    box-shadow: inset 0 1px 0 var(--light-line), inset 0 -1px 0 var(--light-line);
}

.section.energy-section::before {
    content: "";
    position: absolute;
    top: 0;
    right: calc((100% - 100vw) / 2);
    bottom: 0;
    left: calc((100% - 100vw) / 2);
    z-index: 0;
    background: var(--white);
    pointer-events: none;
}

.section.energy-section::after {
    background: linear-gradient(90deg, transparent, rgba(16, 32, 51, .14), transparent);
}

.energy-section h2 {
    color: var(--light-ink);
}

.energy-copy {
    display: grid;
    gap: 0;
    position: relative;
}

.energy-copy > * {
    position: relative;
    z-index: 1;
}

.energy-copy p {
    color: var(--light-muted);
    max-width: 620px;
    margin-bottom: 1rem;
}

.energy-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid rgba(215, 25, 32, .18);
    border-radius: var(--radius);
    background: rgba(215, 25, 32, .78);
    box-shadow: none;
}

.energy-proof div {
    min-height: 104px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: .9rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .04)),
        rgba(215, 25, 32, .9);
}

.energy-proof strong {
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 2vw, 1.75rem);
    line-height: 1;
}

.energy-proof span {
    color: rgba(255, 255, 255, .82);
    font-size: .82rem;
    font-weight: 600;
}

.energy-section {
    grid-template-columns: minmax(0, .78fr) minmax(0, 1.22fr);
    gap: clamp(2rem, 6vw, 7rem);
    align-items: start;
    padding-block: clamp(3.5rem, 6vw, 5.5rem);
}

.energy-copy {
    padding-top: .45rem;
}

.energy-copy h2 {
    max-width: 540px;
    font-size: clamp(2.15rem, 3.4vw, 4rem);
    line-height: 1.02;
}

.energy-proof {
    gap: 0;
    overflow: visible;
    border: 0;
    border-top: 1px solid var(--light-line);
    border-bottom: 1px solid var(--light-line);
    border-radius: 0;
    background: transparent;
}

.energy-proof div {
    min-height: 112px;
    padding: 1rem .85rem 1rem 0;
    background: transparent;
}

.energy-proof div + div {
    padding-left: .85rem;
    border-left: 1px solid var(--light-line);
}

.energy-proof strong {
    color: var(--brand);
    font-size: clamp(1.15rem, 1.8vw, 1.55rem);
}

.energy-proof span {
    color: var(--light-muted);
    line-height: 1.35;
}

.energy-feature-list {
    display: grid;
    border-top: 1px solid var(--light-line);
}

.energy-feature-list article {
    display: grid;
    grid-template-columns: 2.6rem 42px minmax(0, 1fr);
    gap: clamp(.65rem, 1.4vw, 1rem);
    align-items: start;
    min-height: 128px;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--light-line);
}

.energy-feature-list > article > span {
    color: var(--brand);
    font-family: var(--font-display);
    font-size: .76rem;
    font-weight: 800;
}

.energy-feature-list i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(215, 25, 32, .22);
    border-radius: 6px;
    background: rgba(215, 25, 32, .06);
    color: var(--brand);
    font-size: 1.1rem;
}

.energy-feature-list h3 {
    margin: -.15rem 0 .4rem;
    color: var(--light-ink);
    font-size: clamp(1.05rem, 1.45vw, 1.3rem);
}

.energy-feature-list p {
    margin: 0;
    color: var(--light-muted);
    line-height: 1.55;
}

.energy-section .feature-grid {
    gap: clamp(1rem, 2vw, 1.5rem);
}

.energy-section .feature-grid article {
    min-height: 238px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: .8rem;
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .9)),
        linear-gradient(135deg, rgba(215, 25, 32, .08), rgba(16, 32, 51, .045));
    border-color: rgba(215, 25, 32, .14);
    color: var(--light-ink);
    box-shadow: none;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.energy-section .feature-grid article::before {
    content: "";
    position: absolute;
    left: clamp(1rem, 2vw, 1.25rem);
    right: clamp(1rem, 2vw, 1.25rem);
    top: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--brand), rgba(215, 25, 32, .18));
}

.energy-section .feature-grid article::after {
    content: "";
    position: absolute;
    right: -36px;
    bottom: -30px;
    width: 118px;
    height: 112px;
    background: url("../img/icon.svg") center / contain no-repeat;
    opacity: .08;
    transform: rotate(-10deg);
}

.energy-section .feature-grid article:hover {
    transform: translateY(-4px);
    border-color: rgba(215, 25, 32, .26);
    background:
        linear-gradient(180deg, #ffffff, rgba(255, 255, 255, .94)),
        linear-gradient(135deg, rgba(215, 25, 32, .12), rgba(16, 32, 51, .05));
    box-shadow: none;
}

.energy-section .feature-grid article > * {
    position: relative;
    z-index: 1;
}

.energy-section .feature-grid article > span {
    width: fit-content;
    margin-top: auto;
    padding: .35rem .55rem;
    border: 1px solid rgba(215, 25, 32, .16);
    color: var(--brand-dark);
    background: rgba(215, 25, 32, .09);
    font-size: .78rem;
    font-weight: 700;
}

.energy-section .feature-grid h3 {
    margin-bottom: 0;
    color: var(--light-ink);
}

.energy-section .feature-grid p {
    margin-bottom: .2rem;
    color: var(--light-muted);
    line-height: 1.48;
}

.feature-grid i,
.contact-grid i {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: rgba(215, 25, 32, .09);
    color: var(--brand);
    font-size: 1.4rem;
}

.price-widget,
.table-panel,
.smart-form {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .075), transparent 38%),
        rgba(13, 32, 48, .94);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: clamp(1rem, 3vw, 1.5rem);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
}

.price-stage {
    position: relative;
}

.price-stage::before {
    content: "";
    position: absolute;
    left: calc((100% - 100vw) / 2);
    right: calc((100% - 100vw) / 2);
    top: 0;
    bottom: 0;
    width: auto;
    transform: none;
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .045), transparent 42%),
        linear-gradient(90deg, rgba(13, 32, 48, .84), rgba(8, 19, 31, .18));
    opacity: 1;
    pointer-events: none;
}

.price-stage::after {
    content: "";
    position: absolute;
    left: calc((100% - 100vw) / 2);
    right: calc((100% - 100vw) / 2);
    top: 0;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, rgba(215, 25, 32, .72), rgba(255, 255, 255, .12), transparent);
    pointer-events: none;
}

.price-stage-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(250px, 330px);
    gap: 1rem;
    align-items: stretch;
}

.price-side-note {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100%;
    padding: 0;
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(16, 20, 27, .96), rgba(31, 50, 63, .92)),
        var(--ink);
    color: var(--white);
    overflow: hidden;
    position: relative;
}

.price-side-note::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(8, 19, 31, .02), rgba(8, 19, 31, .22));
    pointer-events: none;
}

.price-side-note img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .72;
    filter: saturate(108%) contrast(104%);
}

.network-stage {
    width: 100%;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .045), transparent 38%),
        linear-gradient(120deg, rgba(6, 16, 28, .98), rgba(12, 30, 44, .94)),
        var(--ink);
    color: var(--white);
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .14);
    position: relative;
    isolation: isolate;
}

.network-stage::before {
    content: "";
    position: absolute;
    inset: 12% 0 auto auto;
    width: min(46vw, 620px);
    height: 70%;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .12) 0 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px);
    background-size: 88px 88px;
    opacity: .24;
    mask-image: linear-gradient(90deg, transparent, #000 24%, #000 76%, transparent);
}

.network-inner {
    width: var(--content-width);
    margin: 0 auto;
    padding: var(--section-pad-block) 0;
    display: grid;
    grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
    gap: clamp(1.25rem, 5vw, 4rem);
    align-items: center;
}

.network-copy {
    display: grid;
    gap: 0;
    align-content: center;
}

.network-copy p {
    color: rgba(255, 255, 255, .72);
    max-width: 560px;
    margin-bottom: 1rem;
}

.network-metrics,
.standard-pillars {
    display: grid;
    gap: .75rem;
    margin: .2rem 0 .35rem;
}

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

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

.standard-pillars-row {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: .35rem;
}

.network-metrics div,
.standard-pillars article {
    min-height: 96px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: .9rem;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .055);
}

.standard-pillars article {
    min-height: 154px;
    gap: .55rem;
    position: relative;
    overflow: hidden;
}

.standard-pillars-row article {
    min-height: 190px;
}

.standard-pillars article::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: var(--brand);
}

.standard-pillars i {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, .1);
    color: var(--white);
    font-size: 1.15rem;
}

.network-metrics strong {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2vw, 1.85rem);
    line-height: 1;
}

.network-metrics span,
.standard-pillars span {
    color: var(--muted);
    font-size: .82rem;
    font-weight: 600;
}

.standard-pillars span {
    color: var(--white);
    font-family: var(--font-display);
    font-size: .96rem;
}

.standard-pillars p {
    margin: 0;
    color: rgba(255, 255, 255, .66);
    font-size: .9rem;
    line-height: 1.45;
}

.network-visual {
    position: relative;
    min-height: 520px;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow: 0 34px 110px rgba(0, 0, 0, .38);
}

.network-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: saturate(108%) contrast(106%);
    opacity: .9;
}

.station-standard-visual {
    min-height: 0;
    display: grid;
    grid-template-rows: minmax(340px, 1fr) auto;
    gap: 1px;
    background: rgba(255, 255, 255, .12);
}

.standard-photo {
    position: relative;
    min-height: 360px;
    overflow: hidden;
}

.standard-photo img {
    position: absolute;
    left: 0;
    right: 0;
    top: -50px;
    bottom: auto;
    height: calc(100% + 50px);
}

.standard-photo::after {
    display: none;
}

.standard-photo span {
    position: absolute;
    right: 1rem;
    top: 1rem;
    z-index: 1;
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    padding: .45rem .75rem;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(8, 19, 31, .72);
    color: var(--white);
    font-family: var(--font-display);
    font-size: .86rem;
    font-weight: 600;
    backdrop-filter: blur(14px);
}

.network-visual::after {
    display: none;
}

.standard-scoreboard {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: rgba(255, 255, 255, .12);
}

.standard-scoreboard div {
    min-height: 126px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .06), transparent),
        #0d2030;
}

.standard-scoreboard strong {
    color: var(--brand);
    font-family: var(--font-display);
    font-size: .9rem;
}

.standard-scoreboard span {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
}

.standard-scoreboard small {
    color: var(--muted);
    font-weight: 600;
    line-height: 1.35;
}

.filters,
.table-toolbar,
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    align-items: end;
}

label span,
.table-toolbar span {
    display: block;
    margin-bottom: .4rem;
    color: var(--muted);
    font-size: .86rem;
    font-family: var(--font-display);
    font-weight: 500;
}

input, select, textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #0a1a29;
    color: var(--white);
    padding: .82rem .9rem;
}

select {
    appearance: none;
    background-image:
        linear-gradient(45deg, transparent 50%, rgba(255, 255, 255, .82) 50%),
        linear-gradient(135deg, rgba(255, 255, 255, .82) 50%, transparent 50%),
        linear-gradient(90deg, rgba(255, 255, 255, .12), rgba(255, 255, 255, .12));
    background-position:
        calc(100% - 18px) 50%,
        calc(100% - 12px) 50%,
        calc(100% - 42px) 50%;
    background-size: 6px 6px, 6px 6px, 1px 56%;
    background-repeat: no-repeat;
    padding-right: 3.2rem;
}

select option {
    background: #0a1a29;
    color: var(--white);
}

select option:checked {
    background: var(--brand);
    color: var(--white);
}

input:focus, select:focus, textarea:focus {
    outline: 3px solid rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .42);
    box-shadow: 0 0 0 1px rgba(215, 25, 32, .28), 0 14px 36px rgba(0, 0, 0, .18);
}

.price-date {
    margin: 1rem 0;
    color: var(--muted);
}

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

.price-widget-compact .filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.price-cards article {
    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: var(--radius);
    padding: 1rem;
    background:
        linear-gradient(135deg, rgba(16, 20, 27, .98), rgba(38, 48, 57, .96)),
        var(--ink);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.price-cards article::after {
    content: "";
    position: absolute;
    right: -22px;
    bottom: -30px;
    width: 104px;
    height: 98px;
    background: rgba(255, 255, 255, .18);
    mask: url("../img/icon.svg") center / contain no-repeat;
    -webkit-mask: url("../img/icon.svg") center / contain no-repeat;
    opacity: 1;
    transform: rotate(-10deg);
    pointer-events: none;
}

.price-cards article > * {
    position: relative;
    z-index: 1;
}

.price-cards span { color: rgba(255, 255, 255, .68); }
.price-cards strong {
    font-family: var(--font-display);
    font-size: clamp(1.45rem, 2.5vw, 2.3rem);
    font-weight: 600;
    line-height: 1;
}

.fuel-price-table {
    margin-top: 1.1rem;
}

.fuel-price-table .responsive-table {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background: rgba(5, 17, 28, .58);
    overflow: auto;
}

.fuel-price-table table {
    min-width: 760px;
}

.fuel-price-table th,
.fuel-price-table td {
    white-space: nowrap;
}

.autogas-price-panel .filters {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.autogas-table table {
    min-width: 520px;
}

.news-band {
    width: 100%;
    max-width: none;
    padding-inline: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
    background: var(--ink);
    color: var(--white);
    padding-block: var(--section-pad-block);
}

.section.news-band::before {
    display: none;
}

.news-list,
.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.news-list article {
    min-height: 360px;
    padding: 0;
    background: rgba(13, 32, 48, .96);
    border-color: rgba(255, 255, 255, .14);
    color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    position: relative;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.news-list article:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, .28);
    background: rgba(16, 41, 59, .98);
}

.news-list article::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 34%, rgba(8, 19, 31, .88) 72%, rgba(8, 19, 31, .98));
    pointer-events: none;
}

.news-list img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .72;
    filter: saturate(104%) contrast(104%);
    transition: transform .24s ease, opacity .24s ease;
}

.news-list article:hover img {
    opacity: .82;
    transform: scale(1.04);
}

.news-list time,
.news-list h3,
.news-list p {
    position: relative;
    z-index: 1;
    margin-inline: 1rem;
}

.news-list time {
    width: fit-content;
    margin-bottom: .75rem;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: calc(var(--radius) - 2px);
    padding: .34rem .56rem;
    background: rgba(215, 25, 32, .86);
    color: var(--white);
    font-family: var(--font-display);
    font-size: .78rem;
    font-weight: 700;
}

.news-list h3 {
    margin-bottom: .5rem;
}

.news-list p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, .72);
}

.footer-dealer-cta {
    padding: .25rem 0 1.25rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(.8rem, 3vw, 2rem);
    align-items: center;
    position: relative;
    overflow: hidden;
    background: transparent;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.footer-dealer-cta > * {
    position: relative;
    z-index: 1;
}

.footer-dealer-cta h2 {
    max-width: 780px;
    margin-bottom: 0;
    color: var(--white);
    font-size: clamp(1.08rem, 1.6vw, 1.45rem);
    line-height: 1.25;
}

.footer-dealer-cta p {
    max-width: 760px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .74);
}

.footer-dealer-cta .button {
    min-height: 40px;
    padding: .6rem .85rem;
    white-space: nowrap;
    box-shadow: none;
}

.footer-dealer-cta .button:hover {
    box-shadow: none;
}

.page-hero {
    position: relative;
    height: clamp(360px, 42vw, 500px);
    display: grid;
    align-items: end;
    overflow: hidden;
    background: var(--deep);
    color: var(--white);
}

.page-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .46;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 82% 24%, rgba(215, 25, 32, .16), transparent 26%),
        linear-gradient(120deg, rgba(7, 16, 24, .94), rgba(7, 16, 24, .52) 60%, rgba(0, 169, 183, .18)),
        linear-gradient(115deg, transparent 0 64%, rgba(255, 255, 255, .07) 64% 64.3%, transparent 64.3%);
}

.page-hero > div {
    position: relative;
    z-index: 1;
    width: var(--content-width);
    margin: 0 auto;
    padding: clamp(2.2rem, 4vw, 3.2rem) 0;
}

.page-hero h1 {
    max-width: 840px;
    font-size: clamp(2rem, 4vw, 4.15rem);
    line-height: 1;
}

.page-hero p {
    max-width: 620px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .82);
    font-size: clamp(.95rem, 1.2vw, 1.08rem);
}

.compact-hero { height: 280px; }
.compact-hero::after { display: none; }

.value-stack {
    display: grid;
    gap: 1rem;
}

.value-stack article {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .25rem 1rem;
}

.value-stack strong {
    grid-row: span 2;
    color: var(--brand);
    font-size: 2rem;
    font-family: var(--font-display);
    font-weight: 600;
}

.value-stack span {
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.15rem;
}

.about-unified-section {
    display: grid;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.about-unified-grid,
.about-vision-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(280px, .92fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: stretch;
}

.about-copy {
    display: grid;
    align-content: center;
    gap: .9rem;
    padding-right: clamp(0rem, 2vw, 1rem);
}

.about-copy p,
.about-proof-panel p,
.about-vision-grid p,
.about-proof-list p,
.about-value-stack p {
    color: var(--muted);
}

.about-contact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
    margin-top: .5rem;
}

.about-contact-strip a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    padding: .55rem .75rem;
    background: rgba(255, 255, 255, .06);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 700;
}

.about-contact-strip i {
    color: var(--brand);
}

.about-proof-panel {
    min-height: 100%;
    display: grid;
    align-content: start;
    gap: 1rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    padding: clamp(1rem, 3vw, 1.5rem);
    background:
        linear-gradient(145deg, rgba(215, 25, 32, .16), transparent 34%),
        linear-gradient(0deg, rgba(255, 255, 255, .055), transparent),
        rgba(9, 24, 38, .95);
    overflow: hidden;
    position: relative;
}

.about-proof-panel::after {
    content: "";
    position: absolute;
    right: -42px;
    top: -34px;
    width: 156px;
    height: 148px;
    background: rgba(255, 255, 255, .075);
    mask: url("../img/icon.svg") center / contain no-repeat;
    -webkit-mask: url("../img/icon.svg") center / contain no-repeat;
    pointer-events: none;
}

.about-proof-panel > * {
    position: relative;
    z-index: 1;
}

.about-proof-list {
    display: grid;
    gap: .75rem;
}

.about-proof-list article {
    min-height: 98px;
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: .85rem;
    align-items: start;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: calc(var(--radius) - 1px);
    padding: .85rem;
    background: rgba(255, 255, 255, .055);
}

.about-proof-list strong {
    display: block;
    margin-bottom: .2rem;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
}

.about-proof-list p {
    margin-bottom: 0;
    font-size: .95rem;
}

.about-proof-list i {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: rgba(215, 25, 32, .12);
    color: var(--brand);
    font-size: 1.25rem;
}

.about-value-stack article {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .06), transparent 42%),
        rgba(13, 32, 48, .92);
    padding: 1.15rem;
    position: relative;
    overflow: hidden;
}

.about-value-stack article::before {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 0;
    height: 3px;
    background: var(--brand);
}

.about-vision-card {
    min-height: 100%;
    display: grid;
    grid-template-columns: 88px 1fr;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    background:
        linear-gradient(115deg, rgba(215, 25, 32, .2), transparent 34%),
        rgba(9, 24, 38, .94);
    overflow: hidden;
    position: relative;
}

.about-vision-card::after {
    content: "";
    position: absolute;
    right: -46px;
    bottom: -52px;
    width: 164px;
    height: 148px;
    background: rgba(255, 255, 255, .055);
    mask: url("../img/icon.svg") center / contain no-repeat;
    -webkit-mask: url("../img/icon.svg") center / contain no-repeat;
    pointer-events: none;
}

.about-vision-card.is-vision {
    background:
        linear-gradient(115deg, rgba(255, 255, 255, .095), transparent 36%),
        rgba(13, 32, 48, .94);
}

.about-vision-mark {
    min-height: 100%;
    display: grid;
    place-items: center;
    border-right: 1px solid rgba(255, 255, 255, .13);
    padding: 1rem .65rem;
    background: rgba(255, 255, 255, .045);
    color: var(--white);
    font-family: var(--font-display);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    line-height: 1;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.about-vision-content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(1rem, 2.4vw, 1.45rem);
    position: relative;
    z-index: 1;
}

.about-vision-content h2 {
    font-size: clamp(1.45rem, 2.2vw, 2.2rem);
}

.about-vision-content p {
    margin-bottom: 0;
}

.about-values-panel {
    display: grid;
    gap: 1rem;
}

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

.responsive-table { overflow-x: auto; }

table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: .9rem;
    text-align: left;
    border-bottom: 1px solid var(--line);
}

th {
    color: var(--muted);
    font-size: .84rem;
    text-transform: uppercase;
    letter-spacing: .06em;
    font-family: var(--font-display);
    font-weight: 500;
}

.station-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
    margin-top: 1rem;
}

.station-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: start;
    padding: 1rem 1rem 1rem 1.1rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-left-color: var(--brand);
    border-left-width: 3px;
    border-radius: var(--radius);
    background: rgba(13, 32, 48, .82);
    transition: background .18s ease, border-color .18s ease, transform .18s ease;
}

.station-item:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, .22);
    background: rgba(16, 41, 59, .9);
}

.station-item h3 {
    margin-bottom: .25rem;
    overflow: hidden;
    font-size: clamp(.95rem, 1.05vw, 1.1rem);
    text-overflow: ellipsis;
    white-space: nowrap;
}

.station-item p { margin: 0; color: var(--muted); }
.station-item span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: calc(var(--radius) - 2px);
    padding: .35rem .55rem;
    background: rgba(255, 255, 255, .055);
    color: var(--white);
    font-family: var(--font-display);
    font-size: .82rem;
    font-weight: 700;
    white-space: nowrap;
}

.stations-page-section {
    display: grid;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.stations-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, .45fr);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: end;
}

.stations-intro p {
    max-width: 760px;
    color: var(--muted);
}

.stations-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
}

.stations-metrics div {
    min-height: 104px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    padding: .9rem;
    background: rgba(255, 255, 255, .055);
}

.stations-metrics strong {
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(1.55rem, 2.4vw, 2.35rem);
    line-height: 1;
}

.stations-metrics span {
    color: var(--muted);
    font-weight: 700;
}

.stations-finder-panel {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    padding: clamp(1rem, 2.4vw, 1.35rem);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .07), transparent 38%),
        rgba(9, 24, 38, .94);
    box-shadow: var(--shadow);
}

.stations-filter-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-end;
    margin-bottom: 1rem;
}

.stations-filter-head span {
    display: block;
    margin-bottom: .25rem;
    color: var(--brand);
    font-family: var(--font-display);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.stations-filter-head strong {
    display: block;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(1.15rem, 1.7vw, 1.55rem);
    line-height: 1.2;
}

.form-section { max-width: var(--content-max); }

.smart-form {
    display: grid;
    gap: 1rem;
}

.form-status {
    min-height: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.form-status.success { color: var(--green); }
.form-status.error { color: var(--brand); }

.contact-grid article {
    min-height: 190px;
}

.prose {
    max-width: min(980px, var(--content-width));
    font-size: 1.1rem;
}

.content-section p {
    color: var(--muted);
}

.content-card-list {
    display: grid;
    gap: 1rem;
}

.content-card-list article {
    min-height: 92px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: .9rem;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(13, 32, 48, .92);
    padding: 1rem;
    box-shadow: 0 14px 44px rgba(0, 0, 0, .22);
}

.content-card-list i {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--gold);
    font-size: 1.35rem;
}

.content-card-list span {
    font-family: var(--font-display);
    font-weight: 600;
}

.corporate-identity-section {
    display: grid;
    gap: clamp(1rem, 2vw, 1.5rem);
}

.corporate-identity-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .78fr);
    gap: clamp(1rem, 2vw, 1.5rem);
    align-items: stretch;
}

.corporate-identity-copy {
    display: grid;
    align-content: center;
    gap: .85rem;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    padding: clamp(1.1rem, 3vw, 2rem);
    background: rgba(13, 32, 48, .84);
}

.corporate-identity-copy p,
.corporate-scope-panel p,
.brand-identity-panel p {
    color: var(--muted);
}

.corporate-scope-panel,
.brand-identity-panel {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(215, 25, 32, .12), transparent 38%),
        rgba(9, 24, 38, .94);
    padding: clamp(1rem, 2.4vw, 1.45rem);
    position: relative;
    overflow: hidden;
}

.corporate-scope-panel > span {
    display: block;
    margin-bottom: .8rem;
    color: var(--brand);
    font-family: var(--font-display);
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.corporate-pdf-card {
    display: grid;
    gap: .65rem;
    margin-bottom: 1.1rem;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    padding: 1rem;
    background: rgba(255, 255, 255, .065);
}

.corporate-pdf-card span {
    color: var(--brand);
    font-family: var(--font-display);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.corporate-pdf-card strong {
    display: block;
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
}

.corporate-pdf-card p {
    margin-bottom: 0;
}

.corporate-pdf-actions {
    display: grid;
    margin-top: .25rem;
}

.corporate-pdf-download {
    min-height: 54px;
    width: fit-content;
    display: inline-grid;
    grid-template-columns: auto 1fr;
    gap: .7rem;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    padding: .65rem .78rem;
    background: var(--brand);
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(215, 25, 32, .22);
    transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}

.corporate-pdf-download:hover {
    background: #b91017;
    color: var(--white);
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(215, 25, 32, .28);
}

.corporate-scope-list {
    display: grid;
    gap: .75rem;
}

.corporate-scope-list article {
    border-left: 3px solid var(--brand);
    padding: .15rem 0 .15rem .85rem;
}

.corporate-scope-list strong,
.brand-token-grid strong {
    display: block;
    color: var(--white);
    font-family: var(--font-display);
    font-weight: 800;
}

.corporate-scope-list p {
    margin-bottom: 0;
    font-size: .95rem;
}

.brand-identity-panel {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, 1fr);
    gap: clamp(1rem, 3vw, 2rem);
    align-items: center;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .065), transparent 40%),
        rgba(13, 32, 48, .9);
}

.brand-token-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
}

.brand-token-grid article {
    min-height: 112px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius);
    padding: .85rem;
    background: rgba(255, 255, 255, .055);
}

.brand-token-grid span {
    color: var(--brand);
    font-family: var(--font-display);
    font-size: .82rem;
    font-weight: 800;
}

.secg-section {
    display: grid;
}

.secg-text-panel {
    display: grid;
    gap: .9rem;
}

.secg-text-panel p {
    color: var(--muted);
}

.hr-policy-section {
    display: grid;
    gap: clamp(1.2rem, 2vw, 1.8rem);
}

.hr-policy-copy {
    display: grid;
    gap: .9rem;
}

.hr-policy-copy p {
    max-width: 1040px;
    color: var(--muted);
}

.hr-policy-list {
    display: grid;
    gap: .7rem;
    max-width: 1120px;
}

.hr-policy-list div {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: .85rem;
    align-items: start;
    padding-bottom: .7rem;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.hr-policy-list span {
    color: var(--brand);
    font-family: var(--font-display);
    font-size: .82rem;
    font-weight: 800;
}

.hr-policy-list strong {
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.4vw, 1.22rem);
    font-weight: 800;
    line-height: 1.35;
}

.news-page-list {
    display: grid;
    gap: 1rem;
}

.news-page-list article {
    display: grid;
    grid-template-columns: 170px minmax(0, .55fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(13, 32, 48, .92);
    padding: 1.2rem;
}

.news-page-list time {
    color: var(--brand);
    font-family: var(--font-display);
    font-weight: 600;
}

.news-page-list h2 {
    font-size: clamp(1.2rem, 1.8vw, 1.85rem);
    margin: 0;
}

.news-page-list p {
    margin: 0;
    color: var(--muted);
}

.product-detail-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.product-detail-grid article {
    min-height: 480px;
    display: grid;
    grid-template-rows: 230px 1fr;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(13, 32, 48, .92);
    box-shadow: 0 14px 44px rgba(0, 0, 0, .22);
}

.product-detail-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-grid div {
    padding: 1.1rem;
}

.product-detail-grid span {
    color: var(--brand);
    font-family: var(--font-display);
    font-weight: 700;
}

.product-detail-grid h2 {
    font-size: clamp(1.35rem, 2vw, 2rem);
    margin-top: .35rem;
}

.product-detail-grid p {
    color: var(--muted);
}

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

.fuel-detail-card {
    min-height: auto;
    grid-template-rows: 280px 1fr;
}

.fuel-detail-card div {
    display: flex;
    flex-direction: column;
}

.fuel-detail-card p {
    margin-bottom: .85rem;
}

.product-benefit-list {
    display: grid;
    gap: .55rem;
    margin: .3rem 0 0;
    padding: 0;
    list-style: none;
}

.product-benefit-list li {
    position: relative;
    padding-left: 1.25rem;
    color: rgba(255, 255, 255, .76);
    font-size: .95rem;
    line-height: 1.45;
}

.product-benefit-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .62em;
    width: 7px;
    height: 7px;
    border-radius: 999px;
    background: var(--brand);
    box-shadow: 0 0 0 4px rgba(215, 25, 32, .13);
}

.lpg-showcase {
    width: 100%;
    display: grid;
    grid-template-columns: minmax(280px, .84fr) minmax(0, 1.16fr);
    gap: clamp(2rem, 5vw, 6.5rem);
    align-items: center;
    padding-inline: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
    color: var(--light-ink);
}

.lpg-showcase-media {
    min-height: clamp(390px, 39vw, 570px);
    position: relative;
    overflow: hidden;
    background: var(--deep);
}

.lpg-showcase-media::after {
    display: none;
}

.lpg-showcase-media img {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0;
    object-fit: cover;
}

.lpg-media-caption {
    position: absolute;
    z-index: 1;
    right: auto;
    bottom: 1rem;
    left: 1rem;
    display: grid;
    gap: .3rem;
    max-width: 270px;
    padding: 1rem 1.1rem;
    border-left: 3px solid var(--brand);
    background: rgba(255, 255, 255, .96);
    color: var(--light-ink);
}

.lpg-media-caption span,
.lpg-benefit > span {
    color: var(--brand);
    font-family: var(--font-display);
    font-size: .78rem;
    font-weight: 800;
}

.lpg-media-caption strong {
    max-width: 250px;
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 1.8vw, 1.55rem);
    line-height: 1.12;
}

.lpg-showcase-copy {
    max-width: 680px;
}

.lpg-showcase-copy h2 {
    max-width: 570px;
    margin-top: .65rem;
    color: var(--white);
    font-size: clamp(2rem, 3.2vw, 3.6rem);
    line-height: 1.02;
}

.lpg-showcase-copy > p {
    max-width: 590px;
    margin: 1rem 0 1.8rem;
    color: rgba(255, 255, 255, .72);
    font-size: 1.04rem;
    line-height: 1.65;
}

.lpg-benefit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.lpg-benefit {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: .8rem;
    min-height: 130px;
    padding: 1.15rem 1rem 1.1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.lpg-benefit:nth-child(odd) {
    padding-right: 1.4rem;
}

.lpg-benefit:nth-child(even) {
    padding-left: 1.4rem;
    border-left: 1px solid rgba(255, 255, 255, .18);
}

.lpg-benefit h3 {
    margin: -.16rem 0 .35rem;
    color: var(--white);
    font-size: 1rem;
}

.lpg-benefit p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    font-size: .91rem;
    line-height: 1.5;
}

.services-copy h2 {
    max-width: 620px;
}

.services-copy p {
    max-width: 680px;
    color: rgba(255, 255, 255, .72);
    font-size: 1.02rem;
    line-height: 1.65;
}

.services-principles {
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.services-principles article {
    display: grid;
    grid-template-columns: 3rem minmax(0, 1fr);
    gap: .9rem;
    align-items: start;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.services-principles article > span {
    color: var(--brand);
    font-family: var(--font-display);
    font-size: .82rem;
    font-weight: 800;
}

.services-principles h3 {
    margin: -.2rem 0 .35rem;
    color: var(--white);
    font-size: 1.12rem;
}

.services-principles p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    line-height: 1.5;
}

main > .section.services-locations {
    display: grid;
    grid-template-columns: minmax(220px, .48fr) minmax(0, 1fr);
    gap: clamp(2rem, 5vw, 5.5rem);
    align-items: start;
    min-height: auto;
    padding-block: clamp(2.5rem, 4vw, 4rem);
}

.section.services-locations::before {
    background: linear-gradient(120deg, rgba(8, 19, 31, .98), rgba(13, 32, 47, .94));
}

.services-locations h2 {
    margin: .6rem 0 0;
}

.services-location-list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.services-location-list span {
    min-height: 98px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .45rem;
    padding: 1rem;
    border-right: 1px solid rgba(255, 255, 255, .18);
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .86);
    font-family: var(--font-display);
    font-size: .93rem;
    font-weight: 700;
}

.services-location-list span::before {
    content: attr(data-plate);
    color: var(--brand);
    font-size: .72rem;
    font-weight: 800;
}

.services-location-list span:nth-child(5n) {
    border-right: 0;
}

main > .section.dealer-application {
    display: grid;
    grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
    gap: clamp(2rem, 6vw, 7rem);
    align-items: center;
    min-height: auto;
}

.dealer-intro h2 {
    max-width: 560px;
    margin-top: .65rem;
}

.dealer-intro > p {
    max-width: 580px;
    color: rgba(255, 255, 255, .72);
    font-size: 1.02rem;
    line-height: 1.65;
}

.dealer-proof-list {
    display: grid;
    gap: 0;
    margin: 1.65rem 0 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.dealer-proof-list li {
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: .75rem;
    align-items: center;
    min-height: 62px;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .9);
    font-weight: 600;
}

.dealer-proof-list i {
    color: var(--brand);
    font-size: 1.2rem;
}

.dealer-form-panel {
    padding-left: 0;
}

.dealer-form-head {
    margin-bottom: 1rem;
}

.dealer-form-head span {
    display: block;
    color: var(--white);
    font-family: var(--font-display);
    font-size: clamp(1.35rem, 2vw, 1.8rem);
    font-weight: 700;
}

.dealer-form-head p {
    max-width: 470px;
    margin: .3rem 0 0;
    color: var(--muted);
}

.dealer-form-panel .smart-form {
    border-radius: 8px;
    padding: clamp(1rem, 2.5vw, 1.5rem);
}

.dealer-form-panel .button {
    width: fit-content;
    min-width: 190px;
}

main > .section.contact-hub {
    display: grid;
    grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr);
    gap: clamp(2rem, 6vw, 7rem);
    align-items: stretch;
    min-height: auto;
}

.contact-hub-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-hub-copy h2 {
    max-width: 500px;
    margin-top: .65rem;
}

.contact-hub-copy > p {
    max-width: 540px;
    color: rgba(255, 255, 255, .72);
    font-size: 1.02rem;
    line-height: 1.65;
}

.contact-details-list {
    display: grid;
    margin-top: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, .18);
    font-style: normal;
}

.contact-details-list a {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    gap: .8rem;
    align-items: start;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
    color: rgba(255, 255, 255, .76);
    line-height: 1.45;
}

.contact-details-list a:hover {
    color: var(--white);
}

.contact-details-list i {
    margin-top: .15rem;
    color: var(--brand);
    font-size: 1.2rem;
}

.contact-details-list strong {
    display: block;
    margin-bottom: .18rem;
    color: var(--white);
    font-family: var(--font-display);
    font-size: .9rem;
}

.contact-map-panel {
    min-height: 460px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 8px;
    background: rgba(255, 255, 255, .05);
}

.contact-map-panel iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 460px;
}

main > .section.cookie-policy {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(0, 1.28fr);
    gap: clamp(2rem, 6vw, 7rem);
    align-items: start;
    min-height: auto;
}

.cookie-policy-intro h2 {
    max-width: 460px;
    margin-top: .65rem;
}

.cookie-policy-intro p {
    max-width: 520px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.65;
}

.cookie-policy-list {
    display: grid;
    border-top: 1px solid rgba(255, 255, 255, .18);
}

.cookie-policy-list article {
    display: grid;
    grid-template-columns: 3.1rem minmax(0, 1fr);
    gap: .9rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .18);
}

.cookie-policy-list article > span {
    color: var(--brand);
    font-family: var(--font-display);
    font-size: .82rem;
    font-weight: 800;
}

.cookie-policy-list h3 {
    margin: -.18rem 0 .35rem;
    color: var(--white);
    font-size: 1.12rem;
}

.cookie-policy-list p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    line-height: 1.55;
}

.not-found-page {
    min-height: calc(100svh - var(--header-height));
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    padding: clamp(2rem, 6vw, 5rem) var(--page-gutter);
    background: var(--deep);
    color: var(--white);
}

.not-found-page > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: .16;
}

.not-found-page::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, rgba(7, 18, 30, .96), rgba(7, 18, 30, .72));
}

.not-found-content {
    width: min(720px, 100%);
    position: relative;
    z-index: 1;
}

.not-found-code {
    display: block;
    margin: .25rem 0 -.1rem;
    color: var(--brand);
    font-family: var(--font-display);
    font-size: clamp(5.5rem, 16vw, 11rem);
    font-weight: 800;
    line-height: .88;
}

.not-found-content h1 {
    max-width: 620px;
    margin: 1rem 0 .7rem;
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.04;
}

.not-found-content p {
    max-width: 570px;
    margin-bottom: 1.4rem;
    color: rgba(255, 255, 255, .74);
    font-size: 1.04rem;
    line-height: 1.65;
}

.not-found-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
}

.site-footer {
    background: var(--ink);
    color: rgba(255, 255, 255, .78);
    padding: 1rem 0 1.25rem;
}

.footer-dealer-cta,
.footer-grid,
.footer-bottom {
    width: var(--content-width);
    margin: 0 auto;
}

.footer-grid {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 2rem;
}

.footer-logo {
    width: 142px;
    margin-bottom: 1rem;
    padding: .46rem .9rem;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .94);
}

.footer-partner-logos {
    display: flex;
    align-items: center;
    gap: .9rem;
    margin-top: 1rem;
    padding-bottom: .6rem;
}

.footer-partner-logo {
    width: 220px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
}

.site-footer .footer-partner-logos a {
    display: inline-flex;
    margin-bottom: 0;
}

.footer-partner-logos a:hover {
    color: inherit;
}

.footer-partner-logo-bdy {
    background: var(--white);
}

.footer-partner-logo-petgaz {
    background: #015ba9;
}

.footer-partner-logos img {
    width: auto;
    max-width: calc(100% - 1.1rem);
    height: 51px;
    object-fit: contain;
    object-position: center;
}

.site-footer h2 {
    color: var(--white);
    font-size: 1rem;
}

.site-footer a {
    display: block;
    margin-bottom: .45rem;
}

.site-footer a:hover { color: var(--gold); }

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

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    z-index: 12;
    width: min(720px, calc(100% - (var(--page-gutter) * 2)));
    transform: translateX(-50%);
    background: #0d2030;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
}

.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; }

.feedback-widget {
    position: fixed;
    inset: auto max(1rem, var(--page-gutter)) 1rem auto;
    z-index: 70;
    display: block;
    pointer-events: none;
}

.feedback-toggle,
.feedback-panel {
    pointer-events: auto;
}

.feedback-toggle {
    position: relative;
    z-index: 1;
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    gap: .65rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: calc(var(--radius) - 2px);
    padding: .7rem .95rem;
    background: var(--brand);
    color: var(--white);
    box-shadow: 0 18px 52px rgba(0, 0, 0, .36), 0 10px 24px rgba(215, 25, 32, .22);
    cursor: pointer;
    font-family: var(--font-display);
    font-weight: 700;
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.feedback-toggle:hover {
    background: #b91017;
    transform: translateY(-2px);
    box-shadow: 0 22px 58px rgba(0, 0, 0, .42), 0 12px 30px rgba(215, 25, 32, .28);
}

.feedback-toggle i {
    font-size: 1.15rem;
}

.feedback-panel {
    position: absolute;
    right: 0;
    bottom: calc(100% + .75rem);
    width: min(340px, calc(100vw - 2rem));
    max-height: min(620px, calc(100svh - 7rem));
    overflow: auto;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .06), transparent 42%),
        rgba(8, 19, 31, .96);
    box-shadow: 0 28px 90px rgba(0, 0, 0, .42);
    backdrop-filter: blur(22px) saturate(130%);
    transform: translateY(14px) scale(.94);
    transform-origin: right bottom;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}

.feedback-widget.is-open .feedback-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.feedback-head {
    display: flex;
    justify-content: space-between;
    gap: .8rem;
    align-items: flex-start;
    padding: .82rem .85rem .68rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.feedback-head span {
    display: block;
    margin-bottom: .2rem;
    color: var(--brand);
    font-family: var(--font-display);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.feedback-head strong {
    display: block;
    color: var(--white);
    font-family: var(--font-display);
    font-size: .94rem;
    line-height: 1.25;
}

.feedback-close {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
}

.feedback-form {
    display: grid;
    gap: .62rem;
    padding: .82rem .85rem .9rem;
}

.feedback-form label {
    display: grid;
    gap: .26rem;
    color: rgba(255, 255, 255, .72);
    font-size: .78rem;
    font-weight: 600;
}

.feedback-form input,
.feedback-form textarea {
    min-height: 38px;
    resize: vertical;
}

.feedback-form textarea {
    min-height: 88px;
}

.feedback-form .button {
    width: 100%;
    min-height: 40px;
    justify-content: center;
    padding: .62rem .85rem;
}

.recaptcha-disclaimer {
    margin: -.1rem 0 .1rem;
    color: rgba(255, 255, 255, .52);
    font-size: .68rem;
    line-height: 1.35;
}

.recaptcha-disclaimer a {
    color: rgba(255, 255, 255, .78);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.form-recaptcha-disclaimer {
    /* color: rgba(10, 23, 38, .56); */
    color: var(--muted);
}

.form-recaptcha-disclaimer a {
    color: var(--brand);
}

.grecaptcha-badge {
    visibility: hidden !important;
}

@media (max-width: 980px) {
    .menu-toggle { display: inline-grid; }

    body.menu-open::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 55;
        background: #02060a;
    }

    body.menu-open .feedback-widget {
        opacity: 0;
        pointer-events: none;
    }

    .nav-panel {
        position: fixed;
        inset: 82px var(--page-gutter) auto var(--page-gutter);
        display: grid;
        gap: .35rem;
        min-height: auto;
        padding: .55rem;
        background:
            linear-gradient(135deg, rgba(215, 25, 32, .12), transparent 34%),
            rgba(7, 16, 24, .97);
        border: 1px solid rgba(255, 255, 255, .14);
        box-shadow: 0 28px 80px rgba(7, 16, 24, .34);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform .2s ease, opacity .2s ease;
    }

    .site-header.is-scrolled .nav-panel {
        inset: 72px var(--page-gutter) auto var(--page-gutter);
        border-radius: var(--radius);
    }

    .nav-panel.is-open {
        z-index: 20;
        border-radius: 8px;
        background: #04090f !important;
        box-shadow: 0 28px 80px rgba(0, 0, 0, .44);
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-panel a {
        border-radius: var(--radius);
        padding: .85rem .95rem;
    }

    .nav-item {
        display: grid;
    }

    .nav-trigger {
        width: 100%;
        justify-content: space-between;
    }

    .nav-dropdown {
        position: static;
        width: 100%;
        max-height: 0;
        margin-top: 0;
        padding: 0;
        overflow: hidden;
        opacity: 0;
        transform: none;
        pointer-events: none;
        border-color: transparent;
        background: transparent;
        box-shadow: none;
        transition: max-height .2s ease, margin .2s ease, padding .2s ease, opacity .16s ease;
    }

    .nav-item:hover .nav-dropdown,
    .nav-item:focus-within .nav-dropdown {
        max-height: 0;
        margin-top: 0;
        padding: 0;
        opacity: 0;
        pointer-events: none;
        border-color: transparent;
        background: transparent;
    }

    .nav-item.is-open .nav-dropdown,
    .nav-item.is-open:hover .nav-dropdown,
    .nav-item.is-open:focus-within .nav-dropdown {
        max-height: 560px;
        margin-top: .25rem;
        padding: .35rem;
        opacity: 1;
        pointer-events: auto;
        border-color: rgba(255, 255, 255, .12);
        background: rgba(255, 255, 255, .06);
    }

    .nav-item.is-open > .nav-trigger i {
        transform: rotate(180deg);
    }

    .nav-dropdown::before {
        display: none;
    }

    .split-section,
    .hero-grid,
    .corporate-identity-grid,
    .brand-identity-panel,
    .stations-intro,
    .price-stage-grid,
    .network-inner,
    .footer-dealer-cta,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-console,
    .hero-map-panel {
        min-height: 430px;
        max-width: 720px;
    }

    .map-stage .hero-map-panel {
        max-width: none;
    }

    .section-head-row {
        grid-template-columns: 1fr;
    }

    .network-metrics,
    .standard-pillars {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .feature-grid-wide,
    .price-cards,
    .fuel-product-cards,
    .hero-marquee div,
    .product-detail-grid,
    .news-list,
    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .lpg-showcase {
        grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr);
        gap: 1.5rem;
    }

    main > .section.services-locations {
        gap: 1.5rem;
    }

    main > .section.dealer-application {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    main > .section.contact-hub {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    main > .section.cookie-policy {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .services-location-list span:nth-child(5n) {
        border-right: 1px solid rgba(255, 255, 255, .18);
    }

    .services-location-list span:nth-child(3n) {
        border-right: 0;
    }

    .news-page-list article {
        grid-template-columns: 1fr;
    }

    .stations-page-section,
    .stations-finder-panel,
    .station-list,
    .station-item,
    .station-item > div,
    .table-toolbar label {
        min-width: 0;
    }

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

    .station-item p,
    .station-item span {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .station-item span {
        max-width: 100%;
        white-space: normal;
    }

}

@media (max-width: 680px) {
    :root {
        --header-height: 70px;
        --header-height-scrolled: 64px;
        --section-pad-block: 2.4rem;
    }

    .hero {
        min-height: calc(100svh - var(--header-height));
        grid-template-rows: 1fr;
    }

    .hero-grid {
        min-height: calc(100svh - var(--header-height));
        align-content: end;
        padding: 2.4rem 0 clamp(2.5rem, 9vw, 4rem);
    }
    .hero h1 { font-size: clamp(1.9rem, 10vw, 3rem); }
    .hero-title { font-size: clamp(1.8rem, 7.2vw, 2.25rem) !important; }
    .hero p { font-size: 1rem; }
    .hero-content h1,
    .hero-content p { text-align: center; }

    .hero::after { background: rgba(6, 16, 28, .86); }
    .page-hero { height: 320px; }
    .page-hero > div { padding: 2rem 0; }
    .page-hero h1 { font-size: clamp(1.75rem, 8vw, 2.65rem); }
    .page-hero p { font-size: .95rem; }
    .compact-hero { height: 240px; }

    .fuel-products-hero img {
        opacity: .58;
    }

    .fuel-products-hero::after {
        background: rgba(7, 16, 24, .72);
    }

    .hero-marquee div { grid-template-columns: 1fr; }
    .hero-marquee a { min-height: 64px; }
    .hero-marquee { display: none; }
    .hero-console,
    .hero-map-panel { min-height: 400px; }
    .console-map { height: 220px; }
    .console-readouts,
    .hero-data-grid { grid-template-columns: 1fr; }
    .turkey-network { min-height: 285px; }
    .map-stage .turkey-network { min-height: 300px; }
    .map-panel-head {
        align-items: flex-start;
        flex-direction: column;
        gap: .25rem;
    }
    .city-labels text { font-size: 22px; }
    .hero-marquee div {
        min-height: auto;
        overflow: visible;
    }

    .filters,
    .table-toolbar,
    .form-grid,
    .fuel-product-cards,
    .about-unified-grid,
    .about-vision-grid,
    .about-value-stack,
    .brand-token-grid,
    .stations-metrics,
    .feature-grid,
    .feature-grid-wide,
    .price-cards,
    .product-detail-grid,
    .news-list,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .lpg-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .energy-section {
        gap: 1.75rem;
        padding-block: 2.8rem;
    }

    .energy-proof div,
    .energy-proof div + div {
        min-height: auto;
        padding: .85rem 0;
        border-left: 0;
        border-bottom: 1px solid var(--light-line);
    }

    .energy-proof div:last-child {
        border-bottom: 0;
    }

    .energy-feature-list article {
        grid-template-columns: 2.1rem 38px minmax(0, 1fr);
        gap: .65rem;
        min-height: auto;
        padding: 1rem 0;
    }

    .energy-feature-list i {
        width: 38px;
        height: 38px;
    }

    main > .section.services-locations {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

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

    .services-location-list span {
        min-height: 82px;
        padding: .8rem;
    }

    .services-location-list span:nth-child(3n) {
        border-right: 1px solid rgba(255, 255, 255, .18);
    }

    .services-location-list span:nth-child(2n) {
        border-right: 0;
    }

    .dealer-form-panel .button {
        width: 100%;
    }

    .contact-map-panel,
    .contact-map-panel iframe {
        min-height: 340px;
    }

    .not-found-page {
        min-height: calc(100svh - var(--header-height-scrolled));
    }

    .lpg-showcase-media {
        min-height: 320px;
    }

    .lpg-benefit:nth-child(odd),
    .lpg-benefit:nth-child(even) {
        padding-right: 0;
        padding-left: 0;
        border-left: 0;
    }

    .fuel-product-card {
        min-height: auto;
    }

    .fuel-detail-card {
        position: relative;
        grid-template-rows: 220px auto;
        background: #0d2030;
    }

    .fuel-detail-card::before {
        display: none;
    }

    .fuel-detail-card > img {
        position: relative;
        z-index: 0;
        height: 220px;
    }

    .fuel-detail-card > div {
        position: relative;
        z-index: 1;
        background: #0d2030;
    }

    .fuel-product-card img {
        height: 210px;
    }

    .fuel-product-card::before {
        top: 208px;
    }

    .about-vision-card {
        grid-template-columns: 1fr;
    }

    .about-vision-mark {
        min-height: 58px;
        place-items: center start;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .13);
        padding: .75rem 1rem;
        font-size: .78rem;
        writing-mode: horizontal-tb;
        transform: none;
    }

    .network-visual,
    .network-visual img {
        min-height: 360px;
    }

    .network-metrics,
    .energy-proof,
    .standard-pillars {
        grid-template-columns: 1fr;
    }

    .standard-pillars-row {
        grid-template-columns: 1fr;
    }

    .network-metrics div,
    .standard-pillars article {
        min-height: 78px;
    }

    .standard-scoreboard {
        grid-template-columns: 1fr;
    }

    .standard-scoreboard div {
        min-height: 92px;
    }

    .footer-bottom,
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .feedback-widget {
        inset: auto .75rem .75rem auto;
    }

    .feedback-toggle {
        min-height: 48px;
        width: 48px;
        padding: 0;
        justify-content: center;
    }

    .feedback-toggle span { display: none; }

    .feedback-panel {
        width: calc(100vw - 1.5rem);
        max-height: calc(100svh - 6rem);
    }

    .station-item {
        grid-template-columns: 1fr;
    }

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

    .station-item span {
        width: fit-content;
    }

    .stations-page-section {
        gap: 1rem;
    }

    .stations-finder-panel {
        padding: .85rem;
        overflow: hidden;
    }

    .stations-filter-head {
        margin-bottom: .85rem;
    }

    .stations-filter-head strong {
        overflow-wrap: anywhere;
        font-size: 1.1rem;
    }

    .table-toolbar {
        gap: .75rem;
    }

    .table-toolbar label,
    .table-toolbar select {
        width: 100%;
        min-width: 0;
    }

    .station-item {
        gap: .65rem;
        padding: .9rem;
    }

    .station-item h3 {
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .station-item span {
        width: 100%;
        min-height: 32px;
    }

    html,
    body {
        overflow-x: clip;
    }

    .nav-shell {
        min-height: 70px;
    }

    .brand {
        min-height: 42px;
        padding: .36rem .68rem;
    }

    .brand img,
    .site-header.is-scrolled .brand img {
        width: 116px;
    }

    .nav-panel,
    .site-header.is-scrolled .nav-panel {
        inset: 70px 0 auto 0;
        max-height: calc(100svh - 5.25rem);
        overflow-y: auto;
        overscroll-behavior: contain;
        border-right: 0;
        border-left: 0;
        border-radius: 0;
    }

    .nav-panel.is-open {
        border-radius: 0;
    }

    .nav-panel a,
    .nav-trigger {
        min-width: 0;
        white-space: normal;
    }

    .nav-panel .nav-login {
        width: fit-content;
        justify-self: start;
        margin-left: 0;
    }

    .hero-actions,
    .not-found-actions {
        display: grid;
        grid-template-columns: 1fr;
        width: min(100%, 360px);
    }

    .hero-actions .button,
    .not-found-actions .button,
    .footer-dealer-cta .button {
        width: 100%;
        justify-content: center;
    }

    .price-page-section .price-widget .filters,
    .price-widget-compact .filters,
    .autogas-price-panel .filters,
    .autogas-price-cards,
    .lpg-benefit-grid {
        grid-template-columns: 1fr;
    }

    .autogas-table .responsive-table {
        overflow: visible;
        border: 0;
        border-radius: 0;
        background: transparent;
    }

    .autogas-table table {
        width: 100%;
        min-width: 0;
        border-collapse: separate;
        border-spacing: 0 .55rem;
    }

    .autogas-table thead {
        display: none;
    }

    .autogas-table tbody,
    .autogas-table tr {
        display: block;
    }

    .autogas-table tr {
        padding: .8rem .9rem;
        border: 1px solid rgba(255, 255, 255, .12);
        border-radius: 6px;
        background: rgba(255, 255, 255, .05);
    }

    .autogas-table td {
        display: inline-block;
        padding: 0;
        border: 0;
        color: rgba(255, 255, 255, .78);
        white-space: normal;
    }

    .autogas-table td:last-child {
        float: right;
        color: var(--white);
        font-family: var(--font-display);
        font-weight: 800;
        text-align: right;
    }

    .autogas-table td[colspan] {
        display: block;
        text-align: center;
    }

    .price-widget,
    .table-panel,
    .smart-form {
        padding: 1rem;
    }

    .fuel-price-table .responsive-table,
    .autogas-table .responsive-table {
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
    }

    .footer-partner-logos {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .footer-partner-logo {
        width: min(220px, 100%);
        max-width: 100%;
    }

    .map-panel-link {
        width: auto;
        min-height: 48px;
        margin: .75rem 0 0;
        border-radius: 6px;
        padding: .75rem .9rem;
    }

    .feedback-toggle {
        max-width: calc(100vw - 1.5rem);
    }
}

@media (max-width: 420px) {
    :root {
        --page-gutter: 12px;
        --section-pad-block: 2rem;
    }

    .page-hero {
        height: 292px;
    }

    .page-hero > div {
        padding-block: 1.6rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .hero-grid {
        padding-top: 2rem;
    }

    .hero-map-panel,
    .hero-console {
        min-height: 360px;
    }

    .map-panel-link { justify-content: space-between; }

    .footer-partner-logo {
        width: 100%;
    }

    .footer-partner-logos img {
        max-width: calc(100% - 1.4rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-video,
    .hero::before,
    .hero-content,
    .scroll-reveal {
        animation: none;
        opacity: 1;
        transform: none;
        transition: none;
    }
}
