﻿/* ============================================
   Genç Mühendislik Ana Sayfa — Mockup V3
   Standalone stylesheet (scoped .page-home)
   Navy #1a3352 · Gold #c5a059
   ============================================ */

/* ---- Homepage section reset (no Site.css legacy) ---- */
body.page-home main .page-home,
body.page-home main .page-home *,
body.page-home main .page-home *::before,
body.page-home main .page-home *::after {
    box-sizing: border-box;
}

body.page-home main .page-home section {
    margin: 0;
    padding-left: 0;
    padding-right: 0;
}

body.page-home main .page-home h1,
body.page-home main .page-home h2,
body.page-home main .page-home h3,
body.page-home main .page-home h4,
body.page-home main .page-home h5,
body.page-home main .page-home h6,
body.page-home main .page-home p {
    margin-top: 0;
}

body.page-home main .page-home img {
    max-width: 100%;
    height: auto;
    display: block;
}

body.page-home main .page-home .container {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1rem, 3vw, 1.5rem);
    padding-right: clamp(1rem, 3vw, 1.5rem);
}

/* ---- Body-level header & footer (mockup) ---- */
body.page-home {
    background: #eef1f6;
}

body.page-home .site-header.hero-mode {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: transparent;
    box-shadow: none;
}

body.page-home .site-header.hero-mode.scrolled {
    background: #1a3352;
    border-bottom-color: #0b1828;
}

body.page-home .site-header.hero-mode .brand-logo--default {
    display: block;
}

body.page-home .site-header.hero-mode .brand-logo--color {
    display: none;
}

body.page-home .site-footer {
    background: linear-gradient(180deg, #1a3352 0%, #0b1828 100%);
    border-top: 1px solid rgba(197, 160, 89, 0.18);
}

body.page-home .site-footer .footer-title {
    color: #c5a059;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

body.page-home .site-footer .footer-links a:hover,
body.page-home .site-footer .footer-contact a:hover {
    color: #c5a059;
}

body.page-home .site-footer .footer-social a:hover {
    background: rgba(197, 160, 89, 0.22);
    color: #c5a059;
}

:root {
    --gold: #c5a059;
    --gold-soft: rgba(197, 160, 89, 0.35);
    --home-dark: #0b1828;
    --home-dark-mid: #1a3352;
    --home-light: #eef1f6;
    --home-border: rgba(143, 168, 196, 0.22);
}

/* ---- 1. Hero Banner Slider (referans mockup) ---- */
.hero-premium {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: var(--home-dark);
    isolation: isolate;
}

.hero-premium__canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-premium__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), visibility 1.2s;
    z-index: 1;
}

.hero-premium__slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-premium__slide-bg {
    position: absolute;
    inset: -5%;
    background-size: cover;
    background-position: center right;
    transform: scale(1.1);
    transition: transform 10s cubic-bezier(0.25, 0.1, 0.25, 1);
    will-change: transform;
}

.hero-premium__slide.active .hero-premium__slide-bg {
    transform: scale(1);
}

.hero-premium__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(6, 11, 18, 0.88) 0%, rgba(6, 11, 18, 0.62) 38%, rgba(6, 11, 18, 0.28) 62%, rgba(6, 11, 18, 0.45) 100%),
        linear-gradient(180deg, rgba(6, 11, 18, 0.35) 0%, transparent 42%, rgba(6, 11, 18, 0.72) 100%);
}

/* Sol metin alanı */
.hero-premium__inner {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    align-items: center;
    padding: clamp(6.5rem, 14vh, 9rem) 0 clamp(13rem, 22vh, 16rem);
}

.hero-premium__copy {
    max-width: 720px;
}

.hero-premium__reveal {
    opacity: 0;
    transform: translateY(22px);
    animation: heroReveal 0.95s cubic-bezier(0.22, 1, 0.36, 1) var(--hero-delay, 0.3s) forwards;
}

.hero-premium__epc-reveal {
    opacity: 1;
    transform: none;
}

@keyframes heroReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroEpcReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-premium__title {
    margin: 0 0 1.35rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.hero-premium__title-line {
    display: block;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(1.85rem, 4.2vw, 3.65rem);
    line-height: 1.14;
    letter-spacing: 0.01em;
    color: var(--white);
}

@media (min-width: 768px) {
    .hero-premium__title-line {
        white-space: nowrap;
    }
}

.hero-premium__hl {
    color: var(--gold);
}

.hero-premium__title-line--white {
    color: var(--white);
}

.hero-premium__title-line--gold {
    color: var(--gold);
}

.hero-premium__lead {
    font-size: clamp(0.88rem, 1.35vw, 1rem);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.72);
    max-width: 560px;
    margin: 0 0 1.75rem;
}

.hero-premium__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
}

.hero-premium__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    padding: 0.8rem 1.75rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.35s ease;
}

.hero-premium__cta--primary {
    color: var(--home-dark);
    border: 1px solid var(--gold);
    background: var(--gold);
}

.hero-premium__cta--primary:hover {
    color: var(--white);
    background: transparent;
}

.hero-premium__cta--secondary {
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: transparent;
}

.hero-premium__cta--secondary:hover {
    color: var(--home-dark);
    background: var(--white);
    border-color: var(--white);
}

.hero-premium__scroll {
    position: absolute;
    left: 50%;
    bottom: calc(clamp(9.5rem, 16vh, 11.5rem));
    z-index: 15;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    text-decoration: none;
    opacity: 0;
    animation: heroScrollFade 0.6s ease 1.4s forwards, heroScrollPulse 2.4s ease-in-out 2s infinite;
}

@keyframes heroScrollFade {
    to { opacity: 1; }
}

.hero-premium__scroll-icon {
    width: 22px;
    height: 34px;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    border-radius: 12px;
    position: relative;
}

.hero-premium__scroll-icon::after {
    content: "";
    position: absolute;
    top: 7px;
    left: 50%;
    width: 3px;
    height: 7px;
    margin-left: -1.5px;
    border-radius: 2px;
    background: var(--gold);
    animation: heroScrollDot 2.4s ease-in-out infinite;
}

@keyframes heroScrollDot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(8px); opacity: 0.35; }
}

@keyframes heroScrollPulse {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(4px); }
}

/* Alt EPC şeridi — büyük referans stil */
.hero-premium__epc-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
    background: linear-gradient(180deg, rgba(8, 14, 24, 0.55) 0%, rgba(6, 10, 18, 0.92) 100%);
    border-top: 1px solid rgba(197, 160, 89, 0.22);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.hero-premium__epc-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1600px;
    margin: 0 auto;
    padding: clamp(1.35rem, 2.8vh, 2rem) clamp(1.25rem, 3vw, 3rem);
}

.hero-premium__epc-bar-inner {
    display: grid;
    grid-template-columns: minmax(88px, 1fr) auto minmax(88px, 1fr) auto minmax(88px, 1fr) auto minmax(88px, 1fr) auto minmax(88px, 1fr) auto minmax(88px, 1fr);
    align-items: end;
    gap: 0.35rem 0.5rem;
    width: 100%;
}

.hero-premium__epc-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.85rem;
    min-width: 0;
    text-align: center;
    padding: 0 0.15rem;
    transition: transform 0.35s ease;
}

.hero-premium__epc-item:hover {
    transform: translateY(-3px);
}

