/* ========== RESET & BASE ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
    --black:   #0a0a0a;
    --white:   #ffffff;
    --red:     #e31e24;
    --gray:    #6b6b6b;
    --light:   #f5f5f5;
    --border:  #e0e0e0;
    --font:    'Montserrat', 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    font-size: 16px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ========== UTILITY ========== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
.section { padding: 100px 0; }
.section--dark { background: var(--black); color: var(--white); }
.section--light { background: var(--light); }
.section-tag { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 16px; display: block; }
.section-title { font-size: clamp(32px, 5vw, 56px); font-weight: 800; line-height: 1.1; letter-spacing: -1px; text-transform: uppercase; }
.section-title span { color: var(--red); }
.section-desc { font-size: 16px; color: var(--gray); line-height: 1.8; max-width: 600px; margin-top: 20px; }
.section--dark .section-desc { color: #aaa; }
.divider { width: 48px; height: 3px; background: var(--red); margin: 24px 0; }

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all .25s;
}
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: #c01a1f; }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--white); }
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-outline-dark { background: transparent; color: var(--black); border: 2px solid var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--white); }

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: 80px;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: background .4s, border-color .4s, box-shadow .4s;
}

/* Video geçildikten sonra arka plan gelir */
.navbar.solid {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0,0,0,.08);
}

/* Şeffaf hâlde logo ve linkler beyaz */
.navbar__logo svg .logo-text-dark { fill: #fff; transition: fill .4s; }
.navbar__logo svg .logo-text-red  { fill: var(--red); }
.navbar.solid .navbar__logo svg .logo-text-dark { fill: var(--black); }

.navbar__logo img { height: 36px; }
.navbar__logo svg { height: 36px; width: auto; }

.navbar__menu { display: flex; align-items: center; gap: 36px; }
.navbar__menu a {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,.9);
    position: relative;
    transition: color .2s;
}
.navbar__menu a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--red);
    transition: width .25s;
}
.navbar__menu a:hover { color: var(--red); }
.navbar__menu a:hover::after { width: 100%; }
.navbar__menu a.active { color: var(--red); }
.navbar__menu a.active::after { width: 100%; }

/* Solid hâlde linkler koyu */
.navbar.solid .navbar__menu a { color: var(--black); }
.navbar.solid .navbar__menu a:hover { color: var(--red); }
.navbar.solid .navbar__menu a.active { color: var(--red); }

.navbar__hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.navbar__hamburger span { display: block; width: 28px; height: 2px; background: var(--white); transition: all .3s; }
.navbar.solid .navbar__hamburger span { background: var(--black); }

/* ========== HERO — TAM SAYFA VİDEO ========== */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
}

