/* ===================================================
   SIRYAP GLOBAL — Beyaz / Gold Tema
   Logo: #B8941A altın
   Hero: koyu (fotoğraf üstü) → yumuşak geçiş → beyaz
   Tüm içerik bölümleri: beyaz arka plan, gold vurgular
   =================================================== */

/* ===== CSS VARIABLES ===== */
:root {
    --gold:        #B8941A;
    --gold-mid:    #C9A227;
    --gold-bright: #D4AF37;
    --gold-pale:   #f0e4b8;
    --gold-faint:  #faf6ec;

    --dark:        #111111;
    --dark-2:      #1c1c1c;
    --gray-700:    #444444;
    --gray-500:    #777777;
    --gray-300:    #b0b0b0;
    --gray-100:    #f2f2f2;

    --white:       #ffffff;
    --off-white:   #fafaf8;

    --border:      rgba(184, 148, 26, 0.18);
    --border-soft: rgba(184, 148, 26, 0.1);

    --transition:  cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-gold: 0 8px 40px rgba(184, 148, 26, 0.28);
    --shadow-card: 0 4px 24px rgba(0,0,0,0.08);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Outfit', 'Inter', system-ui, sans-serif;
    background: var(--white);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--gray-100); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ===== UTILITIES ===== */
.gold-text { color: var(--gold-bright); }

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.9rem;
    display: block;
}

/* ===== BUTTONS ===== */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.88rem 2.2rem;
    background: linear-gradient(135deg, var(--gold-mid), var(--gold-bright));
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-gold::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-bright), #e8c84a);
    opacity: 0;
    transition: opacity 0.3s;
}
.btn-gold:hover::after { opacity: 1; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }
.btn-gold span, .btn-gold svg { position: relative; z-index: 1; }
.btn-gold svg { width: 18px; height: 18px; }
.btn-gold.btn-full { width: 100%; justify-content: center; }

/* gold button on white background — darker text */
.btn-gold-dark {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.88rem 2.2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-mid));
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s var(--transition);
}
.btn-gold-dark:hover { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.88rem 2.2rem;
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.55);
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-outline:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.88rem 2.6rem;
    background: transparent;
    color: var(--gold);
    border: 1.5px solid var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

/* ===== HEADER ===== */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: background 0.45s var(--transition),
                padding   0.45s var(--transition),
                box-shadow 0.45s;
}

.site-header.scrolled {
    background: var(--white);
    padding: 0.65rem 0;
    box-shadow: 0 2px 24px rgba(0,0,0,0.1);
}

.header-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* ---- LOGO ----
   Asil logo stilleri index.html icindeki <style id="siryap-logo-css">
   blogunda. Asagidaki kopya sadece yedektir (dosyanin en altinda). */

/* ---- Nav ---- */
.main-nav {
    display: flex;
    align-items: center;
    gap: 0;
    margin-left: auto;
}

.nav-link {
    font-family: 'Outfit', sans-serif;
    font-size: 0.84rem;
    font-weight: 500;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.88);
    padding: 0.5rem 1.1rem;
    position: relative;
    transition: color 0.3s;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 2px;
    background: var(--gold-bright);
    transition: width 0.3s var(--transition);
}
.nav-link:hover            { color: var(--gold-bright); }
.nav-link:hover::after     { width: 55%; }
.nav-link.active::after    { width: 55%; }

.site-header.scrolled .nav-link            { color: var(--gray-700); }
.site-header.scrolled .nav-link:hover      { color: var(--gold); }
.site-header.scrolled .nav-link.active     { color: var(--gold); }

/* ---- Phone button ---- */
.header-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.58rem 1.4rem;
    border: 1.5px solid rgba(255,255,255,0.35);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 0.3s;
    flex-shrink: 0;
}
.header-phone svg { width: 15px; height: 15px; flex-shrink: 0; fill: var(--gold-bright); }
.header-phone:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

.site-header.scrolled .header-phone { border-color: var(--border); color: var(--dark); }
.site-header.scrolled .header-phone:hover { border-color: var(--gold); color: var(--gold); }

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    width: 100%;
    /* svh = mobilde adres çubuğu açılıp kapanınca zıplamayı önler */
    height: 100vh;
    height: 100svh;
    min-height: 620px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    /* Video yüklenene kadar (veya hiç yüklenmezse) görünecek katman.
       Böylece beyaz boşluk / siyah ekran oluşmaz. */
    background-color: #0d0b08;
    background-image: url('assets/images/hero-poster.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Video arka plan — ekranı boşluksuz kaplar, oranı bozulmaz.
   Kadrajı kaydırmak isterseniz --hero-focus değerini değiştirin:
   örn. "center 30%" videonun üst tarafını gösterir.              */
.hero-bg {
    --hero-focus: center center;
}
#hero-video {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;              /* taşan kısım kırpılır, boşluk kalmaz */
    object-position: var(--hero-focus);
    background: transparent;
    pointer-events: none;
}

/* Hareketi azalt tercihi açık kullanıcılarda video yerine poster kalır */
@media (prefers-reduced-motion: reduce) {
    #hero-video { display: none; }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    /* --hero-dim: videoyu yeniden kodlamadan ekstra karartma.
       0    = ek karartma yok (varsayılan)
       0.15 = hafif
       0.30 = belirgin koyu                                    */
    background:
        linear-gradient(rgba(0, 0, 0, var(--hero-dim, 0)), rgba(0, 0, 0, var(--hero-dim, 0))),
        linear-gradient(
            135deg,
            rgba(8, 6, 2, 0.80) 0%,
            rgba(8, 6, 2, 0.52) 55%,
            rgba(8, 6, 2, 0.38) 100%
        );
}

/* Smooth fade to white at the bottom of hero */
.hero-fade-bottom {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 340px;
    background: linear-gradient(
        to bottom,
        rgba(255,255,255,0)    0%,
        rgba(255,255,255,0.05) 35%,
        rgba(255,255,255,0.55) 65%,
        rgba(255,255,255,0.88) 82%,
        rgba(255,255,255,1)    100%
    );
    z-index: 1;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2.5rem;
    padding-top: 5rem;
    width: 100%;
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 1.6rem;
    opacity: 0;
    animation: fadeUp 0.8s var(--transition) 0.3s forwards;
}
.eyebrow-line {
    display: block; width: 38px; height: 1px;
    background: var(--gold-bright); opacity: 0.6;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.8rem);
    font-weight: 800;
    line-height: 1.07;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: -0.025em;
    opacity: 0;
    animation: fadeUp 0.9s var(--transition) 0.5s forwards;
}
.hero-title-gold { color: var(--gold-bright); }

.hero-desc {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    font-weight: 300;
    color: rgba(255,255,255,0.72);
    max-width: 510px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
    opacity: 0;
    animation: fadeUp 1s var(--transition) 0.7s forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s var(--transition) 0.9s forwards;
}

/* Scroll cue */
.hero-scroll-cue {
    position: absolute;
    bottom: 4rem; left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
    opacity: 0;
    animation: fadeIn 1s ease 1.6s forwards;
}
.scroll-cue-line {
    width: 1px; height: 46px;
    background: linear-gradient(to bottom, transparent, var(--gold-bright));
    animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
    0%,100% { transform: scaleY(0); transform-origin: top; opacity: 0; }
    50%      { transform: scaleY(1); transform-origin: top; opacity: 1; }
}

/* ===== STATS / DENEYİM ===== */
.stats-section {
    background: var(--white);
    /* Hero fade overlaps into this section, so no extra top padding needed */
    padding: 0 0 6rem;
    position: relative;
    margin-top: -2px; /* close micro-gap */
}

/* Gold accent line at top */
.stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 80px; height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-bright));
    display: none;  /* hidden — fade handles the transition */
}

.stats-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.stats-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.stats-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 0.9rem;
    letter-spacing: -0.025em;
}

.stats-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.75;
}

/* Decorative gold rule above stats grid */
.stats-header { padding-top: 4rem; }

/* 4-column card grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(184,148,26,0.14);
    border: 1px solid rgba(184,148,26,0.18);
    box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    background: var(--white);
    text-align: center;
    transition: background 0.35s;
    gap: 0;
}
.stat-card:hover { background: var(--gold-faint); }

.stat-icon {
    width: 40px; height: 40px;
    color: var(--gold);
    margin-bottom: 1.2rem;
    opacity: 0.75;
}
.stat-icon svg { width: 100%; height: 100%; }

.stat-row {
    display: flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(3.2rem, 5vw, 5rem);
    font-weight: 900;
    color: var(--gold);
    letter-spacing: -0.04em;
    line-height: 1;
}

.stat-plus {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3vw, 3rem);
    font-weight: 900;
    color: var(--gold-mid);
    line-height: 1;
}

.stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-500);
    margin-top: 0.75rem;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--off-white);
    padding: 7rem 0;
    position: relative;
    overflow: hidden;
}

/* Subtle gold pattern top */
.about-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold-bright), transparent);
}