.hero-premium__epc-icon-ring {
    width: clamp(52px, 5vw, 64px);
    height: clamp(52px, 5vw, 64px);
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    background: rgba(197, 160, 89, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(1.35rem, 2vw, 1.65rem);
    color: var(--gold);
    line-height: 1;
    box-shadow: 0 0 0 4px rgba(197, 160, 89, 0.06);
    transition: background 0.35s ease, box-shadow 0.35s ease;
}

.hero-premium__epc-item:hover .hero-premium__epc-icon-ring {
    background: rgba(197, 160, 89, 0.14);
    box-shadow: 0 0 0 6px rgba(197, 160, 89, 0.1);
}

.hero-premium__epc-label {
    font-family: var(--font-heading);
    font-size: clamp(0.62rem, 0.85vw, 0.78rem);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.35;
    max-width: 130px;
}

.hero-premium__epc-arrow {
    flex-shrink: 0;
    color: var(--gold);
    font-size: 1rem;
    opacity: 0.9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 2.4rem;
    margin: 0;
}

.hero-premium__epc-arrow i {
    font-size: 1.1rem;
}

/* Slider kontrolleri — EPC bar sağında */
.hero-premium__slider-ui {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-shrink: 0;
    padding-left: 1.25rem;
    border-left: 1px solid rgba(197, 160, 89, 0.2);
}

.hero-premium__dots {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.hero-premium__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.hero-premium__dot.active {
    background: var(--gold);
    transform: scale(1.25);
    box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.25);
}

.hero-premium__arrow {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all var(--transition);
}

.hero-premium__arrow:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(197, 160, 89, 0.08);
}

.hero-premium__progress {
    width: 72px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    overflow: hidden;
    border-radius: 2px;
}

.hero-premium__progress-fill {
    height: 100%;
    width: 0%;
    background: var(--gold);
    border-radius: 2px;
}

.hero-premium__progress-fill.is-animating {
    transition: width linear;
}

.hero-premium__counter {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    letter-spacing: 0.14em;
    color: rgba(255, 255, 255, 0.55);
    min-width: 4.5rem;
    text-align: center;
}

@media (min-width: 992px) {
    .hero-premium__epc-bar-inner {
        max-width: 1320px;
        margin: 0 auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-premium__slide,
    .hero-premium__slide-bg,
    .hero-premium__reveal,
    .hero-premium__epc-reveal,
    .hero-premium__scroll {
        animation: none !important;
        transition: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}

.btn-hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.65rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: transparent;
    transition: all var(--transition);
}

.btn-hero-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ---- Homepage scroll fade ---- */
.page-home .home-fade {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    transition-delay: var(--home-fade-delay, 0s);
    will-change: opacity, transform;
}

.page-home .home-fade--in {
    transform: none;
}

.page-home .home-fade.is-visible {
    opacity: 1;
    transform: none;
}

@media (prefers-reduced-motion: reduce) {
    .page-home .home-fade {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* ---- 2. Bir Bakışta — Premium kurumsal ölçek bandı ---- */
.home-overview {
    position: relative;
    padding: clamp(4.5rem, 8vw, 6rem) 0 clamp(4rem, 7vw, 5.5rem);
    background: linear-gradient(180deg, #152a45 0%, var(--home-dark) 48%, #14263d 100%);
    color: var(--white);
    overflow: hidden;
}

.home-overview__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-overview__bg-map {
    display: none;
}

.home-overview__bg-rings {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.home-overview__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.02);
    pointer-events: none;
    animation: overviewRingDrift 14s ease-in-out infinite;
}

.home-overview__ring--1 {
    width: clamp(220px, 22vw, 360px);
    height: clamp(220px, 22vw, 360px);
    left: 2%;
    top: 38%;
    animation-delay: 0s;
}

.home-overview__ring--2 {
    width: clamp(200px, 18vw, 300px);
    height: clamp(200px, 18vw, 300px);
    left: 18%;
    top: 22%;
    animation-delay: -2.5s;
    animation-duration: 16s;
}

.home-overview__ring--3 {
    width: clamp(240px, 20vw, 340px);
    height: clamp(240px, 20vw, 340px);
    left: 36%;
    top: 42%;
    animation-delay: -5s;
    animation-duration: 18s;
}

.home-overview__ring--4 {
    width: clamp(210px, 19vw, 320px);
    height: clamp(210px, 19vw, 320px);
    left: 54%;
    top: 18%;
    animation-delay: -7s;
    animation-duration: 15s;
}

.home-overview__ring--5 {
    width: clamp(230px, 21vw, 350px);
    height: clamp(230px, 21vw, 350px);
    left: 70%;
    top: 40%;
    animation-delay: -9s;
    animation-duration: 17s;
}

.home-overview__ring--6 {
    width: clamp(190px, 16vw, 280px);
    height: clamp(190px, 16vw, 280px);
    left: 84%;
    top: 24%;
    animation-delay: -11s;
    animation-duration: 19s;
}

.home-overview__ring--1::after,
.home-overview__ring--3::after,
.home-overview__ring--5::after {
    content: '';
    position: absolute;
    inset: 14%;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.14);
    animation: overviewRingSpin 28s linear infinite;
}

@keyframes overviewRingDrift {
    0%, 100% {
        transform: translate3d(0, 0, 0) scale(1);
        opacity: 0.28;
    }

    50% {
        transform: translate3d(0, -14px, 0) scale(1.05);
        opacity: 0.48;
    }
}

@keyframes overviewRingSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-overview__ring,
    .home-overview__ring::after {
        animation: none !important;
    }
}

.home-overview__bg-grid {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, #000 20%, transparent 75%);
}

.home-overview__inner {
    position: relative;
    z-index: 2;
}

.home-overview__header {
    text-align: center;
    max-width: 820px;
    margin: 0 auto clamp(2.75rem, 5vw, 3.75rem);
}

.home-overview__title-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1rem, 2.5vw, 2rem);
    margin-bottom: 1.15rem;
}

.home-overview__title-rule {
    flex: 1;
    max-width: 180px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.home-overview__title {
    font-family: var(--font-heading);
    font-size: clamp(1.35rem, 2.8vw, 2rem);
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0;
    white-space: nowrap;
}

.home-overview__lead {
    margin: 0 auto;
    max-width: 680px;
    font-size: clamp(0.88rem, 1.2vw, 0.98rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.72);
}

.home-overview__band {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: clamp(0.75rem, 1.5vw, 1.25rem);
    align-items: start;
}

.home-overview__stat {
    text-align: center;
    padding: 0 0.35rem;
}

.home-overview__stat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 1.65rem;
    line-height: 1;
}

.home-overview__stat-range {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    font-weight: 500;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 0.35rem;
}

.home-overview__stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 1.65vw, 1.35rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gold);
    line-height: 1.25;
    margin-bottom: 0.55rem;
}

.home-overview__stat--heritage .home-overview__stat-value {
    font-size: clamp(1.25rem, 2vw, 1.65rem);
}

.home-overview__stat-heritage {
    display: block;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(197, 160, 89, 0.85);
    margin-bottom: 0.45rem;
}

.home-overview__stat-label {
    margin: 0;
    font-size: clamp(0.68rem, 0.95vw, 0.78rem);
    line-height: 1.5;
    letter-spacing: 0.04em;
    color: rgba(255, 255, 255, 0.62);
}

.home-overview__foot {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.65rem;
    margin-top: clamp(2.5rem, 4.5vw, 3.25rem);
    text-align: center;
}

.home-overview__foot-icon {
    color: var(--gold);
    font-size: 1.35rem;
    line-height: 1;
    opacity: 0.9;
}

.home-overview__foot-text {
    margin: 0;
    max-width: 520px;
    font-size: clamp(0.82rem, 1.1vw, 0.92rem);
    letter-spacing: 0.03em;
    color: rgba(255, 255, 255, 0.55);
}

/* ---- 3. EPC Section ---- */
.home-epc {
    padding: 5rem 0;
    background: linear-gradient(160deg, var(--home-dark) 0%, var(--home-dark-mid) 100%);
    color: var(--white);
}

.home-epc__header {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 3rem;
}

.home-epc__badge {
    font-size: 0.72rem;
    letter-spacing: var(--font-label-spacing);
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 0.75rem;
}

.home-epc__title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3vw, 2.35rem);
    text-transform: uppercase;
    letter-spacing: var(--font-heading-spacing);
    margin-bottom: 0.85rem;
}

.home-epc__lead {
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

.home-epc__pipeline {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    position: relative;
}

.home-epc__pipeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-soft), transparent);
    z-index: 0;
}

.home-epc__step {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 0.5rem;
}

.home-epc__step-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    border: 1px solid var(--home-border);
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--gold);
}

.home-epc__step-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.45;
    margin: 0;
}

