@charset "UTF-8";
/* CSS Document */

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

/* 1. DEĞİŞKENLER VE TEMEL YAPI */
:root {
    --font-main: 'Inter', sans-serif;
    --blitz-bg: #000000;
    --blitz-border: #333333;
    --blitz-text-muted: #888888;
    --highlight-color: #ffffff;
    --animation-speed: 0.8s;
	--blitz-card: #0a0a0a;
    --blitz-border: rgba(255,255,255,0.08);
    --blitz-muted: rgba(255,255,255,0.35);
	--dur:700ms;
    --ease:cubic-bezier(0.25, 1, 0.5, 1);
	--z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-offcanvas-backdrop: 1040;
    --z-offcanvas: 1050;
    --z-modal-backdrop: 1060;
    --z-modal: 1070;
    --z-popover: 1080;
    --z-tooltip: 1090;
}

::selection {
    background: #0dcaf0
}

input::placeholder,
textarea::placeholder {
  text-transform:none!important;
  opacity: 1; 
  color: #888;
}
::placeholder {
  text-transform: lowercase;
}

/* Internet Explorer 10-11 */
:-ms-input-placeholder {
  text-transform: lowercase;
}

/* Microsoft Edge */
::-ms-input-placeholder {
  text-transform: lowercase;
}
html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--blitz-bg);
    font-family: var(--font-main);
    font-weight: 300;
    color: var(--highlight-color);
    overflow-x: hidden;
    opacity: 0;
    transition: opacity var(--animation-speed) ease-out, transform var(--animation-speed) ease-out;
	-webkit-font-smoothing: antialiased;
	
}


body.is-loaded {
    opacity: 1;
  
}


body.menu-open {
    overflow: hidden;
}

/* Sayfa geçiş perdesi (Overlay) */
.page-transition-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--blitz-bg); 
    z-index: 9999;
    pointer-events: none;
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.page-transition-overlay.is-active {
    transform: scaleY(1);
    transform-origin: top;
}
.fw-bold {
    font-weight: 900 !important;
}

a {
    text-decoration: none;
    color: #6c757d;
    transition: color 0.3s ease;
}

/* 2. NAVBAR ÖZELLEŞTİRMELERİ */
.logo { max-width: 110px; }	


/* ── RESET ──────────────────────────────────────────── */
.blitz-nav *,
.blitz-offcanvas * { box-sizing: border-box; }

/* ── NAV SHELL ──────────────────────────────────────── */
.blitz-nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    z-index: 1030;
    transition: background 0.5s ease, border-color 0.5s ease, padding 0.4s ease;
    border-bottom: 1px solid transparent;
}

.blitz-nav.scrolled {
	border-bottom-color: rgba(255, 255, 255, 0.06);
    background-color: rgb(0 0 0 / 65%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.blitz-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3rem;
    height: 100px;
    transition: height 0.4s ease, padding 0.4s ease;
}

.blitz-nav.scrolled .blitz-nav-inner {
    height: 80px;
    padding: 0 2.5rem;
}

/* ── LOGO ───────────────────────────────────────────── */
.blitz-nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.blitz-nav-logo img { max-width: 100px; }

/* ── DESKTOP LINKS ──────────────────────────────────── */
.blitz-nav-links {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0; padding: 0;
    gap: 0;
}

.blitz-nav-item { position: static; }

.blitz-nav-link,
.blitz-nav-link--btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 1.4rem;
    height: 100px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.25s, height 0.4s;
    position: relative;
    white-space: nowrap;
}

.blitz-nav.scrolled .blitz-nav-link,
.blitz-nav.scrolled .blitz-nav-link--btn {
    height: 80px;
}

.blitz-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 1.4rem;
    width: 0; height: 1px;
    background: #fff;
    transition: width 0.3s ease;
}

.blitz-nav-item:hover .blitz-nav-link::after,
.blitz-nav-link:hover::after { width: calc(100% - 2.8rem); }

.blitz-nav-item:hover .blitz-nav-link,
.blitz-nav-item:hover .blitz-nav-link--btn,
.blitz-nav-link:hover,
.blitz-nav-link--btn:hover { color: #fff; }

.blitz-nav-chevron {
    transition: transform 0.3s ease;
    opacity: 0.5;
}
.blitz-nav-item--dropdown:hover .blitz-nav-chevron { transform: rotate(180deg); opacity: 1; }

/* ── MEGA MENU ──────────────────────────────────────── */
.blitz-mega {
	position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    background: rgb(0 0 0 / 65%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    z-index: 1020;
    pointer-events: none;
}

.blitz-nav.scrolled .blitz-mega { top: 80px; }

.blitz-nav-item--dropdown:hover .blitz-mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.blitz-mega-inner {
    display: grid;
    grid-template-columns: 320px 1fr 1fr;
    gap: 0;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem 2rem;
}

/* INTRO COLUMN */
.blitz-mega-intro {
    padding-right: 3rem;
    border-right: 1px solid rgba(255,255,255,0.06);
}

.blitz-mega-eyebrow {
    display: block;
    font-size: 9px;
    letter-spacing: 1px;
    color: rgb(255 255 255 / 90%);
    font-family: var(--font-main);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.blitz-mega-headline {
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    letter-spacing: -0.5px;
    margin-bottom: 0.75rem;
}

.blitz-mega-sub {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
    margin: 0;
}

/* LINK COLUMNS */
.blitz-mega-col {
    padding: 0 2rem;
    border-right: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
}

.blitz-mega-col:last-child { border-right: none; }

.blitz-mega-col-title {
    display: block;
    font-size: 10px;
    letter-spacing: 1px;
    color: rgb(255 255 255 / 90%);
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 900;
    font-family: var(--font-main);
}

.blitz-mega-link {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    text-decoration: none;
    transition: padding-left 0.25s ease;
    group: true;
}

.blitz-mega-link:hover { padding-left: 8px; }

.blitz-mega-link-name {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.75);
    text-transform: uppercase;
    transition: color 0.25s;
}

.blitz-mega-link-meta {
    font-size: 0.68rem;
    color: rgba(255,255,255,0.2);
    letter-spacing: 0.5px;
    transition: color 0.25s;
    white-space: nowrap;
    margin-left: 1rem;
}

.blitz-mega-link:hover .blitz-mega-link-name { color: #fff; }
.blitz-mega-link:hover .blitz-mega-link-meta { color: rgba(255,255,255,0.45); }

/* ── CTA + HAMBURGER ────────────────────────────────── */
.blitz-nav-actions {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-shrink: 0;
}

.blitz-nav-cta {
    display: inline-flex;
    align-items: center;
    padding: 9px 22px;
    border: 1px solid rgba(255,255,255,0.25);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #fff;
    text-decoration: none;
    transition: background 0.25s, border-color 0.25s, color 0.25s;
}

.blitz-nav-cta:hover {
    background: #fff;
    border-color: #fff;
    color: #000;
}

.blitz-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px; height: 36px;
    background: none;
    border: 1px solid rgba(255,255,255,0.15);
    cursor: pointer;
    padding: 8px;
    transition: border-color 0.25s;
}

.blitz-hamburger:hover { border-color: rgba(255,255,255,0.4); }

.blitz-hamburger span {
    display: block;
    width: 100%; height: 1px;
    background: #fff;
    transition: transform 0.3s, opacity 0.3s;
}

/* ── SCROLL PROGRESS BAR ────────────────────────────── */
.blitz-nav-progress {
    position: absolute;
    bottom: 0; left: 0;
    height: 1px;
    width: 0%;
    background: rgba(255,255,255,0.4);
    transition: width 0.1s linear;
}

/* ── OFFCANVAS ──────────────────────────────────────── */
.blitz-offcanvas {
    background: #050505 !important;
    height: 100vh !important;
    border: none !important;
}

.blitz-offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
    height: 80px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    flex-shrink: 0;
}

.blitz-offcanvas-close {
    background: none;
    border: 1px solid rgba(255,255,255,0.1);
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s;
}
.blitz-offcanvas-close:hover { border-color: rgba(255,255,255,0.3); }

.blitz-offcanvas-body {
    padding: 2rem 2rem 3rem;
    overflow-y: auto;
    flex: 1;
    background: #050505 !important;
    box-shadow: none !important;
}

/* MOBILE LINK */
.blitz-mob-link {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    padding: 1.1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: color 0.2s, padding-left 0.2s;
}
.blitz-mob-link:hover { color: #fff; padding-left: 6px; }

/* MOBILE SECTION */
.blitz-mob-section {
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.blitz-mob-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 0;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}
.blitz-mob-toggle:hover { color: #fff; }
.blitz-mob-toggle svg { transition: transform 0.3s; opacity: 0.4; flex-shrink: 0; }
.blitz-mob-toggle[aria-expanded="true"] svg { transform: rotate(180deg); opacity: 1; }

.blitz-mob-collapse { }

.blitz-mob-group {
    padding: 0.75rem 0 0.75rem 1rem;
    border-left: 1px solid rgba(255,255,255,0.08);
    margin: 0 0 0.75rem;
}

.blitz-mob-group-title {
    display: block;
    font-size: 8px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.blitz-mob-sub {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0.45rem 0;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}
.blitz-mob-sub em { font-style: normal; font-size: 0.65rem; color: rgba(255,255,255,0.2); }
.blitz-mob-sub:hover { color: #fff; padding-left: 6px; }

.blitz-offcanvas-footer {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.65rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.15);
    text-transform: uppercase;
}


/* ── COMPARE CARD ───────────────────────────────────── */
.blitz-compare-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    padding: 1.5rem;
    border: 1px solid rgba(255,255,255,0.08);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, background 0.3s ease;
    background: rgba(255,255,255,0.02);
    margin-right: 1.5rem;
}

.blitz-compare-card:hover {
    border-color: rgba(255,255,255,0.22);
    background: rgba(255,255,255,0.04);
}

/* köşe dekorasyonları */
.blitz-compare-card::before,
.blitz-compare-card::after {
    content: '';
    position: absolute;
    width: 12px; height: 12px;
}
.blitz-compare-card::before { top: 0; left: 0; border-top: 1px solid rgba(255,255,255,0.4); border-left: 1px solid rgba(255,255,255,0.4); }
.blitz-compare-card::after  { bottom: 0; right: 0; border-bottom: 1px solid rgba(255,255,255,0.4); border-right: 1px solid rgba(255,255,255,0.4); }

.blitz-compare-eyebrow {
	display: block;
    font-size: 9px;
    letter-spacing: 1px;
    color: rgb(255 255 255 / 90%);
    font-family: var(--font-main);
    margin-bottom: 1.5rem;
    font-weight: 600;
}


.blitz-compare-label {
    font-size: 1.3rem;
    font-weight: 900;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
    letter-spacing: 0.2px;
    margin: 0 0 1.5rem;
    transition: color 0.3s;
}

.blitz-compare-card:hover .blitz-compare-label { color: #fff; }

.blitz-compare-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    transition: color 0.3s, gap 0.3s;
}

.blitz-compare-card:hover .blitz-compare-cta {
    color: #fff;
    gap: 12px;
}


.blitz-compare-eyebrow,
.blitz-compare-models,
.blitz-compare-label,
.blitz-compare-cta { position: relative; z-index: 1; }

/* ── PAGE BLUR ON NAV HOVER ─────────────────────────── */
body:has(.blitz-nav:hover) .page-content {
    filter: blur(4px);
    opacity: 0.6;
    transition: filter 0.4s ease, opacity 0.4s ease;
}

.page-content {
    transition: filter 0.4s ease, opacity 0.4s ease;
    will-change: filter, opacity;
}
/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 991px) {
	body:has(.blitz-nav:hover) .page-content {
        filter: none;
        opacity: 1;
    }
    .blitz-nav-links { display: none; }
    .blitz-hamburger { display: flex; }
    .blitz-nav-cta { display: none; }
    .blitz-nav-inner { padding: 0 1.5rem; }
}

@media (min-width: 992px) {
    .blitz-hamburger { display: none; }
    .blitz-offcanvas { display: none !important; }
}

@media (max-width: 576px) {
    .blitz-nav-inner { height: 72px; }
    .blitz-nav-logo img { max-width: 84px; }
}




        /* ─── SECTION ─── */
        .blitz-section {
            background: var(--blitz-bg);
            height: 100%;
            display: flex;
            flex-direction: column;
            overflow: hidden;
        }
 
        /* ─── HEADER ─── */
        .blitz-section-header {
            max-width: 1400px;
            margin: 0 auto;
            width: 100%;
            padding: 6rem 4rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: end;
        }
 
        .blitz-section-eyebrow {
            font-size: 0.6rem;
            font-weight: 700;
            letter-spacing: 5px;
            color: #6c757d;
            text-transform: uppercase;
            margin-bottom: .8rem;
        }
 
        .blitz-section-title {
            font-size: clamp(2.4rem, 5vw, 4.2rem);
            font-weight: 800;
            letter-spacing: -0.04em;
            line-height: 1.05;
            color: #fff;
        }
        .blitz-section-title span {
            color: rgba(255,255,255,0.25);
        }
 
        .blitz-section-desc {
            display: flex;
            flex-direction: column;
            gap: 1rem;
            justify-self: end;
            max-width: 480px;
        }
        .blitz-section-desc p {
            font-size: 0.95rem;
            font-weight: 400;
            color: rgba(255,255,255,0.35);
            line-height: 1.8;
        }
        .blitz-section-desc p.highlight {
            color: rgba(255,255,255,0.7);
            font-weight: 500;
        }
 


		
/* ── ACCORDION WRAPPER ── */
.feat-wrap {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: auto;
    min-height: 400px;
    border-top:    1px solid var(--border);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

@media (min-width: 1024px) {
    .feat-wrap {
        flex-direction: row;
        height: 55vh;
        min-height: 400px;
		background-color: #222528;
    }
}

/* ── TEK PENCERE ── */
.feat-panel {
    position: relative;
    flex: 1;
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    cursor: crosshair;
    /* flex genişliği geçişi */
    transition: flex var(--dur) var(--ease);
}

/* Mobilde boy geçişi */
@media (max-width: 1023px) {
    .feat-panel {
        flex: none;
        height: 120px;
        transition: height var(--dur) var(--ease);
    }
    .feat-panel.feat-active {
        height: 320px;
    }
    .feat-panel:last-child { border-bottom: none; }
}
@media (max-width: 767px) {
	.blitz-section-header {
		grid-template-columns: 1fr;
        padding: 4rem 2rem;
        gap: 1rem;
	}
	.blitz-section-desc {
		max-width: 100%
	}
}

@media (min-width: 1024px) {
    .feat-panel {
        border-bottom: none;
        border-right: 1px solid rgba(255,255,255,0.10);;
    }
    .feat-panel:last-child { border-right: none; }
    .feat-panel.feat-active { flex: 4; }
}

/* ── ARKA PLAN KATMANLARI ── */

/* Grid doku */
.feat-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right,  rgba(255,255,255,0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.10;
    pointer-events: none;
    transition: opacity 0.7s ease;
    z-index: 1;
}
.feat-panel.feat-active .feat-grid { opacity: 0.30; }

/* Alt gradient */
.feat-grad {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
        rgba(3,3,3,1) 0%,
        rgba(3,3,3,0.5) 40%,
        transparent 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.7s ease;
    z-index: 2;
}
.feat-panel.feat-active .feat-grad { opacity: 1; }

/* Açık durum — glow + diyagonal doku + köşe HUD */
.feat-fx {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 1s ease;
    z-index: 3;
}
.feat-panel.feat-active .feat-fx { opacity: 1; }

.feat-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at bottom left,
        rgba(255,255,255,0.06) 0%, transparent 60%);
}

.feat-diag {
    position: absolute;
    inset: 0;
    opacity: 0.40;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.05) 0px,
        rgba(255,255,255,0.05) 1px,
        transparent 1px,
        transparent 12px
    );
    -webkit-mask-image: linear-gradient(to top left, black 0%, transparent 60%);
    mask-image: linear-gradient(to top left, black 0%, transparent 60%);
}