.about-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image-wrap { position: relative; }

.about-img-main {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}
.about-img-main img { transition: transform 0.8s var(--transition); }
.about-img-main:hover img { transform: scale(1.04); }

/* Gold border accent */
.about-img-main::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid rgba(184, 148, 26, 0.35);
    z-index: 1;
    transform: translate(12px, 12px);
    transition: transform 0.4s;
    pointer-events: none;
}
.about-img-main:hover::before { transform: translate(7px, 7px); }

.about-badge {
    position: absolute;
    bottom: -1.5rem; right: -1.5rem;
    width: 120px; height: 120px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: var(--shadow-gold);
}
.badge-num {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1;
}
.badge-text {
    font-size: 0.63rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    text-align: center;
    line-height: 1.3;
    margin-top: 0.3rem;
}

.about-decoration {
    position: absolute;
    top: -20px; left: -20px;
    width: 110px; height: 110px;
    border: 1px solid var(--gold-pale);
    pointer-events: none;
}

.about-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 1.4rem;
    letter-spacing: -0.025em;
}

.about-text {
    font-size: 0.97rem;
    color: var(--gray-500);
    line-height: 1.82;
    margin-bottom: 1rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 1.8rem 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--dark);
}
.feature-icon { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }
.feature-icon svg { width: 100%; height: 100%; }

/* ===== PROJECTS SECTION ===== */
.projects-section {
    background: var(--white);
    padding: 7rem 0;
    position: relative;
}

.projects-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

.section-header { text-align: center; margin-bottom: 4rem; }

.section-title-dark {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
}
.section-desc-dark {
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.75;
}

.projects-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.project-card { position: relative; overflow: hidden; }
.project-card-large { grid-row: 1 / 3; }

.project-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}
.project-card-large .project-img-wrap { aspect-ratio: 3/4; height: 100%; }
.project-img-wrap img { transition: transform 0.7s var(--transition); }
.project-card:hover .project-img-wrap img { transform: scale(1.07); }

.project-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top,
        rgba(10,8,2,0.88) 0%,
        rgba(10,8,2,0.35) 50%,
        rgba(10,8,2,0.0)  100%
    );
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0.7;
    transition: opacity 0.4s;
}
.project-card:hover .project-overlay { opacity: 1; }

.project-info {
    transform: translateY(10px);
    transition: transform 0.4s var(--transition);
}
.project-card:hover .project-info { transform: translateY(0); }

.project-cat {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold-bright); margin-bottom: 0.4rem;
}
.project-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem; font-weight: 700;
    color: var(--white); margin-bottom: 0.4rem;
}
.project-loc {
    display: flex; align-items: center; gap: 0.3rem;
    font-size: 0.8rem; color: rgba(255,255,255,0.6);
    margin-bottom: 1rem;
}
.project-loc svg { width: 13px; height: 13px; flex-shrink: 0; }

.project-btn {
    display: inline-flex; align-items: center;
    padding: 0.5rem 1.1rem;
    background: var(--gold-bright);
    color: var(--dark);
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.06em; text-transform: uppercase;
    transition: all 0.3s;
    opacity: 0; transform: translateY(8px);
}
.project-card:hover .project-btn { opacity: 1; transform: translateY(0); }

.project-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 1rem;
    background: var(--gray-100);
    border-top: 1px solid var(--border);
}
.project-tag { font-size: 0.8rem; font-weight: 700; color: var(--gold); }
.project-year { font-size: 0.78rem; color: var(--gray-300); font-weight: 500; }

.projects-cta { text-align: center; }

/* ===== REFERENCES SECTION — Görseldekiyle birebir ===== */
.refs-section {
    background: var(--white);
    padding: 6rem 0 7rem;
    position: relative;
    overflow: hidden;
}

.refs-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2.5rem;
}

/* ---- Başlık ---- */
.refs-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

/* "REFERANSLAR —" etiketi — görselde sol hizalı, küçük gold metin */
.refs-eyebrow-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin-bottom: 1.2rem;
}

.refs-eyebrow-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
}

.refs-eyebrow-line {
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--gold);
    opacity: 0.7;
    flex-shrink: 0;
}

/* Büyük kalın başlık — görselde siyah, serif benzeri ağırlıklı */
.refs-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 900;
    color: #111;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin-bottom: 0.8rem;
}

/* Gold yatay çizgi başlığın hemen altında */
.refs-title-underline {
    width: 52px;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-bright));
    margin: 0 auto 1.2rem;
    border-radius: 2px;
}

.refs-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 0.97rem;
    color: #888;
    font-weight: 400;
    line-height: 1.6;
    max-width: 480px;
    margin: 0 auto;
}

/* ---- Kayan bant ---- */
.refs-track-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 2.8rem;
    padding: 1rem 0 1.5rem;   /* kartların gölgesi kesilmesin */
}

/* Kenar yumuşatma — görselde solda fade-out var */
.refs-track-container::before,
.refs-track-container::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
}
.refs-track-container::before {
    left: 0;
    background: linear-gradient(to right, var(--white) 0%, transparent 100%);
}
.refs-track-container::after {
    right: 0;
    background: linear-gradient(to left, var(--white) 0%, transparent 100%);
}

.refs-track {
    display: flex;
    gap: 1.4rem;
    width: max-content;
    animation: marquee 32s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ---- Referans Kartı — görseldekiyle birebir ---- */
.ref-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    /* Görseldeki boyut: kare yaklaşık 160x140 */
    width: 168px;
    min-height: 132px;
    background: #ffffff;
    /* Yumuşak yuvarlak köşe — görselde belirgin radius var */
    border-radius: 14px;
    /* İnce açık gri kenarlık */
    border: 1.5px solid #e8e8e8;
    padding: 1.4rem 1rem;
    text-align: center;
    flex-shrink: 0;
    cursor: default;
    /* Çok hafif gölge */
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0,0,0,0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.ref-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(184, 148, 26, 0.35);
}

/* Şirket adı — büyük, bold, renkli */
.ref-name {
    font-family: 'Outfit', sans-serif;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.2;
    display: block;
    letter-spacing: 0.01em;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

/* Renk varyantları — logosu olmayan kurumlar yazı olarak eklenirse kullanılır */
.ref-name.ref-blue  { color: #1a4fba; }   /* TOKİ, OYAK, KİPTAŞ, MİLLİ SAVUNMA */
.ref-name.ref-red   { color: #c0392b; }   /* EMLAK KONUT, ÇEVRE */
.ref-name.ref-dark  { color: #222222; }   /* İLBANK, İSBAK */

/* Alt etiket — küçük, gri */
.ref-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: #aaa;
    letter-spacing: 0.02em;
    line-height: 1.4;
    display: block;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    background: var(--white);
    padding: 7rem 0;
    position: relative;
    border-top: 1px solid var(--border-soft);
}

.contact-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 6rem;
    align-items: start;
}

.contact-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    margin-bottom: 1.1rem;
    letter-spacing: -0.025em;
}
.contact-text {
    font-size: 0.97rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-info-list { display: flex; flex-direction: column; gap: 1rem; }

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.4rem;
    background: var(--off-white);
    border: 1px solid var(--border-soft);
    transition: all 0.3s;
}
.contact-info-item:hover { border-color: var(--gold); }

.contact-info-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-info-icon svg { width: 17px; height: 17px; fill: var(--white); }

.contact-info-label {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.2rem;
}
.contact-info-value { font-size: 0.95rem; font-weight: 500; color: var(--dark); }

/* Form */
.contact-form { display: flex; flex-direction: column; gap: 1.1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }

.form-group label {
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.12em; text-transform: uppercase;
    color: var(--gray-500);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.88rem 1.1rem;
    background: var(--off-white);
    border: 1px solid #e0d8c8;
    color: var(--dark);
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    outline: none;
    transition: border-color 0.3s, box-shadow 0.3s;
    appearance: none; -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,148,26,0.1);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--gray-300); }
.form-group select option { background: var(--white); color: var(--dark); }
.form-group textarea { resize: vertical; min-height: 120px; }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--dark);
    padding: 5rem 0 0;
}

.footer-inner { max-width: 1440px; margin: 0 auto; padding: 0 2.5rem; }

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-logo { margin-bottom: 1.4rem; }

/* Footer logo: ikon + yazı yan yana */
.footer-logo-split {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.5rem;
}

/* Footer logo olculeri de index.html icindeki logo blogunda. */

.footer-desc {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.42);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 310px;
}

.footer-social { display: flex; gap: 0.7rem; }

.social-link {
    width: 38px; height: 38px;
    border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.4);
    transition: all 0.3s;
}
.social-link svg { width: 17px; height: 17px; }
.social-link:hover { border-color: var(--gold-bright); color: var(--gold-bright); }