/* ---- 4. Faaliyet Alanları — mockup mozaik grid ---- */
.home-sectors {
    position: relative;
    padding: clamp(4.5rem, 8vw, 6rem) 0;
    background: #0c121c;
    color: var(--white);
    overflow: hidden;
}

.home-sectors__bg-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: min(52vw, 680px);
    height: 320px;
    opacity: 0.12;
    background: right top / contain no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 300'%3E%3Cg fill='none' stroke='%23c5a059' stroke-width='0.8'%3E%3Cpath d='M40 260V40h320v220'/%3E%3Cpath d='M40 120h320M120 40v220M200 40v220M280 40v220'/%3E%3Cpath d='M40 200h320M40 80h320'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.home-sectors__header {
    text-align: center;
    max-width: 780px;
    margin: 0 auto clamp(2.75rem, 5vw, 3.75rem);
    position: relative;
    z-index: 2;
}

.home-sectors__eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.home-sectors__title {
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 1rem;
}

.home-sectors__divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.15rem;
}

.home-sectors__divider span {
    display: block;
    width: min(420px, 70%);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.55), transparent);
    position: relative;
}

.home-sectors__divider span::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7px;
    height: 7px;
    margin: -3.5px 0 0 -3.5px;
    background: var(--gold);
    transform: rotate(45deg);
}

.home-sectors__intro {
    margin: 0;
    font-size: clamp(0.88rem, 1.15vw, 0.98rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.58);
}

.home-sectors__mosaic {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.home-sectors__featured {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.home-sectors__compact {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.home-sector-card {
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: #111822;
    border: 1px solid rgba(197, 160, 89, 0.14);
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.home-sector-card:hover {
    transform: translateY(-3px);
    border-color: rgba(197, 160, 89, 0.38);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
}

.home-sector-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.65s ease;
}

.home-sector-card:hover .home-sector-card__bg {
    transform: scale(1.05);
}

.home-sector-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 12, 20, 0.25) 0%, rgba(8, 12, 20, 0.55) 45%, rgba(8, 12, 20, 0.92) 100%);
}

.home-sector-card__body {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.home-sector-card__num {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 600;
    line-height: 1;
    color: var(--gold);
    margin-bottom: 0.65rem;
}

.home-sector-card__title {
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 0.65rem;
    line-height: 1.25;
}

.home-sector-card__desc {
    margin: 0;
    font-size: clamp(0.72rem, 0.95vw, 0.82rem);
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.68);
}

.home-sector-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: auto;
    padding-top: 1rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.home-sector-card__cta i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.75rem;
    height: 1.75rem;
    border: 1px solid rgba(197, 160, 89, 0.55);
    border-radius: 50%;
    font-size: 0.85rem;
}

.home-sector-card--featured {
    min-height: 320px;
}

.home-sector-card--featured .home-sector-card__body {
    padding: clamp(1.35rem, 2.5vw, 2rem);
    min-height: 320px;
}

.home-sector-card--featured .home-sector-card__desc {
    max-width: 92%;
}

.home-sector-card__epc {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    padding: 0.85rem 1rem 1.1rem;
    border-top: 1px solid rgba(197, 160, 89, 0.16);
    background: rgba(6, 10, 18, 0.55);
}

.home-sector-card__epc-item {
    color: var(--gold);
    font-size: 0.95rem;
    opacity: 0.85;
}

.home-sector-card__epc-arrow {
    color: rgba(197, 160, 89, 0.65);
    font-size: 0.65rem;
}

.home-sector-card--compact {
    min-height: 380px;
}

.home-sector-card--compact .home-sector-card__body {
    padding: 1.15rem 1rem 1rem;
    min-height: 380px;
}

.home-sector-card--compact .home-sector-card__title {
    font-size: clamp(0.78rem, 1vw, 0.88rem);
}

.home-sector-card--compact .home-sector-card__desc {
    flex: 1;
}

.home-sector-card__foot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.85rem;
}

.home-sector-card__cta--text {
    margin-top: 0;
    padding-top: 0;
}

.home-sector-card__icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(197, 160, 89, 0.45);
    border-radius: 50%;
    color: var(--gold);
    font-size: 0.95rem;
}

/* Shared section headers */
.home-section-head {
    margin-bottom: 2.5rem;
}

.home-section-head--split {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1rem;
}

.home-section-head__badge {
    font-size: 0.72rem;
    letter-spacing: var(--font-label-spacing);
    text-transform: uppercase;
    color: var(--primary-light);
    display: block;
    margin-bottom: 0.5rem;
}

.home-section-head__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
    text-transform: uppercase;
    color: var(--primary-dark);
    margin: 0 0 0.5rem;
}

.home-section-head__lead {
    color: var(--gray-600);
    max-width: 620px;
    margin: 0;
}

.home-section-head__link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--primary);
    text-decoration: none;
}

.home-section-head__link:hover {
    color: var(--gold);
}

/* ---- 5. Devam Eden Projeler — premium grid ---- */
.home-active {
    position: relative;
    padding: clamp(4.5rem, 8vw, 6rem) 0;
    background: linear-gradient(180deg, #0f1f33 0%, #0b1828 55%, #0a1522 100%);
    color: var(--white);
    overflow: hidden;
}

.home-active__bg {
    position: absolute;
    inset: 0;
    opacity: 0.35;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 15%, transparent 75%);
    pointer-events: none;
}

.home-active__inner {
    position: relative;
    z-index: 2;
}

.home-active__header {
    max-width: 720px;
    margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
}

.home-active__eyebrow {
    display: block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.home-active__title {
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 3.2vw, 2.35rem);
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 1rem;
    line-height: 1.15;
}

.home-active__lead {
    margin: 0 0 1.5rem;
    font-size: clamp(0.88rem, 1.15vw, 0.98rem);
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.68);
}

.home-active__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.78rem 1.45rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--home-dark);
    background: var(--gold);
    border: 1px solid var(--gold);
    transition: all 0.35s ease;
}

.home-active__cta:hover {
    color: var(--white);
    background: transparent;
}

.home-active__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.35rem);
}

.home-active-card {
    position: relative;
    min-height: 380px;
    border: 1px solid rgba(197, 160, 89, 0.18);
    background: rgba(8, 14, 24, 0.65);
    overflow: hidden;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.home-active-card:hover {
    transform: translateY(-4px);
    border-color: rgba(197, 160, 89, 0.42);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35);
}

.home-active-card__link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.home-active-card__media {
    position: absolute;
    inset: 0;
}

.home-active-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.home-active-card:hover .home-active-card__media img {
    transform: scale(1.06);
}

.home-active-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 11, 18, 0.15) 0%, rgba(6, 11, 18, 0.55) 45%, rgba(6, 11, 18, 0.94) 100%);
}

.home-active-card__content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 380px;
    padding: 1.35rem 1.25rem 1.25rem;
}

.home-active-card__sector {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.45rem;
}

.home-active-card__title {
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 1.35vw, 1.1rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 0.4rem;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-active-card__location {
    margin: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.62);
}

.home-active-card__location i {
    color: var(--gold);
    margin-right: 0.2rem;
}

.home-active-card__progress-wrap {
    margin-top: 1rem;
    padding-top: 0.85rem;
    border-top: 1px solid rgba(197, 160, 89, 0.2);
}

.home-active-card__progress {
    height: 3px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    overflow: hidden;
}

.home-active-card__progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #a88445, var(--gold));
    border-radius: 2px;
    transition: width 0.8s ease;
}

.home-active-card__progress-label {
    display: block;
    margin-top: 0.4rem;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(197, 160, 89, 0.9);
}

/* ---- 6. Portfolio — customer mockup ---- */
.home-portfolio {
    padding: clamp(4.5rem, 8vw, 6rem) 0;
    background: #1a3352;
    color: var(--white);
}

.home-portfolio__head {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 2rem 3rem;
    align-items: stretch;
    margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.home-portfolio__intro {
    max-width: none;
}

.home-portfolio__badge {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.9rem;
}

.home-portfolio__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.6vw, 3rem);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 1.1rem;
    line-height: 1.06;
    max-width: none;
    text-wrap: balance;
}

