/* Genel Font */
body {
    font-family: "Figtree", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    background-color: #f8f9fa;
}


#peal-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #ffffff; /* Arka plan rengi */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 999999; /* En üstte durması için devasa bir değer */
    transition: opacity 0.6s ease, visibility 0.6s;
}

.logo-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.peal-static-logo {
    width: 100px; /* Logonun büyüklüğü */
    height: auto;
    z-index: 10;
    animation: pulse-effect 2s infinite ease-in-out;
}

.peal-spinning-ring {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 3px solid rgba(37, 99, 235, 0.1); /* Silik halka */
    border-top: 3px solid #020617; /* Dönen renkli kısım */
    border-radius: 50%;
    animation: spin-loop 1s linear infinite;
}

.loader-text {
    margin-top: 25px;
    font-family: sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #1e293b;
    text-transform: uppercase;
}

/* Animasyonlar */
@keyframes spin-loop {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes pulse-effect {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.08); opacity: 1; }
}

/* Kapanış klası */
.loader-hidden {
    opacity: 0;
    visibility: hidden;
}


:root {
        --gl-bg: #030612;
        --gl-accent: #3d5afe;
        --gl-glass: rgba(255, 255, 255, 0.03);
        --gl-border: rgba(255, 255, 255, 0.08);
    }

    .px-glass-hero {
        background-color: var(--gl-bg);
        background-image: 
            radial-gradient(circle at 0% 0%, rgba(61, 90, 254, 0.15) 0%, transparent 40%),
            radial-gradient(circle at 100% 100%, rgba(61, 90, 254, 0.1) 0%, transparent 40%);
        min-height: 90vh;
        display: flex;
        align-items: center;
        padding: 100px 0;
        font-family: 'Outfit', sans-serif;
        color: #fff;
        overflow: hidden;
        position: relative;
    }

    /* Animasyonlu Arka Plan Elemanları */
    .px-floating-blur {
        position: absolute;
        width: 400px;
        height: 400px;
        background: var(--gl-accent);
        filter: blur(150px);
        opacity: 0.2;
        border-radius: 50%;
        z-index: 1;
        animation: float-blur 20s infinite alternate;
    }

    @keyframes float-blur {
        from { transform: translate(-20%, -20%); }
        to { transform: translate(20%, 20%); }
    }

    .container { position: relative; z-index: 10; }

    /* Teknik Badge */
    .px-tech-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--gl-glass);
        border: 1px solid var(--gl-border);
        padding: 8px 16px;
        border-radius: 100px;
        font-family: 'JetBrains Mono', monospace;
        font-size: 11px;
        color: #8a94ad;
        margin-bottom: 30px;
        backdrop-filter: blur(10px);
    }

    /* Başlık: Bold ve Gradient */
    .px-hero-main-title {
        font-size: clamp(2.8rem, 7vw, 5.8rem);
        font-weight: 900;
        line-height: 1;
        letter-spacing: -0.04em;
        margin-bottom: 30px;
    }

    .px-hero-main-title span {
        background: linear-gradient(to right, #fff 20%, #7d89b0 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .px-hero-subtext {
        font-size: 1.25rem;
        color: #8a94ad;
        max-width: 650px;
        line-height: 1.6;
        margin-bottom: 50px;
    }

    /* Glass Action Box (Görsel 4'teki yapının elit hali) */
    .px-glass-form {
        display: flex;
        background: var(--gl-glass);
        border: 1px solid var(--gl-border);
        padding: 8px;
        border-radius: 16px;
        backdrop-filter: blur(20px);
        max-width: 520px;
        transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .px-glass-form:focus-within {
        border-color: var(--gl-accent);
        box-shadow: 0 0 40px rgba(61, 90, 254, 0.2);
    }

    .px-glass-input {
        flex: 1;
        background: transparent;
        border: none;
        padding: 15px 20px;
        color: #fff;
        outline: none;
        font-size: 1rem;
    }

    .px-glass-btn {
        background: var(--gl-accent);
        color: #fff;
        border: none;
        padding: 0 30px;
        border-radius: 12px;
        font-weight: 700;
        font-size: 0.9rem;
        transition: 0.3s;
        cursor: pointer;
    }

    .px-glass-btn:hover {
        background: #fff;
        color: var(--gl-accent);
    }

    /* Side Stats (Sağ tarafta duran ciddi metrikler) */
    .px-side-stat {
        background: var(--gl-glass);
        border: 1px solid var(--gl-border);
        padding: 24px;
        border-radius: 20px;
        backdrop-filter: blur(10px);
        margin-bottom: 20px;
        transition: 0.3s;
    }

    .px-side-stat:hover {
        transform: translateX(-10px);
        background: rgba(255,255,255,0.05);
    }

    .px-stat-num {
        display: block;
        font-size: 2rem;
        font-weight: 800;
        color: var(--gl-accent);
        margin-bottom: 4px;
    }

    .px-stat-label {
        font-size: 12px;
        text-transform: uppercase;
        color: #8a94ad;
        font-weight: 700;
        letter-spacing: 1px;
    }

    @media (max-width: 992px) {
        .px-glass-form { flex-direction: column; gap: 10px; }
        .px-glass-btn { padding: 18px; }
    }

/* 1. Üst Bar Arka Planı */
:root {
        --px-dark: #050505;
        --px-blue: #2563eb;
        --px-border: rgba(255, 255, 255, 0.1);
    }

    /* --- TOP BAR (Beyaz) --- */
    .px-top-bar {
        background: #ffffff;
        border-bottom: 1px solid #eee;
        padding: 8px 0;
        font-family: 'Inter', sans-serif;
    }
    .px-top-flex {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        justify-content: flex-end;
        gap: 25px;
        padding: 0 20px;
    }
    .px-top-bar a {
        text-decoration: none;
        color: #666;
        font-size: 12px;
        font-weight: 600;
    }

    /* --- NAVBAR (Koyu) --- */
    .px-navbar {
        background: var(--px-dark);
        padding: 15px 0;
        position: sticky;
        top: 0;
        z-index: 9999; /* Çok yüksek tutuyoruz ki her şeyin üstünde kalsın */
        border-bottom: 1px solid var(--px-border);
        font-family: 'Inter', sans-serif;
    }
    .px-nav-flex {
        max-width: 1400px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 20px;
    }

    .px-logo {
      
        font-size: 1.4rem;
        color: #fff;
        text-decoration: none;
        letter-spacing: -1px;
    }

    /* Masaüstü Menü (Geniş ekranlarda görünür) */
    .px-desktop-menu {
        display: flex;
        gap: 30px;
    }
    .px-desktop-menu a {
        color: rgba(255,255,255,0.7);
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        transition: 0.3s;
    }
    .px-desktop-menu a:hover { color: #fff; }

    /* Hamburger Butonu */
    .px-hamburger {
        display: none; /* Masaüstünde gizli */
        background: none;
        border: none;
        color: #fff;
        font-size: 2rem;
        cursor: pointer;
    }

    /* --- MOBİL OVERLAY (SAĞDAN GELEN PANEL) --- */
    .px-mobile-panel {
        position: fixed;
        top: 0;
        right: -100%; /* Gizli */
        width: 100%;
        height: 100vh;
        background: var(--px-dark);
        z-index: 10000; /* Navbar'dan da üstte */
        transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        display: flex;
        flex-direction: column;
        padding: 40px;
    }
    .px-mobile-panel.show {
        right: 0; /* Açık */
    }

    .px-close-btn {
        align-self: flex-end;
        background: none;
        border: none;
        color: #fff;
        font-size: 2.5rem;
        margin-bottom: 30px;
    }

    .px-mobile-links {
        display: flex;
        flex-direction: column;
        gap: 25px;
    }
    .px-mobile-links a {
        color: #fff;
        font-size: 1.8rem;
        font-weight: 700;
        text-decoration: none;
        border-bottom: 1px solid var(--px-border);
        padding-bottom: 10px;
    }

    .px-mobile-cta {
        margin-top: 40px;
        background: var(--px-blue);
        color: #fff;
        text-align: center;
        padding: 15px;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 800;
    }

    /* RESPONSIVE KURALLARI */
    @media (max-width: 992px) {
        .px-desktop-menu, .px-top-bar, .px-nav-actions-desktop { display: none; }
        .px-hamburger { display: block; }
    }

    .px-nav-actions-desktop { display: flex; gap: 15px; }
    .px-btn-demo-nav {
        background: #fff; color: #000; padding: 8px 20px; border-radius: 4px; font-weight: 700; text-decoration: none; font-size: 13px;
    }

/* Video Kapsayıcısı */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 1; /* En altta duracak */
}

/* Videonun Kendisi */
.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Videoyu sündürmeden alanı doldurur */
}

/* Karartma Perdesi (Overlay) */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 29, 64, 0.7); /* Lacivert şeffaf perde */
    /* Eğer siyah istersen: background: rgba(0, 0, 0, 0.6); */
    z-index: 2;
}