.footer-links-col h4 {
    font-size: 0.75rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold-bright); margin-bottom: 1.4rem;
}
.footer-links-col a,
.footer-links-col span {
    display: block; font-size: 0.88rem;
    color: rgba(255,255,255,0.42); margin-bottom: 0.65rem;
    transition: color 0.3s;
}
.footer-links-col a:hover { color: var(--gold-bright); }

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 0;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.22);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.85s var(--transition), transform 0.85s var(--transition);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
    .about-container { grid-template-columns: 1fr; gap: 4rem; }
    .about-image-wrap { max-width: 580px; margin: 0 auto; }
    .contact-container { grid-template-columns: 1fr; gap: 4rem; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 3rem; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .main-nav { display: none; }
    .header-phone span { display: none; }
    .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }
    .hero-actions { flex-direction: column; gap: 0.8rem; }
    .projects-grid { grid-template-columns: 1fr; }
    .project-card-large { grid-row: auto; }
    .project-card-large .project-img-wrap { aspect-ratio: 4/3; }
    .form-row { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .about-features { grid-template-columns: 1fr; }
    .hero-fade-bottom { height: 200px; }
    .stats-header { padding-top: 2.5rem; }
}

@media (max-width: 480px) {
    .header-inner,
    .stats-container, .about-container, .projects-container,
    .refs-container, .contact-container, .footer-inner { padding: 0 1.2rem; }
    .stats-section { padding: 0 0 4rem; }
    .about-section, .projects-section, .refs-section, .contact-section { padding: 4.5rem 0; }
}

/* ===== FLOATING WHATSAPP BUTTON ===== */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    transition: transform 0.3s var(--transition), box-shadow 0.3s;
    animation: waBounce 3s ease-in-out 2s infinite;
}
.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 10px 35px rgba(37, 211, 102, 0.55);
}
.whatsapp-float svg { width: 30px; height: 30px; fill: #fff; }

@keyframes waBounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}


/* ===================================================================
   ===================================================================
   YENİ BÖLÜMLER — 2026 güncellemesi
   (Açılır menüler, mobil menü, dil seçimi, tam ekran Hakkımızda,
    iletişim kutusu, sosyal medya şeridi, kaydırmalı projeler,
    logolu referanslar, footer belgeler, iç sayfalar)
   =================================================================== */

/* ===== HEADER — NAV ÖLÇÜ AYARI ===== */
.main-nav { gap: 0.1rem; }
.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.32rem;
    font-size: 0.79rem;
    padding: 0.5rem 0.78rem;
    background: none;
    border: 0;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}
.nav-caret {
    width: 11px; height: 11px;
    flex-shrink: 0;
    transition: transform 0.3s var(--transition);
    opacity: 0.8;
}

/* ---- Açılır menü ---- */
.nav-item { position: relative; }
.nav-item.has-dropdown > .nav-link-drop { color: rgba(255,255,255,0.88); }
.site-header.scrolled .nav-item.has-dropdown > .nav-link-drop { color: var(--gray-700); }

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 10px);
    min-width: 232px;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    box-shadow: 0 18px 48px rgba(0,0,0,0.16);
    padding: 0.45rem;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.26s var(--transition), transform 0.26s var(--transition), visibility 0.26s;
    z-index: 60;
}
.nav-dropdown-wide { min-width: 274px; }

.nav-dropdown a {
    display: block;
    padding: 0.68rem 0.9rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    letter-spacing: 0.01em;
    line-height: 1.35;
    border-left: 2px solid transparent;
    transition: background 0.22s, color 0.22s, border-color 0.22s;
}
.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
    background: var(--gold-faint);
    color: var(--gold);
    border-left-color: var(--gold);
    outline: none;
}

/* Menüyü aç: fare üstündeyken veya klavye odağı içindeyken */
.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown,
.nav-item.has-dropdown.is-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
}
.nav-item.has-dropdown:hover  > .nav-link-drop .nav-caret,
.nav-item.has-dropdown.is-open > .nav-link-drop .nav-caret { transform: rotate(180deg); }
.nav-item.has-dropdown:hover  > .nav-link-drop { color: var(--gold-bright); }
.site-header.scrolled .nav-item.has-dropdown:hover > .nav-link-drop { color: var(--gold); }

/* ---- Dil seçimi ---- */
.lang-switch { position: relative; margin-left: 0.7rem; }

.lang-current {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.7rem;
    background: none;
    border: 1.5px solid rgba(255,255,255,0.32);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s;
}
.lang-current svg:first-child { width: 14px; height: 14px; }
.lang-current:hover { border-color: var(--gold-bright); color: var(--gold-bright); }
.site-header.scrolled .lang-current { border-color: var(--border); color: var(--dark); }
.site-header.scrolled .lang-current:hover { border-color: var(--gold); color: var(--gold); }

.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    min-width: 168px;
    background: var(--white);
    border: 1px solid var(--border);
    border-top: 3px solid var(--gold);
    box-shadow: 0 18px 48px rgba(0,0,0,0.16);
    padding: 0.35rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.24s, transform 0.24s, visibility 0.24s;
    z-index: 60;
}
.lang-switch:hover .lang-menu,
.lang-switch:focus-within .lang-menu,
.lang-switch.is-open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.lang-opt {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding: 0.6rem 0.8rem;
    background: none;
    border: 0;
    text-align: left;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-700);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}
.lang-opt:hover:not(.is-disabled) { background: var(--gold-faint); color: var(--gold); }
.lang-opt.is-active { color: var(--gold); font-weight: 700; }
.lang-opt.is-active::after { content: '✓'; font-size: 0.8rem; }
.lang-opt.is-disabled { color: var(--gray-300); cursor: not-allowed; }
.lang-opt em {
    font-style: normal;
    font-size: 0.62rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray-300);
    border: 1px solid #e4e4e4;
    padding: 0.12rem 0.4rem;
}

/* ===== HAMBURGER + MOBİL MENÜ ===== */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    margin-left: auto;
    padding: 0 9px;
    background: none;
    border: 0;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: var(--white);
    transition: transform 0.35s var(--transition), opacity 0.25s;
}
.site-header.scrolled .nav-toggle span { background: var(--dark); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mnav-backdrop {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(2px);
    z-index: 1400;
    opacity: 0;
    transition: opacity 0.35s;
}
.mnav-backdrop.is-visible { opacity: 1; }

.mnav {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(360px, 88vw);
    background: var(--white);
    z-index: 1500;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.4s var(--transition);
    box-shadow: -12px 0 48px rgba(0,0,0,0.2);
}
.mnav.is-open { transform: translateX(0); }

/* [hidden] niteligi .mnav/.mnav-backdrop uzerinde display kuralini ezmesin */
.mnav[hidden], .mnav-backdrop[hidden] { display: none; }

.mnav-head {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.1rem 1.4rem;
    border-bottom: 1px solid var(--border-soft);
}
.mnav-close {
    width: 40px; height: 40px;
    background: none; border: 1px solid var(--border);
    color: var(--dark); cursor: pointer;
    display: grid; place-items: center;
}
.mnav-close svg { width: 18px; height: 18px; }

.mnav-links { display: flex; flex-direction: column; padding: 0.6rem 0; }
.mnav-links > a,
.mnav-group-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    padding: 0.95rem 1.4rem;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--dark);
    background: none;
    border: 0;
    border-bottom: 1px solid var(--border-soft);
    text-align: left;
    cursor: pointer;
}
.mnav-links > a:hover, .mnav-group-btn:hover { color: var(--gold); background: var(--gold-faint); }
.mnav-group-btn .nav-caret { width: 14px; height: 14px; }
.mnav-group.is-open .nav-caret { transform: rotate(180deg); }

/* Alt menü açılıp kapanması.
   NOT: Daha önce `grid-template-rows: 0fr` hilesi kullanılıyordu; bu yöntem
   yalnızca TEK çocuk öğede çalışır. Buradaki menülerde 2-4 bağlantı olduğu
   için ilk satır dışındakiler örtük `auto` satır oluyor ve menü kapalıyken
   bile görünüp üstteki başlığın üzerine biniyordu.
   Bunun yerine max-height kullanılıyor; değeri script.js açılışta
   içeriğin gerçek yüksekliğine göre ayarlıyor. */
.mnav-sub {
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    background: var(--off-white);
    transition: max-height 0.34s var(--transition), visibility 0s linear 0.34s;
}
.mnav-group.is-open .mnav-sub {
    visibility: visible;
    transition: max-height 0.34s var(--transition), visibility 0s;
}
.mnav-sub a {
    display: block;
    padding: 0.8rem 1.4rem 0.8rem 2.3rem;
    font-size: 0.87rem;
    color: var(--gray-700);
    border-bottom: 1px solid var(--border-soft);
}
.mnav-sub a:hover { color: var(--gold); }

.mnav-lang { padding: 1.3rem 1.4rem 0.4rem; }
.mnav-lang-label {
    font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
    text-transform: uppercase; color: var(--gold);
}
.mnav-lang-opts { display: flex; flex-direction: column; margin-top: 0.5rem; border: 1px solid var(--border); }
.mnav-lang-opts .lang-opt { border-bottom: 1px solid var(--border-soft); }
.mnav-lang-opts .lang-opt:last-child { border-bottom: 0; }