.feat-hud {
    position: absolute;
    bottom: 24px;
    right:  24px;
    width:  48px;
    height: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.20);
    border-right:  1px solid rgba(255,255,255,0.20);
    transform: translate(16px, 16px);
    transition: transform 1s ease;
}

@media (min-width: 1024px) {
    .feat-hud {
        bottom: 40px;
        right:  40px;
    }
}
.feat-panel.feat-active .feat-hud {
    transform: translate(0, 0);
}

/* ── SVG ARKA PLAN ÇİZİMLERİ ── */
.feat-svg {
    position: absolute;
    pointer-events: none;
    color: #fff;
    opacity: 0.12;
    transition: opacity 1s ease, transform 1s ease;
    z-index: 4;
}
.feat-panel.feat-active .feat-svg {
    opacity: 0.34;
}

/* Her panelin SVG konumu */
.feat-panel:nth-child(1) .feat-svg {
    top: 25%; left: -25%;
    width: 250%; max-width: 700px;
    transform: rotate(-20deg) scale(1.25);
}
.feat-panel.feat-active:nth-child(1) .feat-svg {
    transform: rotate(-20deg) scale(1.35);
}

.feat-panel:nth-child(2) .feat-svg {
    top: 50%; left: -33%;
    width: 200%; max-width: 500px;
    transform: translateY(-50%) rotate(6deg) scale(1.25);
}
.feat-panel.feat-active:nth-child(2) .feat-svg {
    transform: translateY(-50%) rotate(6deg) scale(1.35);
}

.feat-panel:nth-child(3) .feat-svg {
    top: -25%; right: 0; left: auto;
    width: 200%; max-width: 500px;
    transform: rotate(45deg) scale(1.50);
}
.feat-panel.feat-active:nth-child(3) .feat-svg {
    transform: rotate(45deg) scale(1.65);
}

.feat-panel:nth-child(4) .feat-svg {
    bottom: -25%; left: -25%;
    width: 200%; max-width: 500px;
    transform: rotate(-20deg) scale(1.50);
}
.feat-panel.feat-active:nth-child(4) .feat-svg {
    transform: rotate(-20deg) scale(1.65);
}

/* ── SCANLINE ── */
.feat-scan {
    position: absolute;
    left: 0; right: 0;
    top: -5%;
    height: 1px;
    background: linear-gradient(to right,
        transparent,
        rgba(255,255,255,0.30),
        transparent);
    box-shadow: 0 0 8px rgba(255,255,255,0.40);
    opacity: 0;
    pointer-events: none;
    z-index: 10;
    animation: scan 6s linear infinite;
    animation-play-state: running;
}
.feat-panel.feat-active .feat-scan {
    display: none;
}
@keyframes scan {
    0%   { top: -5%;   opacity: 0; }
    10%  { opacity: 0.4; }
    90%  { opacity: 0.4; }
    100% { top: 105%;  opacity: 0; }
}
/* Her panel için farklı delay */
.feat-panel:nth-child(1) .feat-scan { animation-delay: 0s; }
.feat-panel:nth-child(2) .feat-scan { animation-delay: 1.5s; }
.feat-panel:nth-child(3) .feat-scan { animation-delay: 3s; }
.feat-panel:nth-child(4) .feat-scan { animation-delay: 4.5s; }

/* ── NUMARA ── */
.feat-num {
    position: absolute;
    top: 16px; left: 16px;
    z-index: 30;
    font-family: var(--font-head);
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    /* içi boş yazı — kapalı */
    -webkit-text-stroke: 1px #3f3f46;
    color: transparent;
    opacity: 0.50;
    transition: opacity 0.5s ease, color 0.5s ease, -webkit-text-stroke 0.5s ease;
    /* sayı titremesi */
    animation: numPulse 4s cubic-bezier(0.4,0,0.6,1) infinite;
}
.feat-panel.feat-active .feat-num {
    -webkit-text-stroke: 1px transparent;
    color: #ffffff;
    opacity: 1;
}
@keyframes numPulse {
    0%, 100% { opacity: 0.50; }
    50%       { opacity: 0.75; }
}
/* Her panel farklı delay */
.feat-panel:nth-child(2) .feat-num { animation-delay: 0.5s; }
.feat-panel:nth-child(3) .feat-num { animation-delay: 1.0s; }
.feat-panel:nth-child(4) .feat-num { animation-delay: 1.5s; }

@media (min-width: 1024px) {
    .feat-num { top: 24px; left: 24px; }
}

/* ── KAPALI DURUM: İKON + BAŞLIK ── */
.feat-idle {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 20;
    opacity: 1;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.feat-panel.feat-active .feat-idle { opacity: 0; }

@media (min-width: 1024px) {
    .feat-idle { flex-direction: column; }
}

.feat-idle-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 16px;
    animation: floatY 6s ease-in-out infinite;
}

@media (min-width: 1024px) {
    .feat-idle-inner {
        flex-direction: column;
        gap: 32px;
    }
}

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

.feat-panel:nth-child(2) .feat-idle-inner,
.feat-panel:nth-child(4) .feat-idle-inner {
    animation-delay: 3s;
}

/* İkon */
.feat-icon {
    width: 24px;
    height: 24px;
    color: var(--text-2);
    flex-shrink: 0;
    animation: glowIcon 4s ease-in-out infinite;
}
@media (min-width: 1024px) {
    .feat-icon { width: 28px; height: 28px; }
}
@keyframes glowIcon {
    0%, 100% { opacity: 0.6; filter: drop-shadow(0 0 2px rgba(255,255,255,0)); }
    50%       { opacity: 1;   filter: drop-shadow(0 0 8px rgba(255,255,255,0.4)); }
}

