/* ================================================================
   MTG Global — Intelligence • Defense • Cybersecurity • Capital
   Dark, classified-grade, premium aesthetic
   ================================================================ */

:root {
    --bg: #050810;
    --bg-2: #0a1020;
    --surface: #0e1628;
    --surface-2: #131c33;
    --surface-3: #1a2440;
    --border: #1c2a47;
    --border-soft: #142038;

    --gold: #c9a961;
    --gold-soft: #a78848;
    --gold-glow: rgba(201, 169, 97, 0.18);

    --cyan: #4a9eff;
    --cyan-soft: rgba(74, 158, 255, 0.18);

    --green: #4ade80;
    --red: #f87171;
    --amber: #fbbf24;

    --text: #e8ecf5;
    --text-2: #a8b2c8;
    --text-3: #6b7691;
    --text-4: #4a5470;

    --container: 1280px;
    --container-wide: 1440px;

    --radius: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;

    --shadow-glow: 0 0 30px rgba(201, 169, 97, 0.15);
    --shadow-elev: 0 24px 60px rgba(0, 0, 0, 0.5);

    --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);

    --font-sans: 'Inter', -apple-system, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', 'IBM Plex Mono', ui-monospace, monospace;
}

* { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
    width: 100%;
}
body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-sans);
    font-size: 15px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--text); }

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--text);
    margin: 0 0 0.6em;
    line-height: 1.1;
    font-weight: 600;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2vw, 1.7rem); }
h4 { font-size: 1.1rem; font-weight: 600; }
p { margin: 0 0 1em; color: var(--text-2); }

::selection { background: var(--gold); color: var(--bg); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.container-wide { max-width: var(--container-wide); margin: 0 auto; padding: 0 32px; }

/* Mono accent labels — "// CLASSIFIED", "// 35 JURISDICTIONS" */
.mono { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.04em; color: var(--gold); text-transform: uppercase; }
.mono-dim { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.06em; color: var(--text-3); text-transform: uppercase; }

.eyebrow {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: var(--font-mono); font-size: 0.78rem;
    color: var(--gold); text-transform: uppercase; letter-spacing: 0.18em;
    margin-bottom: 18px;
}
.eyebrow::before {
    content: ""; width: 28px; height: 1px;
    background: var(--gold); display: inline-block;
}

/* ============== TOPBAR ============== */
.topbar {
    background: #03060d;
    border-bottom: 1px solid var(--border-soft);
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-3);
    letter-spacing: 0.05em;
}
.topbar .container {
    display: flex; justify-content: space-between; align-items: center;
    padding-top: 8px; padding-bottom: 8px; gap: 16px; flex-wrap: wrap;
}
.topbar-left { display: flex; gap: 28px; flex-wrap: wrap; align-items: center; }
.topbar-left .live { display: inline-flex; align-items: center; gap: 6px; }
.topbar-left .live::before {
    content: ""; width: 6px; height: 6px; border-radius: 50%;
    background: var(--green); box-shadow: 0 0 8px var(--green);
    animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:0.4} }
.topbar a { color: var(--text-3); }
.topbar a:hover { color: var(--gold); }
.topbar-right { display: flex; gap: 18px; align-items: center; }

/* Lang switcher */
.lang-switcher { position: relative; }
.lang-btn {
    display: inline-flex; align-items: center; gap: 6px;
    background: transparent; border: 1px solid var(--border);
    padding: 4px 12px; cursor: pointer; color: var(--text-2);
    font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em;
    transition: all var(--transition);
}
.lang-btn:hover { border-color: var(--gold); color: var(--gold); }
.lang-dropdown {
    position: absolute; top: calc(100% + 6px); right: 0; min-width: 200px;
    background: var(--surface); border: 1px solid var(--border);
    box-shadow: var(--shadow-elev); padding: 6px; display: none; z-index: 1000;
    max-height: calc(100vh - 100px); overflow-y: auto;
}
.lang-dropdown.open { display: block; animation: drop 0.18s ease; }
@keyframes drop { from { opacity:0; transform:translateY(-4px) } to { opacity:1; transform:translateY(0) } }
.lang-form { margin: 0; }
.lang-option {
    width: 100%; display: flex; align-items: center; gap: 10px;
    padding: 9px 12px; background: transparent; border: 0; cursor: pointer;
    color: var(--text-2); text-align: left; font: inherit; font-size: 0.85rem;
}
.lang-option:hover, .lang-option.active { background: var(--surface-2); color: var(--gold); }
.lang-option .flag { font-size: 1.05rem; }

/* ============== HEADER ============== */
.site-header {
    background: rgba(5, 8, 16, 0.85);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-bottom: 1px solid var(--border-soft);
    position: sticky; top: 0; z-index: 100;
    transition: background var(--transition);
}
.site-header.scrolled { background: rgba(5, 8, 16, 0.96); border-bottom-color: var(--border); }

.header-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 32px; gap: 32px;
}
.logo { display: inline-flex; align-items: center; gap: 12px; color: var(--text); font-weight: 700; }
.logo img { max-height: 38px; }
.logo-mark {
    width: 38px; height: 38px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
    color: var(--bg); display: inline-flex; align-items: center; justify-content: center;
    font-family: var(--font-display); font-weight: 700; font-size: 1.05rem;
    clip-path: polygon(20% 0, 100% 0, 80% 100%, 0 100%);
}
.logo-text { font-family: var(--font-display); font-size: 1.05rem; letter-spacing: 0.02em; }
.logo-text small { display: block; font-family: var(--font-mono); font-size: 0.62rem; color: var(--text-3); letter-spacing: 0.2em; margin-top: 2px; text-transform: uppercase; font-weight: 400; }

.main-nav ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 4px; }
.main-nav a {
    display: block; padding: 10px 14px; color: var(--text-2);
    font-size: 0.88rem; font-weight: 500; letter-spacing: 0.01em;
    position: relative; transition: color var(--transition);
    white-space: nowrap;
}
.main-nav a:hover { color: var(--text); }
.main-nav a:hover::after,
.main-nav a.active::after {
    content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px;
    height: 1px; background: var(--gold);
}

.header-cta { display: flex; align-items: center; gap: 12px; }
.menu-toggle {
    display: none; background: transparent; border: 1px solid var(--border);
    width: 42px; height: 42px; cursor: pointer; color: var(--text);
    align-items: center; justify-content: center;
    border-radius: 4px; padding: 0; flex-shrink: 0;
    transition: all var(--transition); z-index: 110;
}
.menu-toggle:hover { border-color: var(--gold); color: var(--gold); }
.menu-toggle svg, .menu-toggle i { width: 20px; height: 20px; }
.nav-close {
    display: none; position: absolute; top: 16px; right: 16px;
    background: transparent; border: 1px solid var(--border);
    width: 42px; height: 42px; cursor: pointer; color: var(--text);
    align-items: center; justify-content: center; border-radius: 4px;
    transition: all var(--transition);
}
.nav-close:hover { border-color: var(--gold); color: var(--gold); }
.nav-close svg, .nav-close i { width: 20px; height: 20px; }

/* ============== BUTTONS ============== */
.btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 13px 26px;
    font-family: var(--font-sans); font-size: 0.82rem; font-weight: 600;
    letter-spacing: 0.08em; text-transform: uppercase; line-height: 1;
    border: 1px solid transparent; cursor: pointer; transition: all var(--transition);
    text-decoration: none; white-space: nowrap; position: relative;
}
.btn-sm { padding: 9px 18px; font-size: 0.72rem; }
.btn-lg { padding: 16px 32px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

.btn-primary { background: var(--gold); color: var(--bg); }
.btn-primary:hover { background: #d6b66e; color: var(--bg); transform: translateY(-1px); box-shadow: 0 12px 30px var(--gold-glow); }

.btn-outline { background: transparent; color: var(--text); border-color: var(--border); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

.btn-ghost { background: transparent; color: var(--text-2); padding-left: 0; padding-right: 0; }
.btn-ghost:hover { color: var(--gold); }

.btn-light { background: var(--text); color: var(--bg); }
.btn-light:hover { background: var(--gold); color: var(--bg); }

/* ============== HERO ============== */
.hero {
    position: relative;
    min-height: 88vh;
    background: var(--bg);
    overflow: hidden;
    display: flex; align-items: center;
    padding: 100px 0 80px;
}
.hero::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 75% 40%, rgba(74, 158, 255, 0.12), transparent 55%),
        radial-gradient(ellipse at 15% 80%, rgba(201, 169, 97, 0.10), transparent 50%);
    pointer-events: none;
}
.hero-grid-bg {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    pointer-events: none;
}
.hero-corner {
    position: absolute; width: 80px; height: 80px;
    border-color: var(--gold); border-style: solid; opacity: 0.4;
    pointer-events: none;
}
.hero-corner.tl { top: 32px; left: 32px; border-width: 1px 0 0 1px; }
.hero-corner.tr { top: 32px; right: 32px; border-width: 1px 1px 0 0; }
.hero-corner.bl { bottom: 32px; left: 32px; border-width: 0 0 1px 1px; }
.hero-corner.br { bottom: 32px; right: 32px; border-width: 0 1px 1px 0; }

.hero-inner { position: relative; z-index: 2; width: 100%; }
.hero-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 80px; align-items: center; }
.hero-tag {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 6px 14px; border: 1px solid var(--border);
    background: rgba(201, 169, 97, 0.06);
    font-family: var(--font-mono); font-size: 0.72rem; color: var(--gold);
    letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 28px;
}
.hero-tag .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 5.2rem);
    font-weight: 700; letter-spacing: -0.03em; line-height: 1;
    margin: 0 0 28px;
}
.hero-title .accent { color: var(--gold); display: block; }
.hero-title em { font-style: normal; position: relative; }
.hero-title em::after {
    content: ""; position: absolute; left: 0; right: 0; bottom: -4px;
    height: 1px; background: var(--gold); opacity: 0.4;
}
.hero-lead { font-size: 1.1rem; color: var(--text-2); max-width: 580px; margin: 0 0 36px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
    margin-top: 56px; padding-top: 32px; border-top: 1px solid var(--border-soft);
}
.hero-meta-item { }
.hero-meta-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--text); line-height: 1; }
.hero-meta-num .unit { color: var(--gold); font-size: 1.6rem; }
.hero-meta-label { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-3); letter-spacing: 0.12em; text-transform: uppercase; margin-top: 6px; }

