/* GAS BF â€” Design inspirÃ© Coris Bank (vert + bleu) */

:root {
    --gas-blue: #0B5394;
    --gas-blue-dark: #083d6b;
    --gas-green: #148d3f;
    --gas-green-dark: #0f6b2f;
    --gas-gray: #707070;
    --gas-light: #f5f7fa;
    --gas-font: 'Jost', 'Futura', 'Century Gothic', sans-serif;
    --gas-container: 1240px;
    --gas-brand-logo-h: 88px;
    --gas-brand-logo-h-scrolled: 72px;
    --gas-brand-logo-h-footer: 72px;
    --gas-brand-text-size: clamp(13px, 1.25vw, 16px);
    --gas-brand-tagline-size: 11px;
}

html {
    scroll-padding-top: 0;
}

body.gasbf-site {
    font-family: var(--gas-font);
    color: #333;
    margin: 0;
}

body.gasbf-site main {
    margin: 0;
    padding: 0;
}

body.gasbf-site .menu-area,
body.gasbf-site .footer-area {
    display: none !important;
}

/* ——— Header (style corporate intégré) ——— */
.gas-header {
    background: #fff;
    padding: 12px 0;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    margin: 0;
    border-bottom: 1px solid #e8eef5;
    transition: box-shadow 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
}

.gas-header.is-scrolled {
    box-shadow: 0 4px 24px rgba(11, 83, 148, 0.08);
    padding: 8px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.gas-header__inner {
    max-width: var(--gas-container);
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.gas-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1 1 auto;
    min-width: 0;
}

.gas-brand__logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
    text-decoration: none;
}

.gas-brand__logo img {
    display: block;
    height: var(--gas-brand-logo-h);
    width: auto;
    max-width: min(240px, 42vw);
    object-fit: contain;
    transition: height 0.3s ease;
}

.gas-header.is-scrolled .gas-brand__logo img {
    height: var(--gas-brand-logo-h-scrolled);
}

.gas-brand--footer .gas-brand__logo img {
    height: var(--gas-brand-logo-h-footer);
    max-width: 200px;
}

.gas-brand__identity {
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
    padding-left: 14px;
    border-left: 2px solid var(--gas-green);
}

.gas-brand__text {
    font-family: Georgia, "Times New Roman", serif;
    font-size: var(--gas-brand-text-size);
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--gas-blue);
    text-decoration: none;
    line-height: 1.2;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
    transition: color 0.2s ease;
}

.gas-brand__text:hover {
    color: var(--gas-green);
}

.gas-brand__tagline {
    font-family: Georgia, "Times New Roman", serif;
    font-size: var(--gas-brand-tagline-size);
    font-weight: 800;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--gas-gray);
    line-height: 1;
}

.gas-header__right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 0 0 auto;
    justify-content: flex-end;
}

.gas-btn-icon {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gas-blue);
    background: #fff;
    color: var(--gas-blue);
    cursor: pointer;
    transition: all 0.25s ease;
    font-size: 18px;
    text-decoration: none;
}

.gas-btn-icon:hover {
    background: var(--gas-blue);
    color: #fff;
}

.gas-header__menu-btn {
    background: var(--gas-blue);
    color: #fff;
}

.gas-header__menu-btn:hover {
    background: #fff;
    color: var(--gas-blue);
}

.gas-nav-inline {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 4px;
}

.gas-nav-inline a {
    color: var(--gas-blue);
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 12px;
    transition: color 0.2s;
    box-shadow: inset 0 -4px 0 var(--gas-green);
}

.gas-nav-inline a:hover {
    color: var(--gas-green);
}

.gas-nav-inline a.active {
    font-weight: 700;
}

.gas-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 18px;
    font-family: var(--gas-font);
    font-size: 14px;
    font-weight: 700;
    text-transform: none;
    border: 1px solid transparent;
    border-radius: 0;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s ease;
    line-height: 1;
}

.gas-btn--green {
    background: var(--gas-green);
    border-color: var(--gas-green);
    color: #fff;
}

.gas-btn--green:hover {
    background: #fff;
    color: var(--gas-green);
}

.gas-btn--blue {
    background: var(--gas-blue);
    border-color: var(--gas-blue);
    color: #fff;
}

.gas-btn--blue:hover,
.gas-btn--blue.gas-btn--flat:hover {
    background: #fff;
    border-color: var(--gas-blue);
    color: var(--gas-blue);
}

.gas-btn--outline-blue {
    background: #fff;
    border-color: var(--gas-blue);
    color: var(--gas-blue);
}

.gas-btn--outline-blue:hover {
    background: var(--gas-blue);
    color: #fff;
}

.gas-btn--outline-white {
    background: var(--gas-blue);
    border-color: var(--gas-blue);
    color: #fff;
}

.gas-btn--outline-white:hover {
    background: #fff;
    color: var(--gas-blue);
    border-color: #fff;
}

.gas-lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 700;
    color: var(--gas-blue);
    text-decoration: none;
    padding: 6px 10px;
    border: 1px solid #e8ecf0;
    background: #fff;
    transition: border-color 0.2s, color 0.2s;
    cursor: pointer;
    font-family: var(--gas-font);
    line-height: 1;
    flex-shrink: 0;
    white-space: nowrap;
}

.gas-lang-switch__flag {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.gas-lang-switch img {
    width: 22px;
    height: 16px;
    object-fit: cover;
    border-radius: 2px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
    flex-shrink: 0;
}

.gas-lang-switch:hover,
.gas-lang-dropdown.is-open .gas-lang-switch {
    color: var(--gas-green);
    border-color: var(--gas-green);
}

.gas-lang-switch__label--full {
    display: none;
}

.gas-lang-switch__label--short {
    display: inline;
    letter-spacing: 0.02em;
}

.gas-lang-switch__caret {
    font-size: 9px;
    margin-left: 1px;
    transition: transform 0.25s ease;
}

.gas-lang-dropdown.is-open .gas-lang-switch__caret {
    transform: rotate(180deg);
}

.gas-lang-dropdown {
    position: relative;
    flex-shrink: 0;
}

.gas-lang-dropdown__menu {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    min-width: 180px;
    background: #fff;
    border: 1px solid #e8ecf0;
    box-shadow: 0 12px 32px rgba(11, 83, 148, 0.15);
    z-index: 1100;
    display: none;
}

.gas-lang-dropdown__menu[hidden] {
    display: none !important;
}

.gas-lang-dropdown.is-open .gas-lang-dropdown__menu {
    display: block;
}

.gas-lang-dropdown__label--full {
    display: none;
}

.gas-lang-dropdown__label--short {
    display: inline;
    letter-spacing: 0.02em;
}

.gas-lang-dropdown__item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s, color 0.2s;
    border-bottom: 1px solid #f0f2f5;
    white-space: nowrap;
}

.gas-lang-dropdown__item:last-child {
    border-bottom: none;
}

.gas-lang-dropdown__item:hover {
    background: var(--gas-light);
    color: var(--gas-blue);
}

.gas-lang-dropdown__item.is-active {
    background: rgba(11, 83, 148, 0.08);
    color: var(--gas-blue);
}