/* panel 3 ikon dönsün */
.feat-panel:nth-child(3) .feat-icon {
    animation: glowIcon 4s ease-in-out infinite, spinSlow 12s linear infinite;
}
@keyframes spinSlow {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* panel 2 ikon yavaş pulse */
.feat-panel:nth-child(2) .feat-icon {
    animation: pulseSlow 4s cubic-bezier(0.4,0,0.6,1) infinite;
}
@keyframes pulseSlow {
    0%, 100% { transform: scale(1);    opacity: 0.7; }
    50%       { transform: scale(1.05); opacity: 1;   }
}

/* Dikey başlık (yalnızca masaüstü) */
.feat-idle-title {
    font-family: var(--font-head);
    font-size: clamp(15px, 1.3vw, 18px);
    font-weight: 700;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(255,255,255,0.30);
    transition: color 0.5s ease;
}
.feat-panel.feat-active .feat-idle-title { color: #fff; }

@media (min-width: 1024px) {
    .feat-idle-title {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        text-orientation: mixed;
    }
}

/* ── AÇIK DURUM: İÇERİK ── */
.feat-body {
    position: absolute;
    bottom: 0; left: 0;
    width: 100%;
    padding: 24px;
    z-index: 30;
    opacity: 0;
    transform: translateY(32px);
    transition:
        opacity   0.7s ease,
        transform 0.7s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-width: 280px;
}
.feat-panel.feat-active .feat-body {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 1024px) {
    .feat-body { padding: 32px 40px; }
}

.feat-body-title {
    font-family: var(--font-head);
    font-size: clamp(22px, 3.5vw, 48px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 8px;
    white-space: nowrap;
    line-height: 1.1;
}

.feat-body-sub {
    font-family: var(--font-head);
    font-size: 10px;
    font-weight: 500;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 16px;
    white-space: nowrap;
}
@media (min-width: 1024px) {
    .feat-body-sub { font-size: 11px; margin-bottom: 20px; }
}

.feat-body-divider {
    width: 48px;
    height: 1px;
    background: rgba(255,255,255,0.30);
    margin-bottom: 16px;
}

.feat-body-text {
    font-size: clamp(12px, 1vw, 15px);
    line-height: 1.75;
    color: var(--text-2);
    max-width: 420px;
    opacity: 0;
    transition: opacity 0.7s ease 0.2s;
}
.feat-panel.feat-active .feat-body-text { opacity: 1; }










/* MODAL DIALOG */
.blitz-modal-dialog {
	max-width: 680px;
}

.blitz-modal-content {
	background: rgb(8 8 8 / 60%);
	border: 1px solid rgba(255,255,255,0.08);
	border-radius: 0;
	position: relative;
	overflow: hidden;
	box-shadow: 0 40px 100px rgba(0,0,0,0.9), 0 0 0 1px rgba(255,255,255,0.04);
	animation: blitzModalIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
	backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

@keyframes blitzModalIn {
	from { opacity: 0; transform: translateY(20px) scale(0.98); }
	to   { opacity: 1; transform: translateY(0)   scale(1); }
}

/* CORNER DECORATIONS */
.blitz-modal-corner {
	position: absolute;
	width: 16px; height: 16px;
	pointer-events: none;
	z-index: 2;
}
.blitz-modal-corner--tl { top: 0;  left: 0;  border-top: 1px solid rgba(255,255,255,0.5); border-left: 1px solid rgba(255,255,255,0.5); }
.blitz-modal-corner--tr { top: 0;  right: 0; border-top: 1px solid rgba(255,255,255,0.5); border-right: 1px solid rgba(255,255,255,0.5); }
.blitz-modal-corner--bl { bottom: 0; left: 0;  border-bottom: 1px solid rgba(255,255,255,0.5); border-left: 1px solid rgba(255,255,255,0.5); }
.blitz-modal-corner--br { bottom: 0; right: 0; border-bottom: 1px solid rgba(255,255,255,0.5); border-right: 1px solid rgba(255,255,255,0.5); }

/* HEADER */
.blitz-modal-header {
	padding: 32px 36px 20px;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	border: none;
}
.blitz-modal-eyebrow {
	font-size: 10px;
	letter-spacing: 4px;
	color: rgba(255,255,255,0.3);
	text-transform: uppercase;
	font-family: 'Courier New', monospace;
	display: block;
	margin-bottom: 6px;
}
.blitz-modal-title {
	font-size: 22px;
	font-weight: 700;
	letter-spacing: 4px;
	color: #fff;
	margin: 0 0 4px;
	text-transform: uppercase;
}
.blitz-modal-product {
	font-size: 11px;
	letter-spacing: 3px;
	color: rgba(255,255,255,0.35);
	text-transform: uppercase;
	margin: 0;
}
.blitz-modal-product strong { color: rgba(255,255,255,0.7); }

.blitz-modal-close {
	background: transparent;
	border: 1px solid rgba(255,255,255,0.1);
	width: 36px; height: 36px;
	display: flex; align-items: center; justify-content: center;
	cursor: pointer;
	transition: all 0.25s;
	flex-shrink: 0;
}
.blitz-modal-close:hover {
	background: rgba(255,255,255,0.06);
	border-color: rgba(255,255,255,0.3);
}

/* DIVIDER */
.blitz-modal-divider {
	display: flex;
	align-items: center;
	padding: 0 36px;
	gap: 10px;
}
.blitz-modal-divider-dot {
	width: 4px; height: 4px;
	background: rgba(255,255,255,0.2);
	flex-shrink: 0;
}
.blitz-modal-divider-line {
	flex: 1;
	height: 1px;
	background: rgba(255,255,255,0.07);
}

/* BODY */
.blitz-modal-body {
	padding: 28px 36px 24px;
}

/* FIELDS */
.blitz-field {
	position: relative;
}
.blitz-input {
	width: 100%;
	background: transparent;
	border: none;
	border-bottom: 1px solid rgba(255,255,255,0.12);
	color: #fff;
	font-size: 13px;
	letter-spacing: 1px;
	padding: 20px 0 8px;
	outline: none;
	transition: border-color 0.3s;
	font-family: inherit;
}
.blitz-textarea {
	resize: none;
}
.blitz-label {
	position: absolute;
	top: 20px; left: 0;
	font-size: 11px;
	letter-spacing: 2.5px;
	color: rgba(255,255,255,0.3);
	pointer-events: none;
	transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}
.blitz-input:focus ~ .blitz-label,
.blitz-input:not(:placeholder-shown) ~ .blitz-label {
	top: 2px;
	font-size: 9px;
	letter-spacing: 3px;
	color: rgba(255,255,255,0.5);
}
.blitz-field-line {
	position: absolute;
	bottom: 0; left: 0;
	width: 0; height: 1px;
	background: #fff;
	transition: width 0.35s cubic-bezier(0.4,0,0.2,1);
}
.blitz-input:focus ~ .blitz-field-line { width: 100%; }

/* DOCUMENT SELECTOR */
.blitz-doc-label {
	font-size: 9px;
	letter-spacing: 3px;
	color: rgba(255,255,255,0.3);
	text-transform: uppercase;
	margin-bottom: 12px;
}
.blitz-doc-grid {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}
.blitz-doc-option { cursor: pointer; }
.blitz-doc-option input { display: none; }
.blitz-doc-card {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 10px 16px;
	border: 1px solid rgba(255,255,255,0.1);
	font-size: 11px;
	letter-spacing: 1.5px;
	color: rgba(255,255,255,0.4);
	transition: all 0.25s;
	white-space: nowrap;
}
.blitz-doc-card:hover {
	border-color: rgba(255,255,255,0.3);
	color: rgba(255,255,255,0.7);
}
.blitz-doc-option input:checked + .blitz-doc-card {
	border-color: rgba(255,255,255,0.8);
	color: #fff;
	background: rgba(255,255,255,0.04);
}

/* CHECKBOX */
.blitz-checkbox-label {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	cursor: pointer;
}
.blitz-checkbox-label input { display: none; }
.blitz-checkbox-box {
	width: 14px; height: 14px;
	border: 1px solid rgba(255,255,255,0.25);
	flex-shrink: 0;
	margin-top: 2px;
	position: relative;
	transition: all 0.2s;
}
.blitz-checkbox-label input:checked + .blitz-checkbox-box {
	background: #fff;
	border-color: #fff;
}
.blitz-checkbox-label input:checked + .blitz-checkbox-box::after {
	content: '';
	position: absolute;
	top: 1px; left: 4px;
	width: 4px; height: 7px;
	border: 1.5px solid #000;
	border-top: none; border-left: none;
	transform: rotate(45deg);
}
.blitz-checkbox-text {
	font-size: 11px;
	letter-spacing: 0.5px;
	color: rgba(255,255,255,0.35);
	line-height: 1.6;
}
.blitz-link {
	color: rgba(255,255,255,0.6);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.blitz-link:hover { color: #fff; }


/* FOOTER */
.blitz-modal-footer {
	padding: 20px 36px 32px;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 12px;
	border: none;
}
.blitz-btn-cancel {
	background: transparent;
	border: 1px solid rgba(255,255,255,0.1);
	color: rgba(255,255,255,0.35);
	font-size: 10px;
	letter-spacing: 3px;
	text-transform: uppercase;
	padding: 12px 24px;
	cursor: pointer;
	transition: all 0.25s;
}
.blitz-btn-cancel:hover {
	border-color: rgba(255,255,255,0.3);
	color: rgba(255,255,255,0.7);
}
.blitz-btn-submit {
	background: #fff;
	border: 1px solid #fff;
	color: #000;
	font-size: 10px;
	letter-spacing: 3px;
	text-transform: uppercase;
	font-weight: 700;
	padding: 12px 28px;
	cursor: pointer;
	transition: all 0.3s;
	display: flex;
	align-items: center;
	gap: 10px;
}
.blitz-btn-submit:hover {
	background: transparent;
	color: #fff;
	box-shadow: 0 0 24px rgba(255,255,255,0.15);
}
.blitz-btn-submit svg { transition: transform 0.3s; }
.blitz-btn-submit:hover svg { transform: translateX(4px); }

/* BACKDROP */
.modal-backdrop { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }

/* MODAL OPEN — stacking context fix */
body.modal-open {
	transform: none !important;
	filter: none !important;
	will-change: auto !important;
}
body.modal-open .page-content {
	filter: none !important;
	will-change: auto !important;
}

@media (max-width: 576px) {
	.blitz-modal-header, .blitz-modal-body, .blitz-modal-footer { padding-left: 20px; padding-right: 20px; }
	.blitz-modal-divider { padding: 0 20px; }
	.blitz-doc-card { font-size: 10px; padding: 8px 12px; }
	.blitz-modal-title { font-size: 17px; letter-spacing: 2px; }
}


.py-6 { padding: .75em 0; }

/* 4. HERO ANIMASYONU & BANNER */
.hero-bg-img {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('../images/banner.jpg') fixed center;
    background-size: cover;
}

.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-grid-bg {
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    transform: perspective(500px) rotateX(60deg);
    animation: gridMove 10s linear infinite;
    opacity: 0.5;
    z-index: 0;
}

@keyframes gridMove {
    0% { transform: perspective(500px) rotateX(60deg) translateY(0); }
    100% { transform: perspective(500px) rotateX(60deg) translateY(100px); }
}

.banner-container {
    width: 100%;
    min-width: 1070px;
}



/* ÜRÜN BANNER */
.hero-bg-container {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
    padding-top: 130px;
}

.hero-image {
    max-width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin-bottom: 30px;
}

.hero-bg-container h1 { 
	font-size: clamp(2.5rem, 3vw, 4.5rem) !important;
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.04em;
    color: #fff;
}
.hero-bg-container span { 
	font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    font-family: monospace;
}

.hero-stats-row {
    margin-top: 15px;
    box-sizing: border-box;
    border-radius: 18px;
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: 100%;
    text-align: center;
}

.stat-item {
    text-align: center;
    position: relative;
    padding: 20px;
    min-width: 0;
}

.stat-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 18%;
    bottom: 18%;
    width: 1px;
    background: #222528;
}

.stat-value {
    font-size: clamp(15px, 2vw, 20px);
    font-weight: 600;
    color: #a0a3a6;
    line-height: 1.15;
    letter-spacing: 1px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.stat-label {
    font-size: clamp(10px, 1.2vw, 14px);
    font-weight: 400;
    color: var(--highlight-color);
    opacity: 0.8;
    margin-top: 4px;
    letter-spacing: 0.4px;
}

/* TYPING/SCRAMBLE EFEKTLERİ */
#blitzWord {
	display: block;
    overflow: hidden;
    position: relative;
    transform: none !important;
    opacity: 1 !important;
    font-size: clamp(3rem, 11vw, 8rem) !important;
    font-weight: 900;
    letter-spacing: -0.04em;
}
#techWord{
	display: block;
    overflow: hidden;
    position: relative;
    transform: none !important;
    opacity: 1 !important;
    font-size: clamp(2.8rem, 6vw, 6rem) !important;
    font-weight: 900;
    letter-spacing: -0.04em;
}
#subText {
	font-size: clamp(1rem, 1.8vw, 1rem);
    letter-spacing: 2px;
    line-height: normal;
    padding-left: 6px;
    opacity: 0;
    transform: translateY(10px);
    min-height: 1.5em;
    transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    word-wrap: break-word;
    text-align: left;
}

#subText.visible {
    opacity: 1;
    transform: translateY(0);
}

.scramble-char {
    color: #555;
    display: inline-block;
    width: 1ch; 
    transition: opacity 0.3s ease;
    opacity: .5;
}

@keyframes pulse {
    from { opacity: 0.5; }
    to { opacity: 1; }
}

.hero-text:hover {
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transition: text-shadow 0.3s ease;
}

.banner-alt {
    padding: 6rem 3rem;
    background-color: var(--highlight-color);
}

strong{
	font-weight: 900
}


/* =============================================
   ABOUT US PAGE — au-* prefix
   ============================================= */

/* ── 2. TAM GENİŞLİK FOTOĞRAFLAR ── */
.au-full-photo {
    width: 100%;
    display: block;
    filter: brightness(0.8);
    transition: transform 0.8s ease, filter 0.6s ease;
    max-height: 85vh;
    object-fit: cover;
}
.au-full-img:hover .au-full-photo {
    transform: scale(1.03);
    filter: brightness(0.95);
}

.au-eyebrow {
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.18);
    margin-bottom: 1.5rem;
}

/* ── 3. MANIFESTO METIN — tam genişlik 2-kolon ── */
.au-manifesto-full {
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.au-manifesto-full-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    padding: 5rem 4rem;
    align-items: start;
}

.au-manifesto-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 0;
}

.au-manifesto-full-right p {
    font-size: 0.92rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    margin-bottom: 1.25rem;
}
.au-manifesto-full-right p:last-child { margin-bottom: 0; }


/* ── 5. BENEFITS LIST ── */
.au-benefits {
    background: #fff;
}

.au-benefits-header {
    padding: 4.5rem 4rem 3rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    display: flex;
    align-items: flex-end;
    gap: 4rem;
}

.au-benefits-header .au-eyebrow { color: rgba(0,0,0,0.2); margin-bottom: 0; }

.au-benefits-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: #000;
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 0;
}

.au-benefits-list {
    display: flex;
    flex-direction: column;
}

.au-benefit-row {
    display: grid;
    grid-template-columns: 100px 1fr 60px;
    align-items: center;
    padding: 2.5rem 4rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: color 0.4s ease;
}

/* hover fill bottom-to-top */
.au-benefit-row::before {
    content: '';
    position: absolute;
    bottom: -100%; left: 0;
    width: 100%; height: 100%;
    background: #000;
    transition: bottom 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 0;
}
.au-benefit-row:hover::before { bottom: 0; }

.au-benefit-row:hover .au-benefit-num { color: rgba(255,255,255,0.12); }
.au-benefit-row:hover .au-benefit-name { color: #fff; }
.au-benefit-row:hover .au-benefit-desc { color: rgba(255,255,255,0.3); }
.au-benefit-row:hover .au-benefit-arrow { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.5); }

.au-benefit-num {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: rgba(0,0,0,0.15);
    font-family: monospace;
    position: relative;
    z-index: 1;
    transition: color 0.4s ease;
}

.au-benefit-content {
    position: relative;
    z-index: 1;
}

.au-benefit-name {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 700;
    color: #000;
    letter-spacing: -0.02em;
    margin: 0 0 0.4rem;
    transition: color 0.4s ease;
}

.au-benefit-desc {
    font-size: 0.8rem;
    line-height: 1.6;
    color: rgba(0,0,0,0.4);
    font-weight: 300;
    margin: 0;
    max-width: 600px;
    transition: color 0.4s ease;
}

.au-benefit-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0,0,0,0.2);
    justify-self: end;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}
.au-benefit-arrow svg { width: 14px; height: 14px; }

/* ── 6. CTA ── */
.au-cta {
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 420px;
}

.au-cta-inner {
    padding: 5rem 4.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.au-cta-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 0.75rem 0 1.5rem;
}

.au-cta-desc {
    font-size: 0.88rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.3);
    font-weight: 300;
    max-width: 400px;
    margin-bottom: 2.5rem;
}

.au-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 2rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #000;
    background: #fff;
    text-decoration: none;
    border: 1px solid #fff;
    align-self: flex-start;
    transition: all 0.3s ease;
}
.au-cta-btn:hover {
    background: transparent;
    color: #fff;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.au-cta-ghost {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(6rem, 12vw, 14rem);
    font-weight: 900;
    color: rgba(255,255,255,0.025);
    letter-spacing: -0.06em;
    font-family: monospace;
    user-select: none;
    pointer-events: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
    .au-manifesto-inner { padding: 4rem 3.5rem; }
    .au-cta-inner { padding: 4rem 3.5rem; }
    .au-benefits-header { padding: 3.5rem 3rem 2.5rem; }
    .au-benefit-row { padding: 2.25rem 3rem; }

}

@media (max-width: 991px) {
    .au-manifesto-full-inner { grid-template-columns: 1fr; gap: 2.5rem; padding: 3.5rem 2.5rem; }
    .au-cta { grid-template-columns: 1fr; }
    .au-cta-ghost { min-height: 200px; }
    .au-cta-inner { padding: 4rem 2.5rem; }
    .au-benefits-header { flex-direction: column; align-items: flex-start; gap: 1rem; padding: 3rem 2.5rem 2rem; }
    .au-benefit-row { grid-template-columns: 70px 1fr 40px; padding: 2rem 2.5rem; }
}

@media (max-width: 768px) {

    .au-benefit-row { grid-template-columns: 1fr; gap: 0.5rem; padding: 2rem 1.5rem; }
    .au-benefit-num { font-size: 0.55rem; }
    .au-benefit-arrow { display: none; }
    .au-manifesto-full-inner { padding: 3rem 1.5rem; gap: 2rem; }
    .au-cta-inner { padding: 3rem 1.5rem; }
    .au-benefits-header { padding: 2.5rem 1.5rem 2rem; }
}

@media (max-width: 576px) {

    .au-cta-ghost { display: none; }
}


/* =============================================
   PRODUCT SHOWCASE — v4 STAGE / GALLERY
   ============================================= */

.prod-showcase {
    background: #000;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* Subtle noise texture overlay */
.prod-showcase::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.022;
    pointer-events: none;
    z-index: 0;
}