/* Hero visual — radar / globe panel */
.hero-panel {
    position: relative;
    background: linear-gradient(180deg, rgba(14, 22, 40, 0.7), rgba(10, 16, 32, 0.4));
    border: 1px solid var(--border);
    padding: 28px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}
.hero-panel-head {
    display: flex; justify-content: space-between; align-items: center;
    padding-bottom: 16px; margin-bottom: 16px; border-bottom: 1px solid var(--border-soft);
}
.hero-panel-head .label { font-family: var(--font-mono); font-size: 0.72rem; color: var(--gold); letter-spacing: 0.16em; text-transform: uppercase; }
.hero-panel-head .meta { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-3); }
.radar {
    position: relative;
    width: 100%; aspect-ratio: 1; max-width: 380px; margin: 0 auto;
}
.radar svg { width: 100%; height: 100%; display: block; }
.radar-circle { fill: none; stroke: rgba(201, 169, 97, 0.2); stroke-width: 1; }
.radar-cross { stroke: rgba(201, 169, 97, 0.15); stroke-width: 1; }
.radar-sweep { transform-origin: center; animation: sweep 6s linear infinite; }
@keyframes sweep { 0% { transform: rotate(0deg) } 100% { transform: rotate(360deg) } }
.radar-blip { fill: var(--gold); }
.radar-blip.blip2 { fill: var(--cyan); }

.hero-panel-foot {
    position: absolute; left: 28px; right: 28px; bottom: 24px;
    display: flex; justify-content: space-between; align-items: center;
    font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-3);
    padding-top: 16px; border-top: 1px solid var(--border-soft);
}
.hero-panel-foot .ok { color: var(--green); }

/* ============== SECTIONS ============== */
.section { padding: 120px 0; position: relative; }
.section-tight { padding: 80px 0; }
.section-light { background: var(--bg-2); }

.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-head.left { text-align: left; margin: 0 0 64px; }
.section-head h2 { margin-bottom: 16px; }
.section-head p { color: var(--text-2); font-size: 1.05rem; }
.section-foot { text-align: center; margin-top: 56px; }

.section-divider {
    display: flex; align-items: center; gap: 16px;
    font-family: var(--font-mono); font-size: 0.74rem; color: var(--text-3);
    letter-spacing: 0.18em; text-transform: uppercase;
    margin-bottom: 40px;
}
.section-divider::before { content: ""; width: 40px; height: 1px; background: var(--gold); flex-shrink: 0; }
.section-divider::after { content: ""; flex: 1; height: 1px; background: var(--border); }

/* ============== CAPABILITIES (services on home) ============== */
.cap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; border: 1px solid var(--border); }
.cap {
    padding: 40px 36px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border);
    transition: background var(--transition); display: block; color: var(--text);
    position: relative;
}
.cap:nth-child(2n) { border-right: 0; }
.cap:nth-last-child(-n+2) { border-bottom: 0; }
.cap:hover { background: var(--surface); color: var(--text); }
.cap:hover .cap-arrow { transform: translateX(6px); color: var(--gold); }
.cap-num { font-family: var(--font-mono); font-size: 0.72rem; color: var(--gold); letter-spacing: 0.18em; margin-bottom: 16px; }
.cap-icon { width: 44px; height: 44px; color: var(--gold); margin-bottom: 24px; }
.cap-icon i { width: 100%; height: 100%; }
.cap h3 { font-size: 1.4rem; margin-bottom: 12px; }
.cap p { color: var(--text-2); font-size: 0.95rem; margin-bottom: 0; }
.cap-arrow {
    position: absolute; top: 36px; right: 36px;
    color: var(--text-3); transition: all var(--transition);
}

/* ============== CARDS GRID (generic) ============== */
.cards { display: grid; gap: 24px; }
.cards-2 { grid-template-columns: repeat(2, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.cards-4 { grid-template-columns: repeat(4, 1fr); }

.card {
    background: var(--surface); border: 1px solid var(--border);
    padding: 32px; transition: all var(--transition);
    position: relative; overflow: hidden; color: var(--text);
    display: block;
}
.card::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0; transition: opacity var(--transition);
}
.card:hover { border-color: var(--gold); transform: translateY(-3px); }
.card:hover::before { opacity: 1; }

.card-tag { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold); letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 12px; }
.card h3 { margin-bottom: 12px; font-size: 1.25rem; }
.card p { color: var(--text-2); font-size: 0.92rem; line-height: 1.65; }
.card-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--gold); font-family: var(--font-mono); font-size: 0.72rem;
    letter-spacing: 0.14em; text-transform: uppercase; margin-top: 18px;
}

/* ============== SECTOR CARDS ============== */
.sector-card { padding: 28px 24px; text-align: left; }
.sector-card .ic { width: 40px; height: 40px; color: var(--gold); margin-bottom: 18px; }
.sector-card h4 { font-size: 1.05rem; margin-bottom: 4px; }
.sector-card p { font-size: 0.82rem; color: var(--text-3); margin: 0; }

/* ============== INTELLIGENCE BRIEF / 2-col ============== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.split.flip > :first-child { order: 2; }
.split-text h2 { margin-bottom: 24px; }
.split-text .lead { font-size: 1.05rem; color: var(--text-2); margin-bottom: 28px; }

.bullet-list { list-style: none; padding: 0; margin: 28px 0; }
.bullet-list li {
    padding: 14px 0 14px 28px; position: relative;
    border-bottom: 1px solid var(--border-soft); color: var(--text-2);
    font-size: 0.94rem;
}
.bullet-list li::before {
    content: ""; position: absolute; left: 0; top: 22px;
    width: 12px; height: 1px; background: var(--gold);
}

.split-visual {
    position: relative; aspect-ratio: 4/5;
    background: linear-gradient(180deg, var(--surface) 0%, var(--bg-2) 100%);
    border: 1px solid var(--border); padding: 32px;
    display: flex; flex-direction: column; justify-content: space-between;
}
.split-visual::before {
    content: ""; position: absolute; top: 16px; left: 16px; right: 16px; bottom: 16px;
    border: 1px solid var(--border-soft); pointer-events: none;
}
.split-visual .label-tl { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold); letter-spacing: 0.18em; text-transform: uppercase; position: relative; z-index: 1;}
.split-visual .num-block { position: relative; z-index: 1; }
.split-visual .big { font-family: var(--font-display); font-size: 6rem; font-weight: 700; line-height: 1; color: var(--text); }
.split-visual .big .unit { color: var(--gold); }
.split-visual .desc { font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-3); letter-spacing: 0.1em; text-transform: uppercase; max-width: 280px; margin-top: 12px; line-height: 1.6; }

/* ============== STATS BAR ============== */
.stats-bar {
    background: var(--surface); border-block: 1px solid var(--border);
    padding: 56px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat {
    padding: 0 32px; border-right: 1px solid var(--border-soft);
}
.stat:last-child { border-right: 0; }
.stat-num { font-family: var(--font-display); font-size: clamp(2.5rem, 4.5vw, 3.6rem); font-weight: 700; color: var(--text); line-height: 1; letter-spacing: -0.02em; }
.stat-num .plus { color: var(--gold); }
.stat-label { font-family: var(--font-mono); font-size: 0.74rem; color: var(--text-3); letter-spacing: 0.14em; text-transform: uppercase; margin-top: 12px; }

/* ============== GLOBAL PRESENCE ============== */
.regions { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border); }
.region {
    padding: 28px 24px; border-right: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft);
}
.region:nth-child(4n) { border-right: 0; }
.region:nth-last-child(-n+4) { border-bottom: 0; }
.region-tag { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 8px; }
.region h4 { font-size: 1.05rem; margin-bottom: 6px; }
.region p { font-family: var(--font-mono); font-size: 0.78rem; color: var(--text-3); margin: 0; }