.mnav-social { display: flex; gap: 0.6rem; padding: 1.4rem; margin-top: auto; }
.mnav-social-link {
    width: 40px; height: 40px;
    border: 1px solid var(--border);
    display: grid; place-items: center;
    color: var(--gray-700);
    transition: all 0.25s;
}
.mnav-social-link svg { width: 17px; height: 17px; }
.mnav-social-link:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

body.nav-open { overflow: hidden; }

/* ===== HAKKIMIZDA — tam genişlik görsel + üstünde yazı ===== */
.about-hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    isolation: isolate;
}
.about-hero-bg { position: absolute; inset: 0; z-index: -2; }
.about-hero-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.03);
}
.about-hero-veil {
    position: absolute; inset: 0; z-index: -1;
    background:
        linear-gradient(to right, rgba(9,9,9,0.92) 0%, rgba(9,9,9,0.78) 42%, rgba(9,9,9,0.42) 78%, rgba(9,9,9,0.3) 100%),
        linear-gradient(to bottom, rgba(9,9,9,0.55), rgba(9,9,9,0.2) 40%, rgba(9,9,9,0.6));
}

.about-hero-inner {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 6.5rem 2.5rem;
}
.about-hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--gold-bright);
    margin-bottom: 1.2rem;
}
.eyebrow-rule { display: block; width: 42px; height: 1.5px; background: var(--gold-bright); }

.about-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2.1rem, 4.4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--white);
    margin-bottom: 1.6rem;
    text-shadow: 0 2px 26px rgba(0,0,0,0.4);
}

.about-hero-text {
    max-width: 62ch;
    font-size: clamp(1rem, 1.16vw, 1.12rem);
    line-height: 1.92;
    color: rgba(255,255,255,0.86);
    margin-bottom: 2.4rem;
    text-shadow: 0 1px 18px rgba(0,0,0,0.45);
}

.about-hero-links { display: flex; flex-wrap: wrap; gap: 0.9rem; }

.about-link-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1.5rem;
    border: 1.5px solid rgba(255,255,255,0.32);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(6px);
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 0.86rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    transition: background 0.3s, border-color 0.3s, color 0.3s, transform 0.3s;
}
.about-link-btn svg { width: 17px; height: 17px; transition: transform 0.3s var(--transition); }
.about-link-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}
.about-link-btn:hover svg { transform: translateX(4px); }

.about-link-btn.dark {
    border-color: var(--border);
    background: var(--white);
    color: var(--dark);
    backdrop-filter: none;
}
.about-link-btn.dark:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }

/* ===== SOSYAL MEDYA ŞERİDİ ===== */
.social-ribbon {
    background: var(--dark);
    padding: 1.15rem 0;
}
.ribbon-inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.4rem;
}
.ribbon-label {
    font-family: 'Outfit', sans-serif;
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.22em; text-transform: uppercase;
    color: var(--gold-bright);
    white-space: nowrap;
}
.ribbon-rule { flex: 1; height: 1px; background: rgba(255,255,255,0.12); }
.ribbon-links { display: flex; gap: 0.6rem; }
.ribbon-link {
    width: 42px; height: 42px;
    border: 1px solid rgba(255,255,255,0.16);
    display: grid; place-items: center;
    color: rgba(255,255,255,0.62);
    transition: all 0.3s var(--transition);
}
.ribbon-link svg { width: 18px; height: 18px; }
.ribbon-link:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
}
.ribbon-handle {
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255,255,255,0.34);
    letter-spacing: 0.04em;
    white-space: nowrap;
}

/* ===== PROJELER — KAYDIRMALI TASARIM ===== */
.pcar-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2.6rem;
}
.pcar-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.9rem, 3.4vw, 2.9rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.03em;
    color: var(--dark);
}

.pfilters { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.pfilter {
    padding: 0.62rem 1.25rem;
    border: 1px solid transparent;
    border-radius: 999px;
    background: none;
    font-family: 'Outfit', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-500);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.pfilter:hover { color: var(--dark); background: var(--gray-100); }
.pfilter.is-active {
    background: var(--gray-100);
    border-color: #e2e2e2;
    color: var(--dark);
    font-weight: 600;
}

.pcar {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.9rem;
}
.pcar-nav {
    width: 48px; height: 48px;
    border-radius: 50%;
    border: 1px solid #e4e4e4;
    background: var(--white);
    color: var(--dark);
    display: grid; place-items: center;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    transition: background 0.28s, color 0.28s, border-color 0.28s, transform 0.28s, opacity 0.28s;
}
.pcar-nav svg { width: 20px; height: 20px; }
.pcar-nav:hover:not(:disabled) {
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
    transform: scale(1.07);
}
.pcar-nav:disabled { opacity: 0.32; cursor: default; }

.pcar-viewport {
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0.3rem 1.4rem;
    margin: -0.5rem -0.3rem -1.4rem;
}
.pcar-viewport::-webkit-scrollbar { display: none; }

.pcar-track { display: flex; gap: 1.5rem; align-items: stretch; }

.pcard {
    flex: 0 0 clamp(268px, 25vw, 336px);
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    background: var(--white);
    border: 1px solid #ededed;
    border-radius: 20px;
    overflow: hidden;
    transition: box-shadow 0.35s var(--transition), transform 0.35s var(--transition), border-color 0.35s;
}
.pcard:hover {
    box-shadow: 0 18px 46px rgba(0,0,0,0.11);
    transform: translateY(-5px);
    border-color: #e0e0e0;
}
.pcard[hidden] { display: none; }

.pcard-img {
    position: relative;
    aspect-ratio: 4 / 3.35;
    overflow: hidden;
    background: var(--gray-100);
}
.pcard-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.75s var(--transition);
}
.pcard:hover .pcard-img img { transform: scale(1.06); }

.pcard-kicker {
    position: absolute;
    top: 0.9rem; left: 0.9rem;
    padding: 0.36rem 0.85rem;
    border-radius: 999px;
    background: rgba(12,12,12,0.72);
    backdrop-filter: blur(6px);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.pcard-body {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    padding: 1.45rem 1.5rem 1.2rem;
    flex: 1;
}
.pcard-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.24rem;
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.015em;
    color: var(--dark);
}
.pcard-meta {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.85rem;
    color: var(--gray-500);
    line-height: 1.5;
}
.pcard-meta svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; color: var(--gold); fill: var(--gold); }

.pcard-year {
    position: absolute;
    top: 1.5rem; right: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-300);
    letter-spacing: 0.06em;
}

.pcard-foot {
    margin-top: auto;
    padding-top: 1.1rem;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.pcard-cta {
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark);
    transition: color 0.25s;
}
.pcard:hover .pcard-cta { color: var(--gold); }

.pcard-arrow {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--dark);
    color: var(--white);
    display: grid; place-items: center;
    flex-shrink: 0;
    transition: background 0.3s, transform 0.3s var(--transition);
}
.pcard-arrow svg { width: 17px; height: 17px; }
.pcard:hover .pcard-arrow { background: var(--gold); transform: rotate(-45deg); }

.pcar-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin-top: 2.4rem;
    flex-wrap: wrap;
}
.pcar-progress {
    flex: 1;
    min-width: 160px;
    height: 3px;
    background: var(--gray-100);
    border-radius: 999px;
    overflow: hidden;
}
.pcar-progress span {
    display: block;
    height: 100%;
    width: 30%;
    background: linear-gradient(to right, var(--gold), var(--gold-bright));
    border-radius: 999px;
    transition: width 0.3s var(--transition), transform 0.3s var(--transition);
}
.pcar-swipe-hint { display: none; font-size: 0.8rem; color: var(--gray-300); letter-spacing: 0.05em; }

/* ===== REFERANSLAR — geniş logolu kartlar ===== */
.refs-section { background: var(--off-white); }
.refs-container { max-width: 1440px; }
.refs-track-container::before { background: linear-gradient(to right, var(--off-white) 0%, transparent 100%); }
.refs-track-container::after  { background: linear-gradient(to left,  var(--off-white) 0%, transparent 100%); }
.refs-track { gap: 1.6rem; animation-duration: 52s; }
.refs-subtitle { max-width: 620px; }

.ref-card {
    width: 214px;
    min-height: 200px;
    gap: 0;
    padding: 1.7rem 1.2rem 1.4rem;
    border-radius: 16px;
    border: 1.5px solid #ececec;
    background: var(--white);
    justify-content: flex-start;
}
.ref-logo {
    width: 100%;
    height: 96px;
    display: grid;
    place-items: center;
    margin-bottom: 1rem;
}
.ref-logo img {
    /* Global `img { width:100%; height:100% }` kuralini ezer:
       logo kutuya sigar, orani asla bozulmaz. */
    width: auto !important;
    height: auto !important;
    max-width: 100%;
    max-height: 96px;
    object-fit: contain;
    transition: transform 0.35s var(--transition);
}