/* ---- Section header ---- */
.prod-showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2.75rem 4rem 2.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    z-index: 2;
}

.prod-showcase-header-left {
    display: block;
}

.prod-showcase-eyebrow {
    display: block;
    width: 100%;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: #6c757d;
    text-transform: uppercase;
    margin-bottom: .4rem;
}

.prod-showcase-title {
    font-size: clamp(1.1rem, 1.4vw, 1.2rem);
    font-weight: 900;
    color: rgba(255,255,255,0.75);
    letter-spacing: -0.04em;
    margin: 0;
    text-transform: uppercase;
    line-height: 1;
}

.prod-showcase-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    transition: color 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.6rem 1.2rem;
    border-radius: 2px;
}
.prod-showcase-link svg { width: 10px; height: 10px; stroke: currentColor; transition: transform 0.3s ease; }
.prod-showcase-link:hover { color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.3); }
.prod-showcase-link:hover svg { transform: translate(2px,-2px); }

/* ---- 2-col grid ---- */
.prod-showcase-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    z-index: 1;c
	
}/* ---- 3-col grid ---- */
.prod-showcase-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    position: relative;
    z-index: 1;c
	
}
/* ---- 4-col grid ---- */
.prod-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: relative;
    z-index: 1;
}

/* ---- Individual card ---- */
.prod-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    background: #000;
    border-right: 1px solid rgba(255,255,255,0.055);
    min-height: 600px;
    cursor: pointer;
    transition: background 0.6s ease;
}
.prod-card:last-child { border-right: none; }
.prod-card:hover { background: #080808; }

/* — Ambient spotlight from bottom on hover — */
.prod-card::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: 50%;
    transform: translateX(-50%) scale(0.5);
    width: 120%;
    height: 70%;
    background: radial-gradient(ellipse at center bottom,
        rgba(255,255,255,0.055) 0%,
        rgba(255,255,255,0.012) 40%,
        transparent 70%);
    opacity: 0;
    transition: opacity 0.7s ease, transform 0.7s ease;
    pointer-events: none;
    z-index: 1;
}
.prod-card:hover::after {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

/* — Top scan line on hover — */
.prod-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 1px; width: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.6), transparent);
    transition: width 0.6s cubic-bezier(0.4,0,0.2,1);
    z-index: 4;
}
.prod-card:hover::before { width: 100%; }

/* ---- Ghost model number — fills the background ---- */
.prod-card-ghost {
    position: absolute;
    bottom: -0.1em;
    right: -0.05em;
    font-size: clamp(5.5rem, 9vw, 10rem);
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,0.035);
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    transition: color 0.6s ease, transform 0.6s ease;
    font-family: monospace;
}
.prod-card:hover .prod-card-ghost {
    color: rgba(255,255,255,0.065);
    transform: scale(1.04) translate(-2px, -4px);
}

/* ---- Image stage ---- */
.prod-card-stage {
    flex: 1;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 3rem 1.5rem 0;
    position: relative;
    z-index: 2;
    min-height: 300px;
}

.prod-card-img {
    width: 85%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: brightness(0.78) drop-shadow(0 20px 40px rgba(0,0,0,0.8));
    transform: translateY(12px) scale(0.96);
    transition:
        transform 0.75s cubic-bezier(0.34, 1.2, 0.64, 1),
        filter 0.6s ease;
    position: relative;
    z-index: 2;
}
.prod-card:hover .prod-card-img {
    transform: translateY(-6px) scale(1.05);
    filter: brightness(1.05) drop-shadow(0 28px 50px rgba(255,255,255,0.07));
}

/* ---- Info panel at bottom ---- */
.prod-card-body {
    position: relative;
    z-index: 3;
    padding: 1.5rem 1.75rem 1.75rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
    transition: border-color 0.4s ease;
}
.prod-card:hover .prod-card-body {
    border-top-color: rgba(255,255,255,0.15);
}

/* Top row: index + weight badge */
.prod-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.prod-card-index {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.15);
    font-family: monospace;
    transition: color 0.4s ease;
}
.prod-card:hover .prod-card-index { color: rgba(255,255,255,0.4); }

.prod-card-weight {
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.18);
    font-family: monospace;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 2px 7px;
    border-radius: 1px;
    transition: color 0.4s ease, border-color 0.4s ease;
}
.prod-card:hover .prod-card-weight {
    color: rgba(255,255,255,0.5);
    border-color: rgba(255,255,255,0.2);
}

/* Product name */
.prod-card-name {
    font-size: clamp(1.8rem, 2.8vw, 2.6rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin: 0;
}
.prod-card-series {
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
    margin-bottom: 0.3rem;
    transition: color 0.4s ease;
}
.prod-card:hover .prod-card-series { color: rgba(255,255,255,0.45); }
.prod-card-name em {
    font-style: normal;
    font-size: 0.42em;
    font-weight: 500;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0;
    vertical-align: middle;
}

/* Spec pills — hidden by default, slide up on hover */
.prod-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(8px);
    transition: max-height 0.45s ease, opacity 0.4s ease, transform 0.4s ease;
}
.prod-card:hover .prod-card-specs {
    max-height: 60px;
    opacity: 1;
    transform: translateY(0);
}
.prod-card-specs span {
    font-size: 0.56rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 3px 8px;
    border-radius: 2px;
    white-space: nowrap;
}

/* CTA row */
.prod-card-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 0.85rem;
    margin-top: 0.2rem;
    transition: border-color 0.4s ease;
}
.prod-card:hover .prod-card-cta { border-top-color: rgba(255,255,255,0.12); }

.prod-card-cta-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    transition: color 0.4s ease;
}
.prod-card:hover .prod-card-cta-label { color: rgba(255,255,255,0.7); }

.prod-card-cta-arrow {
    width: 30px;
    height: 30px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.4;
    transform: rotate(-45deg) scale(0.85);
    transition: all 0.4s cubic-bezier(0.34,1.56,0.64,1);
}
.prod-card-cta-arrow svg { width: 11px; height: 11px; stroke: rgba(255,255,255,0.6); }
.prod-card:hover .prod-card-cta-arrow {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
}

/* ---- Responsive ---- */
@media (max-width: 1200px) {
    .prod-showcase-header { padding: 2.5rem 3rem; }
    .prod-card { min-height: 460px; }
    .prod-card-img { max-width: 180px; }
}
@media (max-width: 991px) {
    .prod-showcase-grid { grid-template-columns: repeat(2, 1fr); }
    .prod-card:nth-child(2) { border-right: none; }
    .prod-card:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.055); }
    .prod-card:nth-child(1),
    .prod-card:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.055); }
    .prod-card { min-height: 400px; }
    .prod-showcase-header { padding: 2rem; flex-direction: column; align-items: flex-start; gap: 1.25rem; }
}
@media (max-width: 576px) {
    .prod-showcase-grid { grid-template-columns: 1fr; }
    .prod-card { min-height: 300px; }
    .prod-card-body { padding: 1.1rem 1.1rem 1.25rem; }
    .prod-card-name { font-size: 1.5rem; }
    .prod-card-stage { min-height: 180px; padding: 1.5rem 1rem 0; }
    .prod-card-img { max-width: 130px; }
    .prod-card-ghost { font-size: 5rem; }
    .prod-card-specs { display: none; }
    .prod-showcase-header { padding: 1.5rem; }
	.prod-showcase-header-left {display: block;}
}

/* 5. BENTO GRID */
.bento-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 350px;
    gap: 1px;
}

.span-2x2 { grid-column: span 2; grid-row: span 2; }
.span-1x2 { grid-column: span 1; grid-row: span 2; }
.span-2x1 { grid-column: span 2; grid-row: span 1; }
.span-1x3 { grid-column: span 1; grid-row: span 3; }

.bento-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.bento-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 2s ease;
    filter: brightness(0.8);
}

.bento-card:hover img { transform: scale(1.15); filter: brightness(1); }
.bento-card:hover { border-color: #777; }

.bento-overlay {
    position: absolute; bottom: 0; left: 0; width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
}
.bento-card h3{
	color: #fff;
	font-size: 1.2rem;
	font-weight: 900;
	margin-bottom: .5rem
}
.bento-card p{
	color: #fff;
	font-size: .8rem;
	margin-bottom: .3rem;
	font-weight: 400;
}
.bento-card small{
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgb(108 117 125);
    text-decoration: none;
}


/* 6. PARALLAX KARİYER & DİĞER KARTLAR */
.careers-parallax {
    background: url('../images/cta_bg.png') center;
    background-size: cover;
	background-repeat: no-repeat;
    height: 70vh;
    position: relative;
}

.parallax-overlay { 
    background: rgba(0, 0, 0, 0.5);
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
}

.card { border-radius: 0; }

.big-hero {
    height: 100vh;
    overflow: hidden !important;
    background: radial-gradient(circle, rgb(255 255 255 / 2%) 0%, rgb(255 255 255 / 0%) 100%), linear-gradient(to left, rgb(0 0 0) 0%, #000000 100%);
}

.wrapper {
    height: 100vh;
    overflow: hidden;
	padding: 3rem;
}

.wrapper h1 {
    padding: 0;
    font-size: clamp(3.5rem, 8vw, 7.5rem);
    font-weight: 800;
    line-height: 0.92;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0 0 2rem;
}

.wrapper p, .wrapper span {
    letter-spacing: .03rem;
    font-size: .75rem;
    font-weight: 500;
}

.wrapper p { max-width: 500px; }
.wrapper span { 
	font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    font-family: monospace;
    margin-bottom: 1.5rem;
    display: block;
}

h1.heading {
    letter-spacing: .03rem;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 600;
}


.skills h1.heading {
	text-transform: uppercase;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin: 0;
}

.hak-cta {
    padding: 0 4rem 4rem;
    height: auto;
    background-color: rgb(249 249 249);
}
.hak-cta p{
	font-size: 0.95rem;
	font-weight: 400;
	line-height: 1.8;
	color: #000000;
}
.hak-cta small {
    display: block;
    color: #6c757d;
    margin-bottom: .5rem;
    letter-spacing: 4px;
}

.hak-cta h2 {font-size: 3rem;font-weight: 700;color: #000;}
.hak-cta h5 { line-height: 2; font-size: 1.25rem; color: #6c757d; margin-top: 2rem; }




/* =============================================
   7. FOOTER
   ============================================= */

footer {
    position: relative;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 0 !important;
    overflow: hidden;
}

/* Büyük ghost yazı — arka plan dekorasyonu */
footer::before {
    content: 'BLITZ';
    position: absolute;
    bottom: -0.12em;
    left: -0.04em;
    font-size: clamp(8rem, 20vw, 22rem);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.06em;
    color: rgba(255,255,255,0.018);
    pointer-events: none;
    user-select: none;
    font-family: monospace;
    white-space: nowrap;
}

/* ── Üst blok ── */
.footer-top {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-col {
    padding: 3.5rem 3rem;
    border-right: 1px solid rgba(255,255,255,0.06);
    position: relative;
}
.footer-col:last-child { border-right: none; }

/* Logo kolonu */
.footer-col-brand .footer-logo {
    width: 72px;
    opacity: 0.55;
    display: block;
    margin-bottom: 1.75rem;
    transition: opacity 0.3s ease;
}
.footer-col-brand .footer-logo:hover { opacity: 0.85; }

.footer-brand-desc {
    font-size: 0.78rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.3);
    max-width: 240px;
    font-weight: 400;
}

/* Sertifika/akreditasyon rozeti */
.footer-cert {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 6px 12px;
    border: 1px solid rgba(255,255,255,0.08);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.2);
    text-transform: uppercase;
    font-family: monospace;
}
.footer-cert-dot {
    width: 5px; height: 5px;
    background: rgba(255,255,255,0.35);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Navigasyon kolonları */
.footer-col-nav .footer-col-heading {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.18);
    font-family: monospace;
    margin-bottom: 1.75rem;
    display: block;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-link {
    font-size: 0.82rem;
    font-weight: 400;
    color: rgba(255,255,255,0.3);
    text-decoration: none;
    letter-spacing: 0.3px;
    position: relative;
    display: inline-block;
    transition: color 0.25s ease;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255,255,255,0.4);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-link:hover {
    color: rgba(255,255,255,0.75);
}
.footer-link:hover::after { width: 100%; }

/* ── Alt blok (copyright) ── */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
    position: relative;
    z-index: 1;
}

.footer-bottom-left {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-copy {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.15);
    font-family: monospace;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-legal-link {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.15);
    text-decoration: none;
    text-transform: uppercase;
    font-family: monospace;
    transition: color 0.2s ease;
}
.footer-legal-link:hover { color: rgba(255,255,255,0.4); }

/* Koordinat / teknik watermark */
.footer-coords {
    font-size: 0.58rem;
    font-weight: 400;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.08);
    font-family: monospace;
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; }
    .footer-col { padding: 3rem 2rem; }
}

@media (max-width: 991px) {
    .footer-top { grid-template-columns: 1fr 1fr; }
    .footer-col { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .footer-col:nth-child(2) { border-right: none; }
    .footer-col:last-child { border-bottom: none; }
    .footer-col:nth-last-child(2) { border-bottom: none; }
    footer::before { font-size: 15rem; }
}

@media (max-width: 576px) {
	.hak-cta {padding: 0 1rem 3rem;}
    .footer-top { grid-template-columns: 1fr; }
    .footer-col { border-right: none !important; padding: 2.5rem 1.5rem; }
    .footer-bottom { flex-direction: column; gap: 1rem; align-items: flex-start; padding: 1.5rem; }
    .footer-bottom-left { flex-direction: column; gap: 0.5rem; align-items: flex-start; }
    .footer-brand-desc { max-width: 100%; }
    footer::before { font-size: 6rem; }
}


.about_banner_bg {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1; overflow: hidden;
    background: url("../images/hakkimizda_banner.png") center/cover no-repeat;
}
.about{
	padding: 3rem;
}
.banner-overlay {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,1) 0%, rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.2) 100%);
    z-index: 2;
}