/* Overlay menu */
.gas-menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(11, 83, 148, 0.97);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    overflow-y: auto;
}

.gas-menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.gas-menu-overlay__inner {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px 30px 60px;
    text-align: center;
    position: relative;
}

.gas-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border: 1px solid #fff;
    background: transparent;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.2s;
}

.gas-menu-close:hover {
    background: rgba(255, 255, 255, 0.15);
}

.gas-menu-nav {
    list-style: none;
    margin: 80px 0 0;
    padding: 0;
}

.gas-menu-nav li {
    margin-bottom: 8px;
}

.gas-menu-nav a {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-decoration: none;
    display: block;
    padding: 12px 20px;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s;
}

.gas-menu-nav a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.gas-menu-nav a.active {
    color: var(--gas-blue);
    background: #fff;
    font-weight: 700;
    box-shadow: inset 0 -4px 0 var(--gas-green);
}

.gas-menu-nav .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.gas-menu-nav .sub-menu a {
    font-size: 15px;
    text-transform: none;
    letter-spacing: 0;
    opacity: 0.9;
    padding: 6px 0;
}

body.gas-menu-open {
    overflow: hidden;
}

/* ——— Hero slider (layout split simple) ——— */
.gas-hero {
    position: relative;
    overflow: hidden;
    background: #fff;
    --gas-hero-box-w: 480px;
    --gas-hero-media-h: clamp(420px, 52vh, 540px);
    --gas-hero-accent-w: 100px;
    --gas-hero-diag: 52px;
    --gas-hero-box-h: var(--gas-hero-media-h);
}

.gas-hero-slider:not(.slick-initialized) {
    overflow: hidden;
}

.gas-hero-slider:not(.slick-initialized) .gas-hero__slide:not(:first-child) {
    display: none !important;
}

.gas-hero-slider .slick-list,
.gas-hero-slider .slick-track {
    height: 100%;
}

.gas-hero-slider.slick-initialized .slick-list {
    min-height: calc(var(--gas-hero-media-h) + 120px);
}

.gas-hero-slider .slick-slide {
    height: auto;
}

.gas-hero-slider .slick-slide > div {
    height: 100%;
}

.gas-hero__slide {
    min-height: calc(var(--gas-hero-media-h) + 120px);
}

.gas-hero__panel {
    max-width: var(--gas-container);
    margin: 0 auto;
    padding: 40px 20px 88px;
}

.gas-hero__compose {
    display: flex;
    align-items: stretch;
    width: 100%;
    gap: 0;
    min-height: var(--gas-hero-media-h);
}

.gas-hero__box {
    position: relative;
    flex: 0 0 min(100%, var(--gas-hero-box-w));
    width: min(100%, var(--gas-hero-box-w));
    height: var(--gas-hero-box-h);
    min-height: var(--gas-hero-box-h);
    max-height: var(--gas-hero-box-h);
    padding: 32px 28px 28px;
    background: var(--gas-green);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    box-sizing: border-box;
    z-index: 2;
    clip-path: polygon(0 0, 100% 0, calc(100% - var(--gas-hero-diag)) 100%, 0 100%);
    box-shadow: 0 12px 32px rgba(20, 141, 63, 0.18);
    overflow: hidden;
}

.gas-hero__box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gas-blue);
}

.gas-hero__visual-accent {
    flex: 0 0 var(--gas-hero-accent-w);
    width: var(--gas-hero-accent-w);
    height: var(--gas-hero-media-h);
    margin: 0 calc(var(--gas-hero-diag) * -1);
    background: var(--gas-blue);
    z-index: 3;
    clip-path: polygon(var(--gas-hero-diag) 0, 100% 0, calc(100% - var(--gas-hero-diag)) 100%, 0 100%);
}

.gas-hero__visual-frame {
    flex: 1 1 auto;
    min-width: 0;
    height: var(--gas-hero-media-h);
    overflow: hidden;
    background: #eee;
    clip-path: polygon(var(--gas-hero-diag) 0, 100% 0, 100% 100%, 0 100%);
}

.gas-hero__portrait {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.gas-hero__title {
    color: #fff;
    font-family: 'Montserrat', var(--gas-font);
    font-size: clamp(19px, 2.4vw, 32px);
    font-weight: 800;
    line-height: 1.2;
    margin: 0 0 10px;
    flex-shrink: 0;
}

.gas-hero__text {
    color: rgba(255, 255, 255, 0.94);
    font-size: clamp(13px, 1.25vw, 15px);
    line-height: 1.55;
    margin: 0 0 18px;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
}

.gas-hero__cta {
    align-self: flex-start;
    flex-shrink: 0;
    margin-top: auto;
    background: #fff;
    border-color: #fff;
    color: var(--gas-green);
    font-size: 14px;
    padding: 11px 22px;
}

.gas-hero__cta:hover {
    background: var(--gas-blue);
    border-color: var(--gas-blue);
    color: #fff;
}

.gas-hero__cta i {
    font-size: 13px;
}

.gas-hero__foot {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 5;
    pointer-events: none;
}

.gas-hero__foot-inner {
    max-width: var(--gas-container);
    margin: 0 auto;
    padding: 0 20px 24px;
}

.gas-hero-dots-anchor {
    width: min(100%, var(--gas-hero-box-w));
    pointer-events: auto;
}

.gas-hero-dots-anchor ul.gas-hero__dots,
.gas-hero-dots-anchor ul.slick-dots {
    position: static !important;
    transform: none !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
    width: 100%;
}

.gas-hero-dots-anchor ul.gas-hero__dots li,
.gas-hero-dots-anchor ul.slick-dots li {
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    height: auto !important;
    line-height: 1;
    list-style: none !important;
}

.gas-hero-dots-anchor ul.gas-hero__dots li button,
.gas-hero-dots-anchor ul.slick-dots li button {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 42px !important;
    height: 42px !important;
    padding: 0 !important;
    border: 2px solid var(--gas-blue) !important;
    border-radius: 0 !important;
    background: #fff !important;
    color: var(--gas-blue) !important;
    font-family: var(--gas-font) !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-indent: 0 !important;
    cursor: pointer;
    box-shadow: none !important;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.gas-hero-dots-anchor ul.gas-hero__dots li button:before,
.gas-hero-dots-anchor ul.slick-dots li button:before {
    display: none !important;
    content: none !important;
}

.gas-hero-dots-anchor ul.gas-hero__dots li button:hover,
.gas-hero-dots-anchor ul.slick-dots li button:hover {
    background: var(--gas-blue) !important;
    border-color: var(--gas-blue) !important;
    color: #fff !important;
}

.gas-hero-dots-anchor ul.gas-hero__dots li.slick-active button,
.gas-hero-dots-anchor ul.slick-dots li.slick-active button {
    background: var(--gas-green) !important;
    border-color: var(--gas-green) !important;
    color: #fff !important;
}

/* â€”â€”â€” Quick access cards â€”â€”â€” */
.gas-quick {
    position: relative;
    z-index: 1;
    max-width: var(--gas-container);
    margin: 0 auto;
    padding: 56px 20px 0;
    background: #fff;
}

.gas-quick__inner {
    max-width: 100%;
}

.gas-quick__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gas-quick__card {
    padding: 28px 24px;
    text-decoration: none;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: none;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
}

.gas-quick__card--blue {
    background: var(--gas-blue);
}

.gas-quick__card--green {
    background: var(--gas-green);
}

.gas-quick__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.16);
}

