:root {
            --brand-blue: #403A90;
            --brand-blue-deep: #2a2558;
            --brand-red: #E61C22;
            --brand-dark: #111111;
            --brand-gray: #7A7A7A;
            --text-body: #5c5c5c;
            --text-muted: #8a8a8a;
            --surface: #ffffff;
            --surface-soft: #f5f4f8;
            --border-subtle: rgba(64, 58, 144, 0.1);
            --section-y: clamp(88px, 10vw, 128px);
            --radius: 0;
            --shadow-soft: 0 16px 40px rgba(17, 17, 17, 0.07);
            --gradient-brand: linear-gradient(135deg, #2f2a6e 0%, var(--brand-blue) 48%, var(--brand-blue-deep) 100%);
            --font-display: 'Montserrat', sans-serif;
            --font-body: 'Poppins', sans-serif;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-body);
            color: var(--text-body);
            background: var(--surface);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        ::selection {
            background: rgba(64, 58, 144, 0.18);
            color: var(--brand-dark);
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: var(--font-display);
            font-weight: 700;
            color: var(--brand-dark);
        }

        img {
            max-width: 100%;
        }

        a {
            transition: color 0.3s ease;
        }

        /* Modern Navbar */
        .navbar {
            background-color: transparent !important;
            padding: 22px 0;
            transition: background-color 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, backdrop-filter 0.4s ease;
            z-index: 1030;
        }
        .navbar.scrolled {
            background-color: rgba(255, 255, 255, 0.92) !important;
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            padding: 12px 0;
            box-shadow: 0 8px 32px rgba(17, 17, 17, 0.08);
            border-bottom: 1px solid rgba(64, 58, 144, 0.06);
        }
        .navbar-brand {
            position: relative;
            z-index: 2;
        }
        .navbar-brand img {
            max-height: 52px;
            transition: max-height 0.4s ease, filter 0.4s ease;
        }
        .navbar.scrolled .navbar-brand img {
            max-height: 44px;
        }
        /* Hero üzerindeyken logo beyaz (koyu hero) — scroll sonrası orijinal */
        .navbar:not(.scrolled) .navbar-brand img {
            filter: brightness(0) invert(1);
        }
        .navbar-nav {
            align-items: center;
            gap: 4px;
        }
        .nav-link {
            font-size: 0.82rem;
            font-weight: 500;
            font-family: 'Montserrat', sans-serif;
            color: rgba(255, 255, 255, 0.88) !important;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin: 0 6px;
            padding: 8px 4px !important;
            position: relative;
            transition: color 0.3s ease;
        }
        .navbar.scrolled .nav-link {
            color: var(--brand-blue) !important;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 2px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(90deg, var(--brand-red), #ff5a5f);
            border-radius: 2px;
            transition: width 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .nav-link:hover {
            color: #fff !important;
        }
        .navbar.scrolled .nav-link:hover {
            color: var(--brand-red) !important;
        }
        .nav-link:hover::after,
        .nav-link.active::after {
            width: 100%;
        }
        .nav-link.active {
            color: #fff !important;
        }
        .navbar.scrolled .nav-link.active {
            color: var(--brand-red) !important;
        }
        .nav-cta {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin-left: 18px;
            padding: 11px 26px !important;
            background: var(--brand-red);
            color: #fff !important;
            font-size: 0.78rem !important;
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
            letter-spacing: 1px;
            text-transform: uppercase;
            text-decoration: none;
            border-radius: 0;
            border: 1.5px solid var(--brand-red);
            transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
            position: relative;
        }
        .nav-cta::after {
            display: none;
        }
        .nav-cta:hover {
            background: transparent;
            color: #fff !important;
            border-color: rgba(255, 255, 255, 0.7);
            transform: translateY(-2px);
        }
        .navbar.scrolled .nav-cta {
            background: var(--brand-red);
            border-color: var(--brand-red);
            color: #fff !important;
        }
        .navbar.scrolled .nav-cta:hover {
            background: var(--brand-blue);
            border-color: var(--brand-blue);
            color: #fff !important;
        }
        .navbar-toggler {
            width: 44px;
            height: 44px;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: background 0.3s ease;
        }
        .navbar-toggler:focus {
            box-shadow: none;
        }
        .navbar:not(.scrolled) .navbar-toggler {
            background: rgba(255, 255, 255, 0.1);
        }
        .navbar.scrolled .navbar-toggler {
            background: rgba(64, 58, 144, 0.08);
        }
        .toggler-icon {
            display: flex;
            flex-direction: column;
            gap: 5px;
            width: 20px;
        }
        .toggler-icon span {
            display: block;
            height: 2px;
            width: 100%;
            background: #fff;
            border-radius: 2px;
            transition: background 0.3s ease, transform 0.3s ease;
        }
        .navbar.scrolled .toggler-icon span {
            background: var(--brand-blue);
        }
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: rgba(17, 17, 17, 0.96);
                backdrop-filter: blur(20px);
                margin-top: 16px;
                padding: 24px 20px;
                border-radius: 12px;
                border: 1px solid rgba(255, 255, 255, 0.08);
            }
            .navbar.scrolled .navbar-collapse {
                background: #fff;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
                border-color: rgba(0, 0, 0, 0.04);
            }
            .navbar-nav {
                align-items: stretch;
                gap: 4px;
            }
            .nav-link {
                color: rgba(255, 255, 255, 0.9) !important;
                margin: 0;
                padding: 12px 8px !important;
            }
            .navbar.scrolled .nav-link {
                color: var(--brand-blue) !important;
            }
            .nav-cta {
                margin: 12px 0 0;
                justify-content: center;
                text-align: center;
            }
            .navbar:not(.scrolled) .navbar-brand img {
                filter: brightness(0) invert(1);
            }
        }

        /* Modern Hero Section */
        .hero-section {
            height: 100svh;
            min-height: 680px;
            position: relative;
            display: flex;
            align-items: flex-end;
            overflow: hidden;
            color: #fff;
        }
        .hero-media {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .hero-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 40%;
            transform: scale(1.08);
            animation: heroKenBurns 22s ease-out forwards;
            will-change: transform;
        }
        @keyframes heroKenBurns {
            from { transform: scale(1.12); }
            to { transform: scale(1); }
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background:
                linear-gradient(105deg, rgba(12, 11, 28, 0.92) 0%, rgba(64, 58, 144, 0.55) 42%, rgba(17, 17, 17, 0.25) 72%, rgba(17, 17, 17, 0.45) 100%),
                linear-gradient(to top, rgba(8, 8, 16, 0.85) 0%, transparent 42%);
        }
        .hero-grain {
            position: absolute;
            inset: 0;
            z-index: 2;
            opacity: 0.35;
            pointer-events: none;
            mix-blend-mode: overlay;
            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.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
        }
        .hero-frame {
            position: absolute;
            inset: 28px;
            z-index: 2;
            border: 1px solid rgba(255, 255, 255, 0.12);
            pointer-events: none;
            opacity: 0;
            animation: heroFadeIn 1.2s ease 0.3s forwards;
        }
        .hero-frame::before,
        .hero-frame::after {
            content: '';
            position: absolute;
            width: 48px;
            height: 48px;
            border-color: var(--brand-red);
            border-style: solid;
        }
        .hero-frame::before {
            top: -1px;
            left: -1px;
            border-width: 2px 0 0 2px;
        }
        .hero-frame::after {
            bottom: -1px;
            right: -1px;
            border-width: 0 2px 2px 0;
        }
        .hero-inner {
            position: relative;
            z-index: 3;
            width: 100%;
            padding: 0 0 110px;
        }
        .hero-content {
            max-width: 780px;
            position: relative;
            padding-left: 28px;
        }
        .hero-content::before {
            content: '';
            position: absolute;
            left: 0;
            top: 6px;
            bottom: 6px;
            width: 2px;
            background: linear-gradient(to bottom, var(--brand-red), rgba(230, 28, 34, 0.15));
            transform: scaleY(0);
            transform-origin: top;
            animation: heroLineGrow 1.1s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
        }
        .hero-brand {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(0.78rem, 1.4vw, 0.9rem);
            font-weight: 700;
            letter-spacing: 0.35em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.72);
            margin-bottom: 22px;
            display: block;
            opacity: 0;
            transform: translateY(18px);
            animation: heroRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.2s forwards;
        }
        .hero-title {
            font-size: clamp(2.85rem, 7.2vw, 5.4rem);
            font-weight: 900;
            text-transform: uppercase;
            letter-spacing: -0.03em;
            line-height: 0.98;
            margin-bottom: 28px;
            color: #fff;
        }
        .hero-title .line {
            display: block;
            overflow: hidden;
        }
        .hero-title .line span {
            display: block;
            opacity: 0;
            transform: translateY(110%);
            animation: heroTitleIn 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }
        .hero-title .line:nth-child(1) span { animation-delay: 0.35s; }
        .hero-title .line:nth-child(2) span {
            animation-delay: 0.5s;
            color: var(--brand-red);
        }
        .hero-lead {
            max-width: 480px;
            font-weight: 300;
            font-size: clamp(1rem, 1.6vw, 1.15rem);
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.78);
            margin-bottom: 40px;
            opacity: 0;
            transform: translateY(20px);
            animation: heroRise 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.7s forwards;
        }
        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            align-items: center;
            opacity: 0;
            transform: translateY(20px);
            animation: heroRise 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.9s forwards;
        }
        .btn-modern {
            background-color: var(--brand-red);
            color: white;
            padding: 17px 34px;
            font-size: 0.8rem;
            border-radius: 0;
            font-weight: 700;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            border: 1.5px solid var(--brand-red);
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            text-decoration: none;
            position: relative;
            overflow: hidden;
        }
        .btn-modern i {
            font-size: 0.7rem;
            transition: transform 0.35s ease;
        }
        .btn-modern:hover {
            background-color: #fff;
            color: var(--brand-dark);
            border-color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
        }
        .btn-modern:hover i {
            transform: translateX(4px);
        }
        .btn-outline-hero {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 17px 30px;
            font-size: 0.8rem;
            font-weight: 600;
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
            letter-spacing: 0.14em;
            color: #fff;
            text-decoration: none;
            border: 1.5px solid rgba(255, 255, 255, 0.35);
            border-radius: 0;
            transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(8px);
        }
        .btn-outline-hero:hover {
            background: rgba(255, 255, 255, 0.12);
            border-color: rgba(255, 255, 255, 0.85);
            color: #fff;
            transform: translateY(-3px);
        }
        .hero-scroll {
            position: absolute;
            right: clamp(24px, 5vw, 56px);
            bottom: 44px;
            z-index: 3;
            display: flex;
            align-items: center;
            gap: 14px;
            color: rgba(255, 255, 255, 0.55);
            font-size: 0.68rem;
            font-family: 'Montserrat', sans-serif;
            font-weight: 600;
            letter-spacing: 0.28em;
            text-transform: uppercase;
            text-decoration: none;
            writing-mode: vertical-rl;
            transform: rotate(180deg);
            transition: color 0.3s ease;
            opacity: 0;
            animation: heroFadeIn 1s ease 1.2s forwards;
        }
        .hero-scroll:hover {
            color: #fff;
        }
        .hero-scroll-mouse {
            width: 18px;
            height: 28px;
            border: 1.5px solid rgba(255, 255, 255, 0.45);
            border-radius: 10px;
            position: relative;
            flex-shrink: 0;
            writing-mode: horizontal-tb;
            transform: rotate(180deg);
        }
        .hero-scroll-mouse::after {
            content: '';
            position: absolute;
            top: 6px;
            left: 50%;
            width: 3px;
            height: 6px;
            margin-left: -1.5px;
            background: var(--brand-red);
            border-radius: 2px;
            animation: scrollDot 1.8s ease-in-out infinite;
        }
        @keyframes scrollDot {
            0% { opacity: 1; transform: translateY(0); }
            100% { opacity: 0; transform: translateY(10px); }
        }
        @keyframes heroRise {
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes heroTitleIn {
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes heroFadeIn {
            to { opacity: 1; }
        }
        @keyframes heroLineGrow {
            to { transform: scaleY(1); }
        }
        @media (max-width: 991.98px) {
            .hero-frame {
                inset: 16px;
            }
            .hero-inner {
                padding-bottom: 96px;
            }
            .hero-scroll {
                display: none;
            }
        }
        @media (max-width: 768px) {
            .hero-section {
                min-height: 100svh;
                align-items: center;
            }
            .hero-inner {
                padding: 100px 0 72px;
            }
            .hero-content {
                padding-left: 20px;
            }
            .hero-brand {
                letter-spacing: 0.28em;
            }
            .hero-actions {
                flex-direction: column;
                align-items: stretch;
            }
            .btn-modern,
            .btn-outline-hero {
                justify-content: center;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            .hero-media img,
            .hero-brand,
            .hero-title .line span,
            .hero-lead,
            .hero-actions,
            .hero-content::before,
            .hero-frame,
            .hero-scroll,
            .hero-scroll-mouse::after {
                animation: none !important;
                opacity: 1 !important;
                transform: none !important;
            }
            .hero-media img {
                transform: scale(1);
            }
        }

        /* Ortak bölüm stilleri */
        .section-padding {
            padding: var(--section-y) 0;
        }
        .bg-light-custom {
            background-color: var(--surface-soft);
        }
        .badge-modern {
            font-family: var(--font-display);
            font-size: 0.7rem;
            font-weight: 600;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            color: var(--brand-blue);
            margin-bottom: 16px;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: none;
            padding: 0;
            border-radius: 0;
        }
        .badge-modern::before {
            content: '';
            width: 22px;
            height: 1.5px;
            background: var(--brand-red);
            flex-shrink: 0;
        }
        .section-title {
            font-size: clamp(1.85rem, 3.5vw, 2.5rem);
            font-weight: 800;
            letter-spacing: -0.025em;
            line-height: 1.15;
            margin-bottom: 20px;
            color: var(--brand-dark);
        }

        .about-section {
            position: relative;
            padding: var(--section-y) 0;
            background: var(--surface-soft);
            overflow: hidden;
        }
        .about-shell {
            display: grid;
            grid-template-columns: minmax(260px, 0.95fr) minmax(300px, 1.05fr);
            gap: clamp(36px, 5vw, 72px);
            align-items: center;
            margin-bottom: clamp(48px, 6vw, 72px);
        }
        .about-visual {
            position: relative;
            overflow: visible;
            aspect-ratio: 4 / 5;
            max-height: 560px;
        }
        .about-visual-frame {
            position: relative;
            width: 100%;
            height: 100%;
            overflow: hidden;
            isolation: isolate;
            box-shadow: 0 32px 64px rgba(17, 17, 17, 0.14);
        }
        .about-visual-frame::before {
            content: '';
            position: absolute;
            inset: 14px;
            border: 1px solid rgba(255, 255, 255, 0.28);
            z-index: 3;
            pointer-events: none;
            opacity: 0.85;
        }
        .about-visual-accent {
            position: absolute;
            top: -12px;
            left: -12px;
            width: 42%;
            height: 42%;
            border-top: 2px solid var(--brand-red);
            border-left: 2px solid var(--brand-red);
            z-index: 0;
            pointer-events: none;
        }
        .about-visual img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 40%;
            display: block;
            filter: saturate(0.92) contrast(1.05);
            transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), filter 0.6s ease;
        }
        .about-visual:hover img {
            transform: scale(1.06);
            filter: saturate(1) contrast(1.08);
        }
        .about-visual-overlay {
            position: absolute;
            inset: 0;
            z-index: 1;
            background:
                linear-gradient(160deg, rgba(64, 58, 144, 0.18) 0%, transparent 42%),
                linear-gradient(180deg, transparent 38%, rgba(12, 11, 24, 0.72) 100%);
            pointer-events: none;
        }
        .about-visual-caption {
            position: absolute;
            left: 28px;
            right: 28px;
            bottom: 28px;
            z-index: 4;
            color: #fff;
            padding: 18px 20px;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid rgba(255, 255, 255, 0.16);
        }
        .about-visual-caption span {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.62rem;
            font-weight: 600;
            letter-spacing: 0.22em;
            text-transform: uppercase;
            opacity: 0.85;
            margin-bottom: 10px;
        }
        .about-visual-caption span::before {
            content: '';
            width: 18px;
            height: 1.5px;
            background: var(--brand-red);
            flex-shrink: 0;
        }
        .about-visual-caption strong {
            font-family: 'Montserrat', sans-serif;
            font-size: clamp(1.05rem, 1.6vw, 1.28rem);
            font-weight: 700;
            line-height: 1.35;
            display: block;
            letter-spacing: -0.015em;
        }
        .about-main {
            padding: clamp(8px, 2vw, 20px) 0 clamp(8px, 2vw, 20px) clamp(0px, 1.5vw, 20px);
            position: relative;
        }
        .about-main .section-title {
            font-size: clamp(1.9rem, 3.5vw, 2.65rem);
            margin-bottom: 22px;
            position: relative;
        }
        .about-meta {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px 18px;
            margin-bottom: 28px;
        }
        .about-meta-item {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.68rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--text-muted);
        }
        .about-meta-item strong {
            color: var(--brand-blue);
            font-weight: 800;
            letter-spacing: -0.02em;
            font-size: 0.95rem;
        }
        .about-meta-dot {
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--brand-red);
            opacity: 0.7;
        }
        .about-copy > p {
            color: var(--text-body);
            font-size: 0.98rem;
            line-height: 1.85;
            margin-bottom: 1rem;
            max-width: 500px;
        }
        .about-copy > p strong {
            color: var(--brand-dark);
            font-weight: 600;
        }
        .about-quote {
            position: relative;
            margin: 32px 0 0;
            padding: 28px 24px 24px;
            border: none;
            border-top: none;
            max-width: 460px;
            background: linear-gradient(135deg, rgba(64, 58, 144, 0.06), rgba(230, 28, 34, 0.04));
        }
        .about-quote::before {
            content: '“';
            position: absolute;
            top: 10px;
            left: 18px;
            font-family: 'Montserrat', sans-serif;
            font-size: 3.5rem;
            font-weight: 900;
            line-height: 1;
            color: var(--brand-red);
            opacity: 0.35;
            pointer-events: none;
        }
        .about-quote p {
            font-family: 'Montserrat', sans-serif;
            font-size: 1.05rem;
            font-weight: 600;
            font-style: normal;
            color: var(--brand-blue);
            line-height: 1.55;
            margin: 0;
            position: relative;
            padding-left: 0;
            padding-top: 18px;
        }
        .about-quote p::before {
            display: none;
        }
        .about-more {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            margin-top: 28px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.72rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            text-transform: uppercase;
            text-decoration: none;
            color: var(--brand-blue);
            transition: color 0.3s ease, gap 0.3s ease;
        }
        .about-more:hover {
            color: var(--brand-red);
            gap: 14px;
        }

        .about-metrics {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0;
            background: var(--gradient-brand);
            border: none;
            box-shadow: none;
            position: relative;
            overflow: hidden;
        }
        .about-metrics::before {
            content: '';
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 50% 80% at 0% 100%, rgba(230, 28, 34, 0.18), transparent 55%),
                radial-gradient(ellipse 40% 60% at 100% 0%, rgba(255, 255, 255, 0.06), transparent 50%);
            pointer-events: none;
        }
        .metric-item {
            position: relative;
            z-index: 1;
            padding: clamp(36px, 4.5vw, 52px) clamp(22px, 3vw, 40px);
            text-align: left;
            transition: background 0.35s ease;
        }
        .metric-item:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 30%;
            right: 0;
            width: 1px;
            height: 40%;
            background: rgba(255, 255, 255, 0.12);
        }
        .metric-item:hover {
            background: rgba(255, 255, 255, 0.04);
        }
        .metric-index {
            display: block;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.65rem;
            font-weight: 600;
            letter-spacing: 0.18em;
            color: rgba(255, 255, 255, 0.4);
            margin-bottom: 18px;
        }
        .metric-index em {
            font-style: normal;
            color: var(--brand-red);
        }
        .metric-item .stat-number {
            font-size: clamp(2.1rem, 3.2vw, 3rem);
            font-family: 'Montserrat', sans-serif;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            margin-bottom: 14px;
            letter-spacing: -0.04em;
            display: block;
        }
        .metric-item .stat-text {
            font-family: 'Montserrat', sans-serif;
            font-size: 0.68rem;
            font-weight: 500;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.55);
            line-height: 1.55;
            display: block;
            max-width: 170px;
            padding-top: 12px;
            border-top: 1px solid rgba(255, 255, 255, 0.12);
        }
        .metric-label {
            display: none;
        }

        @media (max-width: 991.98px) {
            .about-shell {
                grid-template-columns: 1fr;
                gap: 36px;
                margin-bottom: 40px;
            }
            .about-visual {
                aspect-ratio: 16 / 10;
                max-height: 380px;
            }
            .about-main {
                padding: 0;
            }
            .about-metrics {
                grid-template-columns: 1fr 1fr;
            }
            .metric-item:nth-child(2)::after {
                display: none;
            }
            .metric-item:nth-child(1),
            .metric-item:nth-child(2) {
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }
        }
        @media (max-width: 575.98px) {
            .about-metrics {
                grid-template-columns: 1fr 1fr;
            }
            .metric-item {
                padding: 28px 20px;
            }
            .about-visual {
                aspect-ratio: 4 / 3;
                max-height: 300px;
            }
        }

        /* Projeler Galeri Stili */
        .projects-section {
            padding: var(--section-y) 0;
            background: var(--surface);
            position: relative;
        }
        .projects-header {
            display: flex;
            flex-wrap: wrap;
            align-items: flex-end;
            justify-content: space-between;
            gap: 20px 40px;
            margin-bottom: 40px;
            padding-bottom: 28px;
            border-bottom: 1px solid var(--border-subtle);
            position: relative;
        }
        .projects-header::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -1px;
            width: 64px;
            height: 2px;
            background: var(--brand-red);
        }
        .projects-header-copy {
            max-width: 540px;
        }
        .projects-header-copy .section-title {
            margin-bottom: 0;
        }
        .projects-header-copy p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            margin: 14px 0 0;
            max-width: 400px;
        }
        .projects-footer .btn-modern,
        .projects-header .projects-link {
            background: transparent;
            border: none;
            color: var(--brand-blue);
            padding: 0;
            font-size: 0.78rem;
            letter-spacing: 0.14em;
            box-shadow: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
            font-family: 'Montserrat', sans-serif;
            font-weight: 700;
            text-transform: uppercase;
            transition: color 0.3s ease, gap 0.3s ease;
        }
        .projects-header .projects-link:hover,
        .projects-footer .btn-modern:hover {
            color: var(--brand-red);
            gap: 14px;
            background: transparent;
            border: none;
            transform: none;
            box-shadow: none;
        }
        .projects-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: clamp(20px, 2.5vw, 28px);
        }
        .project-item {
            position: relative;
            border-radius: 0;
            overflow: hidden;
            box-shadow: none;
            background: transparent;
            display: block;
            height: auto;
            text-decoration: none;
            color: inherit;
            transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
        }
        .project-item:hover {
            transform: translateY(-4px);
            box-shadow: none;
        }
        .project-media {
            position: relative;
            overflow: hidden;
            aspect-ratio: 3 / 4;
            background: #eceaf2;
        }
        .project-item:nth-child(2) .project-media,
        .project-item:nth-child(3) .project-media {
            aspect-ratio: 3 / 4;
            margin-top: 0;
        }
        .project-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1), filter 0.5s ease;
            filter: saturate(0.9) contrast(1.03) brightness(0.98);
        }
        .project-item:hover img {
            transform: scale(1.05);
            filter: saturate(1) contrast(1.05) brightness(1);
        }
        .project-media::after {
            content: '';
            position: absolute;
            inset: 0;
            background:
                linear-gradient(180deg, rgba(17, 17, 17, 0.08) 0%, transparent 28%),
                linear-gradient(180deg, transparent 42%, rgba(12, 11, 24, 0.82) 100%);
            pointer-events: none;
            transition: opacity 0.35s ease;
        }
        .project-tag {
            position: absolute;
            top: 20px;
            left: 20px;
            z-index: 2;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.62rem;
            font-weight: 600;
            letter-spacing: 0.16em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.85);
            background: none;
            backdrop-filter: none;
            border: none;
            padding: 0;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }
        .project-tag::before {
            content: '';
            width: 16px;
            height: 1.5px;
            background: var(--brand-red);
        }
        .project-body {
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: 2;
            padding: 28px 22px 24px;
            display: block;
            border-top: none;
            background: none;
        }
        .project-body h3 {
            font-size: clamp(1.05rem, 1.5vw, 1.25rem);
            font-weight: 700;
            color: #fff;
            margin: 0 0 8px;
            letter-spacing: -0.02em;
            line-height: 1.3;
        }
        .project-loc {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.68rem;
            font-weight: 500;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, 0.62);
        }
        .project-loc i {
            color: var(--brand-red);
            font-size: 0.65rem;
        }
        .project-link {
            position: absolute;
            right: 20px;
            bottom: 24px;
            z-index: 3;
            width: 42px;
            height: 42px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border: 1px solid rgba(255, 255, 255, 0.28);
            color: #fff;
            text-decoration: none;
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            opacity: 0;
            transform: translateY(8px);
            transition: opacity 0.35s ease, transform 0.35s ease, background 0.3s ease, border-color 0.3s ease;
        }
        .project-item:hover .project-link {
            opacity: 1;
            transform: translateY(0);
        }
        .project-link:hover {
            background: var(--brand-red);
            border-color: var(--brand-red);
            color: #fff;
        }
        .projects-footer {
            display: flex;
            justify-content: center;
            margin-top: 40px;
        }

        @media (max-width: 991.98px) {
            .projects-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }
            .project-item:nth-child(2) .project-media,
            .project-item:nth-child(3) .project-media,
            .project-media {
                aspect-ratio: 16 / 11;
                margin-top: 0;
            }
            .project-link {
                opacity: 1;
                transform: none;
            }
        }

        /* Hizmetler */
        .services-section {
            padding: var(--section-y) 0;
            background: var(--surface-soft);
            position: relative;
        }
        .services-header {
            display: block;
            margin-bottom: 40px;
            padding: 0 0 28px;
            border-bottom: 1px solid var(--border-subtle);
            position: relative;
        }
        .services-header::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -1px;
            width: 64px;
            height: 2px;
            background: var(--brand-red);
        }
        .services-header-copy {
            max-width: 560px;
        }
        .services-header .section-title {
            margin-bottom: 12px;
        }
        .services-header p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.7;
            margin: 0;
            max-width: 440px;
        }
        .services-grid {
            display: grid;
            grid-template-columns: repeat(2, minmax(0, 1fr));
            gap: 24px;
        }
        .service-card {
            display: flex;
            flex-direction: column;
            background: var(--surface);
            text-decoration: none;
            color: inherit;
            overflow: hidden;
            min-height: 0;
            box-shadow: var(--shadow-soft);
            transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
        }
        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 18px 40px rgba(17, 17, 17, 0.09);
        }
        .service-card-media {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 10;
            width: 100%;
            min-height: 0;
        }
        .service-card-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
            filter: saturate(0.92) contrast(1.03);
        }
        .service-card:hover .service-card-media img {
            transform: scale(1.05);
        }
        .service-card-media::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(160deg, rgba(64, 58, 144, 0.22), transparent 50%);
            pointer-events: none;
        }
        .service-num {
            position: absolute;
            top: 16px;
            left: 16px;
            z-index: 2;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.14em;
            color: #fff;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            margin: 0;
        }
        .service-num::before {
            content: '';
            width: 14px;
            height: 1.5px;
            background: var(--brand-red);
        }
        .service-card-body {
            padding: 24px 24px 26px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .service-card-body .service-icon {
            width: 36px;
            height: 36px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--brand-blue);
            font-size: 0.9rem;
            background: rgba(64, 58, 144, 0.07);
            margin-bottom: 14px;
            transition: background 0.3s ease, color 0.3s ease;
        }
        .service-card:hover .service-icon {
            background: var(--brand-red);
            color: #fff;
        }
        .service-card-body h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin: 0 0 8px;
            color: var(--brand-dark);
            letter-spacing: -0.02em;
            line-height: 1.3;
        }
        .service-card-body p {
            color: var(--text-muted);
            font-size: 0.88rem;
            line-height: 1.65;
            margin: 0 0 18px;
            flex: 1;
        }
        .service-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-family: 'Montserrat', sans-serif;
            font-size: 0.68rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            color: var(--brand-blue);
            transition: color 0.3s ease, gap 0.3s ease;
        }
        .service-card:hover .service-more {
            color: var(--brand-red);
            gap: 12px;
        }
        @media (max-width: 991.98px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                max-width: 560px;
            }
        }
        @media (max-width: 575.98px) {
            .services-section {
                padding: 72px 0;
            }
            .service-card-body {
                padding: 20px;
            }
            .service-card-media {
                aspect-ratio: 16 / 11;
            }
        }

        /* CTA Band */
        .cta-band {
            position: relative;
            padding: clamp(80px, 10vw, 120px) 0;
            overflow: hidden;
            background: var(--brand-dark);
            color: #fff;
        }
        .cta-band-bg {
            position: absolute;
            inset: 0;
            background:
                linear-gradient(115deg, rgba(17, 17, 17, 0.92) 0%, rgba(64, 58, 144, 0.78) 50%, rgba(17, 17, 17, 0.85) 100%),
                url('../img/hero.png') center/cover no-repeat;
        }
        .cta-band .container {
            position: relative;
            z-index: 1;
            display: flex;
            flex-wrap: wrap;
            align-items: flex-end;
            justify-content: space-between;
            gap: 32px;
        }
        .cta-band-copy {
            max-width: 560px;
        }
        .cta-band-copy .badge-modern {
            color: rgba(255, 255, 255, 0.7);
        }
        .cta-band-copy .badge-modern::before {
            background: var(--brand-red);
        }
        .cta-band-copy .section-title {
            color: #fff;
            margin-bottom: 14px;
        }
        .cta-band-copy p {
            color: rgba(255, 255, 255, 0.72);
            font-size: 1rem;
            line-height: 1.7;
            margin: 0;
            max-width: 460px;
        }
        .cta-band .btn-modern {
            flex-shrink: 0;
            background: var(--brand-red);
            border-color: var(--brand-red);
        }
        .cta-band .btn-modern:hover {
            background: #fff;
            border-color: #fff;
            color: var(--brand-dark);
        }
        @media (max-width: 575.98px) {
            .cta-band .container {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        /* Footer */
        footer {
            background: var(--gradient-brand);
            color: rgba(255,255,255,0.82);
            padding: clamp(72px, 9vw, 100px) 0 36px;
            position: relative;
        }
        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 2px;
            background: var(--brand-red);
        }
        footer h5 {
            font-family: var(--font-display);
            font-size: 0.85rem;
            font-weight: 700;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            margin-bottom: 1.4rem !important;
        }
        footer a.text-white-50 {
            transition: color 0.3s ease;
        }
        footer a.text-white-50:hover,
        footer .hover-white:hover {
            color: #fff !important;
        }
        footer .text-danger {
            color: var(--brand-red) !important;
        }
        .footer-logo {
            filter: brightness(0) invert(1);
            max-height: 64px;
            margin-bottom: 22px;
        }
        .social-icons {
            display: flex;
            gap: 10px;
        }
        .social-icons a {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            background: rgba(255,255,255,0.1);
            color: white;
            border-radius: 0;
            margin-right: 0;
            transition: background 0.3s ease, transform 0.3s ease;
            text-decoration: none;
        }
        .social-icons a:hover {
            background: var(--brand-red);
            transform: translateY(-3px);
            color: #fff;
        }


/* Proje kartları link olarak */
a.project-item {
    text-decoration: none;
    color: inherit;
}

/* Aktaş İnşaat güvencesi */
.aktas-band {
    background: var(--surface);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 28px 0;
}
.aktas-band-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px 28px;
}
.aktas-band-label {
    font-family: var(--font-display), 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--brand-red);
}
.aktas-band-divider {
    width: 1px;
    height: 28px;
    background: var(--border-subtle);
}
.aktas-logo {
    max-height: 42px;
    width: auto;
    display: block;
    object-fit: contain;
}
.aktas-band-text {
    margin: 0;
    font-family: var(--font-display), 'Montserrat', sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--brand-blue);
    letter-spacing: -0.01em;
}
.aktas-compact {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
    padding: 14px 16px;
    background: #fff;
    border: 1px solid var(--border-subtle);
    max-width: 100%;
}
.aktas-logo-sm {
    max-height: 34px;
    width: auto;
    display: block;
    object-fit: contain;
}
.aktas-compact span {
    font-family: var(--font-display), 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brand-blue);
    letter-spacing: 0.02em;
}
.aktas-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.aktas-footer-label {
    font-family: var(--font-display), 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
.aktas-logo-footer {
    max-height: 48px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.92;
}
@media (max-width: 575.98px) {
    .aktas-band-inner {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    .aktas-band-divider {
        width: 40px;
        height: 1px;
    }
    .aktas-compact {
        width: 100%;
    }
}