/* 8. VİDEO BİLEŞENLERİ */



/* ── INDEX: Hero Video Background ── */
.index-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
    z-index: 0;
}
 

.bg-video {
    position: absolute; top: 50%; left: 50%;
    min-width: 100%; min-height: 100%; width: auto; height: auto;
    z-index: 1; transform: translate(-50%, -50%); object-fit: cover; 
}

.scanlines {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.15) 50%);
    background-size: 100% 4px; z-index: 3; pointer-events: none; 
    animation: scanline-flicker 0.2s infinite;
}

@keyframes scanline-flicker {
    0% { opacity: 0.95; }
    50% { opacity: 1; }
    100% { opacity: 0.95; }
}

.video-overlay {
    position: absolute; 
	top: 0; 
	left: 0; 
	inset: 0;
	width: 100%; 
	height: 100%;
	background-color:rgb(0 0 0 / 65%);
    /*background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%),
                linear-gradient(to right, rgba(0,0,0,0.8) 0%, transparent 100%);*/
    z-index: 2;
}

.video-background {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    overflow: hidden; z-index: 1; pointer-events: none;
}

.video-background iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 112vw;
    height: 112vh;
    transform: translate(-50%, -50%);
    pointer-events: none;
    object-fit: cover;
}
.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none;
    filter: grayscale(30%);
}
.banner-text-area { padding: 0 3rem;z-index: 10 }

#youtube-player {
    filter: grayscale(100%);
    transition: filter 0.8s ease-in-out;
    -webkit-filter: grayscale(100%);
}

.hero-section:hover #youtube-player {
    filter: grayscale(0%);
    -webkit-filter: grayscale(100%);
}

/* 9. ÜRÜN İÇERİKLERİ & TABLOLAR */
.img-zoom-container { overflow: hidden; }
.img-zoom-container img { transition: transform 0.6s ease; }
.img-zoom-container:hover img { transform: scale(1.05); }

.two-column { column-count: 2; column-gap: 50px; text-align: left; }
.line-tall { height: 80px; background-color: #fff; margin: 0 auto 20px; width: 1px; }

.product-detail { display: block; height: auto; width: 100%; margin: 0 auto; }
.product-detail h2 { 
	font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
    margin: 0;
    line-height: 1; }
.product-detail ul { list-style: none; float: left; width: 100%; padding: 0; margin: 0; }
.product-detail ul li { width: 100%; font-size: 15px; margin-bottom: 10px; color: #6c757d; }
.product-detail ul li span { font-weight: 600; color: #6c757d; }
.product-detail .text-box { display: block; width: 100%; margin-top: 20px; }
.product-detail .img-zoom-container img { padding: 25px; }
.product-detail .tablo h1 { margin-bottom: 25px; font-weight: 600; }
.product-detail .tablo h3, .product-detail .tablo p { padding: 0; margin: 0; line-height: 2.2; }
.product-details { width: 80%; margin: 0 auto; }

/* ÜRÜN CAROUSEL AYARLARI */

#splitProduct .product-details p { font-weight: 300; color: #6c757d; margin: 1rem 0;line-height: 2; }
#splitProduct .product-details h1 { font-size: calc(1.475rem + 2vw); line-height: 1.2; font-weight: 700; color: #fff; margin-bottom: 1rem; }
#splitProduct .product-details span { font-size: 15px; letter-spacing: 1px; font-weight: 600; color: #6c757d; padding: .5rem; }

#splitProduct .product-details .tablo { border-top: 1px solid #495057; }
#splitProduct .product-details .tablo div { display: flex; transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
#splitProduct .product-details .tablo div:hover { background: rgba(255, 255, 255, 0.02); }

.carousel-control-next-icon, .carousel-control-prev-icon {
    display: inline-block; width: 3rem; height: 3rem;
    background-repeat: no-repeat; background-position: 50%; background-size: 100% 100%;
}

.carousel-inner, .carousel-item { height: 100%; }
.carousel-item {
    background-size: contain; background-position: center; background-repeat: no-repeat;
    background-color: #fff !important; transition: transform 1.2s cubic-bezier(0.7, 0, 0.3, 1);
}

.carousel-caption {
    bottom: auto; right: inherit; left: inherit; width: 100%; text-align: left !important;
    position: relative; padding: 25px 100px; color: #fff !important;
}

.caption-content h5 { font-size: 1.1rem; letter-spacing: 3px; font-weight: 300; margin-bottom: 0.5rem; }
.caption-content h2 { font-size: 3.5rem; font-weight: 800; margin-bottom: 2rem; }

.specs-table { border-top: 1px solid rgba(255,255,255,0.2); }
.spec-row {
    display: flex; justify-content: space-between; padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.2); font-size: 0.85rem;
    letter-spacing: 1.5px; text-transform: uppercase;
}
.spec-row span:last-child { font-weight: bold; }

.urun-tek-oz { padding: 3rem; background-color: var(--blitz-bg); }
.image-overlay {
    position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(circle at center, rgba(0, 242, 255, 0.05) 0%, transparent 70%);
}

/* Buton ve Animasyonlar */
.btn-blitz-primary {
    background: #fff; color: #000; border: 1px solid #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); border-radius: 0;
}
.btn-blitz-primary:hover {
    background: transparent; color: #fff; border: 1px solid #fff;
    box-shadow: 0 5px 10px rgba(255,255,255,0.1);
}


.caption-content h5, .caption-content h2, .spec-row {
    opacity: 0; transform: translateY(40px); transition: all 0.9s cubic-bezier(0.2, 0.6, 0.35, 1);
}

.active .caption-content h5 { opacity: 1; transform: translateY(0); transition-delay: 0.3s; }
.active .caption-content h2 { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.active .spec-row:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.7s; }
.active .spec-row:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.8s; }
.active .spec-row:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.9s; }