/* Kare / dikey logolar (MSB, TOGG, İLBANK) yatay olanlarla ayni
   gorsel agirlikta dursun diye biraz kucultulur. */
.ref-logo.ref-logo-tall img { max-height: 80px; }

.ref-card:hover .ref-logo img { transform: scale(1.05); }

.ref-word {
    font-family: 'Outfit', sans-serif;
    font-size: 1.72rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    line-height: 1.08;
    text-align: center;
    display: block;
}
.ref-word.ref-navy   { color: #16357a; }
.ref-word.ref-blue   { color: #0f62c4; }
.ref-word.ref-orange { color: #e8511f; }
.ref-word.ref-red    { color: #c8102e; }
.ref-word.ref-dark   { color: #1f1f1f; }

.ref-sub {
    font-size: 0.78rem;
    font-weight: 500;
    color: #999;
    line-height: 1.45;
    margin-top: auto;
}

/* ===== FOOTER — Hızlı Erişim ve Belgeler ===== */
.footer-top { grid-template-columns: 1.9fr 1fr 1.15fr 1.05fr 1.25fr; gap: 2.6rem; }

.footer-docs .doc-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.75rem 0.95rem;
    margin-bottom: 0.6rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.62);
    font-family: 'Outfit', sans-serif;
    font-size: 0.84rem;
    font-weight: 500;
    text-align: left;
    cursor: not-allowed;
    transition: border-color 0.3s, color 0.3s, background 0.3s;
}
.footer-docs .doc-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.footer-docs .doc-btn:hover { border-color: var(--gold); color: var(--gold-bright); background: rgba(212,175,55,0.06); }
.doc-note {
    font-size: 0.74rem;
    color: rgba(255,255,255,0.24);
    line-height: 1.6;
    margin-top: 0.5rem;
}

/* ===================================================================
   İÇ SAYFALAR
   =================================================================== */
.page-main { background: var(--white); }

/* ---- Sayfa başlığı ---- */
.page-hero {
    position: relative;
    min-height: 52vh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate;
}
.page-hero-bg { position: absolute; inset: 0; z-index: -2; }
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-veil {
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(to bottom, rgba(8,8,8,0.82) 0%, rgba(8,8,8,0.7) 45%, rgba(8,8,8,0.88) 100%);
}
.page-hero-inner {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 10rem 2.5rem 3.4rem;
}
.page-hero-eyebrow {
    font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.24em; text-transform: uppercase;
    color: var(--gold-bright); margin-bottom: 0.9rem;
}
.page-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4.2vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 0.8rem;
}
.page-hero-sub {
    font-size: 1.02rem;
    color: rgba(255,255,255,0.68);
    max-width: 58ch;
    line-height: 1.75;
    margin-bottom: 1.6rem;
}
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 0.5rem; font-size: 0.8rem; }
.crumbs a { color: rgba(255,255,255,0.5); transition: color 0.25s; }
.crumbs a:hover { color: var(--gold-bright); }
.crumbs span[aria-current] { color: var(--gold-bright); font-weight: 600; }
.crumb-sep { color: rgba(255,255,255,0.24); }

/* ---- Ortak blok başlıkları ---- */
.block-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.3rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.15;
    color: var(--dark);
    margin-bottom: 0.8rem;
}
.block-sub {
    font-size: 0.98rem;
    color: var(--gray-500);
    line-height: 1.8;
    max-width: 68ch;
    margin-bottom: 2.6rem;
}

/* ---- Metin bölümü ---- */
.prose-section { padding: 5.5rem 0; background: var(--white); }
.prose-inner {
    max-width: 1440px; margin: 0 auto; padding: 0 2.5rem;
    display: grid; grid-template-columns: 1.65fr 1fr; gap: 4rem; align-items: start;
}
.prose-inner-single { max-width: 900px; margin: 0 auto; padding: 0 2.5rem; }
.prose-narrow { padding: 5rem 0 3.5rem; }

.prose-lead {
    font-size: clamp(1.1rem, 1.6vw, 1.32rem);
    font-weight: 500;
    line-height: 1.75;
    color: var(--dark);
    margin-bottom: 1.5rem;
    padding-left: 1.4rem;
    border-left: 3px solid var(--gold);
}
.prose-text { font-size: 1rem; color: var(--gray-500); line-height: 1.92; margin-bottom: 1.1rem; }

.profile-facts {
    background: var(--off-white);
    border: 1px solid var(--border-soft);
    border-top: 3px solid var(--gold);
    padding: 2rem 1.9rem;
    position: sticky;
    top: 120px;
}
.facts-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem; font-weight: 700;
    letter-spacing: 0.02em; color: var(--dark);
    margin-bottom: 1.3rem;
}
.facts-list > div { padding: 0.85rem 0; border-bottom: 1px solid var(--border-soft); }
.facts-list > div:last-child { border-bottom: 0; }
.facts-list dt {
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.25rem;
}
.facts-list dd { font-size: 0.92rem; color: var(--dark); line-height: 1.55; }
.facts-cta { margin-top: 1.6rem; width: 100%; justify-content: center; }

/* ---- Değerler / kart ızgaraları ---- */
.values-section { background: var(--off-white); padding: 5rem 0; border-top: 1px solid var(--border-soft); }
.values-inner { max-width: 1440px; margin: 0 auto; padding: 0 2.5rem; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.value-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-top: 3px solid var(--gold);
    padding: 1.8rem 1.6rem;
    transition: transform 0.3s var(--transition), box-shadow 0.3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.value-title { font-family: 'Outfit', sans-serif; font-size: 1.08rem; font-weight: 700; color: var(--dark); margin-bottom: 0.55rem; }
.value-text { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }

/* ---- Tarihçe ---- */
.timeline-section { background: var(--white); padding: 5.5rem 0; }
.timeline-inner { max-width: 980px; margin: 0 auto; padding: 0 2.5rem; }
.timeline { list-style: none; position: relative; padding-left: 0; }
.timeline::before {
    content: '';
    position: absolute;
    left: 92px; top: 8px; bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold), var(--gold-pale));
}
.tl-item { position: relative; display: grid; grid-template-columns: 92px 1fr; gap: 2.4rem; padding-bottom: 2.6rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-year {
    font-family: 'Outfit', sans-serif;
    font-size: 1.18rem; font-weight: 800;
    color: var(--gold); text-align: right;
    letter-spacing: -0.01em;
    line-height: 1.5;
}
.tl-body { position: relative; }
.tl-body::before {
    content: '';
    position: absolute;
    left: -2.4rem; top: 9px;
    transform: translateX(-50%);
    width: 11px; height: 11px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--gold);
}
.tl-title { font-family: 'Outfit', sans-serif; font-size: 1.1rem; font-weight: 700; color: var(--dark); margin-bottom: 0.4rem; }
.tl-text { font-size: 0.94rem; color: var(--gray-500); line-height: 1.8; }

/* ---- Yönetim kurulu ---- */
.board-section { background: var(--white); padding: 5.5rem 0; }
.board-inner { max-width: 1100px; margin: 0 auto; padding: 0 2.5rem; }
.board-head { text-align: center; margin-bottom: 3rem; }
.board-head .block-sub { margin-left: auto; margin-right: auto; }
.board-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.board-card {
    background: var(--off-white);
    border: 1px solid var(--border-soft);
    border-top: 3px solid var(--gold);
    padding: 2.6rem 2.2rem;
    text-align: center;
    transition: transform 0.35s var(--transition), box-shadow 0.35s;
}
.board-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.board-avatar {
    width: 96px; height: 96px;
    margin: 0 auto 1.4rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    display: grid; place-items: center;
    box-shadow: var(--shadow-gold);
}
.board-avatar span {
    font-family: 'Outfit', sans-serif;
    font-size: 1.9rem; font-weight: 800;
    color: var(--white); letter-spacing: 0.02em;
}
.board-name { font-family: 'Outfit', sans-serif; font-size: 1.35rem; font-weight: 800; color: var(--dark); letter-spacing: -0.02em; }
.board-role {
    font-size: 0.76rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold); margin: 0.5rem 0 1rem;
}
.board-bio { font-size: 0.93rem; color: var(--gray-500); line-height: 1.82; }

.gov-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.gov-card { background: var(--white); border: 1px solid var(--border-soft); padding: 1.8rem 1.6rem; }
.gov-title { font-family: 'Outfit', sans-serif; font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.gov-title::before { content: ''; display: block; width: 26px; height: 2px; background: var(--gold); margin-bottom: 0.8rem; }
.gov-text { font-size: 0.9rem; color: var(--gray-500); line-height: 1.75; }

/* ---- Ekibimiz ---- */
.team-section { background: var(--white); padding: 5.5rem 0; }
.team-inner { max-width: 1440px; margin: 0 auto; padding: 0 2.5rem; }
.team-head { max-width: 780px; margin-bottom: 3rem; }
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(268px, 1fr)); gap: 1.2rem; }
.team-card {
    background: var(--off-white);
    border: 1px solid var(--border-soft);
    padding: 1.9rem 1.7rem;
    display: flex; flex-direction: column;
    transition: transform 0.32s var(--transition), box-shadow 0.32s, background 0.32s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); background: var(--white); }