.home-portfolio__lead {
    margin: 0;
    max-width: 36rem;
    font-size: 0.94rem;
    line-height: 1.72;
    color: rgba(255, 255, 255, 0.74);
}

.home-portfolio__controls {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    gap: 1.5rem;
    min-height: 100%;
}

.home-portfolio__nav {
    display: flex;
    gap: 0.65rem;
    flex-shrink: 0;
}

.home-portfolio__nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.65);
    background: transparent;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-portfolio__nav-btn:hover {
    background: var(--gold);
    color: #1a3352;
}

.home-portfolio__filters {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    align-items: center;
    gap: 0.45rem 0.55rem;
    max-width: 100%;
}

.home-portfolio__filter {
    background: none;
    border: 1px solid transparent;
    padding: 0.42rem 0.8rem;
    font-size: 0.66rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.home-portfolio__filter:hover {
    color: var(--white);
}

.home-portfolio__filter.active {
    color: var(--gold);
    border-color: var(--gold);
}

.home-portfolio__board {
    margin-bottom: 0;
}

.home-portfolio__showcase {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 1rem;
    align-items: stretch;
}

.home-portfolio__aside {
    position: relative;
    min-height: clamp(520px, 42vw, 640px);
}

.home-portfolio__page {
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: repeat(2, auto);
    gap: 1rem;
}

.home-portfolio__page.is-active {
    display: grid;
}

.home-project-card {
    position: relative;
    overflow: hidden;
    background: #12243a;
}

.home-project-card.is-hidden {
    display: none !important;
}

.home-project-card__link {
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.home-project-card__visual {
    position: relative;
    overflow: hidden;
    background: #0a1522;
}

.home-project-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s ease;
}

.home-project-card:hover .home-project-card__visual img {
    transform: scale(1.05);
}

.home-project-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6, 11, 18, 0.08) 0%, rgba(6, 11, 18, 0.42) 42%, rgba(6, 11, 18, 0.94) 100%);
}

.home-project-card__flag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    padding: 0.38rem 0.72rem;
    font-size: 0.62rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(11, 24, 40, 0.82);
    border: 1px solid rgba(197, 160, 89, 0.35);
}

.home-project-card__hero-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: clamp(1.25rem, 2.5vw, 1.75rem);
}

.home-project-card__panel {
    background: #1a3352;
    padding: 1rem 1.1rem 1.15rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.home-project-card__sector {
    display: block;
    font-size: 0.64rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.4rem;
}

.home-project-card__title {
    font-family: var(--font-heading);
    font-size: clamp(0.9rem, 1.25vw, 1.05rem);
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 0.35rem;
    line-height: 1.28;
}

.home-project-card__subtitle {
    margin: 0 0 1rem;
    font-size: 0.84rem;
    color: rgba(255, 255, 255, 0.78);
}

.home-project-card__location {
    margin: 0 0 0.5rem;
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.62);
}

.home-project-card__location i {
    color: var(--gold);
    margin-right: 0.15rem;
}

.home-project-card__facts {
    display: grid;
    gap: 0.75rem 1rem;
    margin: 1rem 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.home-project-card__facts--row {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.home-project-card__fact {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.home-project-card__fact-label {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
}

.home-project-card__fact-label i {
    color: var(--gold);
    margin-right: 0.15rem;
}

.home-project-card__fact strong {
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.9);
}

.home-project-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

.home-project-card__cta--inline {
    margin-top: 0.75rem;
}

.home-project-card--hero {
    min-height: clamp(520px, 42vw, 640px);
    border-radius: 10px;
}

.home-project-card--hero .home-project-card__link {
    position: relative;
    min-height: clamp(520px, 42vw, 640px);
    display: block;
}

.home-project-card--hero .home-project-card__visual {
    position: absolute;
    inset: 0;
}

.home-project-card--hero .home-project-card__title {
    font-size: clamp(1.15rem, 2vw, 1.65rem);
    max-width: 95%;
}

.home-project-card--tile {
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.home-project-card--tile .home-project-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.home-project-card--tile .home-project-card__visual {
    aspect-ratio: 16 / 10;
    flex-shrink: 0;
}

.home-project-card--tile .home-project-card__title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-portfolio__footer {
    margin-top: clamp(2rem, 4vw, 2.75rem);
    text-align: center;
}

.home-portfolio__all-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    min-width: min(100%, 460px);
    padding: 0.95rem 1.75rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gold);
    border: 1px solid rgba(197, 160, 89, 0.55);
    background: transparent;
    transition: all 0.35s ease;
}

.home-portfolio__all-btn:hover {
    color: #1a3352;
    background: var(--gold);
    border-color: var(--gold);
}

/* ---- 7. Savunma & Havacılık spotlight ---- */
.home-defense {
    position: relative;
    padding: clamp(5rem, 9vw, 6.5rem) 0;
    background: var(--home-dark);
    color: var(--white);
    overflow: hidden;
}

.home-defense__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.32;
}

.home-defense__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(6, 11, 18, 0.94) 0%, rgba(6, 11, 18, 0.78) 52%, rgba(6, 11, 18, 0.62) 100%);
}

.home-defense__inner {
    position: relative;
    z-index: 1;
    max-width: 620px;
}

.home-defense__badge {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 1rem;
}

.home-defense__title {
    font-family: var(--font-heading);
    font-size: clamp(1.85rem, 3.8vw, 2.85rem);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.1;
    margin: 0 0 1.15rem;
}

.home-defense__title span {
    display: block;
}

.home-defense__lead {
    color: rgba(255, 255, 255, 0.76);
    margin: 0 0 1.75rem;
    line-height: 1.8;
    font-size: clamp(0.9rem, 1.15vw, 1rem);
    max-width: 560px;
}

.home-defense__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.82rem 1.65rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--home-dark);
    background: var(--gold);
    border: 1px solid var(--gold);
    transition: all 0.35s ease;
}

.home-defense__cta:hover {
    color: var(--white);
    background: transparent;
}

/* ---- 8. Why GM ---- */
.home-why--premium {
    position: relative;
    padding: 5.5rem 0 4rem;
    background: var(--home-dark);
    color: var(--white);
    overflow: hidden;
}

.home-why__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center top;
    opacity: 0.22;
}

.home-why__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(8, 16, 28, 0.92) 0%, rgba(12, 24, 40, 0.78) 45%, rgba(8, 16, 28, 0.88) 100%);
}

.home-why__layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) 1.4fr;
    gap: 2rem;
    align-items: start;
}

.home-why__eyebrow {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.home-why__headline {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    text-transform: uppercase;
    margin: 0 0 1rem;
    line-height: 1.05;
}

.home-why__kicker {
    font-family: var(--font-heading);
    font-size: clamp(1rem, 1.8vw, 1.35rem);
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 1rem;
    line-height: 1.35;
}

.home-why__lead {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.75;
    max-width: 420px;
    margin: 0 0 1.75rem;
}

.home-why__stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.home-why__stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.65rem;
    color: var(--gold);
    line-height: 1;
}

.home-why__stat-label {
    display: block;
    margin-top: 0.35rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.home-why__features {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.home-why__feature {
    position: relative;
    min-height: 170px;
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 4px;
    overflow: hidden;
}

.home-why__feature--wide {
    grid-column: span 2;
    min-height: 150px;
}

.home-why__feature-bg,
.home-why__feature-overlay {
    position: absolute;
    inset: 0;
}

.home-why__feature-bg {
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    transition: transform 0.6s ease;
}

.home-why__feature-overlay {
    background: linear-gradient(180deg, rgba(8, 16, 28, 0.35) 0%, rgba(8, 16, 28, 0.88) 100%);
}

.home-why__feature:hover .home-why__feature-bg {
    transform: scale(1.06);
}

.home-why__feature-body {
    position: relative;
    z-index: 2;
    padding: 1.25rem 1.1rem;
}

.home-why__feature-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--gold);
    margin-bottom: 0.35rem;
}

.home-why__feature-title {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    text-transform: uppercase;
    margin: 0 0 0.45rem;
    line-height: 1.35;
}