.carousel-indicators { bottom: 40px; margin-bottom: 0; }
.carousel-indicators [button], .carousel-indicators button {
    width: 10px !important; height: 10px !important; background-color: rgb(0 0 0 / 60%) !important;
    border: none !important; margin: 0 5px !important; border-radius: 10px;
}
.carousel-indicators .active { background-color: #000000 !important; }

.carousel-control-prev, .carousel-control-next { width: 5%; opacity: .8; transition: opacity .8s; }
.carousel-control-prev:hover, .carousel-control-next:hover { opacity: 1; }
[data-bs-theme=dark] .carousel .carousel-control-next-icon, [data-bs-theme=dark] .carousel .carousel-control-prev-icon { filter: none; }

/* 10. FORMLAR VE İLETİŞİM */
.contact { padding: 3rem; }
.contact-left { padding: 3rem; border-right: 1px solid #495057; }
.contact-btn {
    border: 1px solid #fff !important; padding: 0.6rem 1.2rem; font-size: 0.8rem;
    transition: 0.3s; font-weight: 600; letter-spacing: 2px; color: #fff !important;
}

.contact-btn:hover { background: #fff; color: #000 !important; }

.form-control:focus, .form-select:focus {
    background-color: #0a0a0a; border-color: #ffffff; box-shadow: none; color: white;
}
.form-control::placeholder { color:#6c757d; text-transform: uppercase; font-size: 0.85rem; }

.form-control {
    background: transparent; border: none; border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0; color: white; padding: 15px; transition: all 0.4s ease;
}

.form-select {
    background-color: transparent; border-radius: 0; border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2); color: #6c757d;
    padding: 15px; font-size: 1rem; transition: border-color 0.3s ease;
}

.form-control:focus { box-shadow: none; border-bottom-color: #fff; background: #0a0a0a; }

.form-label {
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5); margin-bottom: 0;
}

.btn-blitz, .btn-blitz-outline {
    padding: 10px 20px; text-transform: uppercase; letter-spacing: 3px;
    font-weight: 500; position: relative; overflow: hidden; transition: all 0.3s;
    border-radius: 0; font-size: 12px;
}

.btn-blitz { border: 1px solid rgba(255, 255, 255, 0.2); color: #fff; }
.btn-blitz:hover { background: #fff; color: #000; box-shadow: 0 0 20px rgb(255 255 255 / 40%); }

.btn-blitz-outline { border: 1px solid #6c757d; color: #6c757d; }
.btn-blitz-outline:hover { background: #6c757d; color: #fff; box-shadow: 0 0 20px rgb(108 117 125 / 40%); }

.btn-outline-light {
    padding: 10px 20px; text-transform: uppercase; letter-spacing: 3px;
    font-weight: 500; position: relative; overflow: hidden; transition: all 0.3s;
    border-radius: 0; font-size: 12px;
}
.btn-outline-light:hover { background: #fff; color: #000; box-shadow: 0 0 20px rgb(255 255 255 / 40%); }

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.03); padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 4px;
}

.contact-item {
    margin-bottom: 1.5rem; border-left: 2px solid rgba(255, 255, 255, 0.1);
    transition: border-color 0.3s; font-size: 0.85rem; letter-spacing: 1px;
    display: block; padding: 5px 20px;
}
.contact-item:hover { border-left-color: #fff; }

.contact-item label {
    display: block; font-size: 0.80rem; color: #6c757d; letter-spacing: 1.5px;
    margin-bottom: 5px; font-weight: 900;
}

.messagee {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    display: block;
    color: #6c757d;
    text-transform: uppercase;
    font-weight: 900;
}

.map-banner-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; overflow: hidden; }
.map-banner-bg iframe { width: 120%; height: 120%; position: absolute;top: -10%; left: -10%; filter: grayscale(1) invert(0.9) contrast(1.2); pointer-events: none; }

/* 11. TABLOLAR VE KARTLAR */
.blitz-table { margin-top: 2rem; }
.table-area { background-color: #000; padding: 5rem; }
.table-header { font-weight: 600; }

.table-row, .table-row-1 {
	color: #6c757d; 
	position: relative;
    display: flex;
	align-items: center;
    padding: 2rem;
    background-color: transparent; 
    font-weight: 600;
    z-index: 1;
    overflow: hidden; 
    transition: color 0.5s ease; 
    cursor: pointer;
    text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.table-row:hover, .table-row-1:hover{
	color:#000
}
.table-row::after, .table-row-1::after {
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.table-row::before, .table-row-1::before {
    content: "";
    position: absolute;
    bottom: -100%; 
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff; 
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    z-index: -1; 
	color: #6c757d;
}
.table-row:hover::before, .table-row-1:hover::before {
    bottom: 0; 
}

.table-row span { font-size: calc(1rem + 1.2vw); font-weight: 600;}

.table-row-1 span {
    position: absolute; width: 10%; top: 0; left: 15px; font-size: calc(1.625rem + 2vw);
    font-weight: 700; line-height: 1.2; color: rgb(0 0 0 / 15%); font-family: monospace;z-index: 10
}
.table-row-1 p { width: 80%; position: absolute; top: 20px; left: 60px; }


.tech-card {
    overflow: hidden; position: relative; backdrop-filter: blur(10px);
    background: rgba(20, 20, 20, 0.6); border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.tech-card:hover { border-bottom: 1px solid hsl(0deg 0% 100% / 40%); transform: translateY(-10px); }

.tech-tag {
    font-family: 'monospace'; font-size: 0.7rem; letter-spacing: 2px;
    color: #00f2ff; border-left: 2px solid #00f2ff; padding-left: 8px;
}
.tech-card::before {
    content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent); transition: 0.5s;
}
.tech-card:hover::before { left: 100%; }

/* SCROLL INDICATOR */
.scroll-indicator { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 5; opacity: 0.7; }
.mouse { width: 26px; height: 42px; border: 2px solid #fff; border-radius: 20px; position: relative; }
.mouse::before {
    content: ''; position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 4px; background: #00ffcc; border-radius: 50%; animation: scrollMouse 2s infinite;
}
@keyframes scrollMouse { 0% { transform: translate(-50%, 0); opacity: 1; } 100% { transform: translate(-50%, 15px); opacity: 0; } }


.img-area { padding: 3rem; padding: 2rem; background: linear-gradient(180deg,rgba(34, 37, 40, 0.5) 10%, rgba(0, 0, 0, 1) 100%); }
.feature-card { position: relative; overflow: hidden; padding-top: 4rem; }
.feature-card h4 { font-weight: 600; }


/* 12. SEKME VE AKORDEON */
.blitz-tabs-section { background-color: #fff; padding: 3rem; }
.blitz-tabs-section .content-card { opacity: 0; transform: translateY(30px); transition: opacity 0.8s cubic-bezier(0.165, 0.84, 0.44, 1), transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1); }
.blitz-tabs-section .content-card.reveal { opacity: 1; transform: translateY(0); }
.blitz-tabs-section .col-lg-2:nth-child(1) .content-card { transition-delay: 0.1s; }
.blitz-tabs-section .col-lg-4:nth-child(2) .content-card { transition-delay: 1s; }
.blitz-tabs-section .col-lg-6:nth-child(3) .content-card { transition-delay: 2s; }
.tab-pane.active .content-card { animation: slideUpReveal 0.9s forwards; }

@keyframes slideUpReveal { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.custom-horizontal-tabs .nav-link {
    color: #212529 !important; background: none !important; border: none !important; font-size: 1rem;
    font-weight: 300; padding: .5rem 1rem !important; letter-spacing: 1px; position: relative;
    transition: all 0.3s ease; text-transform: none; cursor: pointer;
}
.custom-horizontal-tabs .nav-link .tab-index { font-size: 0.6rem; color: #222528; margin-right: 5px; vertical-align: middle; }
.custom-horizontal-tabs .nav-link.active { color: #000 !important; }
.custom-horizontal-tabs .nav-link.active::after { content: ''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 2px; background-color: #000; }

.featured-media video { filter: grayscale(0.5); transition: filter 0.5s ease; }
.featured-media:hover video { filter: grayscale(0); }

#qualityTabContent .content-card { height: 100% !important; transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
#qualityTabContent h1 { font-size: calc(1.625rem + 17vw); font-weight: 300; line-height: 1.2; color: hsl(0deg 0% 100% / 5%); font-family: monospace; }

.blitz-accordion .accordion-item { border-top: none; border-left: none; border-right: none; border-bottom: 1px solid rgb(34 37 40 / 20%) !important; background-color: #fff; }
.blitz-accordion .accordion-button { 
	letter-spacing: -.013rem; 
	border-bottom: none!important; 
	font-weight: 600; 
	font-size: 1.25rem; 
	padding: 2rem; 
	color: #222528; 
	background-color: transparent;     
	position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.5s ease;
    cursor: pointer;
}
.blitz-accordion .accordion-button::after { 
	content: ""; 
	position: absolute; 
	bottom: -1px; 
	left: 0; 
	width: 0; 
	height: 1px; 
	transition: width 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.90); 
}
.blitz-accordion .accordion-button:hover::after { width: 100%; }
.blitz-accordion .accordion-button:not(.collapsed) { color: #000 !important; }

.blitz-accordion .accordion-button::before {
    content: "";
    position: absolute;
    bottom: -100%; 
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #6c757d; 
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1); 
    z-index: -1; 
	color: #fff;
}
.blitz-accordion .accordion-button:hover::before {
    bottom: 0; 
	 
}
.benefit-number { font-size: 1.5rem; font-weight: 300; font-family: monospace; color: #222528; }
.blitz-accordion .accordion-body { line-height: 1.8; display: block; padding: 2rem 5rem; }
.blitz-accordion .accordion-item:hover { border-bottom: none; }






/* 13. HOTSPOT VE DİĞER BİLEŞENLER */
.hotspot-area { padding: 5rem 0 0; display: block; }
.hotspot-wrapper { text-align: center; width: 100%; display: block; border-radius: 15px; overflow: visible; position: relative; padding: 5rem 5rem 3rem; }
/* Görüntü + hotspot noktalarını sarar; % pozisyonlar padding'den bağımsız görüntüye göre hesaplanır */
.hotspot-img-wrap { position: relative; display: inline-block; width: 100%; }
.hotspot-content {
    position: absolute;
    z-index: 20;
    bottom: calc(100% + 16px);
    left: 50%;
    transform: translateX(-50%) translateY(6px);
    width: 280px;
    max-width: 90vw;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    /* Kutu */
    background: rgba(8, 8, 8, 0.96);
    border: 1px solid rgba(255,255,255,0.1);
    border-top: 1px solid rgba(255,255,255,0.22);
}
 
/* Köşe çizgileri — blitz modal stili */
.hotspot-content::before,
.hotspot-content::after { content: none; }
 
.hotspot-content .hc-corner {
    position: absolute;
    width: 8px; height: 8px;
    border-color: rgba(255,255,255,0.3);
    border-style: solid;
    pointer-events: none;
}
.hotspot-content .hc-corner--tl { top: -1px; left: -1px; border-width: 1px 0 0 1px; }
.hotspot-content .hc-corner--tr { top: -1px; right: -1px; border-width: 1px 1px 0 0; }
.hotspot-content .hc-corner--bl { bottom: -1px; left: -1px; border-width: 0 0 1px 1px; }
.hotspot-content .hc-corner--br { bottom: -1px; right: -1px; border-width: 0 1px 1px 0; }
 
/* Aşağı ok */
.hotspot-content .hc-arrow {
    position: absolute;
    top: 100%; left: 50%;
    transform: translateX(-50%);
    width: 0; height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid rgba(255,255,255,0.12);
}
 
.hotspot:hover .hotspot-content { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
 
/* İçerik */
.hotspot-content .hc-body { padding: 0.9rem 1rem; text-align: left }
 
.hotspot-content h6 {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    font-family: monospace;
    margin: 0 0 0.65rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
 
.hotspot-content p {
    font-size: 0.78rem !important;
    font-weight: 400;
    color: rgba(255,255,255,0.5) !important;
    line-height: 1.75;
    margin: 0 !important;
    font-family: var(--font-main);
}
.hotspot { position: absolute; width: 15px; height: 15px; z-index: 10; border: 2px solid #fff; border-radius: 50%; background-color: transparent; cursor: pointer; transform: translate(-50%, -50%); }
.hotspot-pulse { position: absolute; z-index: 1; top: 50%; left: 50%; width: 100%; height: 100%; background-color: #fff; border-radius: 50%; transform: translate(-50%, -50%); animation: hotspot-pulse 2s infinite; pointer-events: none; }
@keyframes hotspot-pulse { 0% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; } 100% { transform: translate(-50%, -50%) scale(3); opacity: 0; } }

/* Tap/click toggle (touch cihazlar için) */
.hotspot.is-open .hotspot-content { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }



.sensors-ghost {
    position: absolute;
    bottom: -0.08em;
    right: -0.02em;
    font-size: clamp(8rem, 16vw, 20rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.024);
    letter-spacing: -0.06em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    font-family: monospace;text-align: right;
}







.product-z { position: relative; z-index: 5; }
.product-name { position: absolute; z-index: 4; top: 35px; width: 100%; left: 0; }
.product-name h1 { font-size: calc(1.1rem + 6vw); font-weight: 900; margin: 0; padding: 0; line-height: 1; letter-spacing: 1vw; }

.video-text-section { background-color: #222528; position: relative; overflow: hidden; display: grid;
    grid-template-columns: 2fr 40%;}
.content-box {
    padding: 4rem;
    /*display: flex;
    align-items: center;*/
}
.video-container { transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.video-container:hover { transform: scale(1.02); border-color: #0dcaf0; }
.video-text-section .display-5 { letter-spacing: -1.5px; line-height: 1.1; }




#trip-canvas { display: block; width: 100%; height: 100vh; object-fit: contain; }
.sticky-content { position: sticky; top: 0; height: 100vh; width: 100%; display: flex; align-items: center; justify-content: center; z-index: 10; }
.trip-360-container { position: relative; height: 300vh; }
.overlay-info { position: absolute; top: 10%; text-align: center; color: white; font-family: sans-serif; width: 100%; padding: 0 20px; pointer-events: none; }

.overlay-info p{ 
	font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 0.5px;
    margin: 0 0 0.6rem;
	transition: color 0.3s ease;
}

 /* HUD Stats Cards */
.hud-card {
	background-color: #1a1c20;
	border: 1px solid rgba(255, 255, 255, 0.1);
	transition: background-color 0.3s ease;
	position: relative;
}
.hud-card:hover {
	background-color: rgba(255, 255, 255, 0.05);
}

.hud-corner {
	position: absolute;
	width: 8px;
	height: 8px;
	border-color: #9ca3af;
	border-style: solid;
}
.hud-tl { top: 0; left: 0; border-width: 1px 0 0 1px; }
.hud-tr { top: 0; right: 0; border-width: 1px 1px 0 0; }
.hud-bl { bottom: 0; left: 0; border-width: 0 0 1px 1px; }
.hud-br { bottom: 0; right: 0; border-width: 0 1px 1px 0; }

.tracking-widest { letter-spacing: 0.1em; }
.tracking-widest-lg { letter-spacing: 0.2em; }


/* ── SPECTRE 5165: Key Features ── */
.sp5165-features {
    background: #fff;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.sp5165-features-header {
    padding: 4rem 5rem 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: baseline;
    gap: 2rem;
}

.sp5165-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.sp5165-feat-item {
    border-right: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    min-height: 360px;
    cursor: default;
}
.sp5165-feat-item:nth-child(3n) { border-right: none; }
.sp5165-feat-item:nth-child(4),
.sp5165-feat-item:nth-child(5),
.sp5165-feat-item:nth-child(6) { border-bottom: none; }

.sp5165-feat-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    filter: grayscale(60%);
    transition: opacity 0.5s ease, transform 0.7s cubic-bezier(0.4,0,0.2,1);
    z-index: 0;
}
.sp5165-feat-item:hover .sp5165-feat-bg {
    opacity: 0.7;
    transform: scale(1.05);
    filter: grayscale(20%);
}

.sp5165-feat-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.55) 50%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
    transition: background 0.4s ease;
}
.sp5165-feat-item:hover .sp5165-feat-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.98) 0%, rgba(0,0,0,0.65) 55%, rgba(0,0,0,0.15) 100%);
}
.sp5165-feat-item:nth-child(3n) { border-right: none; }
.sp5165-feat-item:nth-child(4),
.sp5165-feat-item:nth-child(5),
.sp5165-feat-item:nth-child(6) { border-bottom: none; }
.sp5165-feat-item:hover { background: rgba(255,255,255,0.02); }



.sp5165-feat-num {
    font-size: 0.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.25);
    font-family: monospace;
    position: relative;
    z-index: 2;
    margin-bottom: 0.6rem;
    transition: color 0.3s ease;
}
.sp5165-feat-item:hover .sp5165-feat-num { color: rgba(255,255,255,0.45); }

.sp5165-feat-body {
    position: relative;
    z-index: 2;
    padding: 0 2rem 2.5rem;
}

.sp5165-feat-body h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.5px;
    margin: 0 0 0.6rem;
    transition: color 0.3s ease;
}
.sp5165-feat-item:hover .sp5165-feat-body h4 { color: #fff; }

.sp5165-feat-body p {
    font-size: 0.76rem;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.8;
    margin: 0;
    transition: color 0.3s ease;
}
.sp5165-feat-item:hover .sp5165-feat-body p { color: rgba(255,255,255,0.65); }

/* ── RESPONSIVE ── */
@media (max-width: 1440px) {
    .video-text-section {grid-template-columns: 2fr 45%;}
    .content-box {padding: 2rem;}
    .hud-card h3{font-size: 1.3rem;}

}
@media (max-width: 1200px) {
    .sp5165-features-header { padding: 3.5rem 3rem 3rem; }
    .sp5165-feat-item { min-height: 320px; }
    .sp5165-feat-body { padding: 0 1.75rem 2rem; }
}
@media (max-width: 991px) {
    .sp5165-features-grid { grid-template-columns: repeat(2, 1fr); }
    .sp5165-feat-item:nth-child(3n) { border-right: 1px solid rgba(255,255,255,0.06); }
    .sp5165-feat-item:nth-child(2n) { border-right: none; }
    .sp5165-feat-item:nth-child(4),
    .sp5165-feat-item:nth-child(5),
    .sp5165-feat-item:nth-child(6) { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .sp5165-feat-item:nth-child(5),
    .sp5165-feat-item:nth-child(6) { border-bottom: none; }
}
@media (max-width: 576px) {
    .sp5165-features-grid { grid-template-columns: 1fr; }
    .sp5165-feat-item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.06) !important; min-height: 280px; }
    .sp5165-feat-item:last-child { border-bottom: none !important; }
    .sp5165-feat-body { padding: 0 1.5rem 1.75rem; }
    .sp5165-features-header { padding: 2.5rem 1.5rem 2rem; flex-direction: column; gap: 0.5rem; }
}








.skills{
	background-color: rgb(249 249 249) !important;
	padding: 0;
}
.skills h2{
	color: #000;
	font-weight: 900;
	margin-bottom: 0;
	font-size: 2.5rem
}

/* =============================================
   CAREERS PAGE — cr-* prefix
   ============================================= */

/* ── 1. HERO ── */
.cr-hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    background: #000;
}

.cr-hero-inner {
	position: relative;
    z-index: 5;
    padding: 0 0 4rem 5rem;
    max-width: 750px;
}

.cr-hero-meta {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.cr-hero-title {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0 0 2rem;
}

.cr-hero-sub {
    font-size: 1rem;
    font-weight: 300;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.5px;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cr-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 0.75rem 1.5rem;
    transition: all 0.3s ease;
}
.cr-hero-cta svg { width: 14px; height: 14px; transition: transform 0.3s ease; }
.cr-hero-cta:hover { color: #fff; border-color: rgba(255,255,255,0.35); }
.cr-hero-cta:hover svg { transform: translateY(3px); }


/* ── 2. DIVIDER ── */
.cr-divider {
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 520px;
    position: relative;
    overflow: hidden;
}

.cr-divider-inner {
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.cr-divider-eyebrow {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.18);
    /*font-family: monospace;*/
    margin-bottom: 1.5rem;
    display: block;
}

.cr-divider-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: -0.04em;
    color: #fff;
    margin: 0 0 2rem;
}

.cr-divider-desc {
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    max-width: 440px;
}

.cr-divider-ghost {
    position: absolute;
    right: -0.05em;
    bottom: -0.15em;
    font-size: clamp(8rem, 18vw, 18rem);
    font-weight: 900;
    color: rgba(255,255,255,0.025);
    letter-spacing: -0.06em;
    line-height: 1;
    pointer-events: none;
    font-family: monospace;
    user-select: none;
}

/* ── 3. WHY BLITZ ── */
.cr-why {
    background: #000;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.cr-why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.cr-why-card {
    padding: 3.5rem 2.5rem;
    border-right: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
    transition: background 0.4s ease;
}
.cr-why-card:last-child { border-right: none; }
.cr-why-card:hover { background: rgba(255,255,255,0.02); }

/* Hover top line sweep */
.cr-why-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 1px; width: 0;
    background: rgba(255,255,255,0.4);
    transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}
.cr-why-card:hover::before { width: 100%; }

.cr-why-num {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.12);
    font-family: monospace;
    margin-bottom: 2rem;
}

.cr-why-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.1);
}
.cr-why-icon svg {
    width: 18px;
    height: 18px;
    stroke: rgba(255,255,255,0.4);
}

.cr-why-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.cr-why-desc {
    font-size: 0.8rem;
    line-height: 1.75;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    margin: 0;
}

/* ── 4. POSITIONS / ACCORDION ── */
.cr-positions {
    background: #fff;
}

.cr-positions-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 4rem 4rem 3rem;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.cr-positions-eyebrow {
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.25);
    /*font-family: monospace;*/
    margin-bottom: 0.75rem;
}

.cr-positions-title {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #000;
    letter-spacing: -0.04em;
    margin: 0;
    line-height: 1;
}

.cr-positions-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: rgba(0,0,0,0.3);
}
.cr-positions-location svg { width: 14px; height: 14px; stroke: rgba(0,0,0,0.25); }

/* Accordion item */
.cr-acc-item {
    border: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.07) !important;
    background: transparent !important;
}

.cr-acc-header { background: transparent; }

.cr-acc-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: transparent;
    border: none;
    padding: 2rem 4rem;
    cursor: pointer;
    text-align: left;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: color 0.3s ease;
}

/* Hover fill */
.cr-acc-btn::before {
    content: '';
    position: absolute;
    bottom: -100%; left: 0;
    width: 100%; height: 100%;
    background: #000;
    transition: bottom 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: -1;
}
.cr-acc-btn:hover::before,
.cr-acc-btn:not(.collapsed)::before { bottom: 0; }

.cr-acc-btn:hover .cr-acc-num,
.cr-acc-btn:not(.collapsed) .cr-acc-num { color: rgba(255,255,255,0.2); }
.cr-acc-btn:hover .cr-acc-title,
.cr-acc-btn:not(.collapsed) .cr-acc-title { color: #fff; }
.cr-acc-btn:hover .cr-acc-tag,
.cr-acc-btn:not(.collapsed) .cr-acc-tag { color: rgba(255,255,255,0.3); border-color: rgba(255,255,255,0.12); }
.cr-acc-btn:hover .cr-acc-toggle,
.cr-acc-btn:not(.collapsed) .cr-acc-toggle { border-color: rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); }

.cr-acc-btn-left {
    display: flex;
    align-items: center;
    gap: 1.75rem;
    flex: 1;
    min-width: 0;
}

.cr-acc-num {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(0,0,0,0.15);
    font-family: monospace;
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.cr-acc-title {
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 600;
    color: #000;
    letter-spacing: -0.02em;
    transition: color 0.3s ease;
}

.cr-acc-btn-right {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    flex-shrink: 0;
    margin-left: 2rem;
}

.cr-acc-tag {
    font-size: 0.6rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgb(0 0 0 / 70%);
    border: 1px solid rgb(0 0 0 / 70%);
    padding: 3px 9px;
    transition: all 0.3s ease;
}

.cr-acc-toggle {
    width: 32px;
    height: 25px;
    border: 1px solid rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0,0,0,0.25);
    flex-shrink: 0;
    transition: all 0.3s ease;
}
.cr-acc-toggle svg {
    width: 14px;
    height: 14px;
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.cr-acc-btn:not(.collapsed) .cr-acc-toggle svg { transform: rotate(180deg); }

/* Accordion body — 3-col grid */
.cr-acc-body {
    padding: 3rem 4rem 3.5rem;
    background: #f8f8f8;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.cr-acc-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 0.85fr;
    gap: 3rem;
}

.cr-acc-section-title {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(0,0,0,0.3);
    font-family: monospace;
    margin-bottom: 1.25rem;
}

.cr-acc-col p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(0,0,0,0.6);
    font-weight: 400;
    margin-bottom: 0.75rem;
}

.cr-acc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.cr-acc-list li {
    font-size: 0.82rem;
    color: rgba(0,0,0,0.6);
    font-weight: 400;
    line-height: 1.5;
    padding-left: 1rem;
    position: relative;
}
.cr-acc-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: rgba(0,0,0,0.2);
    font-size: 0.75rem;
}

.cr-acc-col-apply {
    display: flex;
    flex-direction: column;
}

.cr-apply-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
    padding: 0.85rem 1.5rem;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    background: #000;
    text-decoration: none;
    border: 1px solid #000;
    transition: all 0.3s ease;
}
.cr-apply-btn:hover {
    background: transparent;
    color: #000;
}

/* ── 5. APPLICATION FORM ── */
.cr-form-section {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.06);
    min-height: 600px;
}

.cr-form-left {
    padding: 5rem 4rem;
    border-right: 1px solid rgba(255,255,255,0.06);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Ghost number */
.cr-form-left::after {
    content: '05';
    position: absolute;
    bottom: -0.1em;
    right: -0.05em;
    font-size: 14rem;
    font-weight: 900;
    color: rgba(255,255,255,0.02);
    font-family: monospace;
    line-height: 1;
    pointer-events: none;
}

.cr-form-eyebrow {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.18);
    /*font-family: monospace;*/
    margin-bottom: 1.25rem;
    display: block;
}

.cr-form-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin: 0 0 1.75rem;
}