.gas-quick__icon {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.22);
}

.gas-quick__card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 10px;
    line-height: 1.3;
}

.gas-quick__card p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.55;
    flex: 1;
}

.gas-quick__link {
    display: inline-block;
    margin-top: 16px;
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

.gas-quick__card:hover .gas-quick__link {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* â€”â€”â€” Sections communes â€”â€”â€” */
.gas-section {
    padding: 70px 0;
}

.gas-section--light {
    background: var(--gas-light);
}

.gas-container {
    max-width: var(--gas-container);
    margin: 0 auto;
    padding: 0 20px;
}

.gas-section-title {
    color: var(--gas-blue);
    font-size: 26px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin: 0 0 30px;
}

.gas-section-title--center {
    text-align: center;
}

/* About */
.gas-about {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.gas-about__text p {
    font-size: 16px;
    line-height: 1.75;
    color: #444;
    margin-bottom: 16px;
}

.gas-about__team-note {
    font-weight: 600;
    color: var(--gas-blue);
    margin-bottom: 20px !important;
}

.gas-about__img img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
}

/* Two columns Services + News */
.gas-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
}

.gas-split__services {
    min-width: 0;
}

#gasServicesList {
    min-height: 192px;
    margin-bottom: 0;
}

.gas-service-toolbar {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.gas-split__cta {
    margin-top: 0;
    padding: 12px 24px;
    font-size: 14px;
    white-space: nowrap;
}

.gas-service-card {
    background: #fff;
    border: 1px solid var(--gas-blue);
    padding: 20px 24px;
    margin-bottom: 0;
    min-height: 192px;
    height: 192px;
    box-sizing: border-box;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.gas-service-card__icon {
    width: 88px;
    height: 88px;
    flex-shrink: 0;
    background: var(--gas-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    overflow: hidden;
}

.gas-service-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gas-service-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
    padding-top: 2px;
}

.gas-service-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    padding: 0;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gas-service-card h3 a {
    color: var(--gas-blue);
    text-decoration: none;
}

.gas-service-card h3 a:hover {
    color: var(--gas-green);
}

.gas-service-card p {
    font-size: 14px;
    color: var(--gas-gray);
    margin: 0;
    padding: 0;
    line-height: 1.45;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.gas-service-nav {
    display: flex;
    gap: 8px;
    margin-top: 0;
}

.gas-service-nav button {
    width: 36px;
    height: 36px;
    border: 1px solid var(--gas-blue);
    background: #fff;
    color: var(--gas-blue);
    cursor: pointer;
    transition: all 0.2s;
}

.gas-service-nav button:hover {
    background: var(--gas-blue);
    color: #fff;
}

/* News list */
.gas-news-item {
    display: flex;
    gap: 18px;
    padding: 18px 0;
    border-bottom: 1px solid #e8e8e8;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}

.gas-news-item__body {
    flex: 1;
    min-width: 0;
}

.gas-news-item__cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--gas-green);
    margin-bottom: 6px;
}

.gas-news-item:first-child {
    padding-top: 0;
}

.gas-news-item:hover h4 {
    color: var(--gas-green);
}

.gas-news-item__thumb {
    width: 110px;
    height: 82px;
    flex-shrink: 0;
    overflow: hidden;
}

.gas-news-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gas-news-item__date {
    font-size: 12px;
    color: var(--gas-green);
    font-weight: 600;
    margin-bottom: 4px;
}

.gas-news-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--gas-blue);
    margin: 0;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.2s;
}

/* Stats */
.gas-stats {
    background: var(--gas-blue);
    padding: 50px 0;
}

.gas-stats__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    text-align: center;
}

.gas-stat__label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
}

.gas-stat__number {
    color: var(--gas-green);
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    line-height: 1;
    margin: 0;
}

.gas-stat__suffix {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    margin-top: 6px;
}

/* Gallery */
.gas-gallery__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.gas-gallery__item {
    overflow: hidden;
    aspect-ratio: 4/3;
}

.gas-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gas-gallery__item:hover img {
    transform: scale(1.06);
}

/* Gallery page â€” vidÃ©o + albums */
.gas-gallery-featured {
    padding: 48px 0 40px;
    background: linear-gradient(180deg, #f4f8fc 0%, #fff 100%);
}

.gas-gallery-featured__player {
    position: relative;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: #0b1f33;
    box-shadow: 0 18px 48px rgba(11, 31, 51, 0.18);
    overflow: hidden;
}

.gas-gallery-featured__player iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.gas-gallery-video-facade {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    cursor: pointer;
    background: #0b1f33;
}

.gas-gallery-video-facade img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.92;
    transition: opacity 0.25s ease, transform 0.45s ease;
}

.gas-gallery-video-facade:hover img,
.gas-gallery-video-facade:focus-visible img {
    opacity: 1;
    transform: scale(1.02);
}

.gas-gallery-video-facade__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gas-green);
    color: #fff;
    font-size: 24px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
    transition: transform 0.2s ease, background 0.2s ease;
}

.gas-gallery-video-facade__play i {
    margin-left: 4px;
}

.gas-gallery-video-facade:hover .gas-gallery-video-facade__play,
.gas-gallery-video-facade:focus-visible .gas-gallery-video-facade__play {
    transform: translate(-50%, -50%) scale(1.06);
    background: var(--gas-green-dark);
}

.gas-gallery-page__intro {
    margin-bottom: 36px;
}

.gas-gallery-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    position: sticky;
    top: 120px;
    z-index: 20;
    padding: 12px 0;
    background: linear-gradient(180deg, #f7f9fc 75%, rgba(247, 249, 252, 0));
}

.gas-gallery-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 18px;
    background: #fff;
    border: 1px solid #e3eaf2;
    color: var(--gas-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.gas-gallery-nav__link:hover {
    background: var(--gas-blue);
    border-color: var(--gas-blue);
    color: #fff;
    transform: translateY(-2px);
}

.gas-gallery-nav__link i {
    color: var(--gas-green);
    font-size: 15px;
}

.gas-gallery-nav__link:hover i {
    color: #fff;
}

.gas-gallery-album {
    margin-bottom: 56px;
    scroll-margin-top: 160px;
}

.gas-gallery-album:last-child {
    margin-bottom: 0;
}

.gas-gallery-album__head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    padding-bottom: 18px;
    border-bottom: 2px solid #e8eef5;
}

.gas-gallery-album__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gas-blue) 0%, #1a4f8a 100%);
    color: #fff;
    font-size: 22px;
    flex-shrink: 0;
}

.gas-gallery-album__head h3 {
    margin: 0 0 4px;
    font-size: 24px;
    font-weight: 700;
    color: var(--gas-blue);
}

.gas-gallery-album__head p {
    margin: 0;
    font-size: 14px;
    color: var(--gas-gray);
}

.gas-gallery-album__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 16px;
}