.home-why__feature-text {
    font-size: 0.76rem;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
    line-height: 1.55;
    max-width: 95%;
}

.home-why__footer {
    margin-top: 2rem;
    text-align: center;
}

.home-why__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gold);
    border-bottom: 1px solid rgba(197, 160, 89, 0.45);
    padding-bottom: 0.25rem;
    transition: color var(--transition), border-color var(--transition);
}

.home-why__cta:hover {
    color: var(--white);
    border-color: var(--white);
}

/* ---- 9. References Grid ---- */
.home-refs {
    padding: clamp(4rem, 7vw, 5.5rem) 0;
    background: #fff;
}

.home-refs__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
}

.home-ref-item {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 104px;
    padding: 1.25rem 1.5rem;
    background: #fff;
    border: 1px solid rgba(26, 51, 82, 0.1);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(26, 51, 82, 0.04);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.home-ref-item img {
    display: block;
    max-width: 100%;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(1) brightness(0);
    opacity: 0.72;
    transition: filter 0.35s ease, opacity 0.35s ease, transform 0.35s ease;
}

.home-ref-item:hover {
    border-color: rgba(197, 160, 89, 0.45);
    box-shadow: 0 10px 28px rgba(26, 51, 82, 0.08);
    transform: translateY(-2px);
}

.home-ref-item:hover img {
    filter: none;
    opacity: 1;
}

.home-ref-item__meta {
    display: none;
}

.home-refs__footer {
    text-align: center;
    margin-top: 2.5rem;
}

/* ---- 10. Engineering Power ---- */
.home-engineering {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--home-dark-mid) 0%, var(--home-dark) 100%);
    color: var(--white);
}

.home-engineering__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.home-eng-card {
    padding: 1.75rem;
    border: 1px solid var(--home-border);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    transition: background var(--transition), border-color var(--transition);
}

.home-eng-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--gold-soft);
}

.home-eng-card__icon {
    font-size: 1.35rem;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.home-eng-card__title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}

.home-eng-card__text {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
    line-height: 1.55;
}

/* ---- 11. Values — mockup interactive module ---- */
.home-values {
    padding: clamp(4.5rem, 8vw, 6rem) 0;
    background: linear-gradient(180deg, #0f1f33 0%, #0b1828 100%);
    color: var(--white);
}

.home-values__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
    gap: clamp(2rem, 4vw, 3.5rem);
    align-items: stretch;
}

.home-values__badge {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.85rem;
}

.home-values__title {
    font-family: var(--font-heading);
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 1rem;
    line-height: 1.1;
    max-width: 11em;
}

.home-values__lead {
    margin: 0 0 2rem;
    font-size: 0.92rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.68);
    max-width: 26rem;
}

.home-values__heritage-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 0.75rem;
}

.home-values__heritage-year {
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    padding-bottom: 0.35rem;
}

.home-values__heritage-num {
    flex: 1;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 300px;
    font-weight: 700;
    line-height: 0.9;
    letter-spacing: -0.04em;
    margin-bottom: 10px;
    background-size: cover;
    background-position: center;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.home-values__heritage-tag {
    margin: 0.85rem 0 0;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    text-align: center;
    padding-top: 25px;
}

.home-values__module {
    display: grid;
    grid-template-columns: minmax(168px, 0.36fr) minmax(0, 0.64fr);
    border: 1px solid rgba(197, 160, 89, 0.28);
    background: rgba(255, 255, 255, 0.02);
    min-height: clamp(420px, 36vw, 520px);
}

.home-values__tabs {
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(197, 160, 89, 0.18);
}

.home-values__tab {
    flex: 1;
    display: grid;
    grid-template-columns: auto 1px 1fr auto;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.95rem 1rem;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.home-values__tab:last-child {
    border-bottom: 0;
}

.home-values__tab-num {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
}

.home-values__tab-divider {
    width: 1px;
    height: 1.35rem;
    background: rgba(255, 255, 255, 0.18);
}

.home-values__tab-label {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.72);
}

.home-values__tab-arrow {
    font-size: 0.75rem;
    color: rgba(197, 160, 89, 0.55);
}

.home-values__tab.active {
    background: rgba(197, 160, 89, 0.08);
    box-shadow: inset 0 0 0 1px rgba(197, 160, 89, 0.35);
}

.home-values__tab.active .home-values__tab-num,
.home-values__tab.active .home-values__tab-arrow {
    color: var(--gold);
}

.home-values__tab.active .home-values__tab-label {
    color: var(--white);
}

.home-values__panel {
    position: relative;
    overflow: hidden;
    background: #0a1522;
}

.home-values__panel-slide {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.45s ease;
}

.home-values__panel-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.home-values__panel-body {
    flex: 1;
    padding: 1.5rem 1.65rem 1.25rem;
}

.home-values__panel-icon {
    display: block;
    font-size: 1.35rem;
    color: var(--gold);
    margin-bottom: 0.65rem;
}

.home-values__panel-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.55rem;
}

.home-values__panel-rule {
    display: block;
    width: 2.5rem;
    height: 2px;
    background: var(--gold);
    margin-bottom: 0.85rem;
}

.home-values__panel-title {
    font-family: var(--font-heading);
    font-size: clamp(0.95rem, 1.35vw, 1.1rem);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: var(--gold);
    margin: 0 0 0.65rem;
    line-height: 1.35;
}

.home-values__panel-text {
    margin: 0;
    font-size: 0.86rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.72);
    max-width: 36rem;
}

.home-values__panel-media {
    height: 42%;
    min-height: 160px;
    overflow: hidden;
}

.home-values__panel-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-values__footer {
    margin-top: 2rem;
    text-align: center;
}

.home-values__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gold);
    border: 1px solid rgba(197, 160, 89, 0.55);
    padding: 0.85rem 1.5rem;
    transition: all 0.35s ease;
}

.home-values__cta:hover {
    color: #0b1828;
    background: var(--gold);
}

.home-values__accordion {
    display: none;
}

/* ---- 13. Newsroom ---- */
.home-newsroom {
    padding: clamp(4.5rem, 8vw, 6rem) 0;
    background: #1a3352;
    color: var(--white);
}

.home-newsroom__head .home-section-head__badge {
    color: var(--gold);
}

.home-newsroom__head .home-section-head__title {
    color: var(--white);
}

.home-newsroom__head .home-section-head__lead {
    color: rgba(255, 255, 255, 0.72);
}

.home-newsroom__head .home-section-head__link {
    color: var(--gold);
}

.home-newsroom__head .home-section-head__link:hover {
    color: var(--white);
}

.home-newsroom__layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 1.25rem;
    align-items: stretch;
}

.home-news-featured {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 480px;
    height: 100%;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    background: #0a1522;
}

.home-news-featured__image {
    position: relative;
    flex: 1 1 auto;
    min-height: 280px;
    overflow: hidden;
}

.home-news-featured__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.home-news-featured:hover .home-news-featured__image img {
    transform: scale(1.04);
}

.home-news-featured__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(6, 11, 18, 0.55) 100%);
    pointer-events: none;
}

.home-news-featured__body {
    flex-shrink: 0;
    padding: 1.75rem 2rem 2rem;
    color: var(--white);
    background: #060b12;
    border-top: 1px solid rgba(197, 160, 89, 0.18);
}

.home-news-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
}

.home-news-featured__tag {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
}

.home-news-featured__title {
    font-family: var(--font-heading);
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    text-transform: uppercase;
    margin: 0 0 0.5rem;
    line-height: 1.25;
}

.home-news-featured__date {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
}

.home-news-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(197, 160, 89, 0.18);
    border-radius: 4px;
    text-decoration: none;
    color: inherit;
    transition: border-color var(--transition), box-shadow var(--transition), background 0.3s ease;
}

.home-news-item:hover {
    border-color: rgba(197, 160, 89, 0.45);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.home-news-item__thumb {
    aspect-ratio: 4/3;
    border-radius: 2px;
    overflow: hidden;
    background: var(--gray-200);
}

.home-news-item__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-news-item__title {
    font-family: var(--font-heading);
    font-size: 0.92rem;
    color: var(--white);
    margin: 0 0 0.35rem;
    line-height: 1.35;
}

.home-news-item__date {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.58);
}