/* ============== REFERENCES ============== */
.case-card {
    padding: 0; overflow: hidden;
    background: var(--surface); border: 1px solid var(--border);
    transition: all var(--transition); color: var(--text);
}
.case-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.case-card .industry-bar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 24px; border-bottom: 1px solid var(--border);
    font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold);
    letter-spacing: 0.14em; text-transform: uppercase;
}
.case-card .industry-bar .code { color: var(--text-3); }
.case-card .body { padding: 28px 24px; }
.case-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.case-card p { color: var(--text-2); font-size: 0.88rem; margin-bottom: 16px; }
.case-card .result {
    display: flex; align-items: flex-start; gap: 10px;
    padding: 14px 16px; border-left: 2px solid var(--gold);
    background: rgba(201, 169, 97, 0.05);
    font-size: 0.85rem; color: var(--text);
}
.case-card .result i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* ============== BLOG CARDS ============== */
.blog-card {
    padding: 0; overflow: hidden;
    background: var(--surface); border: 1px solid var(--border); color: var(--text);
    display: flex; flex-direction: column; transition: all var(--transition);
}
.blog-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.blog-image { aspect-ratio: 16/10; overflow: hidden; background: var(--surface-3); position: relative; }
.blog-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-image-placeholder {
    background:
        linear-gradient(135deg, var(--surface-2), var(--surface-3)),
        repeating-linear-gradient(45deg, transparent, transparent 12px, rgba(201, 169, 97, 0.03) 12px, rgba(201, 169, 97, 0.03) 24px);
}
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-family: var(--font-mono); font-size: 0.7rem; color: var(--gold); letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 10px; }
.blog-card h3 { font-size: 1.1rem; margin-bottom: 10px; line-height: 1.35; }
.blog-card p { font-size: 0.88rem; color: var(--text-2); flex: 1; }
.blog-meta { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-3); letter-spacing: 0.06em; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border-soft); display: flex; justify-content: space-between; }

/* ============== TEAM ============== */
.team-card { text-align: left; }
.team-photo {
    width: 100%; aspect-ratio: 3/4; overflow: hidden; background: var(--surface-2);
    border: 1px solid var(--border); margin-bottom: 16px; position: relative;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(0.4) contrast(1.05); }
.team-photo-placeholder {
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-family: var(--font-display); font-size: 3rem; font-weight: 600;
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
}
.team-card h4 { font-size: 1.05rem; margin: 0; }
.team-card .position { font-family: var(--font-mono); font-size: 0.74rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin: 4px 0 10px; }
.team-card .team-link { color: var(--text-3); }
.team-card .team-link:hover { color: var(--gold); }

/* ============== PAGE HEADER ============== */
.page-header {
    padding: 100px 0 80px; position: relative; overflow: hidden;
    background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
    border-bottom: 1px solid var(--border-soft);
}
.page-header::after {
    content: ""; position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at top, black, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at top, black, transparent 70%);
    pointer-events: none;
}
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { font-size: clamp(2.2rem, 5vw, 4rem); margin: 0 0 16px; }
.page-header .lead { font-size: 1.05rem; color: var(--text-2); max-width: 720px; }

/* Breadcrumb */
.breadcrumb {
    font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-3);
    letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 24px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb .sep { margin: 0 10px; color: var(--text-4); }

/* ============== DETAIL LAYOUT ============== */
.detail-grid { display: grid; grid-template-columns: 2.4fr 1fr; gap: 64px; align-items: flex-start; }
.detail-content { min-width: 0; }
.detail-image { margin-bottom: 32px; border: 1px solid var(--border); overflow: hidden; aspect-ratio: 16/9; }
.detail-image img { width: 100%; height: 100%; object-fit: cover; }

/* Sidebar */
.sidebar-block {
    background: var(--surface); border: 1px solid var(--border);
    padding: 24px; margin-bottom: 24px;
}
.sidebar-block h4 {
    font-family: var(--font-mono); font-size: 0.8rem;
    color: var(--gold); letter-spacing: 0.16em; text-transform: uppercase;
    margin: 0 0 16px; padding-bottom: 14px; border-bottom: 1px solid var(--border-soft);
}
.sidebar-list { list-style: none; padding: 0; margin: 0; }
.sidebar-list li { margin-bottom: 2px; }
.sidebar-list a {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 0; border-bottom: 1px solid var(--border-soft); color: var(--text-2);
    font-size: 0.88rem; transition: color var(--transition);
}
.sidebar-list li:last-child a { border-bottom: 0; }
.sidebar-list a:hover, .sidebar-list a.active { color: var(--gold); }
.sidebar-list .badge { font-family: var(--font-mono); font-size: 0.7rem; color: var(--text-3); }

.sidebar-cta {
    background: linear-gradient(135deg, var(--surface) 0%, var(--surface-2) 100%);
    border-color: var(--gold); position: relative; overflow: hidden;
}
.sidebar-cta::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

/* ============== RICH TEXT ============== */
.rich-text { color: var(--text-2); font-size: 1rem; line-height: 1.8; }
.rich-text h2, .rich-text h3, .rich-text h4 { color: var(--text); margin: 1.6em 0 0.6em; }
.rich-text h2 { font-size: 1.8rem; }
.rich-text h3 { font-size: 1.3rem; }
.rich-text p { margin-bottom: 1.4em; }
.rich-text ul, .rich-text ol { padding-left: 1.4em; margin: 1em 0 1.6em; }
.rich-text li { margin-bottom: 0.6em; }
.rich-text a { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(201, 169, 97, 0.3); text-underline-offset: 4px; }
.rich-text a:hover { text-decoration-color: var(--gold); }
.rich-text strong { color: var(--text); }
.rich-text blockquote {
    border-left: 2px solid var(--gold); padding: 8px 0 8px 24px; margin: 1.6em 0;
    font-family: var(--font-display); font-size: 1.2rem; color: var(--text); font-style: italic;
}

/* ============== BLOG LAYOUT ============== */
.blog-layout { display: grid; grid-template-columns: 2.4fr 1fr; gap: 64px; }
.blog-detail-image { margin-bottom: 36px; border: 1px solid var(--border); overflow: hidden; aspect-ratio: 16/9; }
.blog-detail-image img { width: 100%; height: 100%; object-fit: cover; }
.post-meta {
    display: flex; gap: 24px; flex-wrap: wrap;
    font-family: var(--font-mono); font-size: 0.74rem; color: var(--text-3);
    letter-spacing: 0.06em; margin-top: 20px;
}
.post-meta span { display: inline-flex; align-items: center; gap: 6px; }
.post-tags { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border-soft); }
.tag {
    display: inline-block; padding: 5px 12px;
    border: 1px solid var(--border); margin-right: 6px; margin-bottom: 6px;
    font-family: var(--font-mono); font-size: 0.74rem; color: var(--text-2);
}

.empty-state { padding: 80px; text-align: center; color: var(--text-3); border: 1px dashed var(--border); }

.pagination { display: flex; gap: 6px; justify-content: center; margin-top: 56px; }
.pagination a {
    padding: 10px 16px; border: 1px solid var(--border);
    color: var(--text-2); font-family: var(--font-mono); font-size: 0.8rem;
}
.pagination a:hover, .pagination a.active { border-color: var(--gold); color: var(--gold); }

/* ============== FAQ ============== */
.faq-group { margin-bottom: 48px; }
.faq-group > h2 { padding-bottom: 16px; border-bottom: 1px solid var(--border); margin-bottom: 0; }
.faq-item {
    border-bottom: 1px solid var(--border); transition: background var(--transition);
}
.faq-item summary {
    padding: 22px 0; cursor: pointer; list-style: none;
    display: flex; justify-content: space-between; align-items: center; gap: 24px;
    color: var(--text); font-weight: 500; font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: "+"; color: var(--gold); font-size: 1.6rem; line-height: 1;
    transition: transform var(--transition); flex-shrink: 0;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { color: var(--gold); }
.faq-answer { padding: 0 0 24px; }

/* ============== CONTACT ============== */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: start; }
.contact-info h3 { margin-bottom: 28px; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--border-soft); }
.contact-list li:last-child { border-bottom: 0; }
.contact-list .ic {
    width: 40px; height: 40px; flex-shrink: 0;
    border: 1px solid var(--border); color: var(--gold);
    display: flex; align-items: center; justify-content: center;
}
.contact-list .label { font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-3); letter-spacing: 0.1em; text-transform: uppercase; display: block; margin-bottom: 4px; }
.contact-list p { margin: 0; color: var(--text); font-size: 0.95rem; }
.contact-list a { color: var(--text); }
.contact-list a:hover { color: var(--gold); }

.contact-form-wrap {
    background: var(--surface); border: 1px solid var(--border); padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; display: flex; flex-direction: column; }
.form-group label {
    font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-3);
    letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
    padding: 13px 14px; background: var(--bg-2); border: 1px solid var(--border);
    color: var(--text); font-family: inherit; font-size: 0.94rem;
    transition: all var(--transition); width: 100%;
}
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); background: var(--surface); }
.form-group ::placeholder { color: var(--text-4); }

.alert { padding: 14px 18px; margin-bottom: 20px; font-size: 0.9rem; border: 1px solid; }
.alert-success { background: rgba(74, 222, 128, 0.06); border-color: rgba(74, 222, 128, 0.3); color: var(--green); }
.alert-error { background: rgba(248, 113, 113, 0.06); border-color: rgba(248, 113, 113, 0.3); color: var(--red); }