.team-icon {
    width: 46px; height: 46px;
    border: 1.5px solid var(--border);
    display: grid; place-items: center;
    color: var(--gold);
    margin-bottom: 1.1rem;
}
.team-icon svg { width: 22px; height: 22px; }
.team-dept {
    font-size: 0.66rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.45rem;
}
.team-role { font-family: 'Outfit', sans-serif; font-size: 1.08rem; font-weight: 700; color: var(--dark); margin-bottom: 0.6rem; line-height: 1.3; }
.team-text { font-size: 0.9rem; color: var(--gray-500); line-height: 1.75; }

/* ---- Politika kartları ---- */
.policy-section { background: var(--off-white); padding: 4.5rem 0 5.5rem; border-top: 1px solid var(--border-soft); }
.policy-inner { max-width: 1440px; margin: 0 auto; padding: 0 2.5rem; }
.policy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.policy-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-top: 3px solid var(--gold);
    padding: 2.1rem 1.9rem;
}
.policy-std {
    display: inline-block;
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.16em; text-transform: uppercase;
    color: var(--gold);
    border: 1px solid var(--border);
    padding: 0.28rem 0.7rem;
    margin-bottom: 1rem;
}
.policy-title { font-family: 'Outfit', sans-serif; font-size: 1.22rem; font-weight: 800; color: var(--dark); margin-bottom: 1.1rem; letter-spacing: -0.02em; }
.policy-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.policy-list li {
    position: relative;
    padding-left: 1.5rem;
    font-size: 0.92rem;
    color: var(--gray-500);
    line-height: 1.72;
}
.policy-list li::before {
    content: '';
    position: absolute;
    left: 0; top: 9px;
    width: 7px; height: 7px;
    background: var(--gold);
    transform: rotate(45deg);
}

.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.cert-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    padding: 1.8rem 1.6rem;
    text-align: center;
}
.cert-code { display: block; font-family: 'Outfit', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--gold); letter-spacing: -0.01em; }
.cert-name { display: block; font-size: 0.86rem; color: var(--gray-500); margin-top: 0.4rem; }

/* ---- Sosyal sorumluluk ---- */
.csr-section { background: var(--off-white); padding: 4rem 0 5.5rem; border-top: 1px solid var(--border-soft); }
.csr-inner { max-width: 1440px; margin: 0 auto; padding: 0 2.5rem; }
.csr-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.3rem; }
.csr-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    padding: 2rem 1.8rem;
    transition: transform 0.32s var(--transition), box-shadow 0.32s;
}
.csr-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.csr-tag {
    display: inline-block;
    font-size: 0.66rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--white);
    background: var(--gold);
    padding: 0.28rem 0.75rem;
    margin-bottom: 1rem;
}
.csr-title { font-family: 'Outfit', sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--dark); margin-bottom: 0.6rem; line-height: 1.3; }
.csr-text { font-size: 0.92rem; color: var(--gray-500); line-height: 1.8; }

/* ---- Kariyer: açık pozisyonlar ---- */
.jobs-section { background: var(--off-white); padding: 4rem 0 5rem; border-top: 1px solid var(--border-soft); }
.jobs-inner { max-width: 1000px; margin: 0 auto; padding: 0 2.5rem; }
.jobs-list { display: flex; flex-direction: column; gap: 0.8rem; }

.job { background: var(--white); border: 1px solid var(--border-soft); transition: border-color 0.3s, box-shadow 0.3s; }
.job.is-open { border-color: var(--border); box-shadow: var(--shadow-card); }
.job-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.4rem;
    width: 100%;
    padding: 1.4rem 1.7rem;
    background: none;
    border: 0;
    text-align: left;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
}
.job-head-main { display: flex; flex-direction: column; gap: 0.28rem; }
.job-title { font-size: 1.08rem; font-weight: 700; color: var(--dark); }
.job-meta { font-size: 0.82rem; color: var(--gray-500); letter-spacing: 0.02em; }
.job-toggle {
    position: relative;
    width: 34px; height: 34px;
    border: 1px solid var(--border);
    flex-shrink: 0;
    transition: background 0.3s, border-color 0.3s, transform 0.3s;
}
.job-toggle::before, .job-toggle::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    background: var(--gold);
    transition: opacity 0.3s, background 0.3s;
}
.job-toggle::before { width: 13px; height: 2px; }
.job-toggle::after  { width: 2px; height: 13px; }
.job.is-open .job-toggle { background: var(--gold); border-color: var(--gold); }
.job.is-open .job-toggle::before { background: var(--white); }
.job.is-open .job-toggle::after  { opacity: 0; }
.job-head:hover .job-title { color: var(--gold); }

.job-panel { padding: 0 1.7rem 1.7rem; }
.job-panel h4 {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 0.9rem;
}
.job-panel ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.4rem; }
.job-panel li {
    position: relative; padding-left: 1.4rem;
    font-size: 0.92rem; color: var(--gray-500); line-height: 1.7;
}
.job-panel li::before {
    content: ''; position: absolute; left: 0; top: 8px;
    width: 6px; height: 6px; background: var(--gold); transform: rotate(45deg);
}
.job-apply { border: 0; cursor: pointer; }

/* ---- Kariyer: başvuru formu ---- */
.apply-section { background: var(--white); padding: 5rem 0 6rem; }
.apply-inner {
    max-width: 1240px; margin: 0 auto; padding: 0 2.5rem;
    display: grid; grid-template-columns: 1fr 1.25fr; gap: 4rem; align-items: start;
}
.apply-left .block-sub { margin-bottom: 1.8rem; }
.apply-notes { list-style: none; display: flex; flex-direction: column; gap: 0.9rem; }
.apply-notes li {
    position: relative; padding-left: 1.5rem;
    font-size: 0.9rem; color: var(--gray-500); line-height: 1.7;
}
.apply-notes li::before {
    content: ''; position: absolute; left: 0; top: 8px;
    width: 7px; height: 7px; background: var(--gold); transform: rotate(45deg);
}
.apply-notes a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }

.apply-form {
    display: flex; flex-direction: column; gap: 1.1rem;
    background: var(--off-white);
    border: 1px solid var(--border-soft);
    border-top: 3px solid var(--gold);
    padding: 2.2rem;
}
.form-group input[type="file"] {
    padding: 0.7rem 0.9rem;
    font-size: 0.86rem;
    color: var(--gray-500);
    background: var(--white);
    cursor: pointer;
}
.form-group input[type="file"]::file-selector-button {
    margin-right: 0.9rem;
    padding: 0.45rem 0.9rem;
    border: 1px solid var(--border);
    background: var(--gold-faint);
    color: var(--gold);
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
}
.form-check {
    display: flex; align-items: flex-start; gap: 0.65rem;
    font-size: 0.86rem; color: var(--gray-500); line-height: 1.6;
    cursor: pointer;
}
.form-check input { width: 17px; height: 17px; margin-top: 2px; accent-color: var(--gold); flex-shrink: 0; }
.form-hint { font-size: 0.78rem; color: var(--gray-300); line-height: 1.6; text-align: center; }

/* ---- Sayfa altı CTA ---- */
.page-cta { background: var(--off-white); padding: 4rem 0; border-top: 1px solid var(--border-soft); }
.page-cta-inner { max-width: 1000px; margin: 0 auto; padding: 0 2.5rem; text-align: center; }
.page-cta h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.4rem, 2.4vw, 2rem);
    font-weight: 800; letter-spacing: -0.025em; color: var(--dark);
    margin-bottom: 0.7rem;
}
.page-cta p { font-size: 0.96rem; color: var(--gray-500); margin-bottom: 1.8rem; }
.page-cta-links { display: flex; flex-wrap: wrap; gap: 0.9rem; justify-content: center; }

/* ===== ERİŞİLEBİLİRLİK ===== */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
    outline: 2px solid var(--gold-bright);
    outline-offset: 3px;
}
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    .refs-track { animation: none; }
}

/* ===================================================================
   RESPONSIVE — yeni bölümler
   =================================================================== */
@media (max-width: 1400px) {
    .nav-link { font-size: 0.75rem; padding: 0.5rem 0.62rem; }
    .lang-switch { margin-left: 0.4rem; }
}

@media (max-width: 1200px) {
    .main-nav, .lang-switch { display: none; }
    .nav-toggle { display: flex; }
    .footer-top { grid-template-columns: 1.6fr 1fr 1fr; gap: 2.4rem; }
}