/* ---- 14. Blog Editorial ---- */
.home-editorial {
    padding: 5rem 0;
    background: var(--home-dark);
    color: var(--white);
}

.home-editorial__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.home-editorial-card {
    border: 1px solid var(--home-border);
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    background: rgba(255, 255, 255, 0.03);
    transition: border-color var(--transition), transform var(--transition);
}

.home-editorial-card:hover {
    border-color: var(--gold-soft);
    transform: translateY(-3px);
}

.home-editorial-card__image {
    aspect-ratio: 16/10;
    overflow: hidden;
}

.home-editorial-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.85);
    transition: filter var(--transition);
}

.home-editorial-card:hover .home-editorial-card__image img {
    filter: none;
}

.home-editorial-card__body {
    padding: 1.25rem;
}

.home-editorial-card__label {
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
    display: block;
}

.home-editorial-card__title {
    font-family: var(--font-heading);
    font-size: 1rem;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
    line-height: 1.35;
    color: var(--white);
}

.home-editorial-card__excerpt {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.62);
    margin: 0;
    line-height: 1.55;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ---- 15. Videos ---- */
.home-films {
    padding: 5rem 0;
    background: #1a3352;
    color: var(--white);
    overflow: hidden;
}

.page-home .home-films .home-section-head__badge {
    color: var(--gold);
}

.page-home .home-films .home-section-head__title {
    color: var(--white);
}

.page-home .home-films .home-section-head__lead {
    color: rgba(255, 255, 255, 0.72);
}

.home-films__slider {
    position: relative;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.home-films__viewport {
    overflow: hidden;
    min-width: 0;
}

.home-films__track {
    display: flex;
    gap: 1.25rem;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.home-films__nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 89, 0.65);
    background: transparent;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.home-films__nav-btn:hover {
    background: var(--gold);
    color: #1a3352;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.home-film-card {
    position: relative;
    flex: 0 0 auto;
    aspect-ratio: 16/10;
    border: none;
    padding: 0;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    background: var(--home-dark);
}

.home-film-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.55;
    transition: opacity var(--transition), transform 0.5s ease;
}

.home-film-card:hover .home-film-card__bg {
    opacity: 0.7;
    transform: scale(1.04);
}

.home-film-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(6, 11, 18, 0.9) 100%);
}

.home-film-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.home-film-card__title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.25rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-transform: uppercase;
    color: var(--white);
    text-align: left;
    margin: 0;
}

@media (prefers-reduced-motion: reduce) {
    .home-films__track {
        transition: none !important;
    }
}

@media (max-width: 767.98px) {
    .home-films__slider {
        gap: 0.65rem;
    }

    .home-films__nav-btn {
        width: 38px;
        height: 38px;
    }
}

/* ---- 16. Final CTA ---- */
.home-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--home-dark) 0%, var(--primary) 100%);
    text-align: center;
    color: var(--white);
}

.home-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.35rem);
    text-transform: uppercase;
    max-width: 720px;
    margin: 0 auto 1.5rem;
    line-height: 1.2;
}

.home-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--gold);
    color: var(--home-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 2px;
    transition: background var(--transition);
}

.home-cta__btn:hover {
    background: #d4b872;
    color: var(--home-dark);
}

/* ---- Responsive ---- */
@media (max-width: 1199.98px) {
    .home-overview__band {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        row-gap: 2.25rem;
    }

    .home-sectors__featured {
        grid-template-columns: 1fr;
    }

    .home-sectors__compact {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .home-why__layout {
        grid-template-columns: 1fr;
    }

    .home-why__features {
        grid-template-columns: 1fr;
    }

    .home-why__feature--wide {
        grid-column: span 1;
    }

    .home-refs__grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .home-epc__pipeline {
        grid-template-columns: repeat(3, 1fr);
        row-gap: 2rem;
    }

    .home-epc__pipeline::before {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .hero-premium__inner {
        padding-bottom: 12rem;
    }

    .hero-premium__scroll {
        bottom: calc(clamp(11rem, 22vh, 14rem));
    }

    .hero-premium__epc-wrap {
        padding: 1.15rem 0.75rem 1rem;
    }

    .hero-premium__epc-bar-inner {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        justify-content: flex-start;
        gap: 0.5rem;
        padding: 0 0.5rem 0.35rem;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .hero-premium__epc-bar-inner::-webkit-scrollbar {
        display: none;
    }

    .hero-premium__epc-item {
        flex: 0 0 auto;
        min-width: 108px;
        scroll-snap-align: start;
    }

    .hero-premium__epc-arrow {
        flex-shrink: 0;
        padding-bottom: 2rem;
    }

    .home-portfolio__head {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .home-portfolio__title {
        max-width: none;
    }

    .home-portfolio__controls {
        align-items: flex-start;
        min-height: auto;
    }

    .home-portfolio__filters {
        justify-content: flex-start;
    }

    .home-portfolio__showcase {
        grid-template-columns: 1fr;
    }

    .home-portfolio__aside,
    .home-project-card--hero,
    .home-project-card--hero .home-project-card__link {
        min-height: 480px;
    }

    .home-project-card__facts--row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-active__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-active-card,
    .home-active-card__content {
        min-height: 340px;
    }

    .home-values__layout {
        grid-template-columns: 1fr;
    }

    .home-values__title {
        max-width: none;
    }

    .home-values__module {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .home-values__tabs,
    .home-values__panel {
        display: none;
    }

    .home-values__accordion {
        display: block;
        margin-top: 1.5rem;
    }

    .home-values__acc-item {
        border-bottom: 1px solid var(--gray-200);
    }

    .home-values__acc-trigger {
        width: 100%;
        background: none;
        border: none;
        text-align: left;
        padding: 1rem 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        cursor: pointer;
    }

    .home-values__acc-body {
        display: none;
        padding-bottom: 1rem;
    }

    .home-values__acc-item.is-open .home-values__acc-body {
        display: block;
    }

    .home-newsroom__layout {
        grid-template-columns: 1fr;
    }

    .home-editorial__grid,
    .home-engineering__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767.98px) {
    .hero-premium__title-line {
        font-size: 1.85rem;
    }

    .hero-premium__inner {
        padding-bottom: 16rem;
    }

    .hero-premium__scroll {
        display: none;
    }

    .hero-premium__epc-item {
        flex: 0 0 auto;
        min-width: 96px;
    }

    .hero-premium__epc-icon-ring {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }

    .hero-premium__epc-label {
        font-size: 0.58rem;
        max-width: 100px;
    }

    .home-overview__band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 2rem;
    }

    .home-overview__title {
        white-space: normal;
    }

    .home-overview__title-wrap {
        flex-direction: column;
        gap: 0.85rem;
    }

    .home-overview__title-rule {
        max-width: 120px;
    }

    .home-sectors__compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .home-sector-card--compact {
        min-height: 340px;
    }

    .home-sector-card--compact .home-sector-card__body {
        min-height: 340px;
    }

    .home-active__grid {
        grid-template-columns: 1fr;
    }

    .home-active-card,
    .home-active-card__content {
        min-height: 320px;
    }

    .home-refs__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-portfolio__page {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .home-portfolio__page:not(.is-active) {
        display: none;
    }

    .home-project-card__facts--row,
    .home-project-card__facts {
        grid-template-columns: 1fr;
    }

    .home-news-item {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-premium__copy,
    .hero-premium__slide-bg {
        animation: none !important;
        transition: none !important;
        opacity: 1;
        transform: none;
    }
}

/* ============================================
   Mockup tasarım — müşteri referans (PDF sırası)
   ============================================ */
.page-home {
    --gm-navy: #1a3352;
    --gm-navy-deep: #0b1828;
    --gm-gold: #c5a059;
    --gm-light: #eef1f6;
    background: var(--gm-light);
}

.page-home .site-footer {
    margin-top: 0;
}

.header-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.15rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gm-gold);
    border: 1px solid var(--gm-gold);
    transition: all 0.3s ease;
}

.header-cta-btn:hover {
    color: var(--gm-navy-deep);
    background: var(--gm-gold);
}

.gm-sec {
    padding: clamp(4rem, 7vw, 5.5rem) 0;
}

.gm-sec--light {
    background: var(--gm-light);
}

.gm-sec--dark {
    background: linear-gradient(180deg, var(--gm-navy) 0%, var(--gm-navy-deep) 100%);
    color: #fff;
}

.gm-sec-num {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 0.2em;
    color: var(--gm-gold);
    margin-bottom: 0.65rem;
}

.gm-sec-num--light {
    color: var(--gm-gold);
}

.gm-sec-head--center {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.gm-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.9fr) 1.1fr;
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: start;
}

.gm-aside {
    position: relative;
}

.gm-content {
    min-width: 0;
}

.gm-layout--stack {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.gm-aside .home-section-head__title,
.gm-aside .home-epc__title,
.gm-aside .home-sectors__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 0.85rem;
}

.gm-aside .home-section-head__lead,
.gm-aside .home-epc__lead {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.gm-sec--light .gm-aside .home-section-head__lead,
.gm-sec--light .gm-aside .home-epc__lead {
    color: #5a6578;
}

.gm-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 1.25rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gm-gold);
    border: 1px solid var(--gm-gold);
    transition: all 0.3s ease;
}

.gm-btn:hover {
    background: var(--gm-gold);
    color: var(--gm-navy-deep);
}

.gm-btn--light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.gm-btn--light:hover {
    background: #fff;
    color: var(--gm-navy);
    border-color: #fff;
}

/* Bir Bakışta — mockup V3 (styles in main .home-overview block) */

/* EPC — görsel kart grid */
.page-home .home-epc {
    background: linear-gradient(180deg, var(--gm-navy) 0%, var(--gm-navy-deep) 100%);
}

.page-home .home-epc__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.page-home .home-epc__card {
    position: relative;
    min-height: 150px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.15);
}

.page-home .home-epc__card-bg,
.page-home .home-epc__card-overlay {
    position: absolute;
    inset: 0;
}

.page-home .home-epc__card-bg {
    background-size: cover;
    background-position: center;
}

.page-home .home-epc__card-overlay {
    background: linear-gradient(180deg, rgba(11, 24, 40, 0.15) 0%, rgba(11, 24, 40, 0.88) 100%);
}

.page-home .home-epc__card-body {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1rem;
}

.page-home .home-epc__card-icon {
    color: var(--gm-gold);
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
}

.page-home .home-epc__card-label {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
}

/* Faaliyet — mockup mozaik (styles in main .home-sectors block) */

/* Devam eden — premium grid (styles in main .home-active block) */

/* Savunma spotlight — styles in main .home-defense block */

/* Final CTA — tam genişlik görsel */
.page-home .gm-cta {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

.page-home .home-cta__bg,
.page-home .home-cta__overlay {
    position: absolute;
    inset: 0;
}

.page-home .home-cta__bg {
    background-size: cover;
    background-position: center;
}

.page-home .home-cta__overlay {
    background: linear-gradient(90deg, rgba(6, 11, 18, 0.88) 0%, rgba(6, 11, 18, 0.55) 60%, rgba(6, 11, 18, 0.35) 100%);
}

.page-home .home-cta__inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    padding: clamp(3rem, 8vw, 5rem) 0;
    flex-wrap: wrap;
}

.page-home .home-cta__title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    text-transform: uppercase;
    color: #fff;
    max-width: 640px;
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.page-home .home-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 1.75rem;
    background: var(--gm-gold);
    color: var(--gm-navy-deep);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
}