.map-section { background: var(--bg-2); border-block: 1px solid var(--border); }
.map-section iframe { display: block; filter: grayscale(0.7) invert(0.9) contrast(0.85); }

/* ============== CTA BANNER ============== */
.cta-banner {
    background: linear-gradient(135deg, var(--surface) 0%, var(--bg) 100%);
    border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 80px 0; position: relative; overflow: hidden;
}
.cta-banner::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(201, 169, 97, 0.12), transparent 50%);
    pointer-events: none;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-banner .eyebrow { margin-bottom: 16px; }
.cta-banner h2 { margin: 0 0 8px; font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
.cta-banner p { color: var(--text-2); margin: 0; max-width: 540px; }

/* ============== FOOTER ============== */
.site-footer {
    background: #03060d; padding: 80px 0 24px;
    border-top: 1px solid var(--border-soft); position: relative;
}
.site-footer::before {
    content: ""; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0.4;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr 1fr; gap: 48px; padding-bottom: 56px; border-bottom: 1px solid var(--border-soft); }
.footer-col h4 {
    font-family: var(--font-mono); font-size: 0.78rem; color: var(--gold);
    letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 22px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-2); font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold); }
.footer-about { color: var(--text-2); font-size: 0.92rem; line-height: 1.7; max-width: 380px; margin: 18px 0 24px; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
    width: 38px; height: 38px; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center; color: var(--text-3);
    transition: all var(--transition);
}
.footer-socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; color: var(--text-2); margin-bottom: 12px; }
.footer-contact i { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
    display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
    padding-top: 28px; font-family: var(--font-mono); font-size: 0.74rem; color: var(--text-3);
    letter-spacing: 0.06em;
}
.footer-legal { list-style: none; padding: 0; margin: 0; display: flex; gap: 24px; }
.footer-legal a { color: var(--text-3); }
.footer-legal a:hover { color: var(--gold); }

/* ============== SCROLL TOP ============== */
.scroll-top {
    position: fixed; bottom: 28px; right: 28px;
    width: 44px; height: 44px;
    border: 1px solid var(--border); background: var(--surface);
    color: var(--text); display: flex; align-items: center; justify-content: center;
    opacity: 0; pointer-events: none; transition: all var(--transition); z-index: 80;
}
.scroll-top.show { opacity: 1; pointer-events: auto; }
.scroll-top:hover { border-color: var(--gold); color: var(--gold); }

/* ============== ICONS ============== */
.icon-xs { width: 14px; height: 14px; }
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 20px; height: 20px; }
.icon-lg { width: 28px; height: 28px; }
.icon-xl { width: 40px; height: 40px; }

/* ============== 404 ============== */
.section-404 { min-height: 70vh; display: flex; align-items: center; padding: 80px 0; }
.big-404 {
    font-family: var(--font-display); font-size: clamp(8rem, 18vw, 16rem);
    color: transparent; -webkit-text-stroke: 1px var(--gold);
    line-height: 1; display: block; letter-spacing: -0.04em;
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1100px) {
    .hero-grid, .split { grid-template-columns: 1fr; gap: 48px; }
    .hero { min-height: auto; }
    .hero-corner { display: none; }
    .cards-3, .cards-4 { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .stat { border-right: 0; border-bottom: 1px solid var(--border-soft); padding: 20px 0; }
    .regions { grid-template-columns: repeat(2, 1fr); }
    .region { border-right: 1px solid var(--border-soft) !important; }
    .region:nth-child(2n) { border-right: 0 !important; }
    .blog-layout, .detail-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Mobile menu backdrop (always present, hidden by default) */
.nav-backdrop {
    display: none; position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 998;
    opacity: 0; transition: opacity 0.25s ease;
}
.nav-backdrop.open { display: block; opacity: 1; }
body.menu-open { overflow: hidden; }

@media (max-width: 1024px) {
    .container, .container-wide { padding: 0 20px; }
    .topbar-left { display: none; }
    .topbar .container {
        justify-content: center;
        flex-wrap: wrap;
    }
    .topbar-right {
        gap: 14px;
        justify-content: center;
        width: 100%;
    }
    .topbar-right a {
        padding: 4px;
    }
    .header-inner { padding: 14px 20px; gap: 12px; }
    .logo-text small { display: none; }
    .logo-text { font-size: 0.95rem; }
    .logo img { max-height: 30px; }

    /* Mobile drawer */
    .main-nav {
        display: block !important;
        position: fixed !important;
        top: 0; bottom: 0;
        right: -100vw; /* viewport dışında — scrollbar yaratmaz */
        left: auto;
        width: min(340px, 88vw); max-width: 340px; height: 100vh;
        background-color: #0a1020 !important;
        background-image: linear-gradient(180deg, #0e1628 0%, #050810 100%);
        padding: 88px 0 24px !important;
        margin: 0 !important;
        border-left: 2px solid var(--gold);
        transform: none;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -24px 0 80px rgba(0,0,0,0.7);
        z-index: 999;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .main-nav.open { right: 0 !important; }
    .main-nav.open .nav-close { display: inline-flex; }
    .main-nav ul {
        flex-direction: column !important;
        gap: 0 !important;
        padding: 0 16px !important; margin: 0 !important;
        list-style: none; width: 100%;
    }
    .main-nav li { width: 100%; }
    .main-nav a {
        display: block !important; width: 100%;
        padding: 16px 18px !important;
        border-radius: 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        color: #e8ecf5 !important; font-size: 1rem; font-weight: 500;
        background: transparent;
    }
    .main-nav a:hover, .main-nav a:active {
        background: rgba(201, 169, 97, 0.1);
        color: var(--gold) !important;
    }
    .main-nav a::after { display: none !important; }

    .menu-toggle { display: inline-flex; }
    .header-cta .btn { display: none; }
    .header-cta { gap: 0; }

    /* Mobil dil dropdown — viewport'a göre sabitle */
    .lang-dropdown {
        position: fixed !important;
        top: 52px !important;
        right: 12px !important;
        left: auto !important;
        min-width: 220px;
        max-width: calc(100vw - 24px);
    }
    .cap-grid { grid-template-columns: 1fr; }
    .cap { border-right: 0 !important; }
    .cap:nth-last-child(2) { border-bottom: 1px solid var(--border) !important; }
    .cards-2, .cards-3, .cards-4 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .section { padding: 80px 0; }
    .hero-meta { grid-template-columns: 1fr 1fr; gap: 24px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .regions { grid-template-columns: 1fr; }
    .region { border-right: 0 !important; border-bottom: 1px solid var(--border-soft) !important; }
}

/* ============================================================
   HOME v2.2.1 — DECORATIVE ENHANCEMENTS
   ============================================================ */

/* Hero animated glows */
.hero-glow {
    position: absolute; pointer-events: none; z-index: 0;
    border-radius: 50%; filter: blur(60px);
    will-change: transform, opacity;
}
.hero-glow-a {
    top: -10%; left: 10%; width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(201,169,97,0.18), transparent 70%);
    animation: glowDriftA 14s ease-in-out infinite alternate;
}
.hero-glow-b {
    bottom: -15%; right: 5%; width: 580px; height: 580px;
    background: radial-gradient(circle, rgba(74,158,255,0.14), transparent 70%);
    animation: glowDriftB 18s ease-in-out infinite alternate;
}
.hero-glow-c {
    top: 30%; right: 25%; width: 320px; height: 320px;
    background: radial-gradient(circle, rgba(201,169,97,0.10), transparent 65%);
    animation: glowPulse 9s ease-in-out infinite;
}
@keyframes glowDriftA {
    0%   { transform: translate3d(0, 0, 0) scale(1); opacity: 0.85; }
    100% { transform: translate3d(40px, 30px, 0) scale(1.08); opacity: 1; }
}
@keyframes glowDriftB {
    0%   { transform: translate3d(0, 0, 0) scale(1); opacity: 0.7; }
    100% { transform: translate3d(-50px, -40px, 0) scale(1.12); opacity: 1; }
}
@keyframes glowPulse {
    0%, 100% { transform: scale(1); opacity: 0.55; }
    50%      { transform: scale(1.15); opacity: 0.95; }
}

/* Hero orbit / satellite SVG (top-right corner) */
.hero-orbit {
    position: absolute; top: 70px; right: 56px;
    width: 220px; height: 220px;
    pointer-events: none; z-index: 1; opacity: 0.55;
    will-change: transform;
}
.hero-orbit svg { width: 100%; height: 100%; display: block; }
.orbit-ring { transform-origin: 110px 110px; will-change: transform; }
.orbit-ring-1 { animation: orbitSpin 40s linear infinite; }
.orbit-ring-2 { animation: orbitSpinReverse 28s linear infinite; }
.orbit-ring-3 { animation: orbitSpin 18s linear infinite; }
.orbit-sat   { transform-origin: 110px 110px; will-change: transform; }
.orbit-sat-a { animation: orbitSpin 12s linear infinite; }
.orbit-sat-b { animation: orbitSpinReverse 9s linear infinite; }
.orbit-sat-c { animation: orbitSpin 7s linear infinite; }
.orbit-core circle { animation: orbitGlow 3s ease-in-out infinite; transform-origin: center; }
@keyframes orbitSpin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes orbitSpinReverse { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }
@keyframes orbitGlow { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }

/* Decorative band between sections */
.deco-band {
    position: relative; height: 24px;
    background: linear-gradient(180deg, var(--bg) 0%, var(--surface) 100%);
    overflow: hidden;
}
.deco-band-svg {
    position: absolute; inset: 0; width: 100%; height: 100%;
}

/* Section wave divider */
.section-wave {
    position: relative; height: 40px;
    background: var(--bg);
    overflow: hidden;
}
.section-wave svg { width: 100%; height: 100%; display: block; }

/* Stats bar — hex pattern background */
.stats-bar { position: relative; overflow: hidden; }
.stats-hex {
    position: absolute; inset: 0; pointer-events: none;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    opacity: 0.6;
    z-index: 0;
}
.stats-bar .container { position: relative; z-index: 1; }

/* Capability hover gradient reveal + gradient border */
.cap { isolation: isolate; }
.cap::after {
    content: ""; position: absolute; inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(201,169,97,0.10), transparent 60%);
    opacity: 0; transition: opacity var(--transition);
    pointer-events: none; z-index: 0;
}
.cap > * { position: relative; z-index: 1; }
.cap:hover::after { opacity: 1; }
.cap:hover {
    box-shadow: inset 0 1px 0 rgba(201,169,97,0.35), inset 0 -1px 0 rgba(201,169,97,0.15);
}
.cap-icon { transition: transform var(--transition); }
.cap:hover .cap-icon { transform: translateY(-2px) scale(1.05); }

/* Sector card pulse + lift */
.sector-card { position: relative; overflow: hidden; transition: all var(--transition); }
.sector-card .ic { position: relative; z-index: 1; }
.sector-card .ic::before {
    content: ""; position: absolute;
    top: 50%; left: 50%; width: 60px; height: 60px;
    transform: translate(-50%, -50%) scale(0.6);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,97,0.30), transparent 70%);
    opacity: 0; transition: opacity var(--transition);
    z-index: -1;
}
.sector-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold);
    box-shadow: 0 12px 40px -16px rgba(201,169,97,0.35),
                0 0 0 1px rgba(201,169,97,0.15);
}
.sector-card:hover .ic::before {
    opacity: 1;
    animation: sectorPulse 1.6s ease-out infinite;
}
@keyframes sectorPulse {
    0%   { transform: translate(-50%, -50%) scale(0.6); opacity: 0.9; }
    100% { transform: translate(-50%, -50%) scale(1.4); opacity: 0; }
}