/* Input Alanı İyileştirmesi (Cam efekti için) */
.input-container input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

/* Başlık Küçültüldü (display-3 yerine daha kontrollü bir boyut) */
h1 {
    font-size: 2.8rem; /* Daha küçük ve kibar */
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.lead {
    font-size: 1rem; /* Metin boyutu küçültüldü */
    max-width: 400px; /* Metin bloğu daraltıldı */
}

.tracking-widest {
    letter-spacing: 0.15rem;
    font-size: 0.75rem;
}

/* Input ve Button Alanı (Daha dar ve ince) */
.input-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    max-width: 380px; /* Genişlik azaltıldı */
    padding: 4px 4px 4px 15px !important; /* İç boşluklar daraltıldı */
}

.form-control {
    font-size: 0.9rem;
}

.btn-orange {
    background-color: #ff4500;
    color: white;
    font-weight: 500;
    font-size: 0.85rem; /* Buton yazısı küçültüldü */
    padding: 8px 20px !important;
    transition: 0.3s;
}

/* Sağ Taraftaki Kartlar (Ölçek küçültüldü) */
.main-image-wrapper {
    position: relative;
    height: 400px; /* Alan yüksekliği azaltıldı */
    width: 100%;
    transform: scale(0.9); /* Tüm sağ tarafı %10 oranında küçültür */
}

.custom-card {
    position: absolute;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    padding: 8px 12px;
    font-size: 0.75rem; /* Kart içindeki yazılar küçüldü */
    box-shadow: 0 8px 25px rgba(0,0,0,0.4);
}

/* Kartların Konumları ve Yeni Boyutları */
.card-cdp { top: 15%; right: 35%; min-width: 140px; }
.card-ai { top: 45%; right: 15%; width: 160px; }
.card-journey { bottom: 15%; right: 25%; min-width: 180px; }

.avatar {
    width: 24px; height: 24px; /* Avatar küçültüldü */
    background: #555; border-radius: 50%;
}

.placeholder-line {
    height: 6px; background: rgba(255,255,255,0.15); border-radius: 3px;
}

.icon-circle {
    width: 20px; height: 20px; border-radius: 50%; background: #031f44;
}

/* Logo Alanı Küçültme */
.grayscale {
    filter: grayscale(1);
    font-size: 0.8rem;
    gap: 30px !important;
}
/* Input ve Button Alanı - Tek satırda tam sığması için */
.input-container {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    max-width: 420px; /* Yazı yan yana gelsin diye çok az genişlettik */
    padding: 4px 4px 4px 15px !important;
    display: flex; /* İçerikleri yan yana zorlar */
    align-items: center;
}

.form-control {
    font-size: 0.85rem;
    flex: 1; /* Input'un kalan boşluğu doldurmasını sağlar */
}

.btn-orange {
    background-color: #031f44;
    color: white;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 8px 18px !important;
    border-radius: 50px;
    border: none;
    white-space: nowrap; /* Yazının asla alt satıra inmemesini sağlar */
    flex-shrink: 0; /* Butonun sıkışmasını engeller */
    transition: 0.3s;
}

.btn-orange:hover {
    background-color: #3d0505;
    transform: translateY(-1px);
}


.color-dark-blue {
    color: #0d1b3e; /* Başlıklardaki koyu lacivert tonu */
}

.solution-section {
    padding: 80px 0;
}

/* Sol Taraftaki Görsel Kutusu */
.image-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.image-wrapper:hover {
    transform: translateY(-5px);
}