.page-home .home-cta__btn:hover {
    background: #fff;
    color: var(--gm-navy);
}

.page-home .home-cta__contact {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    align-items: flex-end;
}

.page-home .home-cta__contact a {
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.page-home .home-cta__contact i {
    color: var(--gm-gold);
}

/* ---- 06 Öne Çıkan — 5 tall project cards ---- */
.page-home .home-featured__row {
    display: flex;
    gap: 0.85rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scrollbar-width: thin;
    min-width: 0;
}

.page-home .home-featured-card {
    flex: 0 0 220px;
    min-height: 420px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(26, 51, 82, 0.1);
    text-decoration: none;
    background: var(--gm-navy-deep);
}

.page-home .home-featured-card__image {
    position: absolute;
    inset: 0;
}

.page-home .home-featured-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
}

.page-home .home-featured-card:hover .home-featured-card__image img {
    transform: scale(1.06);
}

.page-home .home-featured-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(11, 24, 40, 0.94) 100%);
}

.page-home .home-featured-card__body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 1.25rem 1rem;
    color: #fff;
}

.page-home .home-featured-card__sector {
    display: block;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gm-gold);
    margin-bottom: 0.35rem;
}

.page-home .home-featured-card__title {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    text-transform: uppercase;
    line-height: 1.3;
    margin: 0 0 0.25rem;
}

.page-home .home-featured-card__location {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.page-home .home-featured__filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    margin-bottom: 1.25rem;
}

.page-home .home-featured__filter {
    background: none;
    border: none;
    padding: 0.35rem 0;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #6b7788;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.page-home .home-featured__filter.active,
.page-home .home-featured__filter:hover {
    color: var(--gm-navy);
}

.page-home .home-featured__filter.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 2px;
    background: var(--gm-gold);
}

/* ---- 09 Referanslar — logo grid ---- */
.page-home .home-refs {
    background: #fff;
}

.page-home .home-refs__grid {
    gap: 1rem;
}

.page-home .home-ref-item {
    background: #fff;
    border: 1px solid rgba(26, 51, 82, 0.1);
    min-height: 104px;
}

.page-home .home-ref-item img {
    max-height: 56px;
    filter: grayscale(1) brightness(0);
    opacity: 0.72;
}

.page-home .home-ref-item:hover img {
    filter: none;
    opacity: 1;
}

.page-home .home-ref-item__meta {
    display: none;
}

/* ---- 10 Mühendislik — 3x2 numbered image cards ---- */
.page-home .home-engineering {
    background: linear-gradient(180deg, var(--gm-navy) 0%, var(--gm-navy-deep) 100%);
    color: #fff;
}

.page-home .home-engineering__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.85rem;
}

.page-home .home-eng-card {
    position: relative;
    min-height: 200px;
    overflow: hidden;
    border: 1px solid rgba(197, 160, 89, 0.15);
}

.page-home .home-eng-card__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.page-home .home-eng-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 24, 40, 0.25) 0%, rgba(11, 24, 40, 0.92) 100%);
}

.page-home .home-eng-card__body {
    position: relative;
    z-index: 1;
    height: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.25rem;
}

.page-home .home-eng-card__num {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--gm-gold);
    opacity: 0.85;
}

.page-home .home-eng-card__title {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 0.35rem;
    color: #fff;
}

.page-home .home-eng-card__text {
    font-size: 0.78rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.72);
    margin: 0;
}

/* ---- 14 Blog — numbered list + hero image ---- */
.page-home .home-blog {
    padding: clamp(4rem, 7vw, 5.5rem) 0;
    background: #ffffff;
    color: #1a3352;
}

.page-home .home-blog .home-section-head__badge {
    color: var(--gm-gold);
}

.page-home .home-blog .home-section-head__title {
    color: #1a3352;
}

.page-home .home-blog .home-section-head__lead {
    color: rgba(26, 51, 82, 0.72);
}

.page-home .home-blog .home-section-head__link {
    color: var(--gm-gold);
}

.page-home .home-blog .home-section-head__link:hover {
    color: #1a3352;
}

.page-home .home-project-card .home-project-card__link {
    margin-top: 0;
    font-size: inherit;
    font-weight: inherit;
    letter-spacing: inherit;
    text-transform: none;
    color: inherit;
    text-decoration: none;
}

.page-home .home-project-card .home-project-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gm-gold);
}

.page-home .home-blog__layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.42fr) 1fr;
    gap: clamp(1.5rem, 3vw, 2.5rem);
    align-items: stretch;
}