.gas-gallery-photo {
    position: relative;
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #dfe8f1;
    text-decoration: none;
}

.gas-gallery-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.gas-gallery-photo__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 6px;
    padding: 18px;
    background: linear-gradient(180deg, rgba(8, 28, 48, 0.05) 20%, rgba(8, 28, 48, 0.88) 100%);
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gas-gallery-photo:hover img,
.gas-gallery-photo:focus-visible img {
    transform: scale(1.06);
}

.gas-gallery-photo:hover .gas-gallery-photo__overlay,
.gas-gallery-photo:focus-visible .gas-gallery-photo__overlay {
    opacity: 1;
}

.gas-gallery-photo__zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    font-size: 15px;
}

.gas-gallery-photo__overlay strong {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
}

.gas-gallery-photo__overlay small {
    font-size: 13px;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.88);
}

@media (max-width: 991px) {
    .gas-gallery-nav {
        top: 100px;
    }

    .gas-gallery-album {
        scroll-margin-top: 140px;
    }

    .gas-brand__logo img {
        height: 72px;
        max-width: 36vw;
    }

    .gas-header.is-scrolled .gas-brand__logo img {
        height: 60px;
    }

    .gas-brand__identity {
        padding-left: 12px;
    }

    .gas-brand__text {
        font-size: 13px;
    }
}

@media (max-width: 575px) {
    .gas-gallery-nav__link {
        width: 100%;
        justify-content: center;
    }

    .gas-gallery-album__head {
        flex-direction: column;
        text-align: center;
    }

    .gas-gallery-album__grid {
        grid-template-columns: 1fr;
    }
}

/* CTA */
.gas-cta {
    background: linear-gradient(135deg, var(--gas-green) 0%, var(--gas-green-dark) 100%);
    padding: 60px 0;
    text-align: center;
}

.gas-cta h2 {
    color: #fff;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 12px;
}

.gas-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    margin: 0 0 28px;
}

.gas-cta .gas-btn--outline-blue {
    background: #fff;
    border-color: #fff;
    color: var(--gas-blue);
    padding: 16px 32px;
    font-size: 16px;
}

.gas-cta .gas-btn--outline-blue:hover {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

/* â€”â€”â€” Footer â€”â€”â€” */
.gas-footer {
    font-family: var(--gas-font);
}

.gas-footer__top {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 0;
    max-width: var(--gas-container);
    margin: 20px auto 0;
    padding: 0 20px;
}

.gas-footer__mail {
    background: var(--gas-blue);
    padding: 28px 30px;
    color: #fff;
}

.gas-footer__mail h4 {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #fff;
}

.gas-footer__mail p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 18px;
    line-height: 1.5;
}

.gas-footer__mail-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: #fff;
    color: var(--gas-blue);
    border: 1px solid #fff;
    font-family: var(--gas-font);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.gas-footer__mail-btn:hover {
    background: var(--gas-green);
    border-color: var(--gas-green);
    color: #fff;
}

.gas-footer__mail-btn i {
    font-size: 16px;
}

.gas-footer__contact {
    background: var(--gas-green);
    padding: 28px 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.gas-footer__contact h4 {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #fff;
}

.gas-footer__contact > p {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 18px;
    line-height: 1.45;
}

.gas-footer__contact-grid {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: nowrap;
}

.gas-footer__contact-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.gas-footer__contact-item i {
    font-size: 18px;
}

.gas-footer__contact-item:hover {
    background: #fff;
    border-color: #fff;
    color: var(--gas-green);
    transform: translateY(-2px);
}

.gas-footer__links {
    max-width: var(--gas-container);
    margin: 0 auto;
    padding: 40px 20px 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    border-bottom: 1px solid #e7e6e6;
}

.gas-footer__col h5 {
    font-size: 16px;
    text-transform: uppercase;
    color: #000;
    margin: 0 0 14px;
    font-weight: 600;
}

.gas-footer__col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.gas-footer__col ul li {
    margin-bottom: 6px;
}

.gas-footer__col ul li a,
.gas-footer__col ul li span {
    color: var(--gas-gray);
    font-size: 14px;
    text-decoration: none;
    line-height: 1.5;
}

.gas-footer__col ul li a:hover {
    color: var(--gas-blue);
}

.gas-footer__col ul li i {
    color: var(--gas-green);
    margin-right: 6px;
    font-size: 12px;
}

.gas-footer__bottom {
    max-width: var(--gas-container);
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.gas-brand--footer {
    flex: 1 1 auto;
}

.gas-footer__phone {
    background: var(--gas-blue);
    color: #fff;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.gas-footer__phone i {
    font-size: 20px;
}

.gas-footer__phone span {
    display: block;
    font-size: 11px;
    opacity: 0.85;
}

.gas-footer__phone strong {
    font-size: 16px;
    font-weight: 600;
}

.gas-footer__copy {
    font-size: 12px;
    color: var(--gas-gray);
    text-align: center;
    width: 100%;
    padding: 16px 20px 24px;
}

.gas-footer__copy a {
    color: var(--gas-green);
    font-weight: 600;
    text-decoration: none;
}

/* Sticky offset when header fixed */
/* Sticky header â€” pas de marge en haut */
body.gasbf-site.has-sticky-header main,
body.gasbf-site.has-sticky-header .gas-hero {
    margin-top: 0;
    padding-top: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .gas-nav-inline {
        display: none;
    }

    .gas-split,
    .gas-about {
        grid-template-columns: 1fr;
    }

    .gas-stats__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gas-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gas-footer__top {
        grid-template-columns: 1fr;
    }

    .gas-footer__links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .gas-brand__logo img {
        height: 60px;
        max-width: 36vw;
    }

    .gas-header.is-scrolled .gas-brand__logo img {
        height: 52px;
    }

    .gas-brand--header .gas-brand__identity {
        display: none;
    }

    .gas-brand--footer .gas-brand__logo img {
        height: 56px;
    }

    .gas-brand--footer .gas-brand__text {
        font-size: 12px;
    }

    .gas-header__right {
        gap: 8px;
    }

    .gas-lang-switch {
        padding: 6px 8px;
        gap: 4px;
        font-size: 12px;
    }

    .gas-lang-switch__flag {
        width: 18px;
        height: 13px;
    }

    .gas-lang-dropdown__menu {
        min-width: 0;
    }

    .gas-lang-dropdown__flag {
        width: 18px;
        height: 13px;
    }

    .gas-lang-dropdown__item {
        padding: 8px 12px;
        font-size: 12px;
        gap: 6px;
    }

    .gas-quick {
        padding: 40px 16px 0;
    }

    .gas-quick__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .gas-quick__card {
        padding: 24px 20px 22px;
    }

    .gas-hero {
        --gas-hero-media-h: 210px;
        --gas-hero-box-h: 240px;
    }

    .gas-hero__slide {
        min-height: auto;
    }

    .gas-hero__panel {
        padding: 12px 16px 0;
    }

    .gas-hero__compose {
        flex-direction: column;
        overflow: hidden;
        box-shadow: 0 10px 32px rgba(11, 83, 148, 0.1);
        min-height: calc(var(--gas-hero-media-h) + var(--gas-hero-box-h));
    }

    .gas-hero__visual-accent {
        display: none;
    }

    .gas-hero__visual-frame {
        order: 0;
        flex: none;
        width: 100%;
        height: var(--gas-hero-media-h);
        min-height: 0;
        clip-path: none;
        border-bottom: 4px solid var(--gas-blue);
    }

    .gas-hero__portrait {
        object-position: center center;
    }

    .gas-hero__box {
        order: 1;
        flex: none;
        width: 100%;
        height: var(--gas-hero-box-h);
        min-height: var(--gas-hero-box-h);
        max-height: var(--gas-hero-box-h);
        clip-path: none;
        box-shadow: none;
        padding: 18px 16px 20px;
        justify-content: flex-start;
    }

    .gas-hero__title {
        font-size: 17px;
        line-height: 1.25;
        margin-bottom: 8px;
        white-space: normal;
    }

    .gas-hero__text {
        font-size: 13px;
        line-height: 1.5;
        margin-bottom: 14px;
        display: -webkit-box;
        -webkit-line-clamp: 5;
        -webkit-box-orient: vertical;
        overflow: hidden;
        flex: 1 1 auto;
        min-height: 0;
    }

    .gas-hero__cta {
        font-size: 13px;
        padding: 10px 16px;
        width: 100%;
        justify-content: center;
        margin-top: auto;
    }

    .gas-hero__foot {
        position: relative;
        padding: 14px 0 4px;
    }

    .gas-hero__foot-inner {
        padding: 0 16px;
    }

    .gas-hero-dots-anchor {
        width: 100%;
    }

    .gas-hero-dots-anchor ul.gas-hero__dots,
    .gas-hero-dots-anchor ul.slick-dots {
        gap: 8px;
        justify-content: center;
    }

    .gas-hero-dots-anchor ul.gas-hero__dots li button,
    .gas-hero-dots-anchor ul.slick-dots li button {
        width: 36px !important;
        height: 36px !important;
        font-size: 13px !important;
    }

    .gas-stats__grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .gas-footer__links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gas-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .gas-brand--footer {
        justify-content: center;
    }
}

@media (min-width: 992px) {
    .gas-lang-switch__label--full {
        display: inline;
    }

    .gas-lang-switch__label--short {
        display: none;
    }

    .gas-lang-dropdown__label--full {
        display: inline;
    }

    .gas-lang-dropdown__label--short {
        display: none;
    }
}

/* â€”â€”â€” Inner pages (Coris style) â€”â€”â€” */
body.gasbf-site .breadcrumb-area,
body.gasbf-site .inner-brand-area {
    display: none !important;
}

.gas-page-hero {
    position: relative;
    min-height: 280px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: stretch;
}

.gas-page-hero__overlay {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    padding: 60px 0 50px;
    background: linear-gradient(
        180deg,
        rgba(11, 83, 148, 0.82) 0%,
        rgba(8, 61, 107, 0.88) 100%
    );
}

.gas-page-hero__overlay .gas-container {
    position: relative;
    z-index: 1;
    width: 100%;
}

.gas-page-hero__tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 15px;
    font-weight: 400;
    margin: 0 0 8px;
    letter-spacing: 0.02em;
}

.gas-page-hero__title {
    color: #fff;
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 600;
    margin: 0;
    line-height: 1.2;
}

.gas-breadcrumb-bar {
    background: #fff;
    border-bottom: 1px solid #e8ecf0;
    padding: 18px 0;
}

.gas-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 15px;
}

