﻿
:root {
    --black: #0a0a0a;
    --red: #E8192C;
    --red-dark: #b30e1e;
    --white: #ffffff;
    --border: rgba(255,255,255,0.08);
}

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Barlow', sans-serif;
    background: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 60px;
    background: rgba(10,10,10,0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
}

    nav .logo img {
        height: 42px;
        display: block;
    }

    nav ul {
        display: flex;
        gap: 36px;
        list-style: none;
    }

        nav ul li a {
            color: rgba(255,255,255,0.75);
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 1.2px;
            text-transform: uppercase;
            transition: color 0.2s;
        }

            nav ul li a:hover, nav ul li a.active {
                color: var(--red);
            }

    nav .cta-nav {
        background: var(--red);
        color: var(--white);
        padding: 10px 24px;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        text-decoration: none;
        transition: background 0.2s;
    }

        nav .cta-nav:hover {
            background: var(--red-dark);
        }

/* FOOTER */
footer {
    background: #050505;
    border-top: 1px solid var(--border);
    padding: 36px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    footer img {
        height: 32px;
        opacity: 0.6;
    }

    footer p {
        font-size: 12px;
        color: rgba(255,255,255,0.25);
    }

    footer ul {
        display: flex;
        gap: 24px;
        list-style: none;
    }

        footer ul li a {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: rgba(255,255,255,0.3);
            text-decoration: none;
            transition: color 0.2s;
        }

            footer ul li a:hover {
                color: var(--red);
            }

/* UTILS */
.section-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--red);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

    .section-tag::before {
        content: '';
        width: 28px;
        height: 2px;
        background: var(--red);
    }

.btn-primary {
    background: var(--red);
    color: var(--white);
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    display: inline-block;
}

    .btn-primary:hover {
        background: var(--red-dark);
        transform: translateY(-2px);
    }