/* Region card hover */
.region { transition: background var(--transition), transform var(--transition); position: relative; }
.region::after {
    content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 2px;
    background: var(--gold); transform: scaleY(0);
    transform-origin: top; transition: transform var(--transition);
}
.region:hover { background: rgba(201,169,97,0.04); }
.region:hover::after { transform: scaleY(1); }

/* Case-card glow on hover */
.case-card {
    transition: all var(--transition);
}
.case-card:hover {
    box-shadow: 0 16px 48px -20px rgba(201,169,97,0.4),
                0 0 0 1px rgba(201,169,97,0.2);
}

/* Eyebrow gradient line — more refined */
.eyebrow::before {
    width: 36px;
    background: linear-gradient(90deg, transparent, var(--gold) 40%, var(--gold));
    height: 1px;
}

/* Global presence — half-opaque world map */
.section-globe { position: relative; overflow: hidden; }
.globe-bg {
    position: absolute; inset: 0;
    pointer-events: none; opacity: 0.35;
    mix-blend-mode: overlay;
    z-index: 0;
}
.globe-bg svg { width: 100%; height: 100%; display: block; }
.section-globe .container { position: relative; z-index: 1; }

/* Reduce motion respect */
@media (prefers-reduced-motion: reduce) {
    .hero-glow-a, .hero-glow-b, .hero-glow-c,
    .orbit-ring-1, .orbit-ring-2, .orbit-ring-3,
    .orbit-sat-a, .orbit-sat-b, .orbit-sat-c,
    .orbit-core circle,
    .sector-card:hover .ic::before {
        animation: none !important;
    }
}

/* Mobile guards — overflow safety */
@media (max-width: 880px) {
    .hero-orbit { width: 140px; height: 140px; top: 24px; right: 16px; opacity: 0.4; }
    .hero-glow-a, .hero-glow-b, .hero-glow-c { filter: blur(40px); }
    .hero-glow-a { width: 320px; height: 320px; }
    .hero-glow-b { width: 320px; height: 320px; }
    .hero-glow-c { display: none; }
    .deco-band { height: 16px; }
    .section-wave { height: 28px; }
}
@media (max-width: 600px) {
    .hero-orbit { display: none; }
}

/* ============================================================
   Modal Popup (contact form flash)
   ============================================================ */
.modal-popup {
    position: fixed; inset: 0; z-index: 10000;
    display: flex; align-items: center; justify-content: center;
    padding: 24px; pointer-events: none;
}
.modal-popup .modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(5, 8, 16, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    pointer-events: auto;
    animation: modalFadeIn 0.3s ease;
}
.modal-popup .modal-card {
    position: relative; z-index: 1; pointer-events: auto;
    background: linear-gradient(180deg, #0e1628, #0a1020);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-top: 3px solid var(--gold);
    border-radius: 14px;
    padding: 36px 32px 32px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(201, 169, 97, 0.1);
    max-width: 440px; width: 100%; text-align: center;
    animation: modalSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-error .modal-card { border-top-color: #f87171; }
.modal-success .modal-card { border-top-color: #22c55e; }
.modal-icon {
    width: 72px; height: 72px; border-radius: 50%;
    background: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.08);
    animation: modalIconPop 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.modal-icon i, .modal-icon svg { width: 36px; height: 36px; stroke-width: 2.5; }
.modal-success .modal-icon { background: rgba(34, 197, 94, 0.18); color: #22c55e; box-shadow: 0 0 0 6px rgba(34, 197, 94, 0.08); }
.modal-error .modal-icon { background: rgba(248, 113, 113, 0.18); color: #f87171; box-shadow: 0 0 0 6px rgba(248, 113, 113, 0.08); }
@keyframes modalIconPop {
    0% { opacity: 0; transform: scale(0.4); }
    100% { opacity: 1; transform: scale(1); }
}
.modal-card h3 {
    margin: 0 0 10px; font-size: 1.4rem; font-family: var(--font-display);
    color: var(--text);
}
.modal-card p, .modal-card div {
    color: var(--text-2); font-size: 0.95rem; margin: 0; line-height: 1.6;
}
.modal-close {
    position: absolute; top: 14px; right: 14px;
    background: transparent; border: 0; color: var(--text-3);
    font-size: 1.6rem; cursor: pointer; padding: 4px 10px;
    line-height: 1; transition: color 0.2s;
}
.modal-close:hover { color: var(--gold); }
@keyframes modalFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-12px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.modal-popup.closing { animation: modalFadeOut 0.25s ease forwards; }
@keyframes modalFadeOut { to { opacity: 0; } }
body.modal-open { overflow: hidden; }

/* ============================================================
   CINEMATIC HOME — v2.3.0
   Atmospheric photographic backgrounds, film grain, vignettes,
   chapter bands and Netflix-style hover reveals.
   ============================================================ */

/* --- Film grain (SVG turbulence) --- */
.film-grain {
    position: absolute; inset: 0;
    pointer-events: none;
    opacity: 0.16;
    mix-blend-mode: overlay;
    z-index: 3;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.78  0 0 0 0 0.66  0 0 0 0 0.38  0 0 0 0.6 0'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.55'/></svg>");
    background-size: 160px 160px;
}

/* --- Cinematic vignette --- */
.cinematic-vignette {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 2;
    background:
        radial-gradient(ellipse at center, transparent 40%, rgba(5,8,16,0.55) 100%),
        linear-gradient(180deg, rgba(5,8,16,0.5) 0%, transparent 25%, transparent 70%, rgba(5,8,16,0.7) 100%);
}

/* --- HERO cinematic image layer --- */
.hero-cinematic { position: relative; }
.hero-bg-image {
    position: absolute; inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}
.hero-bg-image img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(0.35) contrast(1.12) brightness(0.7) saturate(0.85);
    mix-blend-mode: luminosity;
    opacity: 0.55;
    transform: scale(1.05);
}
.hero-bg-overlay {
    position: absolute; inset: 0;
    pointer-events: none;
    z-index: 1;
    background: linear-gradient(180deg, rgba(5,8,16,0.78) 0%, rgba(5,8,16,0.92) 60%, rgba(5,8,16,0.97) 100%),
                radial-gradient(ellipse at 75% 40%, rgba(74,158,255,0.12), transparent 55%),
                radial-gradient(ellipse at 15% 80%, rgba(201,169,97,0.10), transparent 50%);
}
.hero-cinematic .hero-grid-bg { z-index: 1; }
.hero-cinematic .hero-glow,
.hero-cinematic .hero-orbit,
.hero-cinematic .hero-corner { z-index: 2; }
.hero-cinematic .hero-inner { z-index: 4; }

/* --- STATS BAR cinematic background --- */
.stats-bar-cinematic { position: relative; overflow: hidden; }
.stats-bg-image {
    position: absolute; inset: 0;
    background-image: url("https://images.unsplash.com/photo-1518770660439-4636190af475?auto=format&fit=crop&w=1600&q=70");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    filter: grayscale(0.6) contrast(1.2) brightness(0.55);
    z-index: 0;
    opacity: 0.45;
}
.stats-bg-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(5,8,16,0.92) 0%, rgba(5,8,16,0.97) 100%);
    z-index: 1;
}
.stats-bar-cinematic .stats-hex { z-index: 2; }
.stats-bar-cinematic .stats-grid { position: relative; z-index: 3; }

/* --- CHAPTER BAND --- */
.chapter-band {
    background: var(--bg);
    padding: 18px 0;
    position: relative;
    z-index: 1;
}
.chapter-band .container {
    display: flex; align-items: center; gap: 18px;
}
.chapter-band-line {
    flex: 1; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,169,97,0.35), transparent);
}
.chapter-band-label {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--gold);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    white-space: nowrap;
    flex-shrink: 0;
}