.gas-breadcrumb__home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: var(--gas-blue);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
}

.gas-breadcrumb__home:hover {
    background: var(--gas-blue-dark);
    color: #fff;
}

.gas-breadcrumb__sep {
    color: var(--gas-green);
    font-size: 11px;
}

.gas-breadcrumb__link {
    color: var(--gas-blue);
    text-decoration: none;
    font-weight: 500;
}

.gas-breadcrumb__link:hover {
    color: var(--gas-green);
}

.gas-breadcrumb__current {
    color: var(--gas-gray);
    font-weight: 500;
}

.gas-page {
    padding: 70px 0 90px;
}

.gas-page--light {
    background: var(--gas-light);
}

.gas-page__intro {
    max-width: 720px;
    margin: 0 auto 50px;
    text-align: center;
}

.gas-page__intro p {
    color: var(--gas-gray);
    line-height: 1.8;
    margin-top: 15px;
}

.gas-page__grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.gas-page__grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.gas-page__grid-aside {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 40px;
    align-items: start;
}

.gas-card {
    background: #fff;
    border: 1px solid #e8ecf0;
    overflow: hidden;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gas-card:hover {
    box-shadow: 0 12px 40px rgba(11, 83, 148, 0.12);
    transform: translateY(-4px);
}

.gas-card__img {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.gas-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gas-card__body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gas-card__label {
    color: var(--gas-green);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
}

.gas-card__title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 12px;
    color: #222;
}

.gas-card__title a {
    color: inherit;
    text-decoration: none;
}

.gas-card__title a:hover {
    color: var(--gas-blue);
}

.gas-card__text {
    color: var(--gas-gray);
    line-height: 1.7;
    margin: 0 0 16px;
    flex: 1;
}

.gas-card__link {
    color: var(--gas-blue);
    font-weight: 600;
    text-decoration: none;
}

.gas-card__link:hover {
    color: var(--gas-green);
}

.gas-info-box {
    background: #fff;
    border-left: 4px solid var(--gas-green);
    padding: 22px 26px;
    margin-bottom: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.gas-info-box--blue {
    border-left-color: var(--gas-blue);
}

.gas-skill-item {
    display: flex;
    gap: 14px;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid #e8ecf0;
    margin-bottom: 12px;
}

.gas-skill-item i {
    color: var(--gas-green);
    margin-top: 4px;
}

.gas-cta-band {
    background: linear-gradient(135deg, var(--gas-blue) 0%, var(--gas-blue-dark) 100%);
    padding: 70px 0;
    text-align: center;
}

.gas-cta-band h2,
.gas-cta-band p {
    color: #fff;
}

.gas-cta-band p {
    opacity: 0.92;
    max-width: 680px;
    margin: 20px auto 0;
    line-height: 1.8;
}

.gas-contact-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: -50px;
    position: relative;
    z-index: 2;
    padding-bottom: 50px;
}

.gas-contact-card {
    background: #fff;
    padding: 36px 28px;
    text-align: center;
    border: 1px solid #e8ecf0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.25s;
}

.gas-contact-card:hover {
    transform: translateY(-5px);
}

.gas-contact-card i {
    font-size: 32px;
    color: var(--gas-blue);
    margin-bottom: 18px;
}

.gas-contact-card h5 {
    font-weight: 600;
    margin-bottom: 12px;
}

.gas-contact-card p,
.gas-contact-card a {
    color: var(--gas-gray);
    line-height: 1.7;
    text-decoration: none;
}

.gas-contact-card a:hover {
    color: var(--gas-green);
}

.gas-form {
    background: #fff;
    border: 1px solid #e8ecf0;
    padding: 45px;
}

.gas-form .form-control {
    border: 1px solid #dde3ea;
    border-radius: 0;
    padding: 14px 16px;
    font-family: var(--gas-font);
}

.gas-form .form-control:focus {
    border-color: var(--gas-blue);
    box-shadow: 0 0 0 2px rgba(11, 83, 148, 0.12);
}

.gas-sidebar {
    position: sticky;
    top: 100px;
}

.gas-sidebar__widget {
    background: #fff;
    border: 1px solid #e8ecf0;
    padding: 28px;
    margin-bottom: 24px;
}

.gas-sidebar__widget h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--gas-green);
    color: var(--gas-blue);
}