.page-home .home-blog__list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid rgba(26, 51, 82, 0.12);
    background: #fff;
    box-shadow: 0 12px 32px rgba(26, 51, 82, 0.06);
}

.page-home .home-blog__item {
    display: grid;
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    align-items: start;
    padding: 1.15rem 1.25rem;
    text-decoration: none;
    color: inherit;
    border-bottom: 1px solid rgba(26, 51, 82, 0.08);
    transition: background 0.3s ease;
}

.page-home .home-blog__item:last-child {
    border-bottom: none;
}

.page-home .home-blog__item:hover,
.page-home .home-blog__item.is-active {
    background: rgba(197, 160, 89, 0.1);
}

.page-home .home-blog__num {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--gm-gold);
    line-height: 1;
}

.page-home .home-blog__item-title {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #1a3352;
    margin: 0 0 0.35rem;
    line-height: 1.35;
}

.page-home .home-blog__item-excerpt {
    font-size: 0.78rem;
    color: rgba(26, 51, 82, 0.62);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.page-home .home-blog__hero {
    position: relative;
    min-height: 420px;
    overflow: hidden;
    border: 1px solid rgba(26, 51, 82, 0.12);
    box-shadow: 0 12px 32px rgba(26, 51, 82, 0.08);
    text-decoration: none;
    display: block;
}

.page-home .home-blog__hero-image {
    position: absolute;
    inset: 0;
}

.page-home .home-blog__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.page-home .home-blog__hero:hover .home-blog__hero-image img {
    transform: scale(1.04);
}

.page-home .home-blog__hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(11, 24, 40, 0.92) 100%);
}

.page-home .home-blog__hero-body {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 2rem;
    color: #fff;
}

.page-home .home-blog__hero-label {
    font-size: 0.65rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gm-gold);
    margin-bottom: 0.5rem;
    display: block;
}

.page-home .home-blog__hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    text-transform: uppercase;
    margin: 0;
    line-height: 1.25;
}

/* ---- Shared section typography ---- */
.page-home .gm-aside__title,
.page-home .gm-aside .home-epc__title,
.page-home .gm-aside .home-sectors__title,
.page-home .gm-aside .home-section-head__title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 2.8vw, 2.2rem);
    text-transform: uppercase;
    line-height: 1.15;
    margin-bottom: 0.85rem;
    color: inherit;
}

.page-home .gm-aside__lead,
.page-home .gm-aside .home-section-head__lead,
.page-home .gm-aside .home-epc__lead {
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.page-home .gm-sec--dark .gm-aside__lead,
.page-home .gm-sec--dark .gm-aside .home-section-head__lead,
.page-home .gm-sec--dark .gm-aside .home-epc__lead {
    color: rgba(255, 255, 255, 0.72);
}

.page-home .gm-sec--light .gm-aside__lead,
.page-home .gm-sec--light .gm-aside .home-section-head__lead {
    color: #5a6578;
}

.page-home .gm-aside__badge,
.page-home .gm-aside .home-epc__badge,
.page-home .gm-aside .home-sectors__badge,
.page-home .gm-aside .home-section-head__badge {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--gm-gold);
    margin-bottom: 0.65rem;
}

.page-home .milestones-section {
    background: #f4f6f9;
    position: relative;
    overflow: hidden;
    padding: clamp(3.5rem, 6vw, 5rem) 0;
}

.page-home .milestones-bg {
    opacity: 0.45;
}

.page-home .milestones-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1.25rem 2rem;
    margin-bottom: 2rem;
}

.page-home .milestones-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.65rem 1.25rem;
    max-width: none;
    margin: 0;
    text-align: left;
    width: auto;
    flex: 1;
}

.page-home .milestones-badge {
    margin-bottom: 0;
}

.page-home .milestones-title {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.page-home .milestones-lead {
    flex: 1 1 260px;
    margin: 0;
    font-size: 0.92rem;
    color: #5a6578;
}

.page-home .milestones-controls {
    margin-bottom: 0;
    flex-shrink: 0;
    padding-top: 0.15rem;
}

.page-home .milestones-nav-btn {
    border-color: rgba(26, 51, 82, 0.18);
}

.page-home .milestones-viewport {
    padding: 0;
}

.page-home .milestones-rail--cards {
    position: relative;
    display: flex;
    gap: 0.85rem;
    min-width: max-content;
    padding: 2.75rem 0 0.5rem;
}

.page-home .milestones-rail--cards .milestones-rail-line {
    top: 1.35rem;
    transform: none;
    height: 2px;
    background: linear-gradient(90deg, rgba(26, 51, 82, 0.08) 0%, #1a3352 12%, #c5a059 88%, rgba(197, 160, 89, 0.08) 100%);
}

.page-home .milestones-rail--cards .milestones-rail-line::after {
    display: none;
}

.page-home .milestone-card {
    flex: 0 0 188px;
    scroll-snap-align: start;
}

.page-home .milestone-card__head {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.page-home .milestone-card__year {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #1a3352;
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    border: 3px solid #f4f6f9;
    box-shadow: 0 0 0 2px rgba(197, 160, 89, 0.55);
}

.page-home .milestone-card--future .milestone-card__year {
    background: linear-gradient(135deg, #1a3352 0%, #c5a059 100%);
}

.page-home .milestone-card__body {
    background: #fff;
    border: 1px solid rgba(26, 51, 82, 0.1);
    border-radius: 10px;
    padding: 1rem 0.95rem;
    min-height: 132px;
    box-shadow: 0 6px 20px rgba(26, 51, 82, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.page-home .milestone-card:hover .milestone-card__body {
    transform: translateY(-3px);
    border-color: rgba(197, 160, 89, 0.35);
    box-shadow: 0 14px 30px rgba(26, 51, 82, 0.1);
}

.page-home .milestone-card__title {
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #1a3352;
    margin: 0 0 0.45rem;
    line-height: 1.35;
}

.page-home .milestone-card__text {
    margin: 0;
    font-size: 0.76rem;
    line-height: 1.55;
    color: #5a6578;
}

@media (min-width: 1200px) {
    .page-home .milestones-viewport {
        overflow-x: hidden;
    }

    .page-home .milestones-rail--cards {
        min-width: 0;
        width: 100%;
        justify-content: space-between;
        gap: 0.65rem;
    }

    .page-home .milestone-card {
        flex: 1 1 0;
        min-width: 0;
        max-width: 200px;
    }
}

.page-home .milestones-section .gm-sec-num {
    display: inline-block;
}

.page-home .gm-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.7rem 1.25rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gm-gold);
    border: 1px solid var(--gm-gold);
    background: transparent;
    transition: all 0.3s ease;
}

.page-home .gm-btn:hover {
    background: var(--gm-gold);
    color: var(--gm-navy-deep);
}

.page-home .gm-btn--light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
}

.page-home .gm-btn--light:hover {
    background: #fff;
    color: var(--gm-navy);
    border-color: #fff;
}

@media (max-width: 991.98px) {
    .page-home .gm-layout {
        grid-template-columns: 1fr;
    }

    .page-home .home-overview__band {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .page-home .home-epc__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-home .home-refs__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .page-home .home-engineering__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-home .home-blog__layout {
        grid-template-columns: 1fr;
    }

    .page-home .milestones-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-home .milestones-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-home .milestones-title {
        white-space: normal;
    }

    .page-home .milestones-viewport {
        overflow-x: auto;
    }

    .page-home .milestones-rail--cards {
        min-width: max-content;
    }

    .page-home .milestone-card {
        flex: 0 0 180px;
    }
}

@media (max-width: 767.98px) {
    .page-home .home-overview__band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-home .home-epc__cards {
        grid-template-columns: 1fr;
    }

    .page-home .home-refs__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .page-home .home-engineering__grid {
        grid-template-columns: 1fr;
    }

    .page-home .home-featured-card {
        flex: 0 0 180px;
        min-height: 360px;
    }

    .page-home .home-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .page-home .home-cta__contact {
        align-items: flex-start;
    }
}