/* Katman 1: Animasyonlu yedek arka plan (video yokken) */
.hero__bg {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 1;
    background: linear-gradient(-45deg, #050d0a, #071a0f, #051510, #0a2015);
    background-size: 400% 400%;
    animation: heroGradient 12s ease infinite;
}
@keyframes heroGradient {
    0%   { background-position: 0%   50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0%   50%; }
}

/* Katman 2: HTML5 Video */
.hero__video {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

/* Katman 2: YouTube iframe alternatifi */
.hero__yt {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 2;
    overflow: hidden;
    pointer-events: none;
}
.hero__yt iframe {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 177.78vh;
    height: 100vh;
    min-width: 100%;
    min-height: 56.25vw;
    border: none;
}

/* Katman 3: Koyu overlay (video okunabilirliği için) */
.hero__overlay {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 3;
    background: rgba(0, 0, 0, 0.45);
}

/* Katman 4: İçerik (başlık, açıklama, butonlar) */
.hero__content {
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 80px 80px; /* üstte navbar için boşluk */
}
.hero__tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 20px;
    display: block;
}
.hero__title {
    font-size: clamp(52px, 9vw, 110px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -3px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 40px rgba(0,0,0,.5);
}
.hero__title span { color: var(--red); }
.hero__desc {
    font-size: clamp(15px, 1.5vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    max-width: 560px;
    margin: 24px 0 40px;
    line-height: 1.8;
    text-shadow: 0 1px 8px rgba(0,0,0,.4);
}
.hero__btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Katman 4: Ses butonu */
.hero__mute {
    position: absolute;
    bottom: 96px; right: 40px;
    z-index: 4;
    width: 48px; height: 48px;
    border: 2px solid rgba(255,255,255,.35);
    background: rgba(0,0,0,.35);
    color: #fff;
    cursor: pointer;
    display: none;          /* video yüklenince JS gösterir */
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all .25s;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.hero__mute:hover { border-color: var(--red); background: rgba(227,30,36,.25); }

/* Katman 4: Aşağı kaydır */
.hero__scroll {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,.5);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    animation: bounceScroll 2s infinite;
    cursor: pointer;
    user-select: none;
}
.hero__scroll::before {
    content: '';
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,.3);
}
@keyframes bounceScroll {
    0%,100% { transform: translateX(-50%) translateY(0); }
    50%      { transform: translateX(-50%) translateY(8px); }
}

/* ========== STATS BAR ========== */
.stats-bar { background: var(--red); padding: 32px 0; }
.stats-bar__inner { display: flex; align-items: center; justify-content: space-around; flex-wrap: wrap; gap: 24px; }
.stat { text-align: center; color: var(--white); }
.stat__number { font-size: clamp(36px, 5vw, 56px); font-weight: 900; line-height: 1; display: block; }
.stat__label { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; opacity: .8; margin-top: 6px; display: block; }
.stat-divider { width: 1px; height: 60px; background: rgba(255,255,255,.3); }

/* ========== HISTORY / TIMELINE ========== */
.timeline { position: relative; padding: 60px 0; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--border); transform: translateX(-50%); }
.timeline-item { display: flex; align-items: center; margin-bottom: 60px; position: relative; }
.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }
.timeline-content { width: calc(50% - 60px); padding: 32px; background: var(--white); border: 1px solid var(--border); }
.timeline-item:nth-child(odd) .timeline-content { margin-right: auto; text-align: right; }
.timeline-item:nth-child(even) .timeline-content { margin-left: auto; }
.timeline-year { position: absolute; left: 50%; transform: translateX(-50%); width: 80px; height: 80px; background: var(--red); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 900; letter-spacing: 1px; z-index: 1; }
.timeline-content h3 { font-size: 20px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.timeline-content p { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ========== LOCATIONS GRID ========== */
.locations-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1px; background: var(--border); margin-top: 60px; }
.location-card { background: var(--white); padding: 32px; transition: background .2s; }
.location-card:hover { background: var(--red); color: var(--white); }
.location-card__flag { font-size: 32px; margin-bottom: 16px; }
.location-card__country { font-size: 16px; font-weight: 800; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.location-card__email { font-size: 13px; color: var(--gray); word-break: break-all; }
.location-card:hover .location-card__email { color: rgba(255,255,255,.8); }

/* ========== CHANNELS GRID ========== */
.channels-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 32px; margin-top: 60px; }
.channel-card { border: 1px solid var(--border); padding: 40px; text-align: center; transition: all .25s; position: relative; overflow: hidden; }
.channel-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--red); transform: scaleX(0); transition: transform .25s; }
.channel-card:hover { border-color: var(--red); box-shadow: 0 20px 60px rgba(0,0,0,.08); }
.channel-card:hover::before { transform: scaleX(1); }
.channel-card__logo { width: 80px; height: 80px; border-radius: 50%; background: var(--black); margin: 0 auto 20px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 13px; font-weight: 900; letter-spacing: 1px; }
.channel-card__name { font-size: 20px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.channel-card__desc { font-size: 13px; color: var(--gray); line-height: 1.7; }
.channel-card__badge { display: inline-block; margin-top: 16px; padding: 4px 12px; background: var(--red); color: var(--white); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; }

/* ========== PRODUCTIONS GRID ========== */
.productions-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2px; margin-top: 60px; background: var(--border); }
.production-card { background: var(--black); color: var(--white); padding: 48px 40px; position: relative; overflow: hidden; transition: all .25s; min-height: 280px; display: flex; flex-direction: column; justify-content: flex-end; }
.production-card__number { position: absolute; top: 20px; right: 20px; font-size: 64px; font-weight: 900; color: rgba(255,255,255,.05); line-height: 1; }
.production-card__cat { font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: block; }
.production-card__name { font-size: 26px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.production-card__desc { font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.7; }
.production-card__countries { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 20px; }
.production-card__countries span { font-size: 10px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 4px 10px; border: 1px solid rgba(255,255,255,.2); color: rgba(255,255,255,.6); }
.production-card:hover { background: #111; }
.production-card:hover .production-card__cat { color: #ff4d52; }

/* ========== HUB SECTION ========== */
.hub { background: var(--red); color: var(--white); padding: 100px 0; }
.hub .section-tag { color: rgba(255,255,255,.7); }
.hub .section-title { color: var(--white); }
.hub__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; margin-top: 60px; }
.hub-stat { border-top: 2px solid rgba(255,255,255,.3); padding-top: 24px; }
.hub-stat__num { font-size: clamp(40px, 5vw, 64px); font-weight: 900; line-height: 1; display: block; }
.hub-stat__label { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; opacity: .8; margin-top: 8px; display: block; }

/* ========== NEWS ========== */
.news-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(360px, 1fr)); gap: 32px; margin-top: 60px; }
.news-card { border: 1px solid var(--border); transition: all .25s; }
.news-card:hover { box-shadow: 0 20px 60px rgba(0,0,0,.08); transform: translateY(-4px); }
.news-card__img { height: 220px; background: linear-gradient(135deg, #1a1a2e, #16213e); position: relative; overflow: hidden; }
.news-card__img-placeholder { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.2); font-size: 48px; font-weight: 900; }
.news-card__body { padding: 28px; }
.news-card__date { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: block; }
.news-card__title { font-size: 18px; font-weight: 800; line-height: 1.3; text-transform: uppercase; letter-spacing: .5px; margin-bottom: 12px; }
.news-card__cat { display: inline-block; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 10px; border: 1px solid var(--border); color: var(--gray); }

/* ========== PAGE HERO ========== */
.page-hero { padding: 160px 0 80px; background: var(--black); color: var(--white); }
.page-hero .section-tag { color: var(--red); }
.page-hero .section-title { color: var(--white); }
.page-hero .section-desc { color: rgba(255,255,255,.6); }

/* ========== CONTACT ========== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; margin-top: 60px; }
.contact-info h3 { font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.contact-info p, .contact-info a { font-size: 15px; color: var(--gray); line-height: 1.8; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--black); }
.form-group input, .form-group textarea, .form-group select {
    padding: 14px 16px;
    border: 2px solid var(--border);
    font-family: var(--font);
    font-size: 14px;
    background: var(--white);
    outline: none;
    transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ========== FOOTER ========== */
.footer { background: var(--black); color: var(--white); padding: 80px 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer__brand p { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.8; margin: 20px 0 28px; max-width: 280px; }
.footer__social { display: flex; gap: 12px; }
.footer__social a { width: 40px; height: 40px; border: 1px solid rgba(255,255,255,.2); display: flex; align-items: center; justify-content: center; font-size: 14px; transition: all .2s; }
.footer__social a:hover { background: var(--red); border-color: var(--red); }
.footer__col h4 { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 24px; }
.footer__col ul { display: flex; flex-direction: column; gap: 12px; }
.footer__col ul li a { font-size: 14px; color: rgba(255,255,255,.7); transition: color .2s; }
.footer__col ul li a:hover { color: var(--red); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; padding: 24px 0; font-size: 12px; color: rgba(255,255,255,.3); flex-wrap: wrap; gap: 12px; }
.footer__bottom a { color: rgba(255,255,255,.3); transition: color .2s; }
.footer__bottom a:hover { color: var(--white); }
.footer__legal { display: flex; gap: 24px; }

/* ========== BREADCRUMB ========== */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: 24px; }
.breadcrumb a { color: rgba(255,255,255,.4); transition: color .2s; }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: rgba(255,255,255,.2); }