.gas-sidebar__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gas-sidebar__list li {
    border-bottom: 1px solid #eef1f5;
}

.gas-sidebar__list li:last-child {
    border-bottom: none;
}

.gas-sidebar__list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    color: #444;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s, padding-left 0.2s;
}

.gas-sidebar__list a:hover,
.gas-sidebar__list a.active {
    color: var(--gas-blue);
    padding-left: 6px;
}

.gas-sidebar__list a i {
    font-size: 12px;
    color: var(--gas-green);
}

.gas-rc-post {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #eef1f5;
}

.gas-rc-post:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.gas-rc-post__thumb {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    overflow: hidden;
}

.gas-rc-post__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gas-rc-post__title {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    margin: 0 0 6px;
}

.gas-rc-post__title a {
    color: #333;
    text-decoration: none;
}

.gas-rc-post__title a:hover {
    color: var(--gas-blue);
}

.gas-rc-post__date {
    font-size: 12px;
    color: var(--gas-gray);
}

.gas-ref-item {
    background: #fff;
    border-left: 4px solid var(--gas-blue);
    padding: 22px 26px;
    margin-bottom: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.gas-badge {
    display: inline-block;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.gas-badge--done {
    background: var(--gas-green);
}

.gas-badge--ongoing {
    background: var(--gas-blue);
}

/* Projets rÃ©fÃ©rences â€” timeline par annÃ©e */
.gas-projects-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.gas-projects-stat {
    background: #fff;
    border: 1px solid #e6edf4;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(11, 31, 51, 0.05);
}

.gas-projects-stat strong {
    display: block;
    font-size: 34px;
    line-height: 1.1;
    font-weight: 700;
    color: var(--gas-blue);
    margin-bottom: 6px;
}

.gas-projects-stat span {
    font-size: 14px;
    color: var(--gas-gray);
    font-weight: 500;
}

.gas-projects-stat--accent strong {
    color: var(--gas-green);
}

.gas-projects-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 44px;
    position: sticky;
    top: 120px;
    z-index: 20;
    padding: 12px 0;
    background: linear-gradient(180deg, #f7f9fc 75%, rgba(247, 249, 252, 0));
}

.gas-projects-nav__link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #fff;
    border: 1px solid #dce5ee;
    color: var(--gas-blue);
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.gas-projects-nav__link small {
    font-size: 11px;
    font-weight: 600;
    background: #eef4fa;
    color: var(--gas-blue);
    padding: 2px 7px;
}

.gas-projects-nav__link:hover {
    background: var(--gas-blue);
    border-color: var(--gas-blue);
    color: #fff;
}

.gas-projects-nav__link:hover small {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.gas-projects-timeline {
    display: flex;
    flex-direction: column;
    gap: 52px;
}

/* Compense header sticky + bandeau des années au clic d'ancre */
.gas-projects-year {
    scroll-margin-top: 160px;
}

.gas-projects-year__head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
    padding-bottom: 16px;
    border-bottom: 2px solid #e3eaf2;
}

.gas-projects-year__badge {
    min-width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gas-blue) 0%, #1a4f8a 100%);
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.gas-projects-year__head h3 {
    margin: 0 0 4px;
    font-size: 24px;
    font-weight: 700;
    color: var(--gas-blue);
}

.gas-projects-year__head p {
    margin: 0;
    font-size: 14px;
    color: var(--gas-gray);
}

.gas-projects-year__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.gas-projects-card {
    background: #fff;
    border: 1px solid #e8eef5;
    border-left: 4px solid var(--gas-green);
    padding: 22px 22px 20px;
    box-shadow: 0 6px 22px rgba(11, 31, 51, 0.05);
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 100%;
}

.gas-projects-card__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.gas-projects-card__client {
    display: inline-block;
    padding: 5px 10px;
    background: #eef4fa;
    color: var(--gas-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.gas-projects-card__title {
    margin: 0;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 600;
    color: #1f2d3d;
}

.gas-projects-card__amount {
    margin: 0;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px dashed #e2e8f0;
    font-size: 15px;
    font-weight: 700;
    color: var(--gas-green);
}

@media (max-width: 991px) {
    .gas-projects-stats {
        grid-template-columns: 1fr;
    }

    .gas-projects-year__grid {
        grid-template-columns: 1fr;
    }

    .gas-projects-nav {
        top: 100px;
    }

    .gas-projects-year {
        scroll-margin-top: 140px;
    }
}

@media (max-width: 575px) {
    .gas-projects-nav__link {
        flex: 1 1 calc(50% - 10px);
        justify-content: center;
    }

    .gas-projects-year__head {
        flex-direction: column;
        text-align: center;
    }
}

.gas-team-card {
    background: #fff;
    border-top: 4px solid var(--gas-green);
    padding: 28px 22px;
    text-align: center;
    border: 1px solid #e8ecf0;
    border-top: 4px solid var(--gas-green);
}

.gas-team-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.gas-team-card-no-photo {
    background: #fff;
    border: 1px solid #e8ecf0;
    padding: 32px 24px;
    text-align: center;
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.gas-team-card-no-photo:hover {
    box-shadow: 0 10px 32px rgba(11, 83, 148, 0.1);
    transform: translateY(-3px);
}

.gas-team-card-no-photo__avatar {
    width: 72px;
    height: 72px;
    margin: 0 auto 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gas-blue) 0%, var(--gas-blue-dark) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.04em;
}

.gas-team-card-no-photo__name {
    font-size: 17px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #222;
    line-height: 1.35;
}

.gas-team-card-no-photo__role {
    margin: 0;
    color: var(--gas-green);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
}

.gas-detail-content {
    background: #fff;
    border: 1px solid #e8ecf0;
    padding: 0;
    overflow: hidden;
}

.gas-detail-content__img img {
    width: 100%;
    display: block;
}

.gas-detail-content__body {
    padding: 40px;
}

.gas-detail-content__body h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--gas-blue);
}

.gas-detail-content__body p,
.gas-detail-content__body li {
    line-height: 1.85;
    color: #444;
}

.gas-service-detail__description p + p {
    margin-top: 1.1em;
}

.gas-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 16px 0 24px;
    border-bottom: 1px solid #eef1f5;
    margin-bottom: 24px;
    font-size: 14px;
    color: var(--gas-gray);
}

.gas-detail-meta i {
    color: var(--gas-green);
    margin-right: 6px;
}

.gas-accordion .accordion-item {
    border: 1px solid #e8ecf0;
    border-radius: 0;
    margin-bottom: 10px;
}

.gas-accordion .accordion-button {
    font-family: var(--gas-font);
    font-weight: 600;
    color: var(--gas-blue);
    background: #fff;
    box-shadow: none;
    border-radius: 0;
}

.gas-accordion .accordion-button:not(.collapsed) {
    background: var(--gas-light);
    color: var(--gas-blue-dark);
}

.gas-map-wrap iframe {
    width: 100%;
    height: 420px;
    border: 0;
    display: block;
}

.gas-page__intro--map {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 28px;
}

.gas-page__intro--map p {
    color: var(--gas-gray);
    margin: 8px 0 0;
    font-size: 15px;
    line-height: 1.5;
}

.gas-map-note {
    font-size: 13px !important;
    font-style: italic;
    color: var(--gas-blue) !important;
    margin-top: 6px !important;
}

/* Partenaires techniques */
.gas-partners__head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 28px;
}