.btn-ghost {
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    padding: 14px 32px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

    .btn-ghost:hover {
        border-color: var(--red);
        color: var(--red);
    }

/* ── PAGE HERO ── */
.page-hero {
    padding: 160px 60px 80px;
    background: #0d0d0d;
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

    .page-hero::before {
        content: 'SEKTÖRLER';
        position: absolute;
        right: 40px;
        top: 50%;
        transform: translateY(-50%);
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 150px;
        font-weight: 900;
        color: rgba(255,255,255,0.025);
        text-transform: uppercase;
        letter-spacing: -4px;
        user-select: none;
        white-space: nowrap;
    }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    margin-bottom: 28px;
}

    .breadcrumb a {
        color: rgba(255,255,255,0.3);
        text-decoration: none;
        transition: color 0.2s;
    }

        .breadcrumb a:hover {
            color: var(--red);
        }

    .breadcrumb span.cur {
        color: var(--red);
    }

.page-hero h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: clamp(52px, 6vw, 88px);
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.95;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

    .page-hero h1 em {
        font-style: normal;
        color: var(--red);
    }

.page-hero p {
    font-size: 17px;
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    max-width: 580px;
}

/* ── STATS STRIP ── */
.stats-strip {
    display: flex;
    background: #111;
    border-bottom: 1px solid var(--border);
}

.ss-item {
    flex: 1;
    padding: 32px 40px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .ss-item:last-child {
        border-right: none;
    }

.ss-num {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}

.ss-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

/* ── SECTOR NAV TABS ── */
.sector-tabs {
    background: #111;
    border-bottom: 1px solid var(--border);
    padding: 0 60px;
    display: flex;
    gap: 0;
    overflow-x: auto;
    position: sticky;
    top: 77px;
    z-index: 90;
}

.sector-tab {
    padding: 20px 28px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    border-bottom: 2px solid transparent;
    white-space: nowrap;
    transition: all 0.2s;
    cursor: pointer;
}

    .sector-tab:hover {
        color: rgba(255,255,255,0.8);
        border-bottom-color: rgba(255,255,255,0.2);
    }

    .sector-tab.active {
        color: var(--red);
        border-bottom-color: var(--red);
    }

/* ── SECTOR SECTIONS ── */
.sector-section {
    padding: 90px 60px;
    border-bottom: 1px solid var(--border);
}

    .sector-section:nth-child(even) {
        background: #0d0d0d;
    }

    .sector-section:nth-child(odd) {
        background: var(--black);
    }

.sector-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

    .sector-inner.reverse {
        direction: rtl;
    }

        .sector-inner.reverse > * {
            direction: ltr;
        }

.sector-left {
    display: flex;
    flex-direction: column;
}

.sector-number {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 120px;
    font-weight: 900;
    color: rgba(255,255,255,0.03);
    line-height: 1;
    user-select: none;
    margin-bottom: -20px;
}

.sector-icon-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.sector-icon {
    width: 56px;
    height: 56px;
    background: var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    flex-shrink: 0;
}

.sector-title {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 44px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1;
}

    .sector-title span {
        color: var(--red);
    }

.sector-desc {
    font-size: 15px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    margin-bottom: 28px;
}

.sector-detail {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.8;
    color: rgba(255,255,255,0.45);
    margin-bottom: 32px;
}

.sector-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

/* RIGHT PANEL */
.sector-right {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.info-box {
    background: #111;
    padding: 28px 32px;
    border-left: 3px solid var(--red);
    margin-bottom: 2px;
}

.info-box-title {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 16px;
}

/* Analysis list */
.analysis-list {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.analysis-item {
    background: #161616;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: background 0.2s;
}

    .analysis-item:hover {
        background: #1e1e1e;
    }

.ai-dot {
    width: 6px;
    height: 6px;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
}

.ai-name {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    flex: 1;
}

.ai-tag {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.25);
    background: rgba(255,255,255,0.05);
    padding: 3px 8px;
}

/* Regulation box */
.reg-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.reg-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.reg-bullet {
    width: 20px;
    height: 20px;
    background: rgba(232,25,44,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    font-size: 10px;
    color: var(--red);
    font-weight: 900;
}

.reg-text {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255,255,255,0.55);
}

/* Risk badge */
.risk-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: rgba(255,255,255,0.04);
}

.risk-item {
    background: #161616;
    padding: 16px 18px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.risk-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.risk-val {
    font-size: 14px;
    font-weight: 600;
    color: rgba(255,255,255,0.75);
}

/* ── RED BANNER ── */
.red-banner {
    background: var(--red);
    padding: 64px 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

    .red-banner h2 {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 52px;
        font-weight: 900;
        text-transform: uppercase;
        line-height: 1;
    }

    .red-banner p {
        font-size: 16px;
        font-weight: 300;
        line-height: 1.75;
        color: rgba(255,255,255,0.85);
    }

/* ── CTA ── */
.cta-block {
    background: var(--black);
    padding: 80px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    border-top: 1px solid var(--border);
}

    .cta-block h2 {
        font-family: 'Barlow Condensed', sans-serif;
        font-size: 48px;
        font-weight: 900;
        text-transform: uppercase;
        line-height: 1;
    }

        .cta-block h2 span {
            color: var(--red);
        }

    .cta-block p {
        font-size: 15px;
        font-weight: 300;
        color: rgba(255,255,255,0.5);
        margin-top: 12px;
    }

@media (max-width: 1024px) {
    .sector-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

        .sector-inner.reverse {
            direction: ltr;
        }
}

@media (max-width: 900px) {
    nav {
        padding: 16px 24px;
    }

        nav ul {
            display: none;
        }

    .page-hero {
        padding: 130px 24px 60px;
    }

        .page-hero::before {
            display: none;
        }

    .stats-strip {
        flex-wrap: wrap;
    }

    .ss-item {
        min-width: 50%;
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .sector-tabs {
        padding: 0 24px;
        top: 68px;
    }

    .sector-section {
        padding: 60px 24px;
    }

    .red-banner {
        grid-template-columns: 1fr;
        padding: 60px 24px;
    }

    .cta-block {
        flex-direction: column;
        padding: 60px 24px;
    }

    footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