.cr-form-desc {
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
    max-width: 320px;
    margin-bottom: 2.5rem;
}

.cr-form-contact-label {
    display: block;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.15);
    text-transform: uppercase;
    font-family: monospace;
    margin-bottom: 0.4rem;
}

.cr-form-contact-link {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    transition: color 0.25s ease;
}
.cr-form-contact-link:hover { color: rgba(255,255,255,0.75); }

/* Form right */
.cr-form-right {
    padding: 5rem 4rem;
}

.cr-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 2rem;
}

.cr-field {
    position: relative;
    margin-bottom: 2.25rem;
}

.cr-field-full { grid-column: 1 / -1; }

.cr-label {
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    margin-bottom: 0.5rem;
}

.cr-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 300;
    padding: 0.6rem 0;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: var(--font-main);
}
.cr-input:focus { border-bottom-color: rgba(255,255,255,0.5); }
.cr-input::placeholder { color: rgba(255,255,255,0.15); }

.cr-select {
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.2)' stroke-width='1.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
    background-size: 16px;
    padding-right: 1.5rem;
}
.cr-select option { background: #111; color: #fff; }

.cr-textarea { resize: none; }

/* Custom checkbox */
.cr-check-field { display: flex; align-items: flex-start; }

.cr-check {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    cursor: pointer;
}

.cr-check input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0; height: 0;
}

.cr-check-box {
    width: 14px;
    height: 14px;
    border: 1px solid rgba(255,255,255,0.2);
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: all 0.2s ease;
}
.cr-check input:checked + .cr-check-box {
    background: #fff;
    border-color: #fff;
}
.cr-check input:checked + .cr-check-box::after {
    content: '';
    position: absolute;
    left: 3px; top: 0px;
    width: 5px; height: 9px;
    border: 2px solid #000;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}

.cr-check-text {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    line-height: 1.5;
}
.cr-check-text a {
    color: rgba(255,255,255,0.45);
    text-decoration: underline;
}

/* Submit */
.cr-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: #fff;
    color: #000;
    border: 1px solid #fff;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-main);
}
.cr-submit:hover {
    background: transparent;
    color: #fff;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
    .cr-hero-inner { padding: 0 3rem 4rem; }
    .cr-acc-btn { padding: 1.75rem 3rem; }
    .cr-acc-body { padding: 2.5rem 3rem; }
    .cr-positions-header { padding: 3rem 3rem 2.5rem; }
    .cr-form-left, .cr-form-right { padding: 4rem 3rem; }
}

@media (max-width: 991px) {
    .cr-why-grid { grid-template-columns: repeat(2, 1fr); }
    .cr-why-card:nth-child(2) { border-right: none; }
    .cr-why-card:nth-child(1),
    .cr-why-card:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.06); }
    .cr-acc-grid { grid-template-columns: 1fr 1fr; }
    .cr-acc-col-apply { grid-column: 1 / -1; flex-direction: row; align-items: flex-start; gap: 2rem; }
    .cr-apply-btn { margin-top: 0; white-space: nowrap; }
    .cr-form-section { grid-template-columns: 1fr; }
    .cr-form-left { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding: 3.5rem 3rem; }
    .cr-form-left::after { display: none; }
    .cr-divider { grid-template-columns: 1fr; }
    .cr-divider-ghost { font-size: 10rem; bottom: -0.1em; }
}

@media (max-width: 768px) {
    .cr-hero-inner { padding: 0 1.5rem 3rem; }
    .cr-stat { flex: 1; padding: 1.25rem 1rem; }
    .cr-acc-btn { padding: 1.5rem; flex-wrap: wrap; gap: 0.75rem; }
    .cr-acc-btn-right { margin-left: 0; }
    .cr-acc-tag { display: none; }
    .cr-acc-body { padding: 2rem 1.5rem; }
    .cr-acc-grid { grid-template-columns: 1fr; gap: 2rem; }
    .cr-acc-col-apply { flex-direction: column; }
    .cr-positions-header { padding: 2.5rem 1.5rem 2rem; flex-direction: column; align-items: flex-start; gap: 1rem; }
    .cr-form-left, .cr-form-right { padding: 3rem 1.5rem; }
    .cr-form-grid { grid-template-columns: 1fr; }
    .cr-divider-inner { padding: 4rem 1.5rem; }
    .cr-why-grid { grid-template-columns: 1fr; }
    .cr-why-card { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); }
    .cr-why-card:last-child { border-bottom: none; }
}

@media (max-width: 576px) {
    .cr-hero-title { font-size: clamp(2.8rem, 12vw, 4rem); }
    .cr-acc-btn { padding: 1.25rem; }
    .cr-acc-num { display: none; }
}







/* =============================================
   PRODUCT HERO — pd300-hero
   ============================================= */

.pd300-hero {
    position: relative;
    background: #000;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    padding-top: 100px;
}

/* Noktalı grid arka plan */
.pd300-hero-grid {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(255, 255, 255, 0.01) 1px, transparent 1px);
    background-size: 100px 100px;
    pointer-events: none;
    z-index: 0;
}
.pd300-hero-grid::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, transparent 30%, #000 100%);
}

/* Üst meta bar */
.pd300-hero-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 4rem 0;
}

.pd300-eyebrow {
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
}

.pd300-series {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 4px 10px;
}

/* Merkez alan */
.pd300-hero-center {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1;
    padding: 2rem 2rem 0;
}

/* Ghost numara */
.pd300-hero-ghost {
	position: absolute;
    font-size: clamp(12rem, 25vw, 17rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0);
    letter-spacing: -0.08em;
    line-height: 1;
    font-family: monospace;
    pointer-events: none;
    user-select: none;
    top: 12%;
    left: 50%;
    transform: translate(-50%, -20%);
    white-space: nowrap;
	text-align: center;
	 -webkit-text-stroke: 1px rgba(255,255,255,0.06);
}

.pd300-hero-img {
    max-height: 52vh;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 40px 60px rgba(0,0,0,0.8));
    transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.pd300-hero-img:hover { transform: translateY(-8px) scale(1.02); }

.pd300-hero-title {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: #fff;
    text-align: center;
    margin: 1.5rem 0 0;
    line-height: 1;
    position: relative;
    z-index: 2;
}
.pd300-hero-title em {
    font-style: normal;
    color: rgba(255,255,255,0.25);
}

/* Stats alt bar */
.pd300-hero-stats {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid rgba(255,255,255,0.06);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 2rem;
}

.pd300-stat {
    padding: 1.75rem 2rem;
    border-right: 1px solid rgba(255,255,255,0.06);
    text-align: center;
    position: relative;
    transition: background 0.3s ease;
}
.pd300-stat:last-child { border-right: none; }
.pd300-stat:hover { background: rgba(255,255,255,0.02); }

.pd300-stat::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    height: 1px; width: 0;
    background: rgba(255,255,255,0.3);
    transition: width 0.4s ease;
}
.pd300-stat:hover::before { width: 100%; }

.pd300-stat-value {
    display: block;
    font-size: clamp(1rem, 2vw, 1.35rem);
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 0.4rem;
    font-family: monospace;
}

.pd300-stat-label {
    display: block;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
    .pd300-hero-top { padding: 1.5rem 3rem 0; }
}

@media (max-width: 991px) {
    .pd300-hero-stats { grid-template-columns: repeat(3, 1fr); }
    .pd300-stat:nth-child(3) { border-right: none; }
    .pd300-stat:nth-child(4),
    .pd300-stat:nth-child(5) { border-top: 1px solid rgba(255,255,255,0.06); }
    .pd300-hero-img { max-height: 40vh; }
}

@media (max-width: 768px) {
    .pd300-hero-top { padding: 1rem 1.5rem 0; }
    .pd300-hero-stats { grid-template-columns: repeat(2, 1fr); }
    .pd300-stat:nth-child(2) { border-right: none; }
    .pd300-stat:nth-child(3),
    .pd300-stat:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06);border-right: 1px solid rgba(255, 255, 255, 0.06); }
    .pd300-stat:nth-child(5) { border-top: 1px solid rgba(255,255,255,0.06); grid-column: 1 / -1; border-right: none; }
}

@media (max-width: 576px) {
    .pd300-hero-ghost { display: none; }
    .pd300-hero-img { max-height: 35vh; }
    .pd300-hero-stats { grid-template-columns: 1fr 1fr; }
}



/* ── pd300: Technical Specs ── */
/*.pd300-specs {
    background: #000;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
*/
.pd300-specs {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 3fr 1fr;
}
.pd300-specs-area {
    background-color: #000;
	padding: 0rem 3rem;
}
.pd300-specs-header {
    padding: 4rem 5rem 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    display: flex;
    align-items: baseline;
    gap: 2rem;
}