/* ========== SABİT FLOATING BUTONLAR ========== */
.float-btns {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

/* WhatsApp butonu */
.float-wa {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: #25D366;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37,211,102,.45);
    transition: transform .25s, box-shadow .25s;
    text-decoration: none;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.6); }
.float-wa svg { width: 28px; height: 28px; fill: #fff; }

/* Teklif Al butonu */
.float-quote {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 20px 0 16px;
    height: 52px;
    border-radius: 26px;
    background: var(--red);
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 20px rgba(227,30,36,.4);
    transition: transform .25s, box-shadow .25s;
    white-space: nowrap;
}
.float-quote:hover { transform: scale(1.05); box-shadow: 0 6px 28px rgba(227,30,36,.55); }
.float-quote svg { width: 18px; height: 18px; fill: #fff; flex-shrink: 0; }

/* ========== TEKLİF MODAL ========== */
.modal-backdrop {
    position: fixed;
    top: 0; right: 0; bottom: 0; left: 0;
    background: rgba(0,0,0,.65);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.modal-backdrop.open {
    opacity: 1;
    visibility: visible;
}
.modal {
    background: #fff;
    width: 100%;
    max-width: 520px;
    padding: 48px 40px 40px;
    position: relative;
    transform: translateY(24px);
    transition: transform .3s;
    box-shadow: 0 24px 80px rgba(0,0,0,.25);
}
.modal-backdrop.open .modal { transform: translateY(0); }

.modal__close {
    position: absolute;
    top: 16px; right: 16px;
    width: 36px; height: 36px;
    background: #f5f5f5;
    border: none;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: background .2s;
}
.modal__close:hover { background: var(--red); color: #fff; }

.modal__tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--red);
    display: block;
    margin-bottom: 10px;
}
.modal__title {
    font-size: 26px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
}
.modal__sub {
    font-size: 13px;
    color: #999;
    margin-bottom: 28px;
}
.modal__divider {
    width: 40px; height: 3px;
    background: var(--red);
    margin-bottom: 28px;
}

.modal-form { display: flex; flex-direction: column; gap: 16px; }
.modal-form .form-group { display: flex; flex-direction: column; gap: 6px; }
.modal-form label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
}
.modal-form input,
.modal-form select,
.modal-form textarea {
    padding: 13px 14px;
    border: 2px solid #e8e8e8;
    font-family: var(--font);
    font-size: 14px;
    background: #fafafa;
    outline: none;
    transition: border-color .2s, background .2s;
    width: 100%;
}
.modal-form input:focus,
.modal-form select:focus,
.modal-form textarea:focus {
    border-color: var(--red);
    background: #fff;
}
.modal-form textarea { resize: vertical; min-height: 90px; }
.modal-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.modal-form .btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--red);
    color: #fff;
    border: none;
    font-family: var(--font);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 4px;
    transition: background .2s;
}
.modal-form .btn-submit:hover { background: #c01a1f; }

.modal-success {
    text-align: center;
    padding: 24px 0;
    display: none;
}
.modal-success__icon {
    width: 64px; height: 64px;
    background: #22c55e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 28px;
    color: #fff;
}
.modal-success h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.modal-success p  { font-size: 14px; color: #777; }

@media (max-width: 540px) {
    .modal { padding: 40px 24px 32px; }
    .modal-form .form-row { grid-template-columns: 1fr; }
    .float-quote span { display: none; }
    .float-quote { padding: 0; width: 52px; border-radius: 50%; justify-content: center; }
}

/* ========== MOBILE NAV ========== */
.mobile-nav { position: fixed; inset: 0; background: var(--black); z-index: 999; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 32px; opacity: 0; visibility: hidden; transition: all .3s; }
.mobile-nav.open { opacity: 1; visibility: visible; }
.mobile-nav a { font-size: 24px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--white); transition: color .2s; }
.mobile-nav a:hover { color: var(--red); }
.mobile-nav-close { position: absolute; top: 28px; right: 40px; background: none; border: none; color: var(--white); font-size: 32px; cursor: pointer; }

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .footer__inner { grid-template-columns: 1fr 1fr; }
    .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .hub__stats { grid-template-columns: 1fr; gap: 32px; }
    .timeline::before { left: 24px; }
    .timeline-item, .timeline-item:nth-child(even) { flex-direction: column; padding-left: 70px; }
    .timeline-content, .timeline-item:nth-child(odd) .timeline-content, .timeline-item:nth-child(even) .timeline-content { width: 100%; text-align: left; margin: 0; }
    .timeline-year { left: 24px; top: 0; transform: translateX(-50%); width: 48px; height: 48px; font-size: 11px; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }
    .section { padding: 64px 0; }
    .navbar { padding: 0 20px; }
    .navbar__menu, .navbar__lang { display: none; }
    .navbar__hamburger { display: flex; }
    .stats-bar__inner { gap: 16px; }
    .stat-divider { display: none; }
    .news-grid, .channels-grid, .productions-grid { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; gap: 40px; }
    .footer__bottom { flex-direction: column; align-items: flex-start; }
    .form-row { grid-template-columns: 1fr; }
    .hero__title { letter-spacing: -2px; }
}