.gas-partners__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.gas-partners__item {
    flex: 0 0 150px;
    width: 150px;
    box-sizing: border-box;
    background: #fff;
    border: 1px solid #e8ecef;
    padding: 20px 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 110px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.gas-partners__item img {
    max-width: 100%;
    max-height: 64px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(15%);
    transition: filter 0.2s;
}

.gas-partners__item:hover {
    border-color: var(--gas-blue);
    box-shadow: 0 4px 16px rgba(11, 83, 148, 0.08);
}

.gas-partners__item:hover img {
    filter: none;
}

@media (max-width: 575px) {
    .gas-partners__grid {
        gap: 12px;
    }

    .gas-partners__item {
        flex: 0 0 calc(50% - 6px);
        width: calc(50% - 6px);
        min-height: 96px;
        padding: 16px 12px;
    }

    .gas-partners__item img {
        max-height: 52px;
    }
}

.gas-social-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.gas-social-row a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gas-blue);
    color: #fff;
    text-decoration: none;
    transition: background 0.2s;
}

.gas-social-row a:hover {
    background: var(--gas-green);
}

@media (max-width: 1024px) {
    .gas-page__grid-2,
    .gas-page__grid-aside {
        grid-template-columns: 1fr;
    }

    .gas-page__grid-3,
    .gas-contact-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .gas-team-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .gas-sidebar {
        position: static;
    }
}

@media (max-width: 767px) {
    .gas-page-hero {
        min-height: 220px;
    }

    .gas-page__grid-3,
    .gas-contact-cards {
        grid-template-columns: 1fr;
    }

    .gas-team-grid {
        grid-template-columns: 1fr;
    }

    .gas-form {
        padding: 28px 20px;
    }

    .gas-detail-content__body {
        padding: 28px 20px;
    }
}

/* Bouton retour en haut (styles manquants sans style.css du thÃ¨me) */
body.gasbf-site .scroll-top {
    width: 44px;
    height: 44px;
    position: fixed;
    bottom: -60px;
    right: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    z-index: 999;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    background: var(--gas-blue) !important;
    border: 1px solid var(--gas-blue) !important;
    opacity: 0;
    visibility: hidden;
    transition: bottom 0.35s ease, opacity 0.35s ease, visibility 0.35s ease;
    padding: 0;
}

body.gasbf-site .scroll-top::after {
    display: none;
}

body.gasbf-site .scroll-top.open {
    bottom: 24px;
    opacity: 1;
    visibility: visible;
}

body.gasbf-site .scroll-top:hover {
    background: var(--gas-green) !important;
    border-color: var(--gas-green) !important;
}
/* ==========================================================================
   Espace gestionnaire GAS BF â€” style Coris
   ========================================================================== */

body.gas-gestionnaire {
    background: var(--gas-light);
}

.gas-gestionnaire .gas-btn--sm {
    padding: 10px 16px;
    font-size: 13px;
}

/* â€”â€”â€” Topbar (style header Coris) â€”â€”â€” */
.gas-gest-topbar {
    background: #fff;
    border-bottom: 1px solid #e8ecf0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(11, 83, 148, 0.06);
}

.gas-gest-topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
    flex-wrap: wrap;
}

.gas-gest-topbar__brand {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: inherit;
}

.gas-gest-topbar__logo-box {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e8ecf0;
    background: #fff;
}

.gas-gest-topbar__logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

.gas-gest-topbar__brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.25;
}

.gas-gest-topbar__brand-text strong {
    font-size: 17px;
    font-weight: 700;
    color: var(--gas-blue);
}

.gas-gest-topbar__brand-text small {
    font-size: 12px;
    color: var(--gas-gray);
    font-weight: 500;
}

.gas-gest-topbar__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

/* â€”â€”â€” Fil d'Ariane + intro page â€”â€”â€” */
.gas-gest-crumb {
    margin: 0;
}

.gas-gest-intro {
    background: #fff;
    border-bottom: 1px solid #e8ecf0;
    padding: 32px 0 28px;
}

.gas-gest-intro__inner {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.gas-gest-intro__label {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gas-green);
}

.gas-gest-intro__title {
    margin: 0;
    text-align: left;
}

.gas-gest-intro__subtitle {
    margin: 10px 0 0;
    color: var(--gas-gray);
    font-size: 15px;
    line-height: 1.7;
    max-width: 640px;
}

/* â€”â€”â€” Layout principal â€”â€”â€” */
.gas-gest-page {
    padding: 40px 0 70px;
}

.gas-gest-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 32px;
    align-items: start;
}

.gas-gest-aside {
    position: sticky;
    top: 96px;
}

.gas-gest-main {
    min-width: 0;
}

/* â€”â€”â€” Sidebar (rÃ©utilise gas-sidebar__widget) â€”â€”â€” */
.gas-gest-user {
    margin-bottom: 20px;
}

.gas-gest-user__label {
    margin: 0 0 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gas-green);
}

.gas-gest-user__name {
    margin: 0 0 4px !important;
    font-size: 18px !important;
    font-weight: 700;
    color: var(--gas-blue);
    border: none !important;
    padding: 0 !important;
    padding-bottom: 0 !important;
}

.gas-gest-user__role {
    margin: 0;
    font-size: 13px;
    color: var(--gas-gray);
}

.gas-gest-menu a span i {
    margin-right: 10px;
    color: var(--gas-green);
    width: 16px;
}

.gas-gest-menu a.active span i {
    color: var(--gas-blue);
}

/* â€”â€”â€” Panneaux contenu â€”â€”â€” */
.gas-gest-panel {
    margin-bottom: 0;
}

.gas-form--gest {
    padding: 0;
    border: none;
    background: transparent;
}

.gas-form--gest .form-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
    font-size: 14px;
}

.gas-form--gest .form-control,
.gas-form--gest .form-select {
    border-radius: 0;
    border: 1px solid #dde3ea;
    padding: 12px 14px;
    font-family: var(--gas-font);
}

.gas-form--gest .form-control:focus,
.gas-form--gest .form-select:focus {
    border-color: var(--gas-blue);
    box-shadow: 0 0 0 2px rgba(11, 83, 148, 0.12);
}

.gas-gest-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid #eef1f5;
    flex-wrap: wrap;
}

/* â€”â€”â€” Dashboard â€”â€”â€” */
.gas-gest-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 28px;
}