.pd300-specs-title {
    font-size: clamp(1.6rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.04em;
    margin: 0;
    line-height: 1;
}

.pd300-spec-row {
    display: grid;
    grid-template-columns: 80px 260px 1fr;
    align-items: start;
    padding: 2rem 5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: color 0.35s ease;
}
.pd300-spec-row:hover { color: #fff; }

/* hover fill — yukarıdan aşağı */
.pd300-spec-row::before {
    content: '';
    position: absolute;
    top: -100%; left: 0;
    width: 100%; height: 100%;
    background: rgba(255,255,255,0.03);
    transition: top 0.4s cubic-bezier(0.4,0,0.2,1);
    z-index: 0;
}
.pd300-spec-row:hover::before { top: 0; }

.pd300-spec-num {
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.08);
    font-family: monospace;
    position: relative;
    z-index: 1;
    padding-top: 4px;
    transition: color 0.35s ease;
}
.pd300-spec-row:hover .pd300-spec-num { color: rgba(255,255,255,0.15); }

.pd300-spec-key {
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    font-family: var(--font-main);
    position: relative;
    z-index: 1;
    padding-top: 3px;
    transition: color 0.35s ease;
}
.pd300-spec-row:hover .pd300-spec-key { color: rgba(255,255,255,0.7); }

.pd300-spec-val {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255,255,255,0.8);
    line-height: 1.7;
    position: relative;
    z-index: 1;
    transition: color 0.35s ease;
}
.pd300-spec-row:hover .pd300-spec-val { color: rgba(255,255,255,0.6); }


.pd300-specs-note-label {
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.2);
    font-family: monospace;
    white-space: nowrap;
    flex-shrink: 0;
    width: 320px;
    padding-top: 3px;
}

.pd300-specs-note p {
    font-size: 0.82rem;
    font-weight: 300;
    color: rgba(255,255,255,0.25);
    line-height: 1.8;
    margin: 0;
    font-style: italic;
}
.tech-area{
    height: 100%;
	padding: 3rem 0;
    display: flex;
    align-items: center;
    justify-content: center;

}
.tech-img{
	width: 70%;
}
@media (max-width: 1200px) {
	.pd300-specs-header { padding: 3.5rem 3rem 3rem; }
    .pd300-spec-row { padding: 2rem 3rem; }
    .pd300-specs-note { padding: 2rem 3rem; gap: 2rem; }
    .pd300-specs-note-label { width: 220px; }
}
@media (max-width: 1024px) {
	.pd300-specs {grid-template-columns: 1fr;}
	.tech-area{background-color: #222528;}
}
@media (max-width: 991px) {
    .pd300-spec-row { grid-template-columns: 50px 180px 1fr; }
	.tech-img{width: 50%;}
}
@media (max-width: 768px) {
	.pd300-specs-header { padding: 2.5rem 1.5rem 2rem; flex-direction: column; gap: 0.5rem; }
    .pd300-spec-row { grid-template-columns: 1fr; gap: 0.3rem; padding: 1.5rem 1.5rem; }
    .pd300-spec-num { display: none; }
    .pd300-spec-key { color: rgba(255,255,255,0.5); font-size: 0.65rem; }
    .pd300-specs-note { padding: 1.5rem 1.5rem; flex-direction: column; gap: 0.5rem; }
    .pd300-specs-note-label { width: auto; }
}






/* 14. RESPONSIVE MEDYA SORGULARI */
@media (max-width: 1680px) {
    .hero-bg-container { margin-bottom: 0; padding-top: 130px; }
    .hero-image { width: 25%; margin-bottom: 10px; }
}

@media (max-width: 1440px) {
    .big-hero { height: auto; }
    .hero-bg-container { padding-top: 90px; }
}

@media (min-width: 1200px) {
    #trip-canvas { max-width: 1100px; }
}

@media (max-width: 1024px) {
    .product-details { width: 100%; padding: 25px; }
    .hero-bg-container { margin-bottom: 0; padding-top: 90px; }
    .hero-image { width: 35%; }
    .table-row-1 p { top: 15px; }
	#splitProduct .product-details p {line-height: 1.5;}
}

@media (max-width: 991.98px) {
    #splitProduct { height: auto !important; }
    .content-card { min-height: auto; margin-bottom: 10px; }
    .bento-wrapper { grid-template-columns: 1fr; grid-auto-rows: minmax(250px, auto); }
	.benefits-grid {grid-template-columns: repeat(2, 1fr)}
    .span-2x2, .span-1x2, .span-2x1 { grid-column: span 1; grid-row: span 1; }
    .contact { padding: 2rem; }
    .contact-left { border-right: none; border-bottom: 1px solid #2a2a2a; padding: 2rem; }
    .contact-item { border-left-color: rgba(255,255,255,0.15); }
    .contact-item:hover { border-left-color: #fff; }
    .video-text-section ul { display: inline-block; text-align: left; }
    .careers-parallax h2.display-3 { font-size: 3.5rem !important; }
	.video-text-section { grid-template-columns: 1fr;}
	 .product-details {padding: 4rem 2rem;}
    .hotspot-wrapper { padding: 3rem 2.5rem 2rem; }
    .hotspot-content { width: min(260px, 75vw); }
}

@media (max-width: 768px) {
    .menu-col-title { letter-spacing: 2px; font-size: 13px; font-weight: 700; margin-bottom: .5rem !important; }
    #subText { letter-spacing: 2px !important; font-size: 0.75rem !important; line-height: 1.4; display: block; }
    .wrapper { height: 50vh;padding: 2rem; }
    .wrapper h1 { font-size: 2rem; }
    .hero-stats-row { grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 10px 8px; }
    .stat-value { text-align: left; }
    .carousel-caption { left: 5% !important; max-width: 90%; padding: 25px; }
    .caption-content h2 { font-size: 2.2rem; }
    .table-area { padding: 1.5rem; }
    .table-header { display: none; }
    .table-row { padding: 2rem 0; }
    .urun-tek-oz { padding: 3rem 1rem; background-color: #000; }
    .two-column { display: none; }
    .btn-blitz { border: 1px solid rgb(255 255 255); color: rgb(255 255 255); }
    .careers-parallax { background-attachment: scroll !important; background-position: center center !important; height: auto !important; min-height: 450px; padding: 60px 0 !important; }
    .careers-parallax h2.display-3 { font-size: 2.2rem !important; line-height: 1.2; letter-spacing: -1px; }
    .careers-parallax p.lead { font-size: 1rem !important; line-height: 1.6; color: rgba(255, 255, 255, 0.85); margin-bottom: 2rem; padding: 0 10px; }
    .table-row-1 span { top: 10px; }
    .table-row-1 p { top: 20px; }
    .hotspot { width: 13px; height: 13px; }
    .hotspot-content { width: min(220px, 70vw); bottom: calc(100% + 12px); }
    .hotspot-content p { font-size: 0.75rem !important; }
    .hotspot-area { padding: 2rem 0 0; display: block; }
    .hotspot-wrapper { padding: 2rem 1.5rem 1.5rem; }
    #trip-canvas { max-width: 95vw; }
    .overlay-info h2 { font-size: 1.5rem; }
	

}

@media (max-width: 576px) {
	.wrapper {padding: 1rem; }
	.video-background {display: none;}
    .mobile-sub-link { font-size: 12px; font-weight: 600; letter-spacing: normal; }
    .banner-text-area { padding-left: 2rem; padding-right: 2rem; }
    .banner-alt { padding: 3rem 1rem; }
    #splitProduct .urun-tek-oz { height: 70vh !important; }
    .blitz-tabs-section { padding: 0rem; margin-bottom: 1rem}
    .blitz-accordion .accordion-body { padding: 2rem; }
	.table-row, .table-row-1 {padding: 1rem;}
    .table-row-1 p { top: 5px; line-height: 1; font-size: 1rem; width: 100%; position: relative; left: 0; }
    .table-row-1 { flex-direction: column; align-items: flex-start; }
    .table-row-1 span { position: relative;left: 0; }
	.hak-cta h5 {font-size: 1.1rem;}
	.hak-cta h2 {font-size: 2rem;}
	.about {padding: 3rem 2rem;}
	.blitz-accordion .accordion-button {padding: 5px;font-size: 1rem}
	.me-4 {margin-right: .5rem !important;}
	.blitz-tabs-section li.nav-item{width: 100%}
	.blitz-tabs-section p.lead{font-size: 1rem}
	.custom-horizontal-tabs .nav-link {width: 100%;text-align: left;}
	section.big-hero.p-5 {padding: 25px !important;}
    .hotspot { width: 10px; height: 10px; pointer-events: none; }
    .hotspot-content { display: none; }
    .hotspot-area { padding: 0; }
    .hotspot-wrapper { padding: 0.5rem 0.5rem 0; border-radius: 8px; }
    .hotspot-mobile-cards { display: flex; }
	.contact { padding: 1.25rem; }
    .contact-left { padding: 1.25rem; }
    .messagee { font-size: 1rem; margin-bottom: 1rem; }
    .contact .col-12.mt-5 { margin-top: 2rem !important; }
    .contact .col-12.mt-5 .col-md-4 { width: 100%; }
    .contact .btn-blitz { width: 100%; }

}

@media (max-width: 480px) {
    .hero-stats-row { grid-template-columns: 1fr; }
    .stat-item { padding: 12px 10px; text-align: left; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
    .stat-item:not(:last-child)::after { display: none; }
}

@media (max-width: 376px) {
    #splitProduct .urun-tek-oz { height: 90vh !important; }
}



/* ── SECTION WRAPPER ── */
.s-spectre {
    position: relative;
    padding: 96px 0 96px;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;

}

/* ── ARKA PLAN KATMANLARI ── */
.s-bg-radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top right,
        rgba(255,255,255,0.05) 0%,
        rgba(3,3,3,1) 50%);
    pointer-events: none;
    z-index: 0;
}

.s-bg-noise {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: 0.03;
    pointer-events: none;
    z-index: 0;
}

/* ── İÇ KONTEYNER ── */
.s-inner {
    max-width: 90rem;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
    width: 100%;
}

@media (min-width: 1024px) {
    .s-inner { padding: 0 32px; }
}

/* ── 2 SÜTUN GRID ── */
.s-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: center;
}

@media (min-width: 1024px) {
    .s-grid {
        grid-template-columns: 1fr 1fr;
        gap: 96px;
    }
}

/* ── SOL SÜTUN ── */
.s-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    order: 2;
}

@media (min-width: 1024px) {
    .s-left { order: 1; }
}

/* Eyebrow */
.s-eyebrow {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.s-eyebrow-line {
    display: block;
    width: 48px;
    height: 1px;
    flex-shrink: 0;
}

.s-eyebrow-text {
    font-size: 11px;
    font-weight: 500;
    color: var(--text-2);
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* Başlık */
.s-title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 24px;
}

/* Lead */
.s-lead {
    font-size: clamp(17px, 1.8vw, 22px);
    font-weight: 300;
    line-height: 1.65;
    margin-bottom: 40px;
    max-width: 540px;
}

.s-lead strong {
    font-weight: 500;
}

/* Açıklama */
.s-body {
    font-size: clamp(13px, 1.1vw, 15px);
    line-height: 1.8;
    margin-bottom: 48px;
    max-width: 500px;
}

/* ── STAT GRID ── */
.s-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 32px;
    margin-bottom: 48px;
}

.s-stat-val {
    font-size: 26px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.s-stat-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 500;
}




/* ── SAĞ SÜTUN ── */
.s-right {
    position: relative;
    order: 1;
}

@media (min-width: 1024px) {
    .s-right { order: 2; }
}

/* Glow efekti */
.s-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle,
        rgba(255,255,255,0.08) 0%,
        transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Fotoğraf wrapper */
.s-photo-wrap {
    position: relative;
    z-index: 10;
    max-width: 520px;
    margin: 0 auto;
    animation: float 8s ease-in-out infinite;
}

@media (min-width: 1024px) {
    .s-photo-wrap { max-width: none; }
}

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

/* Masked image container */
.s-img-mask {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate;
    /* GPU'ya zorla — ilk render'da mask atlanmasın */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* Mask */
    -webkit-mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
    mask-image: radial-gradient(ellipse at center, black 25%, transparent 70%);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
}
 
.s-img-mask img {
    width: 100%;
    height: auto;
    object-fit: cover;
    opacity: 0.9;
    transform: scale(1.05) translateZ(0);
    display: block;
    will-change: opacity;
}

/* ── GLASS KARTLAR ── */
.s-tag {
    position: absolute;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    z-index: 20;
}

.s-tag-1 {
    top: 20%;
    left: -16px;
}

.s-tag-2 {
    bottom: 25%;
    right: -16px;
}

@media (min-width: 768px) {
    .s-tag-1 { left: -48px; }
    .s-tag-2 { right: -32px; }
}

.s-tag-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

.s-tag-dot.active {
    animation: pulse-dot 4s cubic-bezier(0.4,0,0.6,1) infinite;
}

.s-tag-dot.idle {
    
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

.s-tag-label {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 2px;
}

.s-tag-val {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.04em;
}

/* ── DEKORATIF SVG ── */
.s-deco-svg {
    position: absolute;
    bottom: -32px;
    left: -32px;
    width: 96px;
    height: 96px;
    color: rgba(255,255,255,0.10);
    pointer-events: none;
    z-index: 5;
}

/* ── RESPONSIVE PADDING ── */
@media (min-width: 768px) {
    .s-spectre {
        padding: 112px 0;
    }
}

@media (min-width: 1280px) {
    .s-spectre {
        padding: 128px 0;
    }
}