/* --- CAPABILITIES decobanner + per-card hover bg --- */
.section-caps { position: relative; overflow: hidden; }
.caps-decobanner {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 90px;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.45;
    z-index: 0;
    -webkit-mask-image: linear-gradient(180deg, black 0%, transparent 100%);
    mask-image: linear-gradient(180deg, black 0%, transparent 100%);
}
.caps-decobanner img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(0.7) contrast(1.3) brightness(0.4);
    mix-blend-mode: luminosity;
}
.section-caps .container { position: relative; z-index: 1; }

.cap { position: relative; isolation: isolate; }
.cap .cap-bg-layer {
    position: absolute; inset: 0;
    background-image: var(--cap-bg);
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: grayscale(0.7) contrast(1.2) brightness(0.4);
}
.cap .cap-bg-layer::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(5,8,16,0.85) 0%, rgba(5,8,16,0.95) 100%);
}
.cap:hover .cap-bg-layer { opacity: 1; }

/* --- INTELLIGENCE BRIEF: split-visual image variant --- */
.split-visual-image { overflow: hidden; }
.split-visual-bg {
    position: absolute; inset: 0;
    overflow: hidden;
    z-index: 0;
}
.split-visual-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(0.5) contrast(1.2) brightness(0.55);
    mix-blend-mode: luminosity;
    opacity: 0.6;
}
.split-visual-overlay {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(5,8,16,0.78) 0%, rgba(5,8,16,0.92) 100%),
        radial-gradient(ellipse at 20% 80%, rgba(201,169,97,0.18), transparent 60%);
    z-index: 0;
}
.split-visual-image .label-tl,
.split-visual-image .num-block,
.split-visual-image > div { position: relative; z-index: 2; }
.split-visual-image::before { z-index: 1; }

/* --- SECTORS: per-card top banner image --- */
.sector-card-img { padding: 0; overflow: hidden; }
.sector-banner {
    height: 90px;
    background-image: var(--sector-bg);
    background-size: cover;
    background-position: center;
    position: relative;
    filter: grayscale(0.65) contrast(1.2) brightness(0.55);
    transition: filter 0.5s ease, transform 0.5s ease;
}
.sector-banner::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(5,8,16,0.45) 0%, rgba(5,8,16,0.95) 100%);
}
.sector-card-img:hover .sector-banner {
    filter: grayscale(0.3) contrast(1.25) brightness(0.75);
    transform: scale(1.04);
}
.sector-card-img .ic,
.sector-card-img h4,
.sector-card-img p { padding-left: 24px; padding-right: 24px; }
.sector-card-img .ic { margin-top: 18px; margin-bottom: 12px; }
.sector-card-img p { padding-bottom: 24px; }

/* --- GLOBAL PRESENCE: cinematic photographic background --- */
.section-globe-cinematic { position: relative; overflow: hidden; }
.globe-photo-bg {
    position: absolute; inset: 0;
    z-index: 0;
    pointer-events: none;
}
.globe-photo-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.4) brightness(0.6);
    opacity: 0.18;
}
.globe-photo-overlay {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at center, transparent 30%, rgba(5,8,16,0.85) 90%),
        linear-gradient(180deg, rgba(5,8,16,0.6) 0%, rgba(5,8,16,0.9) 100%);
    z-index: 1;
}
.section-globe-cinematic .globe-bg { z-index: 2; }
.section-globe-cinematic .container { position: relative; z-index: 3; }

/* --- REFERENCES: per-case bar background image --- */
.case-card-img .industry-bar-img {
    position: relative;
    background-image: var(--case-bg);
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
    isolation: isolate;
}
.case-card-img .industry-bar-img::before {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(5,8,16,0.65) 0%, rgba(5,8,16,0.9) 100%);
    z-index: -1;
}
.case-card-img .industry-bar-img span { position: relative; z-index: 1; color: var(--gold); }
.case-card-img .industry-bar-img .code { color: rgba(255,255,255,0.65); }

/* --- BLOG cinematic Netflix-style hover --- */
.blog-card-cinematic .blog-image { position: relative; aspect-ratio: 16/10; }
.blog-card-cinematic .blog-image img {
    filter: grayscale(0.3) contrast(1.1) brightness(0.85);
    transition: transform 0.6s ease, filter 0.6s ease;
}
.blog-card-cinematic:hover .blog-image img {
    transform: scale(1.08);
    filter: grayscale(0) contrast(1.15) brightness(1);
}
.blog-image-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(5,8,16,0.15) 0%, rgba(5,8,16,0.6) 70%, rgba(5,8,16,0.95) 100%);
    pointer-events: none;
    transition: background 0.4s ease;
}
.blog-card-cinematic:hover .blog-image-overlay {
    background: linear-gradient(180deg, rgba(5,8,16,0.05) 0%, rgba(5,8,16,0.5) 70%, rgba(5,8,16,0.92) 100%);
}