/* Sağ Taraftaki Uzmanlık Kutucukları */
.expertise-item {
    background-color: #ebf0f7; /* Hafif mavimsi gri kutular */
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: #1e2d50;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.expertise-item i {
    color: #1e2d50; /* İkon rengi */
    font-size: 1.1rem;
}

.expertise-item:hover {
    background-color: #1e2d50;
    color: #fff;
}

.expertise-item:hover i {
    color: #fff;
}

/* Responsive Düzenlemeler */
@media (max-width: 991px) {
    .solution-section {
        text-align: center;
    }
    .expertise-item {
        justify-content: center;
        width: 100%;
    }
}

.about-section {
        padding: 80px 0;
        font-family: 'Inter', sans-serif;
    }

    .section-title {
        color: var(--peal-dark);
        font-weight: 800;
        letter-spacing: -1px;
    }

    .text-gradient {
        background: linear-gradient(45deg, var(--peal-primary), var(--peal-accent));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .milestone-card {
        border: none;
        border-left: 4px solid var(--peal-primary);
        background: #f8f9fa;
        transition: transform 0.3s ease;
    }

    .milestone-card:hover {
        transform: translateY(-5px);
        background: #ffffff;
        box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    }

    .value-box {
        border-radius: 20px;
        border: 1px solid rgba(0,0,0,0.05);
        padding: 40px;
        height: 100%;
        transition: all 0.3s ease;
    }

    .value-box:hover {
        border-color: var(--peal-primary);
        box-shadow: 0 10px 40px rgba(59, 130, 246, 0.1);
    }

    .leader-img {
        width: 100%;
        border-radius: 20px;
        filter: grayscale(100%);
        transition: filter 0.3s ease;
    }

    .leader-img:hover {
        filter: grayscale(0%);
    }

    .leader-card {
        padding: 40px 20px;
        border-radius: 20px;
        background: #fff;
        border: 1px solid rgba(0,0,0,0.05);
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .leader-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.08);
        border-color: #3b82f6;
    }

    /* Karışıklığı önlemek için yeni isim */
    .team-img-container {
        width: 160px;
        height: 160px;
        margin: 0 auto 25px;
        position: relative;
        z-index: 1;
    }

    .leader-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
        filter: grayscale(100%);
        transition: all 0.4s ease;
        border: 4px solid #f8f9fa; /* Hafif bir çerçeve */
    }

    .leader-card:hover .leader-img {
        filter: grayscale(0%);
        border-color: #3b82f6;
        transform: scale(1.05);
    }

    .leader-role {
        color: #3b82f6;
        font-size: 0.85rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 10px;
    }

    .leader-name {
        color: #051139;
        font-weight: 800;
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .leader-bio {
        font-size: 0.9rem;
        color: #6c757d;
        line-height: 1.6;
    }


    .peal-capabilities {
        padding: 100px 0;
        background: #ffffff;
    }

    .capability-row {
        margin-bottom: 120px;
        align-items: center;
    }

    .capability-row:last-child {
        margin-bottom: 0;
    }

    /* İkon ve Görsel Alanı */
    .capability-image-box {
        position: relative;
        padding: 40px;
        background: #f8faff;
        border-radius: 40px;
        overflow: hidden;
        transition: all 0.5s ease;
    }

    .capability-image-box:hover {
        transform: scale(1.02);
        box-shadow: 0 40px 80px rgba(5, 17, 57, 0.1);
    }

    .capability-badge {
        display: inline-block;
        padding: 8px 20px;
        background: rgba(59, 130, 246, 0.1);
        color: #3b82f6;
        border-radius: 50px;
        font-weight: 700;
        font-size: 0.85rem;
        margin-bottom: 20px;
        letter-spacing: 1px;
    }

    .capability-title {
        font-size: 2.8rem;
        font-weight: 800;
        color: #051139;
        margin-bottom: 25px;
        line-height: 1.2;
    }

    .capability-text {
        font-size: 1.1rem;
        color: #64748b;
        line-height: 1.8;
        margin-bottom: 30px;
    }

    .feature-point {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-bottom: 15px;
        font-weight: 600;
        color: #051139;
    }

    .feature-point i {
        color: #3b82f6;
        font-size: 1.2rem;
    }

    /* Görsel içindeki dekoratif elementler */
    .deco-circle {
        position: absolute;
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
        top: -100px;
        right: -100px;
        z-index: 0;
    }

    .client-logos {
        padding: 60px 0;
        border-top: 1px solid #eee;
        border-bottom: 1px solid #eee;
        background: #fff;
    }
    .client-logos img {
        max-width: 140px;
        filter: grayscale(100%);
        opacity: 0.6;
        transition: all 0.3s ease;
    }
    .client-logos img:hover {
        filter: grayscale(0%);
        opacity: 1;
    }

    /* Integration Section */
    .integration-box {
        background: radial-gradient(circle at top right, #f8faff, #ffffff);
        border-radius: 40px;
        padding: 80px 0;
    }
    .integration-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 30px;
        align-items: center;
        text-align: center;
    }
    .integration-icon {
        width: 70px;
        height: 70px;
        padding: 15px;
        background: white;
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        border-radius: 18px;
        margin: 0 auto;
    }

    .peal-footer {
        background-color: #0d0d0d;
        color: #ffffff;
        padding: 80px 0 40px;
        font-family: 'Inter', sans-serif;
    }

    /* Üst Kayıt Alanı ve Sertifikalar */
    .footer-top-cta {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        padding-bottom: 50px;
        margin-bottom: 50px;
    }

    .trust-badges img {
        height: 45px;
        margin-right: 15px;
        margin-bottom: 15px;
        opacity: 0.8;
        transition: opacity 0.3s;
    }

    .trust-badges img:hover { opacity: 1; }

    .footer-form-container {
        background: rgba(255,255,255,0.05);
        padding: 10px;
        border-radius: 50px;
        border: 1px solid rgba(255,255,255,0.1);
    }

    .footer-input {
        background: transparent !important;
        border: none !important;
        color: white !important;
        box-shadow: none !important;
    }

    .footer-input::placeholder { color: rgba(255,255,255,0.5); }

    /* Link Grupları */
    .footer-title {
        font-size: 0.85rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        margin-bottom: 25px;
        color: #ffffff;
    }

    .footer-links-list {
        list-style: none;
        padding: 0;
    }

    .footer-links-list li { margin-bottom: 12px; }

    .footer-links-list a {
        color: rgba(255,255,255,0.6);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s;
    }

    .footer-links-list a:hover { color: #3b82f6; }

    /* Alt Kısım (Guides) */
    .essential-guides {
        border-top: 1px solid rgba(255,255,255,0.1);
        padding-top: 30px;
        margin-top: 40px;
    }

    .guide-link {
        font-size: 0.75rem;
        color: rgba(255,255,255,0.4);
        text-decoration: none;
        margin-right: 20px;
        transition: color 0.3s;
    }

    .guide-link:hover { color: white; }

    .fs-wrapper {
        font-family: 'Inter', sans-serif;
        color: #051139;
        overflow: hidden;
    }

    /* 1. Finansal Hero Alanı */
    .fs-hero {
        padding: 120px 0;
        background: linear-gradient(135deg, #f8faff 0%, #e0e7ff 100%);
        position: relative;
    }

    .fs-hero-badge {
        display: inline-block;
        padding: 10px 24px;
        background: #ffffff;
        border-radius: 100px;
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.1);
        font-weight: 700;
        color: #3b82f6;
        font-size: 0.85rem;
        margin-bottom: 30px;
    }

    /* 2. Veri ve Güvenlik Grid */
    .fs-grid-section {
        padding: 100px 0;
        background: #ffffff;
    }

    .fs-feature-card {
        padding: 40px;
        border-radius: 30px;
        background: #ffffff;
        border: 1px solid #edf2f7;
        transition: all 0.4s ease;
        height: 100%;
    }

    .fs-feature-card:hover {
        border-color: #3b82f6;
        box-shadow: 0 30px 60px rgba(5, 17, 57, 0.05);
        transform: translateY(-10px);
    }

    /* 3. Dark "Compliance" Section */
    .fs-dark-panel {
        background: #051139;
        color: #ffffff;
        padding: 100px 0;
        border-radius: 60px;
        margin: 0 20px;
    }

    /* 4. Stat Numbers */
    .fs-stat-box {
        text-align: center;
        padding: 40px;
        border-right: 1px solid rgba(255,255,255,0.1);
    }

    .fs-stat-number {
        font-size: 3.5rem;
        font-weight: 800;
        color: #3b82f6;
        display: block;
    }

    /* Görsel Alanları */
    .fs-mockup-container {
        position: relative;
        z-index: 2;
    }

    .fs-floating-card {
        position: absolute;
        background: #ffffff;
        padding: 20px;
        border-radius: 20px;
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        z-index: 3;
        animation: float 4s ease-in-out infinite;
    }

    @keyframes float {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-20px); }
    }

    .global-map-section {
        background: #051139;
        color: white;
        padding: 100px 0;
        position: relative;
    }

    .data-node {
        padding: 20px;
        background: rgba(255,255,255,0.05);
        border-radius: 15px;
        border: 1px solid rgba(255,255,255,0.1);
        transition: 0.3s;
    }

    .data-node:hover {
        background: rgba(59, 130, 246, 0.2);
        border-color: #3b82f6;
    }

    /* 2. Developer / API Section */
    .dev-section {
        padding: 100px 0;
        background: #fdfdfd;
    }

    .code-window {
        background: #1e1e1e;
        border-radius: 15px;
        padding: 20px;
        box-shadow: 0 20px 50px rgba(0,0,0,0.3);
        font-family: 'Courier New', Courier, monospace;
    }

    /* 3. High-End Testimonial */
    .premium-quote {
        border-left: 5px solid #3b82f6;
        padding-left: 30px;
        font-style: italic;
        font-size: 1.5rem;
        color: #051139;
    }

    /* Global AI Section Styles */
    .peals-ai-section {
        font-family: 'Inter', sans-serif;
        color: #051139;
        overflow: hidden;
        padding: 120px 0;
        background: radial-gradient(circle at top left, #e0e7ff 0%, #f8faff 100%);
    }

    /* AI Hero Specifics */
    .ai-hero-title {
        font-size: 4rem;
        font-weight: 900;
        line-height: 1.1;
        background: linear-gradient(135deg, #051139 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    /* AI Feature Grid */
    .ai-feature-box {
        background: #ffffff;
        border-radius: 25px;
        padding: 40px;
        border: 1px solid #e1e8ed;
        transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
        height: 100%;
    }

    .ai-feature-box:hover {
        transform: translateY(-12px);
        box-shadow: 0 30px 60px rgba(59, 130, 246, 0.1);
        border-color: #3b82f6;
    }

    .ai-icon-large {
        font-size: 3.5rem;
        color: #3b82f6;
        margin-bottom: 25px;
        display: block;
    }

    /* AI in Action (Mini Deneme) */
    .ai-playground {
        background: linear-gradient(135deg, #051139 0%, #1a202c 100%);
        padding: 100px 0;
        color: white;
    }

    .playground-input-group {
        background: rgba(255,255,255,0.08);
        border-radius: 15px;
        padding: 10px;
        border: 1px solid rgba(255,255,255,0.15);
    }

    .playground-input {
        background: transparent !important;
        border: none !important;
        color: white !important;
        box-shadow: none !important;
        resize: none;
    }

    .playground-output {
        min-height: 150px;
        background: rgba(255,255,255,0.05);
        border-radius: 15px;
        padding: 20px;
        color: rgba(255,255,255,0.8);
        border: 1px solid rgba(255,255,255,0.1);
        font-family: 'Courier New', monospace;
    }

    /* Use Cases Section */
    .use-case-card {
        background: #f8faff;
        border-radius: 20px;
        padding: 30px;
        border: 1px solid #e1e8ed;
        height: 100%;
        transition: all 0.3s ease;
    }

    .use-case-card:hover {
        border-color: #3b82f6;
        box-shadow: 0 15px 30px rgba(5, 17, 57, 0.05);
    }

    .use-case-icon {
        font-size: 2.2rem;
        color: #3b82f6;
        margin-bottom: 20px;
    }

    /* AI Impact Stats */
    .ai-impact-stats {
        padding: 80px 0;
        background: #ffffff;
    }

    .ai-stat-number {
        font-size: 4rem;
        font-weight: 800;
        background: linear-gradient(135deg, #051139 0%, #3b82f6 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    :root {
        --peals-blue: #3b82f6;
        --peals-dark: #051139;
        --peals-glow: rgba(59, 130, 246, 0.4);
    }

    /* 1. Feature Deep-Dive Section */
    .product-stage {
        padding: 120px 0;
        border-bottom: 1px solid #f0f0f0;
    }

    .step-number {
        font-family: 'JetBrains Mono', monospace;
        color: var(--peals-blue);
        font-weight: 800;
        font-size: 1.2rem;
        display: block;
        margin-bottom: 15px;
        letter-spacing: 2px;
    }

    /* 2. System Architecture / Flow Visual */
    .system-terminal {
        background: #0d1117;
        border-radius: 20px;
        padding: 30px;
        box-shadow: 0 50px 100px rgba(0,0,0,0.2);
        color: #e6edf3;
        font-family: 'Inter', sans-serif;
        border: 1px solid #30363d;
    }

    .terminal-line {
        display: flex;
        gap: 15px;
        margin-bottom: 12px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        padding-bottom: 8px;
    }

    .status-pill {
        padding: 2px 10px;
        border-radius: 4px;
        font-size: 0.7rem;
        text-transform: uppercase;
        font-weight: 700;
    }

    /* 3. Interactive Component: The Decision Engine */
    .decision-node {
        background: white;
        border: 2px solid #eee;
        border-radius: 16px;
        padding: 25px;
        position: relative;
        transition: all 0.3s ease;
    }

    .decision-node.active {
        border-color: var(--peals-blue);
        box-shadow: 0 0 20px var(--peals-glow);
    }

    .node-arrow {
        color: #cbd5e1;
        font-size: 2rem;
        text-align: center;
        padding: 10px 0;
    }

    /* 4. Comparison Table (AI vs Traditional) */
    .comparison-table {
        background: #fff;
        border-radius: 30px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0,0,0,0.05);
    }
    .comp-header { background: var(--peals-dark); color: white; padding: 25px; }
    .comp-row { border-bottom: 1px solid #f0f0f0; padding: 20px 25px; }

    :root {
            --p-blue: #3b82f6;
            --p-dark: #051139;
            --p-bg: #f8faff;
            --p-success: #10b981;
            --p-border: rgba(59, 130, 246, 0.15);
        }

        body { font-family: 'Inter', sans-serif; background: var(--p-bg); color: var(--p-dark); scroll-behavior: smooth; }

        /* --- Hero Section --- */
        .hero-section {
            padding: 160px 0 100px;
            background: radial-gradient(circle at 0% 0%, #eef2ff 0%, #ffffff 100%);
            border-bottom: 1px solid var(--p-border);
        }
        .hero-title {
            font-size: clamp(3.5rem, 8vw, 6rem); font-weight: 900; line-height: 0.9;
            letter-spacing: -4px; background: linear-gradient(180deg, var(--p-dark) 0%, var(--p-blue) 100%);
            -webkit-background-clip: text; -webkit-text-fill-color: transparent;
        }

        /* --- Interactive Dashboard (Uygulama Alanı) --- */
        .app-container {
            background: white; border-radius: 40px; padding: 50px;
            box-shadow: 0 50px 100px rgba(5, 17, 57, 0.08); border: 1px solid var(--p-border);
            margin-top: -100px; position: relative; z-index: 10;
        }
        .terminal-window {
            background: #0d1117; border-radius: 20px; padding: 25px;
            font-family: 'JetBrains Mono', monospace; color: #e6edf3; min-height: 400px;
        }
        .status-dot { height: 10px; width: 10px; border-radius: 50%; display: inline-block; background: var(--p-success); box-shadow: 0 0 10px var(--p-success); }

        /* --- Finaxis Core Modules --- */
        .module-card {
            background: white; border-radius: 25px; padding: 40px; border: 1px solid #eee;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); height: 100%;
        }
        .module-card:hover { transform: translateY(-15px); border-color: var(--p-blue); box-shadow: 0 30px 60px rgba(59, 130, 246, 0.1); }
        .engine-tag { font-size: 0.7rem; font-weight: 800; color: var(--p-blue); text-transform: uppercase; letter-spacing: 2px; }

        /* --- Comparison Matrix --- */
        .matrix-box { background: white; border-radius: 30px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.03); }
        .matrix-header { background: var(--p-dark); color: white; padding: 30px; text-align: center; }
        .matrix-row { padding: 25px; border-bottom: 1px solid #f1f5f9; text-align: center; font-weight: 500; }
        .matrix-row:last-child { border: none; }
        .highlight { color: var(--p-blue); font-weight: 800; }

        /* --- Dark Section: Global Infrastructure --- */
        .dark-section { background: #051139; color: white; padding: 100px 0; }
        .data-node { background: rgba(255,255,255,0.05); padding: 20px; border-radius: 15px; border: 1px solid rgba(255,255,255,0.1); }

        :root {
            --p-blue: #3b82f6;
            --p-dark: #020617;
            --p-glass: rgba(255, 255, 255, 0.03);
            --p-border: rgba(255, 255, 255, 0.1);
        }

        body { font-family: 'Inter', sans-serif; background: #fff; color: var(--p-dark); }

        /* --- 1. Career Hero --- */
        .career-hero {
            padding: 140px 0 100px;
            background: var(--p-dark);
            color: white;
            position: relative;
            overflow: hidden;
        }
        .career-hero::after {
            content: ''; position: absolute; top: -50%; right: -20%;
            width: 800px; height: 800px;
            background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
        }
        .career-title { font-size: 5rem; font-weight: 900; letter-spacing: -3px; line-height: 1; }

        /* --- 2. Culture & Values --- */
        .value-card {
            border: 1px solid #f1f5f9; border-radius: 32px; padding: 40px;
            transition: 0.3s; background: #fff; height: 100%;
        }
        .value-card:hover { border-color: var(--p-blue); transform: translateY(-10px); }
        .value-icon { font-size: 2.5rem; color: var(--p-blue); margin-bottom: 20px; display: block; }

        /* --- 3. Interactive Job Board --- */
        .job-section { padding: 100px 0; background: #f8faff; }
        .job-card {
            background: white; border-radius: 20px; padding: 30px;
            border: 1px solid #e2e8f0; margin-bottom: 20px;
            display: flex; justify-content: space-between; align-items: center;
            transition: 0.3s; cursor: pointer;
        }
        .job-card:hover { border-color: var(--p-blue); box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
        .job-tag { background: #eff6ff; color: var(--p-blue); padding: 5px 15px; border-radius: 100px; font-size: 0.75rem; font-weight: 700; }

        /* --- 4. Perks Section (Benefits) --- */
        .perks-grid {
            display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px;
        }
        .perk-item {
            background: white; padding: 30px; border-radius: 24px; text-align: center;
            border: 1px solid #eee;
        }

        /* --- 5. Application Modal Simulator --- */
        #application-portal {
            display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(2, 6, 23, 0.95); z-index: 1000; color: white;
            padding: 50px;
        }

        
    

    /* --- Global & Animations --- */
    .peals-wrapper { font-family: 'Inter', sans-serif; background: #fff; color: var(--p-dark); overflow-x: hidden; }
    .reveal { opacity: 0; transform: translateY(30px); transition: 0.8s all ease; }
    .reveal.active { opacity: 1; transform: translateY(0); }

    /* --- Hero: The Financial Awakening --- */
    .hero-v2 {
        padding: 120px 0 80px;
        background: radial-gradient(circle at 90% 10%, rgba(59, 130, 246, 0.08) 0%, transparent 40%);
        text-align: center;
    }
    .hero-h1 {
        font-size: clamp(3.5rem, 9vw, 6.5rem); font-weight: 900; letter-spacing: -4px; line-height: 0.9;
        margin-bottom: 30px; background: linear-gradient(to bottom, var(--p-dark) 40%, var(--p-blue));
        -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    }
    .hero-sub { font-size: 1.25rem; max-width: 700px; margin: 0 auto 40px; color: var(--p-text-muted); }

    /* --- The Finaxis "Core" Terminal --- */
    .core-simulation {
        background: var(--p-dark); border-radius: 40px; padding: 40px;
        box-shadow: 0 50px 100px rgba(0,0,0,0.2); position: relative;
    }
    .terminal-header { border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 15px; margin-bottom: 20px; display: flex; gap: 8px; }
    .t-dot { width: 12px; height: 12px; border-radius: 50%; }
    .t-red { background: #ff5f56; } .t-yellow { background: #ffbd2e; } .t-green { background: #27c93f; }
    
    .terminal-body { font-family: 'JetBrains Mono', monospace; font-size: 0.9rem; color: #94a3b8; line-height: 1.8; }
    .t-cmd { color: var(--p-blue); } .t-success { color: var(--p-accent); }

    /* --- The Problem Section (The 50B Impact) --- */
    .impact-section { padding: 100px 0; background: #f8fafc; border-radius: 60px; margin: 50px 0; }
    .stat-card { background: white; padding: 40px; border-radius: 30px; border: 1px solid #e2e8f0; transition: 0.3s; }
    .stat-card:hover { border-color: var(--p-blue); transform: scale(1.02); }
    .stat-num { font-size: 4rem; font-weight: 900; color: #ef4444; margin-bottom: 10px; }

    /* --- Agentic Workflow (Steps) --- */
    .workflow-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; padding-top: 50px; }
    .wf-item { position: relative; padding: 30px; background: white; border-radius: 24px; border: 1px solid #eee; }
    .wf-num { position: absolute; top: -20px; right: 20px; font-size: 5rem; font-weight: 900; opacity: 0.05; }

    /* --- Features: Finaxis Enabled --- */
    .feat-box { padding: 80px 0; }
    .feat-icon { width: 60px; height: 60px; background: #eff6ff; color: var(--p-blue); display: flex; align-items: center; justify-content: center; border-radius: 16px; font-size: 1.5rem; margin-bottom: 20px; }

    /* --- CTA Section --- */
    .cta-final {
        background: var(--p-blue); border-radius: 50px; padding: 80px;
        color: white; text-align: center; margin-bottom: 100px;
    }

    :root {
        --px-primary: #3b82f6;
        --px-dark: #020617;
        --px-light: #f8fafc;
        --px-accent: #10b981;
    }

    .peals-root {
        font-family: 'Plus Jakarta Sans', sans-serif;
        color: var(--px-dark);
        background: #fff;
        line-height: 1.6;
        overflow-x: hidden;
    }

    /* 2. Typography & Large Sections */
    .px-display-xl { font-size: clamp(3.5rem, 10vw, 8rem); font-weight: 800; letter-spacing: -0.04em; line-height: 0.9; }
    .px-section { padding: 160px 0; position: relative; }

    /* 3. Hero - Fluid Design */
    .px-hero {
        min-height: 100vh;
        display: flex;
        align-items: center;
        background: radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.05) 0%, #fff 50%);
    }

    .px-floating-ui {
        position: relative;
        background: white;
        border-radius: 30px;
        box-shadow: 0 100px 150px -50px rgba(0,0,0,0.15);
        border: 1px solid rgba(0,0,0,0.05);
        padding: 20px;
        transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    }

    /* 4. The "50 Billion" Scroller Section */
    .px-impact-ticker {
        background: var(--px-dark);
        color: white;
        padding: 100px 0;
        overflow: hidden;
        white-space: nowrap;
    }
    .px-ticker-text {
        font-size: 8rem;
        font-weight: 900;
        opacity: 0.1;
        display: inline-block;
        animation: ticker 30s linear infinite;
    }
    @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

    /* 5. Feature "Flow" - No Cards, Just Flow */
    .px-flow-row {
        display: flex;
        align-items: center;
        margin-bottom: 200px;
    }
    .px-flow-row:nth-child(even) { flex-direction: row-reverse; }
    
    .px-number-bg {
        font-size: 15rem;
        font-weight: 900;
        color: rgba(59, 130, 246, 0.05);
        position: absolute;
        z-index: -1;
        top: -50px;
    }

    /* 6. Live Dashboard Simulation */
    .px-sim-window {
        background: #0f172a;
        border-radius: 24px;
        padding: 30px;
        color: #94a3b8;
        font-family: 'JetBrains Mono', monospace;
        border: 1px solid rgba(255,255,255,0.1);
    }
    .px-cursor { animation: blink 1s infinite; border-left: 8px solid var(--px-primary); margin-left: 5px; }
    @keyframes blink { 50% { opacity: 0; } }

    /* 7. Buttons */
    .px-btn {
        padding: 18px 45px;
        border-radius: 100px;
        font-weight: 700;
        transition: 0.3s;
        text-decoration: none;
        display: inline-block;
    }
    .px-btn-primary { background: var(--px-primary); color: white; box-shadow: 0 20px 40px rgba(59, 130, 246, 0.3); }
    .px-btn-primary:hover { transform: scale(1.05); color: white; }

    .px-contact-section {
        padding: 120px 0;
        background: #fff;
        color: var(--px-dark);
        border-top: 1px solid rgba(0,0,0,0.05);
    }

    .px-contact-title {
        font-size: clamp(3rem, 8vw, 5.5rem);
        font-weight: 800;
        letter-spacing: -0.04em;
        line-height: 1;
        margin-bottom: 50px;
    }

    /* Form Alanı - Cam Efekti Yerine Modern Çizgiler */
    .px-form-group {
        position: relative;
        margin-bottom: 40px;
        border-bottom: 2px solid #e2e8f0;
        transition: 0.3s;
    }

    .px-form-group:focus-within {
        border-color: var(--px-primary);
    }

    .px-form-label {
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        color: var(--px-primary);
        display: block;
        margin-bottom: 10px;
    }

    .px-input {
        width: 100%;
        background: transparent;
        border: none;
        padding: 15px 0;
        font-size: 1.25rem;
        font-weight: 500;
        outline: none;
        color: var(--px-dark);
    }

    /* İletişim Bilgileri - Büyük ve Net */
    .px-contact-info {
        padding-left: 50px;
    }

    .px-info-item {
        margin-bottom: 60px;
    }

    .px-info-tag {
        font-family: 'JetBrains Mono', monospace;
        font-size: 0.75rem;
        color: var(--px-text-muted);
        display: block;
        margin-bottom: 10px;
    }

    .px-info-link {
        font-size: 1.5rem;
        font-weight: 700;
        text-decoration: none;
        color: var(--px-dark);
        transition: 0.3s;
    }

    .px-info-link:hover {
        color: var(--px-primary);
        padding-left: 10px;
    }

    /* Otonom Destek Widget'ı */
    .px-ai-status {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: #f1f5f9;
        padding: 8px 16px;
        border-radius: 100px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-bottom: 30px;
    }

    .px-pulse {
        width: 8px;
        height: 8px;
        background: var(--px-accent);
        border-radius: 50%;
        box-shadow: 0 0 0 rgba(16, 185, 129, 0.4);
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7); }
        70% { box-shadow: 0 0 0 10px rgba(16, 185, 129, 0); }
        100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
    }

    :root {
        --v3-blue: #0071e3; /* Apple Blue */
        --v3-dark: #000000;
        --v3-gray: #86868b;
        --v3-bg: #ffffff;
    }

    .peals-v3-body {
        font-family: 'Inter', sans-serif;
        background-color: var(--v3-bg);
        color: var(--v3-dark);
        line-height: 1.5;
        -webkit-font-smoothing: antialiased;
    }

    /* --- 1. Typography Section --- */
    .v3-hero {
        padding: 180px 0 100px;
        text-align: center;
    }

    .v3-eyebrow {
        font-weight: 600;
        letter-spacing: 0.02em;
        color: var(--v3-blue);
        display: block;
        margin-bottom: 20px;
        font-size: 1.2rem;
    }

    .v3-title {
        font-size: clamp(3.5rem, 10vw, 7rem);
        font-weight: 800;
        letter-spacing: -0.05em;
        line-height: 1.05;
        margin-bottom: 40px;
    }

    .v3-subtitle {
        font-size: 1.6rem;
        color: var(--v3-gray);
        max-width: 800px;
        margin: 0 auto 60px;
        font-weight: 400;
    }

    /* --- 2. Fluid Visual Section --- */
    .v3-visual-container {
        position: relative;
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    .v3-main-frame {
        background: #f5f5f7;
        border-radius: 30px;
        padding: 60px;
        overflow: hidden;
        border: 1px solid #d2d2d7;
    }

    /* --- 3. The 50 Billion Logic (Technical Narrative) --- */
    .v3-narrative-section {
        padding: 150px 0;
    }

    .v3-text-reveal {
        font-size: 4rem;
        font-weight: 700;
        line-height: 1.1;
        letter-spacing: -0.02em;
        color: #e2e2e7; /* Inactive color */
        transition: 0.5s;
    }

    .v3-text-reveal b {
        color: var(--v3-dark);
    }

    /* --- 4. Interactive Terminal (No Cards) --- */
    .v3-engine-interface {
        background: #1d1d1f;
        border-radius: 24px;
        padding: 40px;
        font-family: 'JetBrains Mono', monospace;
        color: #f5f5f7;
        box-shadow: 0 40px 100px rgba(0,0,0,0.2);
    }

    .v3-code-line {
        margin-bottom: 12px;
        font-size: 1.1rem;
        opacity: 0.8;
    }

    .v3-code-accent { color: #5e5ce6; }
    .v3-code-success { color: #32d74b; }

    /* --- 5. Action Bar --- */
    .v3-cta-bar {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 40px;
    }

    .v3-btn-black {
        background: #1d1d1f;
        color: #fff;
        padding: 18px 40px;
        border-radius: 100px;
        font-weight: 600;
        text-decoration: none;
        transition: 0.3s;
    }

    .v3-btn-black:hover {
        background: #000;
        transform: scale(1.02);
    }

    .v3-btn-link {
        color: var(--v3-blue);
        font-weight: 600;
        text-decoration: none;
        font-size: 1.2rem;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    /* --- 6. Contact Portal (Minimal) --- */
    .v3-contact-minimal {
        padding: 150px 0;
        border-top: 1px solid #d2d2d7;
    }

    .v3-minimal-input {
        width: 100%;
        border: none;
        border-bottom: 1px solid #d2d2d7;
        padding: 30px 0;
        font-size: 2rem;
        font-weight: 500;
        outline: none;
        transition: 0.3s;
    }

    .v3-minimal-input:focus {
        border-bottom-color: var(--v3-dark);
    }

    :root {
        --peals-primary: #0066ff;
        --peals-dark: #0a0a0a;
        --peals-gray: #666666;
        --peals-border: #e5e5e5;
        --peals-bg-light: #f9f9fb;
    }

    .peals-contact-wrapper {
        font-family: 'Inter', sans-serif;
        padding: 120px 0;
        background-color: #ffffff;
        color: var(--peals-dark);
    }

    /* Sol Taraf: Metin İçeriği */
    .contact-content h2 {
        font-size: 3.5rem;
        font-weight: 700;
        letter-spacing: -0.02em;
        line-height: 1.1;
        margin-bottom: 24px;
    }

    .contact-content p {
        font-size: 1.25rem;
        color: var(--peals-gray);
        line-height: 1.6;
        margin-bottom: 48px;
        max-width: 500px;
    }

    /* Sağ Taraf: Kurumsal Form */
    .enterprise-form-card {
        background: #ffffff;
        border: 1px solid var(--peals-border);
        border-radius: 12px;
        padding: 40px;
        box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    }

    .form-label {
        font-size: 0.875rem;
        font-weight: 600;
        margin-bottom: 8px;
        display: block;
        color: var(--peals-dark);
    }

    .form-control-peals {
        width: 100%;
        padding: 12px 16px;
        border: 1px solid var(--peals-border);
        border-radius: 8px;
        font-size: 1rem;
        transition: all 0.2s ease;
        background-color: var(--peals-bg-light);
        margin-bottom: 24px;
    }

    .form-control-peals:focus {
        outline: none;
        border-color: var(--peals-primary);
        background-color: #ffffff;
        box-shadow: 0 0 0 4px rgba(0, 102, 255, 0.1);
    }

    .btn-submit-peals {
        width: 100%;
        padding: 14px;
        background-color: var(--peals-primary);
        color: #ffffff;
        border: none;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: background-color 0.2s ease;
    }

    .btn-submit-peals:hover {
        background-color: #0052cc;
    }

    /* Detay Bilgiler */
    .contact-details {
        margin-top: 60px;
        padding-top: 40px;
        border-top: 1px solid var(--peals-border);
    }

    .detail-item h5 {
        font-size: 0.75rem;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--peals-gray);
        margin-bottom: 8px;
    }

    .detail-item p {
        font-size: 1rem;
        font-weight: 500;
        margin: 0;
    }

    :root {
        --px-deep: #050505;
        --px-blue: #2563eb;
        --px-slate: #64748b;
    }

    .px-fluid-section {
        background: #fff;
        font-family: 'Inter', sans-serif;
        padding: 160px 0;
        color: var(--px-deep);
        overflow: hidden;
    }

    /* --- BÖLÜM 1: BÜYÜK VERİ ETKİSİ --- */
    .px-impact-minimal {
        display: flex;
        align-items: flex-start;
        gap: 100px;
        margin-bottom: 200px;
    }

    .px-huge-num {
        font-size: 12rem;
        font-weight: 900;
        line-height: 0.8;
        letter-spacing: -10px;
        background: linear-gradient(180deg, var(--px-deep) 0%, #ddd 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        flex-shrink: 0;
    }

    .px-impact-text {
        max-width: 500px;
        padding-top: 20px;
    }

    .px-impact-text h2 {
        font-size: 3rem;
        font-weight: 800;
        letter-spacing: -2px;
        margin-bottom: 24px;
        line-height: 1.1;
    }

    /* --- BÖLÜM 2: AKIŞKAN SÜREÇ (LINEAR) --- */
    .px-process-line {
        position: relative;
        padding-top: 80px;
        border-top: 1px solid #eee;
    }

    .px-step-row {
        display: flex;
        justify-content: space-between;
        margin-bottom: 120px;
        gap: 40px;
    }

    .px-step {
        flex: 1;
        position: relative;
    }

    .px-step-head {
        font-size: 12px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--px-blue);
        margin-bottom: 20px;
        display: block;
    }

    .px-step h4 {
        font-size: 1.5rem;
        font-weight: 700;
        margin-bottom: 15px;
    }

    .px-step p {
        color: var(--px-slate);
        font-size: 1rem;
        line-height: 1.6;
    }

    /* --- BÖLÜM 3: ÖZELLİKLER (TYPOGRAPHIC) --- */
    .px-feat-list {
        margin-top: 150px;
    }

    .px-feat-row {
        display: flex;
        align-items: center;
        padding: 40px 0;
        border-bottom: 1px solid #f0f0f0;
        transition: 0.4s;
    }

    .px-feat-row:hover {
        padding-left: 20px;
        border-bottom-color: var(--px-blue);
    }

    .px-feat-title {
        width: 40%;
        font-size: 2rem;
        font-weight: 700;
        letter-spacing: -1px;
    }

    .px-feat-desc {
        width: 50%;
        color: var(--px-slate);
        font-size: 1.1rem;
    }

    .px-feat-icon {
        width: 10%;
        text-align: right;
        font-size: 1.5rem;
        color: #ddd;
    }

    @media (max-width: 992px) {
        .px-impact-minimal, .px-step-row, .px-feat-row {
            flex-direction: column;
            gap: 40px;
        }
        .px-huge-num { font-size: 6rem; letter-spacing: -4px; }
        .px-feat-title, .px-feat-desc, .px-feat-icon { width: 100%; text-align: left; }
    }

    .login-card {
    width: 100%;
    max-width: 450px;
}

.form-label {
    letter-spacing: 0.5px;
}

.form-control {
    border: 1px solid #dee2e6;
    padding: 0.75rem 1rem;
}

.form-control:focus {
    box-shadow: none;
    border-color: #0d6efd;
}

.btn-primary {
    background-color: #0026e3; /* Görseldeki o koyu mavi tonu */
    border: none;
}

.btn-primary:hover {
    background-color: #001fbc;
}

.btn-outline-primary {
    border-color: #dee2e6;
    color: #495057;
    background-color: #eef2ff;
}

.btn-outline-primary:hover {
    background-color: #e2e8ff;
    border-color: #cdd5ff;
    color: #0026e3;
}

.cursor-pointer {
    cursor: pointer;
}

/* Mobil için padding ayarı */
@media (max-width: 576px) {
    .login-card {
        padding: 2rem !important;
        box-shadow: none !important;
        background: transparent !important;
    }
}