.gas-gest-stat-card {
    background: #fff;
    border: 1px solid #e8ecf0;
    padding: 24px 20px;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.gas-gest-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(11, 83, 148, 0.1);
}

.gas-gest-stat-card i {
    font-size: 22px;
    color: var(--gas-blue);
    margin-bottom: 10px;
}

.gas-gest-stat-card strong {
    display: block;
    font-size: 2rem;
    line-height: 1.1;
    color: var(--gas-blue);
    margin-bottom: 4px;
}

.gas-gest-stat-card span {
    font-size: 13px;
    color: var(--gas-gray);
}

.gas-gest-stat-card--accent {
    border-top: 3px solid var(--gas-green);
}

.gas-gest-stat-card--accent i {
    color: var(--gas-green);
}

.gas-gest-stat-card--accent strong {
    color: var(--gas-green-dark);
}

.gas-gest-modules {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.gas-gest-module {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
    background: #fff;
    border: 1px solid #e8ecf0;
    padding: 24px 26px;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.gas-gest-module:hover {
    border-color: rgba(11, 83, 148, 0.25);
    box-shadow: 0 10px 32px rgba(11, 83, 148, 0.1);
    transform: translateY(-2px);
    color: inherit;
}

.gas-gest-module__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 83, 148, 0.08);
    color: var(--gas-blue);
    font-size: 22px;
}

.gas-gest-module__icon--green {
    background: rgba(20, 141, 63, 0.1);
    color: var(--gas-green);
}

.gas-gest-module h3 {
    margin: 0 0 6px;
    font-size: 18px;
    font-weight: 700;
    color: var(--gas-blue);
}

.gas-gest-module p {
    margin: 0;
    font-size: 14px;
    color: var(--gas-gray);
    line-height: 1.6;
}

.gas-gest-module__arrow {
    color: var(--gas-green);
    font-size: 14px;
}

/* â€”â€”â€” Tableaux â€”â€”â€” */
.gas-gest-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.gas-gest-table thead th {
    background: var(--gas-blue);
    color: #fff;
    font-weight: 600;
    padding: 13px 14px;
    text-align: left;
    white-space: nowrap;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.gas-gest-table tbody td {
    padding: 14px;
    border-bottom: 1px solid #eef1f5;
    vertical-align: middle;
    background: #fff;
}

.gas-gest-table tbody tr:hover td {
    background: #f8fafc;
}

.gas-gest-table__thumb {
    width: 68px;
    height: 50px;
    object-fit: cover;
    display: block;
    border: 1px solid #e8ecf0;
}

.gas-gest-table__thumb--empty {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gas-light);
    color: #bbb;
}

.gas-gest-tag {
    display: inline-block;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 600;
    background: var(--gas-light);
    color: #444;
}

.gas-gest-tag--green {
    background: rgba(20, 141, 63, 0.12);
    color: var(--gas-green-dark);
}

.gas-gest-tag--blue {
    background: rgba(11, 83, 148, 0.1);
    color: var(--gas-blue);
}

.gas-gest-tag--muted {
    background: #eceff1;
    color: #607d8b;
}

.gas-gest-btn-delete {
    background: #fff;
    border: 1px solid #e57373;
    color: #c62828;
}

.gas-gest-btn-delete:hover {
    background: #c62828;
    border-color: #c62828;
    color: #fff;
}

.gas-gest-alert {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.gas-gest-alert--error {
    border-left-color: #c62828;
    background: #ffebee;
    color: #b71c1c;
}

.gas-gest-empty {
    text-align: center;
    padding: 50px 20px;
    color: var(--gas-gray);
}

.gas-gest-empty i {
    font-size: 40px;
    color: var(--gas-blue);
    margin-bottom: 14px;
}

.gas-gest-empty--inline {
    padding: 28px 14px;
    text-align: center;
}

.gas-gest-pagination {
    margin-top: 22px;
}

.gas-gest-preview-img {
    max-width: 280px;
    max-height: 180px;
    object-fit: cover;
    border: 1px solid #e8ecf0;
}

.gas-gest-filters .form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--gas-gray);
    margin-bottom: 6px;
}

/* â€”â€”â€” Connexion (split Coris) â€”â€”â€” */
.gas-gest-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 85px);
}

.gas-gest-login__brand {
    background: var(--gas-blue);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
}

.gas-gest-login__brand-inner {
    max-width: 420px;
}

.gas-gest-login__tagline {
    margin: 0 0 12px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #fff;
    opacity: 0.9;
}

.gas-gest-login__brand h1 {
    margin: 0 0 18px;
    font-size: clamp(1.75rem, 3.5vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.gas-gest-login__text {
    margin: 0 0 32px;
    line-height: 1.8;
    font-size: 16px;
    color: #fff;
    opacity: 0.95;
}

.gas-gest-login__back-btn {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-weight: 700;
}

.gas-gest-login__back-btn:hover {
    background: #fff;
    border-color: #fff;
    color: var(--gas-blue);
}

.gas-gest-login__form-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 32px;
    background: var(--gas-light);
}

.gas-gest-login__form-card {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border: 1px solid #e8ecf0;
    padding: 40px 36px;
    box-shadow: 0 8px 32px rgba(11, 83, 148, 0.08);
}

.gas-gest-login__form-card h2 {
    margin: 0 0 8px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gas-blue);
}

.gas-gest-login__hint {
    margin: 0 0 24px;
    color: var(--gas-gray);
    font-size: 14px;
    line-height: 1.6;
}

/* â€”â€”â€” Responsive â€”â€”â€” */
@media (max-width: 991px) {
    .gas-gest-layout {
        grid-template-columns: 1fr;
    }

    .gas-gest-aside {
        position: static;
    }

    .gas-gest-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .gas-gest-login {
        grid-template-columns: 1fr;
    }

    .gas-gest-login__brand {
        padding: 36px 24px;
    }

    .gas-gest-login__form-wrap {
        padding: 32px 20px 48px;
    }
}

.gas-gest-qr__grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 36px;
    align-items: center;
}

.gas-gest-qr__preview {
    background: #fff;
    border: 1px solid #e8ecf0;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gas-gest-qr__image {
    display: block;
    width: 280px;
    height: 280px;
    max-width: 100%;
}

.gas-gest-qr__label {
    margin: 0 0 6px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--gas-green);
}

.gas-gest-qr__url {
    margin: 0 0 16px;
    font-size: 18px;
    font-weight: 700;
}

.gas-gest-qr__url a {
    color: var(--gas-blue);
    text-decoration: none;
}

.gas-gest-qr__url a:hover {
    color: var(--gas-green);
}

.gas-gest-qr__text {
    margin: 0 0 24px;
    color: var(--gas-gray);
    line-height: 1.7;
    font-size: 15px;
}

.gas-gest-qr__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

@media (max-width: 767px) {
    .gas-gest-qr__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .gas-gest-qr__actions {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .gas-gest-stats {
        grid-template-columns: 1fr;
    }

    .gas-gest-module {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .gas-gest-module__arrow {
        display: none;
    }

    .gas-gest-intro__inner {
        align-items: flex-start;
    }
}