@media (max-width: 1100px) {
    .prose-inner { grid-template-columns: 1fr; gap: 2.6rem; }
    .profile-facts { position: static; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .policy-grid { grid-template-columns: 1fr; }
    .gov-grid { grid-template-columns: 1fr; }
    .apply-inner { grid-template-columns: 1fr; gap: 2.6rem; }
}

@media (max-width: 900px) {
    .pcar { grid-template-columns: 1fr; }
    .pcar-nav { display: none; }
    .pcar-swipe-hint { display: block; }
    .board-grid { grid-template-columns: 1fr; }
    .cert-grid { grid-template-columns: 1fr; }
    .about-hero { min-height: auto; }
    .about-hero-inner { padding: 5.5rem 2.5rem; }
    .page-hero-inner { padding: 8.5rem 2.5rem 2.8rem; }
}

@media (max-width: 768px) {
    .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
    .values-grid { grid-template-columns: 1fr; }
    .pcar-head { align-items: flex-start; gap: 1.4rem; }
    .pfilters { width: 100%; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0.3rem; scrollbar-width: none; }
    .pfilters::-webkit-scrollbar { display: none; }
    .pcar-foot { flex-direction: column; align-items: stretch; gap: 1.2rem; }
    .pcar-foot .btn-outline-gold { text-align: center; }
    .ribbon-inner { flex-wrap: wrap; justify-content: center; gap: 1rem; }
    .ribbon-rule { display: none; }
    .about-hero-links { flex-direction: column; align-items: stretch; }
    .about-link-btn { justify-content: space-between; }
    .timeline::before { left: 6px; }
    .tl-item { grid-template-columns: 1fr; gap: 0.4rem; padding-left: 2.2rem; }
    .tl-year { text-align: left; }
    .tl-body::before { left: -2.2rem; top: -22px; transform: none; }
    .page-cta-links { flex-direction: column; }
}

@media (max-width: 480px) {
    .about-hero-inner, .page-hero-inner, .ribbon-inner,
    .prose-inner, .prose-inner-single, .values-inner, .timeline-inner,
    .board-inner, .team-inner, .policy-inner, .csr-inner, .jobs-inner,
    .apply-inner, .page-cta-inner { padding-left: 1.2rem; padding-right: 1.2rem; }
    .about-hero-inner { padding-top: 4.5rem; padding-bottom: 4.5rem; }
    .page-hero-inner { padding-top: 7.5rem; padding-bottom: 2.4rem; }
    .apply-form { padding: 1.5rem 1.2rem; }
    .pcard { flex: 0 0 82vw; }
    .ref-card { width: 178px; min-height: 178px; }
    .ref-logo { height: 78px; }
}

/* ===================================================================
   BİZE ULAŞIN — yeniden tasarlandı
   Sol: iletişim bilgileri  |  Sağ: "Bize Yazın" kutusu
   =================================================================== */
.contact-section { background: var(--off-white); padding: 6rem 0 7rem; }
.contact-container { align-items: start; gap: 5rem; }
.contact-left { padding-top: 0.5rem; }
.contact-text { margin-bottom: 2.4rem; }

/* ---- Sol sütun: bilgiler ---- */
.cinfo-list { display: flex; flex-direction: column; gap: 0.2rem; }

.cinfo-item {
    display: flex;
    align-items: flex-start;
    gap: 1.1rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--border-soft);
    transition: transform 0.28s var(--transition);
}
.cinfo-item:first-child { border-top: 1px solid var(--border-soft); }
a.cinfo-item:hover { transform: translateX(5px); }
a.cinfo-item:hover .cinfo-value { color: var(--gold); }

.cinfo-icon {
    width: 42px; height: 42px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-bright));
    display: grid; place-items: center;
    border-radius: 10px;
}
.cinfo-icon svg { width: 18px; height: 18px; fill: var(--white); stroke: var(--white); }
.cinfo-icon svg[stroke] { fill: none; }

.cinfo-body { display: flex; flex-direction: column; gap: 0.22rem; padding-top: 0.15rem; }
.cinfo-label {
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 0.17em; text-transform: uppercase;
    color: var(--gold);
}
.cinfo-value {
    font-size: 1rem; font-weight: 500;
    color: var(--dark); line-height: 1.55;
    transition: color 0.25s;
}

/* ---- Sağ sütun: "Bize Yazın" kutusu ---- */
.write-box {
    background: var(--white);
    border: 1px solid #ececec;
    border-radius: 16px;
    padding: 2.6rem 2.4rem;
    box-shadow: 0 6px 34px rgba(0,0,0,0.05);
}

.write-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.5rem, 2.2vw, 1.95rem);
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #16233f;
    margin-bottom: 1.7rem;
}

.write-form { display: flex; flex-direction: column; gap: 1rem; }

.write-form input,
.write-form textarea {
    width: 100%;
    padding: 1.05rem 1.25rem;
    background: var(--white);
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 0.98rem;
    color: var(--dark);
    transition: border-color 0.28s, box-shadow 0.28s;
}
.write-form textarea { min-height: 172px; resize: vertical; line-height: 1.7; }

.write-form input::placeholder,
.write-form textarea::placeholder { color: #9a9a9a; }

.write-form input:focus,
.write-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184, 148, 26, 0.12);
}

.write-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    margin-top: 0.4rem;
    padding: 1.15rem 1.5rem;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--gold-mid), var(--gold-bright));
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 1.02rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: transform 0.3s var(--transition), box-shadow 0.3s, opacity 0.3s;
}
.write-submit svg { width: 19px; height: 19px; }
.write-submit:hover:not(:disabled) { transform: translateY(-2px); box-shadow: var(--shadow-gold); }

/* Ekran okuyucular için gizli etiketler */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1100px) {
    .contact-container { gap: 3rem; }
}
@media (max-width: 600px) {
    .write-box { padding: 1.9rem 1.4rem; border-radius: 14px; }
    .write-form textarea { min-height: 150px; }
}


/* ===================================================================
   ===================================================================
   MOBİL OPTİMİZASYON
   Bu bloğun tamamı @media içindedir; 1024 px üstü (masaüstü)
   görünüme HİÇBİR etkisi yoktur.
   =================================================================== */

/* ---- Her ekranda geçerli, görünümü değiştirmeyen düzeltmeler ---- */
html {
    -webkit-text-size-adjust: 100%;   /* iOS'un yatay çevirince yazıyı şişirmesini engeller */
    text-size-adjust: 100%;
}
body { -webkit-tap-highlight-color: rgba(184, 148, 26, 0.18); }

/* Video yerine poster kaldığında (mobil) görsel tam otursun */
#hero-video.is-poster-only { object-fit: cover; }