/* --- CINEMATIC CTA BANNER --- */
.cta-cinematic {
    position: relative;
    padding: 140px 0;
    overflow: hidden;
    background: var(--bg);
    border-top: 1px solid var(--border-soft);
}
.cta-cinematic-bg {
    position: absolute; inset: 0;
    z-index: 0;
    overflow: hidden;
}
.cta-cinematic-bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    filter: grayscale(0.6) contrast(1.25) brightness(0.55);
    transform: scale(1.05);
    opacity: 0.5;
}
.cta-cinematic-overlay {
    position: absolute; inset: 0;
    z-index: 1;
    background:
        radial-gradient(ellipse at 50% 50%, transparent 20%, rgba(5,8,16,0.7) 80%),
        linear-gradient(180deg, rgba(5,8,16,0.85) 0%, rgba(5,8,16,0.95) 100%);
}
.cta-cinematic-inner {
    position: relative; z-index: 4;
    text-align: center;
    max-width: 760px;
}
.cta-cinematic-inner .eyebrow {
    display: inline-block;
    font-family: var(--font-mono); font-size: 0.74rem;
    color: var(--gold); letter-spacing: 0.22em; text-transform: uppercase;
    margin-bottom: 20px;
}
.cta-cinematic-inner h2 {
    font-size: clamp(1.8rem, 3.6vw, 3rem);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.cta-cinematic-inner p {
    color: var(--text-2);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 32px;
}
.cta-cinematic-inner .hero-actions { justify-content: center; }

/* --- Mobile: disable parallax fixed (perf) + downsize --- */
@media (max-width: 880px) {
    .stats-bg-image { background-attachment: scroll; }
    .hero-bg-image img { opacity: 0.4; }
    .caps-decobanner { height: 60px; opacity: 0.3; }
    .cta-cinematic { padding: 90px 0; }
    .chapter-band { padding: 12px 0; }
    .chapter-band-label { font-size: 0.62rem; letter-spacing: 0.16em; }
    .film-grain { opacity: 0.1; }
}
@media (max-width: 600px) {
    .sector-banner { height: 70px; }
    .cap .cap-bg-layer { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .blog-card-cinematic .blog-image img,
    .sector-card-img:hover .sector-banner,
    .cap .cap-bg-layer { transition: none !important; }
}


/* ============================================================
   SECTION ARTWORK — 5 unique atmospheric backgrounds
   ============================================================ */
.section-bg-art {
    position: absolute; inset: 0; pointer-events: none; overflow: hidden;
    z-index: 0;
}
.section.section-approach,
.section.section-sectors-rich,
.section.section-cases-rich,
.section.section-insights-rich,
.section.section-global-rich { position: relative; }
.section-approach > .container,
.section-sectors-rich > .container,
.section-cases-rich > .container,
.section-insights-rich > .container,
.section-global-rich > .container { position: relative; z-index: 2; }

/* ----- 1) Yaklaşımımız (Approach) — strategic command center feel ----- */
.section-approach {
    background: linear-gradient(180deg, #0a1020 0%, #0e1628 50%, #0a1020 100%);
    overflow: hidden;
}
.section-approach::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 25% 50%, rgba(74, 158, 255, 0.10), transparent 50%),
        radial-gradient(ellipse at 75% 50%, rgba(201, 169, 97, 0.08), transparent 50%);
    z-index: 1; pointer-events: none;
}
.approach-grid {
    position: absolute; inset: 0;
    background-image:
        linear-gradient(rgba(201, 169, 97, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201, 169, 97, 0.06) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.approach-glow {
    position: absolute; width: 460px; height: 460px; border-radius: 50%;
    filter: blur(110px); opacity: 0.35; pointer-events: none;
}
.approach-glow-1 { top: -120px; left: -160px; background: rgba(201, 169, 97, 0.6); animation: glowDriftA 22s ease-in-out infinite; }
.approach-glow-2 { bottom: -160px; right: -120px; background: rgba(74, 158, 255, 0.55); animation: glowDriftB 26s ease-in-out infinite; }
.approach-lines {
    position: absolute; inset: 0; width: 100%; height: 100%;
    opacity: 0.55;
}

/* ----- 2) Sektörler — industrial / structural feel ----- */
.section-sectors-rich {
    background:
        linear-gradient(135deg, #050810 0%, #0a1224 60%, #050810 100%);
    overflow: hidden;
}
.section-sectors-rich::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 80% 20%, rgba(201, 169, 97, 0.10), transparent 40%);
    z-index: 1; pointer-events: none;
}
.sectors-hex {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 60'><polygon points='30,2 56,17 56,43 30,58 4,43 4,17' fill='none' stroke='%23c9a961' stroke-width='0.5' opacity='0.15'/></svg>");
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at 100% 100%, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at 100% 100%, black 0%, transparent 70%);
    opacity: 0.6;
}
.sectors-diagonal {
    position: absolute; inset: 0;
    background:
        repeating-linear-gradient(135deg, transparent 0px, transparent 80px, rgba(201, 169, 97, 0.04) 80px, rgba(201, 169, 97, 0.04) 81px);
}
.sectors-vline {
    position: absolute; left: 50%; top: 0; bottom: 0; width: 1px;
    background: linear-gradient(180deg, transparent, rgba(201, 169, 97, 0.3), transparent);
    transform: translateX(-50%);
    opacity: 0.6;
}

/* ----- 3) Küresel Varlık (Global) — space/orbit feel ----- */
.section-global-rich {
    background: radial-gradient(ellipse at center, #0a1224 0%, #050810 100%);
    overflow: hidden;
}
.section-global-rich::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(74, 158, 255, 0.12), transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(201, 169, 97, 0.10), transparent 50%);
    z-index: 1; pointer-events: none;
}
.section-global-rich::after {
    content: ""; position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(circle, rgba(201, 169, 97, 0.45) 0.5px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
    opacity: 0.5;
}

/* ----- 4) Operasyon Dosyaları — declassified file aesthetic ----- */
.section-cases-rich {
    background:
        linear-gradient(180deg, #050810 0%, #0e1424 40%, #050810 100%);
    overflow: hidden;
}
.section-cases-rich::before {
    content: ""; position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(0deg, transparent 0px, transparent 39px, rgba(255, 255, 255, 0.03) 39px, rgba(255, 255, 255, 0.03) 40px);
    z-index: 1; pointer-events: none;
}
.cases-classified-strip {
    position: absolute; top: 32px; left: -50%; width: 200%;
    transform: rotate(-2deg);
    font-family: var(--font-mono); font-size: 0.78rem;
    letter-spacing: 0.4em; color: rgba(248, 113, 113, 0.18);
    white-space: nowrap; text-align: center;
    border-block: 1px solid rgba(248, 113, 113, 0.25);
    padding: 12px 0;
    background: rgba(248, 113, 113, 0.04);
    pointer-events: none;
}
.cases-paper {
    position: absolute; inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.08'/></svg>");
    mix-blend-mode: overlay;
    opacity: 0.4;
}
.cases-stamp {
    position: absolute; right: 4%; bottom: 8%;
    font-family: var(--font-mono); font-size: 4.5rem; font-weight: 700;
    color: rgba(201, 169, 97, 0.07); letter-spacing: 0.05em;
    transform: rotate(-12deg);
    border: 4px solid rgba(201, 169, 97, 0.07);
    padding: 12px 24px; border-radius: 8px;
    pointer-events: none;
}

/* ----- 5) İçgörüler — editorial / data feel ----- */
.section-insights-rich {
    background: linear-gradient(180deg, #050810 0%, #0a1224 50%, #050810 100%);
    overflow: hidden;
}
.section-insights-rich::before {
    content: ""; position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 0% 30%, rgba(74, 158, 255, 0.10), transparent 45%),
        radial-gradient(ellipse at 100% 80%, rgba(201, 169, 97, 0.08), transparent 45%);
    z-index: 1; pointer-events: none;
}
.insights-bars {
    position: absolute; left: 0; right: 0; top: 0; height: 100%;
    background-image:
        linear-gradient(90deg, rgba(74, 158, 255, 0.05) 1px, transparent 1px);
    background-size: 8% 100%;
    mask-image: linear-gradient(180deg, black, transparent);
    -webkit-mask-image: linear-gradient(180deg, black, transparent);
    opacity: 0.7;
}
.insights-glow {
    position: absolute; top: 30%; right: -200px;
    width: 600px; height: 600px; border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.18) 0%, transparent 60%);
    filter: blur(80px); pointer-events: none;
}
.insights-wave {
    position: absolute; left: 0; right: 0; bottom: 0; width: 100%; height: 200px;
    pointer-events: none;
}

/* Mobile: dekoratif öğeleri sadeleştir */
@media (max-width: 720px) {
    .approach-glow { width: 280px; height: 280px; opacity: 0.25; }
    .cases-stamp { font-size: 2.4rem; right: 6%; bottom: 6%; }
    .cases-classified-strip { font-size: 0.6rem; letter-spacing: 0.2em; padding: 8px 0; }
    .insights-glow { width: 360px; height: 360px; }
    .approach-lines { opacity: 0.3; }
}
@media (prefers-reduced-motion: reduce) {
    .approach-glow { animation: none !important; }
}

/* ============================================================
   REGION CARDS — animated atmospheric backgrounds (GPU-friendly)
   ============================================================ */
.region {
    position: relative; overflow: hidden;
    isolation: isolate; /* pseudo'lar parent dışı sızmasın */
}
.region > * { position: relative; z-index: 2; }

/* Base animated layer (her kartın arkasında) — sadece transform/opacity hareket */
.region::before {
    content: ""; position: absolute; inset: -20%; z-index: 1;
    background: radial-gradient(circle at 30% 30%, rgba(201,169,97,0.10) 0%, transparent 55%);
    animation: regionDrift 18s ease-in-out infinite;
    will-change: transform;
    pointer-events: none;
    opacity: 0.9;
}
/* İkinci, daha küçük glow — opposite drift */
.region::after {
    content: ""; position: absolute; inset: -30%; z-index: 1;
    background: radial-gradient(circle at 70% 70%, rgba(74,158,255,0.08) 0%, transparent 50%);
    animation: regionDriftReverse 24s ease-in-out infinite;
    will-change: transform;
    pointer-events: none;
}

@keyframes regionDrift {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50%      { transform: translate3d(8%, -6%, 0) scale(1.1); }
}
@keyframes regionDriftReverse {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1.05); }
    50%      { transform: translate3d(-7%, 5%, 0) scale(1); }
}

/* Hover: glow yoğunlaşır + kart yukarı */
.region:hover {
    background: rgba(201, 169, 97, 0.04);
    z-index: 3;
}
.region:hover::before { opacity: 1.4; }
.region:hover::after  { opacity: 1.4; }

/* Per-region renk varyasyonu (8 region) — gold/blue/cyan/amber tonları */
.region:nth-child(1)::before { background: radial-gradient(circle at 30% 30%, rgba(201,169,97,0.14), transparent 55%); }
.region:nth-child(1)::after  { background: radial-gradient(circle at 70% 70%, rgba(74,158,255,0.10), transparent 50%); }

.region:nth-child(2)::before { background: radial-gradient(circle at 35% 35%, rgba(245,158,11,0.13), transparent 55%); animation-duration: 22s; }
.region:nth-child(2)::after  { background: radial-gradient(circle at 75% 65%, rgba(201,169,97,0.10), transparent 50%); }

.region:nth-child(3)::before { background: radial-gradient(circle at 25% 40%, rgba(74,158,255,0.13), transparent 55%); animation-duration: 20s; }
.region:nth-child(3)::after  { background: radial-gradient(circle at 70% 70%, rgba(34,211,238,0.08), transparent 50%); }

.region:nth-child(4)::before { background: radial-gradient(circle at 40% 30%, rgba(74,158,255,0.10), transparent 55%); animation-duration: 19s; }
.region:nth-child(4)::after  { background: radial-gradient(circle at 70% 70%, rgba(168,85,247,0.06), transparent 50%); }

.region:nth-child(5)::before { background: radial-gradient(circle at 30% 30%, rgba(74,222,128,0.10), transparent 55%); animation-duration: 25s; }
.region:nth-child(5)::after  { background: radial-gradient(circle at 70% 70%, rgba(201,169,97,0.10), transparent 50%); }

.region:nth-child(6)::before { background: radial-gradient(circle at 30% 30%, rgba(248,113,113,0.10), transparent 55%); animation-duration: 21s; }
.region:nth-child(6)::after  { background: radial-gradient(circle at 70% 70%, rgba(245,158,11,0.10), transparent 50%); }

