/* V2 VISUAL SYSTEM OVERRIDES */

/* Background Enhancements */
.v2-grid {
    background-size: 80px 80px;
    opacity: 0.5;
}
.bg-noise {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background-image: url('data:image/svg+xml,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.85" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
    opacity: 0.03;
    z-index: -1;
    pointer-events: none;
}

/* V2 Hero */
.v2-hero {
    position: relative;
    overflow: hidden;
}
.abstract-canvas {
    position: absolute;
    top: 0; right: 0;
    width: 60%; height: 100%;
    z-index: 1;
    pointer-events: none;
}
.hero-svg {
    width: 100%; height: 100%;
    filter: drop-shadow(0 0 10px rgba(255,255,255,0.1));
}
.svg-line {
    stroke: rgba(255,255,255,0.15);
    stroke-width: 2;
    fill: none;
}
.svg-line.thin { stroke-width: 1; stroke: rgba(255,255,255,0.08); }
.svg-line.dashed { stroke-width: 1; stroke-dasharray: 4 8; stroke: rgba(255,255,255,0.05); }
.svg-node {
    fill: #050507;
    stroke: rgba(255,255,255,0.3);
    stroke-width: 2;
}
.glow-node {
    fill: #fff;
    box-shadow: 0 0 20px #fff;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.8));
}

.hero-container {
    padding-top: 10vh;
}
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 100px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 2rem;
    color: var(--text-muted);
    backdrop-filter: blur(4px);
}
.hero-title {
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 0.95;
    margin-bottom: 2rem;
}
.text-glow {
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.8);
    position: relative;
}
.text-glow::after {
    content: 'Gücü.';
    position: absolute;
    left: 0; top: 0;
    color: #fff;
    opacity: 0;
    transition: opacity 1s;
}
.hero-title:hover .text-glow::after { opacity: 1; }
.hero-desc {
    font-size: 1.25rem;
    max-width: 500px;
}

/* V2 2005 Experience */
.experience-section {
    position: relative;
    padding: 15rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.05);
}
.giant-year {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: 40vw;
    font-weight: 800;
    color: rgba(255,255,255,0.02);
    pointer-events: none;
    z-index: 0;
    line-height: 1;
    white-space: nowrap;
}
.exp-content {
    display: flex;
    justify-content: center;
    text-align: center;
}
.exp-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}
.exp-text p {
    margin: 2rem auto;
    max-width: 600px;
}
.exp-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
}
.sys-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.stat-num {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
}
.stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

/* V2 Services System Layout */
.system-layout {
    position: relative;
    margin-top: 6rem;
    max-width: 1000px;
    margin-left: auto; margin-right: auto;
}
.system-track {
    position: absolute;
    top: 0; left: 50%;
    width: 2px; height: 100%;
    transform: translateX(-50%);
    background: rgba(255,255,255,0.05);
    z-index: 1;
}
.track-fill {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 0%;
    background: #fff;
    box-shadow: 0 0 10px #fff;
    transition: height 0.1s ease-out;
}
.system-nodes {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 8rem;
}
.sys-card {
    position: relative;
    width: 45%;
    padding: 3rem;
    background: rgba(10, 11, 16, 0.5);
    border: 1px solid rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
}
.sys-card.left-align { margin-right: auto; text-align: right; }
.sys-card.right-align { margin-left: auto; text-align: left; }

.sys-dot {
    position: absolute;
    top: 50%;
    width: 12px; height: 12px;
    background: #050507;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    transform: translateY(-50%);
    transition: var(--transition);
}
.sys-card.left-align .sys-dot { right: -11.5%; /* aligns with track */ }
.sys-card.right-align .sys-dot { left: -11.5%; }

.sys-card.active .sys-dot {
    background: #fff;
    border-color: #fff;
    box-shadow: 0 0 15px #fff;
}

.sys-id {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    color: rgba(255,255,255,0.3);
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 1rem;
}

/* V2 Partners Marquee */
.partners-section {
    padding: 6rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}
.partners-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4rem;
    padding: 0 2rem;
}
.p-logo {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    text-align: center;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.2);
    transition: var(--transition);
}
.p-logo:hover {
    color: #fff;
    -webkit-text-stroke: 1px #fff;
}

/* V2 Final CTA */
.final-cta {
    position: relative;
    padding: 15rem 0;
    overflow: hidden;
}
.inverted-canvas {
    width: 100%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.huge-title {
    font-size: clamp(3rem, 7vw, 6rem);
    margin-bottom: 2rem;
}

/* Utilities */
.relative { position: relative; }
.z-10 { z-index: 10; }
.text-center { text-align: center; }
.mb-4 { margin-bottom: 4rem; }
.mt-10 { margin-top: 10rem; }

/* FOOTER LOGO */
.footer-logo {
    width: 130px;
    height: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 1.5rem;
    display: block;
}
@media (max-width: 768px) {
    .footer-logo {
        width: 110px;
    }
}