@media (max-width: 1024px) {

/* ===== 1. DİKEY RİTİM — bölümler mobilde çok uzundu ===== */
.projects-section,
.refs-section,
.contact-section,
.prose-section,
.timeline-section,
.board-section,
.team-section      { padding: 3.6rem 0; }

.values-section,
.policy-section,
.csr-section,
.jobs-section,
.apply-section,
.page-cta          { padding: 3.2rem 0; }

.prose-narrow      { padding: 3.2rem 0 2rem; }
.site-footer       { padding: 3.2rem 0 0; }
.social-ribbon     { padding: 1rem 0; }
.stats-section     { padding: 0 0 3rem; }
.stats-header      { padding-top: 2.4rem; }
.about-hero-inner  { padding-top: 4.2rem; padding-bottom: 4.2rem; }

.block-sub         { margin-bottom: 1.7rem; }
.pcar-head         { margin-bottom: 1.8rem; }
.refs-header       { margin-bottom: 2.2rem; }
.refs-track-container { margin-top: 1.8rem; }
.pcar-foot         { margin-top: 1.6rem; }
.footer-top        { padding-bottom: 2.4rem; }

/* ===== 2. HERO — adres çubuğu açılıp kapanınca zıplamasın ===== */
.hero-section { min-height: 560px; }
@supports (height: 100svh) {
    .hero-section { height: 100svh; }          /* svh = küçük görünüm alanı */
}
/* "Keşfet" ipucu, "İletişime Geç" butonunun hemen dibindeydi.
   İpucu aşağı alındı, içeriğe de alttan boşluk verildi. */
.hero-content     { padding-top: 4rem; padding-bottom: 5.5rem; }
.hero-scroll-cue  { bottom: 1.3rem; gap: 0.4rem; }
.scroll-cue-line  { height: 30px; }

.page-hero { min-height: 40vh; }
@supports (min-height: 40svh) {
    .page-hero { min-height: 40svh; }
}
.page-hero-inner { padding-top: 6.5rem; padding-bottom: 2.4rem; }

/* ===== 3. OKUNABİLİRLİK — 12 px altı yazı kalmasın ===== */
.section-eyebrow,
.page-hero-eyebrow,
.refs-eyebrow-label,
.ribbon-label,
.cinfo-label,
.team-dept,
.csr-tag,
.policy-std,
.facts-list dt,
.job-panel h4,
.mnav-lang-label,
.footer-links-col h4 { font-size: 0.76rem; letter-spacing: 0.14em; }

.ref-sub      { font-size: 0.82rem; }
.doc-note     { font-size: 0.8rem; }
.crumbs       { font-size: 0.84rem; }
.footer-bottom { font-size: 0.82rem; }
.contact-text { font-size: 1rem; }
.footer-desc  { font-size: 0.95rem; }

/* ===== 4. DOKUNMA HEDEFLERİ — parmakla rahat basılsın (min 44 px) ===== */
.footer-links-col a,
.footer-links-col span {
    padding: 0.62rem 0;
    margin-bottom: 0;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.social-link,
.ribbon-link,
.mnav-social-link { width: 46px; height: 46px; }
.social-link svg, .ribbon-link svg, .mnav-social-link svg { width: 19px; height: 19px; }

.pfilter { min-height: 44px; padding: 0.7rem 1.15rem; }

.pcard-foot { padding-top: 0.9rem; }
.pcard-cta  { padding: 0.6rem 0; min-height: 44px; display: flex; align-items: center; }

.crumbs a, .crumbs span { padding: 0.6rem 0; display: inline-flex; align-items: center; min-height: 44px; }
.hero-scroll-cue span { font-size: 0.78rem; }
.pcard-kicker { font-size: 0.76rem; }
.apply-notes a { padding: 0.2rem 0; display: inline-block; }
.form-check { padding: 0.4rem 0; }
.form-check input { width: 22px; height: 22px; margin-top: 0; }

.job-head { padding: 1.15rem 1.3rem; min-height: 68px; }
.job-panel { padding: 0 1.3rem 1.4rem; }

/* ===== 5. FORMLAR — iOS odaklanınca sayfayı yakınlaştırmasın =====
   16 px altındaki alanlarda Safari otomatik zoom yapar. */
.write-form input,
.write-form textarea,
.form-group input,
.form-group select,
.form-group textarea { font-size: 16px; }

.write-form input, .write-form textarea { padding: 0.95rem 1.1rem; }
.write-submit { padding: 1.05rem 1.2rem; }

/* ===== 6. PROJE KARTLARI ===== */
.pcar-viewport { scroll-padding-left: 0; }
.pcard-title   { font-size: 1.15rem; }
.pcard-year    { top: 1.2rem; right: 1.2rem; }
.pcard-body    { padding: 1.2rem 1.25rem 1rem; }

/* ===== 7. REFERANS ŞERİDİ — mobilde daha hızlı dönsün ===== */
.refs-track { animation-duration: 34s; gap: 1rem; }
.refs-track-container::before,
.refs-track-container::after { width: 42px; }

/* ===== 8. İLETİŞİM ===== */
.cinfo-item { padding: 1.05rem 0; gap: 0.9rem; }
.cinfo-icon { width: 40px; height: 40px; }
.write-box  { padding: 1.8rem 1.4rem; }

/* ===== 9. DİĞER ===== */
.team-grid, .csr-grid { grid-template-columns: 1fr; gap: 0.9rem; }
.team-card, .csr-card, .value-card, .gov-card, .policy-card { padding: 1.5rem 1.4rem; }
.board-card { padding: 2rem 1.5rem; }
.board-avatar { width: 78px; height: 78px; margin-bottom: 1.1rem; }
.board-avatar span { font-size: 1.55rem; }
.profile-facts { padding: 1.6rem 1.4rem; }
.apply-form { padding: 1.6rem 1.3rem; }
.page-cta p { margin-bottom: 1.4rem; }

}  /* /max-width: 1024px */


@media (max-width: 640px) {

/* Başlıklar dar ekranda taşmasın, satır araları sıkışmasın */
.hero-title       { font-size: clamp(2rem, 9.5vw, 2.8rem); line-height: 1.08; }
.hero-desc        { font-size: 1rem; line-height: 1.7; }
.about-hero-title { font-size: clamp(1.75rem, 8.4vw, 2.4rem); }
.about-hero-text  { font-size: 1rem; line-height: 1.8; }
.page-hero-title  { font-size: clamp(1.7rem, 8vw, 2.3rem); }
.page-hero-sub    { font-size: 0.95rem; }
.pcar-title       { font-size: clamp(1.6rem, 7.6vw, 2.1rem); }
.refs-title       { font-size: clamp(1.6rem, 7.6vw, 2.1rem); }
.contact-title    { font-size: clamp(1.7rem, 8vw, 2.3rem); }
.block-title      { font-size: clamp(1.45rem, 6.6vw, 1.9rem); }
.stats-title      { font-size: clamp(1.5rem, 7vw, 2rem); }
.write-title      { font-size: 1.45rem; }

/* Rakamlar 2x2 ızgarada sıkışmasın */
.stat-card   { padding: 1.5rem 1rem; }
.stat-number { font-size: 2.2rem; }
.stat-label  { font-size: 0.78rem; letter-spacing: 0.06em; }

/* Kaydırmalı proje kartı ekranın tamamına yayılmasın, sonraki kart görünsün */
.pcard { flex: 0 0 78vw; }

/* Referans kartları */
.ref-card { width: 158px; min-height: 164px; padding: 1.2rem 0.9rem 1rem; }
.ref-logo { height: 74px; margin-bottom: 0.7rem; }
.ref-logo img { max-height: 74px; }
.ref-logo.ref-logo-tall img { max-height: 62px; }

/* Zaman çizelgesi tek sütun */
.tl-item { padding-bottom: 1.9rem; }
.tl-title { font-size: 1.02rem; }

/* Footer ve şerit */
.ribbon-handle { display: none; }
.footer-social { gap: 0.55rem; }
.footer-docs .doc-btn { min-height: 48px; }

/* Sayfa altı butonları tam genişlik */
.page-cta-links .about-link-btn,
.pcar-foot .btn-outline-gold { width: 100%; justify-content: space-between; }
.pcar-foot .btn-outline-gold { justify-content: center; }

}  /* /max-width: 640px */


@media (max-width: 400px) {
/* Çok dar ekranlar (iPhone SE vb.) */
.hero-section  { min-height: 520px; }
.pcard         { flex: 0 0 84vw; }
.ref-card      { width: 146px; min-height: 152px; }
.ref-logo      { height: 66px; }
.ref-logo img  { max-height: 66px; }
.write-box     { padding: 1.5rem 1.15rem; }
.board-grid    { gap: 1rem; }
}


/* Dosya seçme alanı: okunur boyut + dar ekranda taşmayı önle.
   Flex/grid içindeki <input type="file"> varsayılan olarak kendi
   içerik genişliği kadar yer kaplar ve `min-width:auto` yüzünden
   küçülemez; 320 px ekranlarda sayfayı yatay taşırıyordu. */
.form-group { min-width: 0; }
.form-group input,
.form-group select,
.form-group textarea { min-width: 0; max-width: 100%; }
.form-group input[type="file"] { width: 100%; }

@media (max-width: 1024px) {
.form-group input[type="file"] { font-size: 15px; padding: 0.85rem 0.9rem; }
.form-group input[type="file"]::file-selector-button { padding: 0.55rem 0.9rem; font-size: 0.82rem; }
.apply-notes a { padding: 0.55rem 0; min-height: 44px; }
}

/* ===== KISA EKRANLI TELEFONLAR (iPhone SE, eski Android) =====
   Ekran yüksekliği 700 px altındayken hero içeriği sığmıyor ve
   "Keşfet" ipucu butonların üstüne biniyordu. Bu ekranlarda yazılar
   biraz küçültülür, boşluklar daraltılır ve dekoratif ipucu gizlenir. */
@media (max-width: 1024px) and (max-height: 700px) {
.hero-section     { min-height: 480px; }
.hero-content     { padding-top: 3rem; padding-bottom: 2.5rem; }
.hero-eyebrow     { margin-bottom: 0.9rem; font-size: 0.7rem; }
.hero-title       { font-size: clamp(1.75rem, 7.4vw, 2.3rem); margin-bottom: 0.8rem; }
.hero-desc        { font-size: 0.94rem; line-height: 1.62; margin-bottom: 1.3rem; }
.hero-actions     { gap: 0.6rem; }
.hero-actions .btn-gold,
.hero-actions .btn-outline { padding: 0.95rem 1.6rem; }
.hero-scroll-cue  { display: none; }   /* dekoratif; yer kalmadığında gizlenir */
}

/* ===== YATAY (landscape) TELEFON — hero ekranı tamamen kaplamasın ===== */
@media (max-width: 950px) and (orientation: landscape) and (max-height: 540px) {
.hero-section     { height: auto; min-height: 380px; padding: 4.2rem 0 2.4rem; }
.hero-title       { font-size: clamp(1.8rem, 5.2vw, 2.3rem); margin-bottom: 0.7rem; }
.hero-desc        { font-size: 0.94rem; line-height: 1.6; margin-bottom: 1.2rem; }
.hero-eyebrow     { margin-bottom: 0.8rem; }
.hero-actions     { flex-direction: row; gap: 0.7rem; }
.hero-scroll-cue  { display: none; }
.about-hero       { min-height: auto; }
.about-hero-inner { padding-top: 3.4rem; padding-bottom: 3.4rem; }
.page-hero        { min-height: auto; }
.page-hero-inner  { padding-top: 5.5rem; padding-bottom: 2rem; }
}