.region:nth-child(7)::before { background: radial-gradient(circle at 30% 30%, rgba(245,158,11,0.13), transparent 55%); animation-duration: 23s; }
.region:nth-child(7)::after  { background: radial-gradient(circle at 70% 70%, rgba(248,113,113,0.08), transparent 50%); }

/* SECURE LINK (sonuncu) — özel: encrypted pulse + tarayıcı çizgi */
.region:nth-child(8)::before {
    background:
        radial-gradient(circle at 50% 50%, rgba(201,169,97,0.20), transparent 55%);
    animation: secureLinkPulse 4s ease-in-out infinite;
}
.region:nth-child(8)::after {
    background:
        repeating-linear-gradient(0deg, rgba(201,169,97,0.06) 0px, rgba(201,169,97,0.06) 1px, transparent 1px, transparent 6px);
    animation: secureScan 6s linear infinite;
    inset: 0; opacity: 0.6;
}
@keyframes secureLinkPulse {
    0%, 100% { transform: scale(1);   opacity: 0.7; }
    50%      { transform: scale(1.15); opacity: 1; }
}
@keyframes secureScan {
    0%   { transform: translate3d(0, -100%, 0); }
    100% { transform: translate3d(0,  100%, 0); }
}

/* Mobil + reduced-motion: animasyonları kapat (perf) */
@media (max-width: 720px) {
    .region::before, .region::after { animation: none; }
}
@media (prefers-reduced-motion: reduce) {
    .region::before, .region::after { animation: none !important; }
}

/* ============================================================
   COOKIE CONSENT — banner (alt) + ayarlar modalı
   ============================================================ */
.cookie-banner {
    position: fixed; left: 0; right: 0; bottom: 0;
    z-index: 9500;
    background: rgba(5, 8, 16, 0.97);
    backdrop-filter: blur(14px) saturate(150%);
    -webkit-backdrop-filter: blur(14px) saturate(150%);
    border-top: 1px solid rgba(201, 169, 97, 0.4);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner[hidden] { display: block; visibility: hidden; }
.cookie-banner.show[hidden] { visibility: visible; }
/* Top accent line */
.cookie-banner::before {
    content: ""; position: absolute; left: 0; right: 0; top: -1px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.cookie-banner-inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: 32px; padding: 20px 32px;
    max-width: var(--container-wide); margin: 0 auto;
    flex-wrap: wrap;
}
.cookie-banner-text { flex: 1; min-width: 280px; }
.cookie-banner-text h4 {
    font-family: var(--font-display); font-size: 1.05rem; font-weight: 600;
    margin: 0 0 6px; color: var(--text);
    letter-spacing: -0.01em;
}
.cookie-banner-text p {
    margin: 0; font-size: 0.9rem; color: var(--text-2); line-height: 1.55;
}
.cookie-banner-text a {
    color: var(--gold); text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(201, 169, 97, 0.5);
}
.cookie-banner-text a:hover { color: var(--text); text-decoration-color: var(--gold); }
.cookie-banner-actions {
    display: flex; gap: 10px; flex-shrink: 0;
}

/* Modal — dark settings panel */
.cookie-modal {
    position: fixed; inset: 0; z-index: 9700;
    display: flex; align-items: center; justify-content: center;
    padding: 24px; pointer-events: none;
}
.cookie-modal[hidden] { display: none; }
.cookie-modal-backdrop {
    position: absolute; inset: 0;
    background: rgba(5, 8, 16, 0.75);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    pointer-events: auto;
    animation: cookieFade 0.25s ease;
}
@keyframes cookieFade { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal-card {
    position: relative; z-index: 1; pointer-events: auto;
    background: linear-gradient(180deg, #0e1628, #0a1020);
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 16px;
    width: 100%; max-width: 620px; max-height: 90vh;
    display: flex; flex-direction: column; overflow: hidden;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(201, 169, 97, 0.08);
    animation: cookieSlide 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes cookieSlide {
    from { opacity: 0; transform: translateY(-12px) scale(0.97); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}
.cookie-modal-head {
    display: flex; justify-content: space-between; align-items: center;
    padding: 22px 26px; border-bottom: 1px solid var(--border-soft);
}
.cookie-modal-head h3 {
    margin: 0; font-family: var(--font-display); font-size: 1.25rem;
    color: var(--text); letter-spacing: -0.015em;
}
.cookie-modal-close {
    background: transparent; border: 0; color: var(--text-3);
    font-size: 1.6rem; cursor: pointer; line-height: 1; padding: 4px 10px;
    transition: color 0.2s;
}
.cookie-modal-close:hover { color: var(--gold); }
.cookie-modal-body {
    flex: 1; overflow-y: auto;
    padding: 22px 26px; display: flex; flex-direction: column; gap: 14px;
}
.cookie-cat {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid var(--border-soft);
    border-radius: 12px; padding: 18px 20px;
    transition: border-color 0.2s;
}
.cookie-cat:hover { border-color: rgba(201, 169, 97, 0.25); }
.cookie-cat-head {
    display: flex; justify-content: space-between; align-items: center;
    gap: 12px; margin-bottom: 6px;
}
.cookie-cat-head h4 {
    margin: 0; font-size: 0.98rem; font-weight: 600; color: var(--text);
    font-family: var(--font-sans); letter-spacing: 0;
}
.cookie-cat p {
    margin: 0; font-size: 0.85rem; color: var(--text-3); line-height: 1.55;
}
.cookie-always {
    font-family: var(--font-mono); font-size: 0.72rem;
    color: var(--gold); letter-spacing: 0.06em;
    padding: 3px 10px; border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 999px;
}

/* Toggle switch */
.cookie-switch {
    position: relative; display: inline-block; width: 42px; height: 24px;
    flex-shrink: 0; cursor: pointer;
}
.cookie-switch input {
    opacity: 0; width: 0; height: 0; position: absolute;
}
.cookie-switch-slider {
    position: absolute; inset: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: all 0.25s ease;
}
.cookie-switch-slider::before {
    content: ""; position: absolute; top: 2px; left: 2px;
    width: 18px; height: 18px;
    background: var(--text-3); border-radius: 50%;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-switch input:checked + .cookie-switch-slider {
    background: rgba(201, 169, 97, 0.25);
    border-color: var(--gold);
}
.cookie-switch input:checked + .cookie-switch-slider::before {
    left: 21px; background: var(--gold);
    box-shadow: 0 0 8px rgba(201, 169, 97, 0.6);
}

.cookie-modal-foot {
    display: flex; justify-content: flex-end; gap: 10px;
    padding: 18px 26px; border-top: 1px solid var(--border-soft);
}

body.cookie-modal-open { overflow: hidden; }

/* Mobile */
@media (max-width: 720px) {
    .cookie-banner-inner { padding: 18px 20px; gap: 16px; }
    .cookie-banner-text h4 { font-size: 0.98rem; }
    .cookie-banner-text p { font-size: 0.85rem; }
    .cookie-banner-actions { width: 100%; }
    .cookie-banner-actions .btn { flex: 1; justify-content: center; }
    .cookie-modal { padding: 12px; }
    .cookie-modal-card { max-height: 92vh; }
    .cookie-modal-head, .cookie-modal-body, .cookie-modal-foot { padding-left: 18px; padding-right: 18px; }
    .cookie-modal-foot { flex-wrap: wrap; }
    .cookie-modal-foot .btn { flex: 1; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
    .cookie-banner, .cookie-modal-card, .cookie-modal-backdrop { animation: none !important; transition: none !important; }
}

/* ============================================================
   CAPTCHA — image challenge (iletişim formu)
   ============================================================ */
.captcha-group label {
    font-family: var(--font-mono);
    color: var(--gold) !important;
    letter-spacing: 0.04em;
    margin-bottom: 10px !important;
}
.captcha-row {
    display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.captcha-img {
    height: 60px; width: 180px; display: block;
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 8px;
    background: var(--surface);
    image-rendering: -webkit-optimize-contrast;
    flex-shrink: 0;
}
.captcha-reload {
    background: rgba(201, 169, 97, 0.08);
    border: 1px solid rgba(201, 169, 97, 0.3);
    color: var(--gold);
    width: 44px; height: 44px; border-radius: 8px;
    cursor: pointer; display: inline-flex; align-items: center; justify-content: center;
    transition: all 0.4s ease; flex-shrink: 0;
}
.captcha-reload:hover {
    background: rgba(201, 169, 97, 0.18);
    transform: rotate(180deg);
}
.captcha-reload i, .captcha-reload svg { width: 18px; height: 18px; }
.captcha-row input[type="text"] {
    flex: 1; min-width: 140px; max-width: 200px;
    text-align: center;
    font-family: var(--font-mono);
    font-size: 1.15rem !important;
    letter-spacing: 0.3em;
    padding: 12px 14px !important;
}
.captcha-group small { color: var(--text-3); margin-top: 8px; }
@media (max-width: 480px) {
    .captcha-row { gap: 8px; }
    .captcha-img { width: 150px; height: 50px; }
    .captcha-reload { width: 40px; height: 40px; }
    .captcha-row input[type="text"] { width: 100%; flex-basis: 100%; }
}
