﻿/* CSS Değişkenleri - Tüm site için ortak kullanım */

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

:root {
    /* Ana Renkler */
    --primary: #0f172a;
    --accent: #2563eb;
    --p-blue: #635bff;
    --p-blue-soft: rgba(99, 91, 255, 0.08);
    --p-text: #1a1f36;
    --p-muted: #677489;
    --bg: #f8fafc;
    --border: #e2e8f0;
	--corporate-navy: #0f172a;
    --corporate-bg: #ffffff;
    --corporate-white: #FFFFFF;
    --corporate-text: #1e293b;
    --corporate-text-muted: #64748b;
    --corporate-border: #e2e8f0;
    --corporate-shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --corporate-radius: 12px;
    --corporate-transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Code Block Colors */
    --code-bg: #1e293b;
    --code-text: #e2e8f0;
    
    /* Durum Renkleri */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #dc2626;
    --info: #3b82f6;
    
    /* Status Page Colors */
    --green: rgba(34, 197, 94, 0.92);
    --amber: rgba(245, 158, 11, 0.9);
    --red: rgba(239, 68, 68, 0.9);
    
    /* Metin Renkleri */
    --text-primary: #1e293b;
    --text-muted: #64748b;
    --text-secondary: #94a3b8;
    
    /* Arka Plan Renkleri */
    --bg-primary: #ffffff;
    --bg-secondary: #f1f5f9;
    --bg-tertiary: #e2e8f0;
    
    /* Border ve Gölge */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.25rem;
    --radius-2xl: 1.5rem;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Font Boyutları */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    
    /* Font Ağırlıkları */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    
    /* Z-Index Değerleri */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    
    /* Transition */
    --transition: all 0.3s ease;
    --transition-fast: all 0.15s ease;
    --transition-slow: all 0.5s ease;
}

/* Ana Container - Tüm sayfalarda genişlik sorununu çözmek için */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
}

.contract-page {
    background-color: var(--corporate-bg);
    color: var(--corporate-text);
    overflow-x: hidden;
}

.contract-hero {
    background: linear-gradient(180deg, rgb(46 42 123 / 90%) 0%, rgba(30, 41, 59, 0.9) 100%), url('../img/document-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 0 140px;
    text-align: center;
    color: var(--corporate-white);
    position: relative;
    overflow: hidden;
}

.contract-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--corporate-bg);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

    .contract-hero h1 {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 20px;
        letter-spacing: -0.02em;
    }

    .contract-hero p {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.8);
        max-width: 700px;
        margin: 0 auto;
        line-height: 1.6;
    }

    .contract-container-grid {
        display: grid;
        grid-template-columns: 280px 1fr;
        gap: 40px;
        margin-top: -60px;
        position: relative;
        z-index: 10;
        margin-bottom: 80px;
        max-width: 1200px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        padding: 0 24px;
        box-sizing: border-box;
    }

    .contract-sidebar {
        position: sticky;
        top: 100px;
        max-height: calc(100vh - 140px);
        overflow-y: auto;
        background: var(--corporate-white);
        padding: 24px;
        border-radius: 20px;
        border: 1px solid var(--corporate-border);
        box-shadow: var(--corporate-shadow);
    }

    .contract-sidebar::-webkit-scrollbar {
        width: 4px;
    }

    .contract-sidebar::-webkit-scrollbar-track {
        background: transparent;
        margin: 40px 0;
    }

    .contract-sidebar::-webkit-scrollbar-thumb {
        background: transparent;
        border-radius: 10px;
        min-height: 40px;
        max-height: 60px;
    }

    .contract-sidebar:hover::-webkit-scrollbar-thumb {
        background: var(--corporate-border);
    }

    .contract-sidebar-title {
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        color: var(--corporate-text-muted);
        margin-bottom: 16px;
        letter-spacing: 0.1em;
        padding-left: 14px;
    }

    .contract-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .contract-nav-item {
        margin-bottom: 4px;
    }

    .contract-nav-link {
        display: block;
        padding: 12px 16px;
        border-radius: 8px;
        color: var(--corporate-text-muted);
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        transition: all 0.2s;
    }

    .contract-nav-link:hover {
        background: rgba(15, 23, 42, 0.06);
        color: var(--corporate-navy);
    }

    .contract-nav-link.active {
        background: var(--corporate-navy);
        color: var(--corporate-white);
    }

    .contract-nav-link.active:hover {
        background: var(--corporate-navy);
        color: var(--corporate-white);
    }

    .contract-content {
        background: var(--corporate-white);
        padding: 60px;
        border-radius: 24px;
        border: 1px solid var(--corporate-border);
        box-shadow: var(--corporate-shadow);
    }

    .contract-section {
        margin-bottom: 60px;
        scroll-margin-top: 120px;
    }

    .contract-section:last-child {
        margin-bottom: 0;
    }

    .contract-section h2 {
        font-size: 28px;
        font-weight: 800;
        color: var(--corporate-navy);
        margin-bottom: 20px;
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .contract-section h2::before {
        content: '';
        display: block;
        width: 6px;
        height: 28px;
        background: var(--corporate-navy);
        border-radius: 4px;
        flex-shrink: 0;
    }

    .contract-section h3 {
        font-size: 12px;
        font-weight: 700;
        color: var(--corporate-navy);
        margin: 32px 0 12px;
        padding-left: 18px;
        border-left: 3px solid var(--corporate-border);
    }

    .contract-section p {
        font-size: 12px;
        color: var(--corporate-text-muted);
        line-height: 1.8;
        margin-bottom: 16px;
    }

    .contract-list {
        list-style: none;
        padding: 0;
        margin: 16px 0 24px;
    }

    .contract-list li {
        display: flex;
        align-items: flex-start;
        gap: 12px;
        margin-bottom: 12px;
        font-size: 12px;
        color: var(--corporate-text);
        line-height: 1.6;
    }

    .contract-list li::before {
        content: '';
        width: 8px;
        height: 8px;
        min-width: 8px;
        background: var(--corporate-navy);
        border-radius: 50%;
        margin-top: 7px;
        flex-shrink: 0;
    }

    .contract-contact-box {
        background: #ffffff;
        border: 1px solid var(--corporate-border);
        border-radius: 16px;
        padding: 32px;
        margin-top: 40px;
    }

    .contract-contact-box h3 {
        margin: 0 0 16px;
        font-size: 12px;
        font-weight: 700;
        color: var(--corporate-navy);
        border: none;
        padding: 0;
    }

    .contract-contact-item {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-bottom: 12px;
        font-size: 12px;
        color: var(--corporate-text);
    }

    .contract-contact-item i {
        color: var(--corporate-navy);
        width: 20px;
        text-align: center;
    }

    .contract-updated {
        font-size: 12px;
        color: var(--corporate-text-muted);
        margin-top: 8px;
    }
	    .contract-footer-note {
        margin-top: 40px;
        padding: 24px;
        background: rgba(37, 99, 235, 0.05);
        border: 1px solid rgba(37, 99, 235, 0.15);
        border-radius: 16px;
        font-size: 12px;
        color: var(--corporate-text-muted);
        text-align: center;
        line-height: 1.7;
    }
	
	 .contract-sub-item {
        margin-bottom: 16px;
        padding-left: 18px;
        border-left: 3px solid var(--corporate-border);
    }

    .contract-sub-item strong {
        display: block;
        font-size: 12px;
        font-weight: 700;
        color: var(--corporate-navy);
        margin-bottom: 4px;
    }

    .contract-sub-item span {
        font-size: 12px;
        color: var(--corporate-text-muted);
    }

    @media (max-width: 992px) {
        .contract-container-grid {
            grid-template-columns: 1fr !important;
            margin-top: 40px;
            width: 100%;
        }
        .contract-sidebar {
            position: relative;
            top: 0;
            background: #ffffff;
            z-index: 10;
            max-height: none;
            overflow-y: visible;
            width: 100%;
        }
        .contract-content {
            padding: 40px 24px;
            width: 100%;
        }
    }

    @media (max-width: 768px) {
        .contract-hero {
            padding: 80px 0 60px;
        }
        .contract-hero h1 {
            font-size: 26px;
        }
        .contract-container-grid {
            margin-top: 24px;
            padding: 0 16px;
            gap: 24px;
            width: 100%;
        }
        .contract-sidebar {
            padding: 16px;
            border-radius: 12px;
            width: 100%;
        }
        .contract-content {
            padding: 24px 16px;
            border-radius: 12px;
            width: 100%;
        }
        .api-table-container {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            max-width: 100%;
        }
        .api-table {
            min-width: 480px;
        }
        .code-block {
            overflow-x: auto;
            font-size: 12px;
            padding: 16px;
            word-break: break-word;
        }
        .param-name,
        .param-type {
            display: block;
        }
    }
	
	
	  .brand-badge {
        display: inline-flex;
        align-items: center;
        padding: 8px 20px;
        background: linear-gradient(90deg, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0.05) 100%);
        border: 1px solid rgba(255, 255, 255, 0.15);
        border-radius: 100px;
        color: #ffffff;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.25em;
        backdrop-filter: blur(10px);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        margin-bottom: 24px;
    }

    .brand-badge::before {
        content: '';
        width: 6px;
        height: 6px;
        background: #3b82f6;
        border-radius: 50%;
        margin-right: 12px;
        box-shadow: 0 0 12px #3b82f6;
        animation: pulse-dot 2s infinite;
    }

	    @keyframes pulse-dot {
        0% { transform: scale(0.95); opacity: 0.8; }
        50% { transform: scale(1.2); opacity: 1; }
        100% { transform: scale(0.95); opacity: 0.8; }
    }
.api-endpoint-table {
        width: 100%;
        border-collapse: collapse;
        margin: 20px 0;
        font-size: 12px;
    }

    .api-endpoint-table th {
        background: var(--corporate-navy);
        color: var(--corporate-white);
        padding: 12px 16px;
        text-align: left;
        font-weight: 700;
    }

    .api-endpoint-table td {
        padding: 12px 16px;
        border-bottom: 1px solid var(--corporate-border);
        color: var(--corporate-text);
    }

    .api-endpoint-table tr:nth-child(even) td {
        background: #ffffff;
    }

    .api-method {
        display: inline-block;
        padding: 2px 8px;
        border-radius: 6px;
        font-weight: 700;
        font-size: 12px;
    }

    .api-method.post { background: #DCFCE7; color: #166534; }
    .api-method.get { background: #DBEAFE; color: #1e40af; }
    .api-method.put { background: #FEF9C3; color: #854D0E; }
    .api-method.delete { background: #FEE2E2; color: #991b1b; }
	
	
	/* Footer Styles */
.footer {
    background: #1a1a2e;
    color: #ffffff;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding: 0 20px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo-img {
    width: 130px;
    height: 50px;
    object-fit: contain;
}

.footer-description {
    color: #cbd5e1;
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 8px;
    font-weight: 500;
    letter-spacing: 0.3px;
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    max-width: 260px;
}

.footer-section h4 {
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.footer-copyright {
    color: #94a3b8;
    font-size: 12px;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .footer-brand {
        grid-column: span 2;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
@media (max-width: 480px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
    
    .footer-description {
        max-width: 100%;
    }
}
	
	
/* Pricing Page Styles */
.pricing-page {
    background-color: var(--corporate-bg);
    color: var(--corporate-text);
    width: 100%;
    box-sizing: border-box;
}

/* Hero Section */
.pricing-hero {
        background: linear-gradient(180deg, #635bff 0%, #1e293b 100%);
    padding: 140px 5% 150px;
    text-align: center;
    color: var(--corporate-white);
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.pricing-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--corporate-bg);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.pricing-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: var(--corporate-white);
}

.pricing-hero p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-main-container {
    margin-top: 40px;
    position: relative;
    z-index: 10;
    margin-bottom: 80px;
    padding: 0 5%;
    box-sizing: border-box;
}

.pricing-card {
    background: var(--corporate-white);
    border-radius: var(--corporate-radius);
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    overflow: hidden;
    box-shadow: var(--corporate-shadow);
    border: 1px solid var(--corporate-border);
    max-width: 1000px;
    margin: 0 auto 80px;
}

.pricing-card-left {
    background: #fdfdfd;
    padding: 60px;
    border-right: 1px solid var(--corporate-border);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pricing-card-right {
    padding: 60px;
    background: var(--corporate-white);
}

.pricing-badge {
    display: inline-block;
    background: var(--corporate-navy);
    color: var(--corporate-white);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    width: fit-content;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
    justify-content: center;
}

.pricing-amount {
    font-size: 72px;
    font-weight: 800;
    color: var(--corporate-navy);
    line-height: 1;
}

.pricing-currency {
    font-size: 28px;
    font-weight: 700;
    color: var(--corporate-navy);
}

.pricing-period {
    font-size: 18px;
    color: var(--corporate-text-muted);
    font-weight: 500;
}

.pricing-commission {
    font-size: 12px;
    font-weight: 700;
    color: var(--corporate-navy);
    margin-bottom: 24px;
    padding: 12px 20px;
    background: rgba(37, 99, 235, 0.05);
    border-radius: 12px;
    display: inline-block;
    width: fit-content;
    text-align: center;
    line-height: 1.4;
}

.pricing-commission small {
    display: block;
    font-size: 12px;
    color: var(--corporate-text-muted);
    font-weight: 500;
    margin-top: 4px;
}

.feature-note {
    display: inline-block;
    font-size: 12px;
    color: #6366f1;
    background: rgba(99, 102, 241, 0.08);
    padding: 2px 10px;
    border-radius: 100px;
    margin-top: 6px;
    margin-left: 32px;
    font-weight: 700;
    border: 1px solid rgba(99, 102, 241, 0.1);
    letter-spacing: 0.01em;
}

/* Pool Section */
.pool-section {
    position: relative;
    background: linear-gradient(180deg, rgb(46 42 123 / 90%) 0%, rgba(30, 41, 59, 0.9) 100%), url('../img/price-bg.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    margin-bottom: 80px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--corporate-shadow);
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.pool-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(15, 23, 42, 0.85), rgba(15, 23, 42, 0.95));
    z-index: 1;
}

.pool-content {
    position: relative;
    z-index: 2;
}

.pool-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: var(--corporate-white);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.pool-content p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-desc {
    color: var(--corporate-text-muted);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.feature-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--corporate-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
    display: block;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 12px;
    font-weight: 600;
    color: var(--corporate-navy);
}

.pricing-features i {
    color: #10B981;
    font-size: 12px;
    flex-shrink: 0;
}

.pricing-btn {
    display: block;
    width: 100%;
    background: var(--corporate-navy);
    color: var(--corporate-white);
    text-decoration: none;
    padding: 18px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    transition: var(--corporate-transition);
    box-shadow: 0 6px 15px rgba(15, 23, 42, 0.15);
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.25);
}

/* Payment Methods Styling from Home */
.payment-methods {
    margin-top: 60px;
    text-align: center;
    width: 100%;
}

.payment-methods-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--corporate-navy);
    margin-bottom: 30px;
}

.payment-methods-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.payment-method-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--corporate-text-muted);
    transition: var(--corporate-transition);
}

.payment-method-item:hover {
    color: var(--corporate-navy);
    transform: translateY(-5px);
}

.payment-method-item i {
    font-size: 32px;
    color: var(--corporate-text-muted);
    transition: color 0.3s ease;
}

.payment-method-item:hover i {
    color: var(--corporate-navy);
}

.payment-method-item span {
    font-size: 12px;
    font-weight: 600;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--corporate-navy);
    margin-bottom: 12px;
}

.section-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--corporate-navy);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
}

.pp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.pp-card {
    background: var(--corporate-white);
    padding: 32px 24px;
    border-radius: 20px;
    border: 1px solid var(--corporate-border);
    transition: var(--corporate-transition);
    text-align: left;
}

.pp-card:hover {
    border-color: var(--corporate-navy);
    transform: translateY(-6px);
    box-shadow: var(--corporate-shadow);
}

.card-icon {
    width: 48px;
    height: 48px;
    background: #F1F5F9;
    color: var(--corporate-navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 20px;
}

.pp-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--corporate-navy);
}

.pp-card p {
    font-size: 12px;
    color: var(--corporate-text-muted);
    line-height: 1.5;
}

.corporate-cta {
        background: linear-gradient(180deg, #635bff 0%, #1e293b 100%);
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    color: var(--corporate-white);
    margin-bottom: 60px;
}

.btn-corporate {
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--corporate-transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.btn-corporate-primary {
    padding: 14px 32px;
    border-radius: 100px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--corporate-transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    background: var(--corporate-navy);
    color: var(--corporate-white);
    box-shadow: 0 6px 15px rgba(255, 255, 255, 0.1);
}

.btn-corporate-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.btn-corporate-outline {
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--corporate-white);
}

.btn-corporate-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--corporate-white);
    transform: translateY(-2px);
}

.cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
}

.pricing-footer-note {
    text-align: center;
    color: var(--corporate-text-muted);
    font-size: 12px;
    margin-top: 20px;
    line-height: 1.6;
}

@media (max-width: 850px) {
    .pricing-card { 
        grid-template-columns: 1fr; 
    }
    .pricing-card-left { 
        border-right: none; 
        border-bottom: 1px solid var(--corporate-border); 
        padding: 40px; 
        text-align: center; 
        align-items: center; 
    }
    .pricing-card-right { 
        padding: 40px; 
    }
    .pp-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
}

@media (max-width: 600px) {
    .pp-grid { 
        grid-template-columns: 1fr; 
    }
    .cta-btns { 
        flex-direction: column; 
    }
}

/* How It Works Page Styles */
.how-it-works-page {
    background-color: var(--corporate-bg);
    color: var(--corporate-text);
}

/* Hero Section */
.hiw-hero {
        background: linear-gradient(180deg, #635bff 0%, #1e293b 100%);
    padding: 140px 0 140px;
    text-align: center;
    color: var(--corporate-white);
    position: relative;
    overflow: hidden;
}

.hiw-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--corporate-bg);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.hiw-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: var(--corporate-white);
}

.hiw-hero p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Corporate Tabs */
.hiw-tabs-container {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
}

.hiw-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    background: var(--corporate-white);
    padding: 6px;
    border-radius: 100px;
    box-shadow: var(--corporate-shadow);
    max-width: fit-content;
    margin: 0 auto;
    border: 1px solid var(--corporate-border);
}

.tab-btn {
    padding: 12px 28px;
    border-radius: 100px;
    border: none;
    background: transparent;
    color: var(--corporate-text-muted);
    font-weight: 600;
    font-size: 12px;
    cursor: pointer;
    transition: var(--corporate-transition);
}

.tab-btn:hover {
    color: var(--corporate-white);
	background: #635bff;
}

.tab-btn.active {
    background: var(--corporate-navy);
    color: var(--corporate-white);
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
}

/* Content Sections */
.hiw-content-section {
    visibility: hidden;
    height: 0;
    overflow: hidden;
    animation: none;
}

.hiw-content-section.active {
    visibility: visible;
    height: auto;
    overflow: visible;
    animation: slideUp 0.5s ease-out forwards;
}

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

/* Corporate Step Cards - Compact 4 in a row */
.hiw-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.hiw-card {
    background: var(--corporate-white);
    padding: 32px 24px;
    border-radius: 20px;
    border: 1px solid var(--corporate-border);
    transition: var(--corporate-transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hiw-card:hover {
    border-color: var(--corporate-navy);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.card-num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 12px;
    font-weight: 800;
    color: var(--corporate-navy);
    background: rgba(37, 99, 235, 0.05);
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(37, 99, 235, 0.1);
    transition: var(--corporate-transition);
}

.hiw-card:hover .card-num {
    background: var(--corporate-navy);
    color: var(--corporate-white);
    border-color: var(--corporate-navy);
}

.hiw-card h3 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--corporate-navy);
    line-height: 1.4;
}

.hiw-card p {
    color: var(--corporate-text-muted);
    font-size: 12px;
    line-height: 1.6;
}

/* Feature Banner - Redesigned */
.feature-banner {
    background: var(--corporate-white);
    border-radius: 24px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    border: 1px solid var(--corporate-border);
    box-shadow: var(--corporate-shadow);
}

.feature-text h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: var(--corporate-navy);
    font-weight: 800;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 18px;
    font-weight: 500;
    font-size: 12px;
    color: var(--corporate-text);
}

.feature-list i {
    color: #10B981;
    font-size: 15px;
    margin-top: 4px;
}

.feature-image {
    position: relative;
}

.feature-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Trusted by Leading Companies Section */
.trusted-section {
    padding: 80px 0;
    background: linear-gradient(0deg, #ffffff 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

.trusted-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--corporate-border), transparent);
}

.trusted-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.trusted-header {
    margin-bottom: 60px;
}

.trusted-badge {
    display: inline-block;
    background: rgba(37, 99, 235, 0.08);
    color: var(--corporate-navy);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.trusted-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--corporate-navy);
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.trusted-subtitle {
    font-size: 12px;
    color: var(--corporate-text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.trusted-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.trusted-card {
    background: var(--corporate-white);
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid var(--corporate-border);
    box-shadow: var(--shadow-sm);
    transition: var(--corporate-transition);
    position: relative;
    overflow: hidden;
}

.trusted-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--corporate-navy), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.trusted-card:hover::before {
    transform: scaleX(1);
}

.trusted-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--corporate-navy);
}

.trusted-logo {
    width: 120px;
    height: 60px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 16px;
    padding: 16px;
    position: relative;
}

.trusted-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: var(--corporate-transition);
}

.trusted-card:hover .trusted-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

.trusted-company-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--corporate-navy);
    margin-bottom: 8px;
}

.trusted-company-desc {
    font-size: 12px;
    color: var(--corporate-text-muted);
    line-height: 1.5;
}

.trusted-partners {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    margin-top: 80px;
    padding: 40px;
    background: var(--corporate-white);
    border-radius: 24px;
    border: 1px solid var(--corporate-border);
    box-shadow: var(--shadow-sm);
}

.partner-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    transition: var(--corporate-transition);
}

.partner-item:hover {
    transform: scale(1.05);
}

.partner-logo {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(0deg, #ffffff, #e2e8f0);
    border-radius: 20px;
    padding: 20px;
    position: relative;
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--corporate-transition);
}

.partner-item:hover .partner-logo img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--corporate-navy);
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .trusted-section {
        padding: 60px 0;
    }
    
    .trusted-title {
        font-size: 28px;
    }
    
    .trusted-subtitle {
        font-size: 15px;
    }
    
    .trusted-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 40px;
    }
    
    .trusted-card {
        padding: 32px 24px;
    }
    
    .trusted-partners {
        flex-direction: column;
        gap: 40px;
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .trusted-section {
        padding: 40px 0;
    }
    
    .trusted-title {
        font-size: 24px;
    }
    
    .trusted-card {
        padding: 24px 20px;
    }
    
    .trusted-logo {
        width: 100px;
        height: 50px;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.fade-in-delay-1 {
    animation-delay: 0.1s;
}

.fade-in-delay-2 {
    animation-delay: 0.2s;
}

.fade-in-delay-3 {
    animation-delay: 0.3s;
}

/* Support Center Section - Yeni Modern Tasarım */
.support-center-section {
    padding: 80px 5%;
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    display: flex;
    gap: 100px;
    align-items: flex-start;
    position: relative;
    z-index: 10;
}

/* SOL TARAF: BAŞLIK VE ALT BAŞLIK */
.support-intro {
    flex: 1;
    position: sticky;
    top: 100px;
}

.support-badge {
    color: #635bff;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: block;
}

.support-intro h2 {
    font-size: 42px;
    font-weight: 800;
    color: #1a1f36;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 25px;
}

.support-intro p {
    font-size: 12px;
    color: #4f5b76;
    line-height: 1.6;
    max-width: 400px;
}

/* SAĞ TARAF: ACCORDION */
.support-accordion {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.support-item {
    border: 1px solid #f0f4f8;
    border-radius: 20px;
    background: #ffffff;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.support-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.support-trigger {
    width: 100%;
    padding: 28px 35px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.support-trigger h3 {
    font-size: 15px;
    font-weight: 700;
    color: #1a1f36;
    margin: 0;
    transition: color 0.3s;
}

/* İkon */
.support-toggle {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.4s ease;
}
.support-toggle::before, .support-toggle::after {
    content: "";
    position: absolute;
    background: #635bff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.support-toggle::before { width: 14px; height: 2px; }
.support-toggle::after { width: 2px; height: 14px; transition: height 0.3s; }

/* CEVAP ALANI */
.support-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: #fcfdfe;
}

.support-content-inner {
    padding: 0 35px 30px 35px;
    font-size: 15px;
    color: #4f5b76;
    line-height: 1.7;
}

/* AKTİF DURUM */
.support-item.active {
    border-color: #635bff;
    box-shadow: 0 20px 40px rgba(99, 91, 255, 0.08);
}

.support-item.active .support-trigger h3 {
    color: #635bff;
}

.support-item.active .support-toggle {
    transform: rotate(0deg);
}

.support-item.active .support-toggle::after {
    height: 0;
}

@media (max-width: 992px) {
    .support-center-section { 
        flex-direction: column; 
        padding: 60px 5%; 
        gap: 50px; 
    }
    
    .support-intro { 
        position: static; 
        text-align: center; 
    }
    
    .support-intro h2 {
        font-size: 36px;
    }
    
    .support-intro p { 
        margin: 0 auto; 
        max-width: 600px;
    }
    
    .support-accordion { 
        width: 100%; 
    }
}

@media (max-width: 768px) {
    .support-center-section {
        padding: 40px 5%;
        gap: 40px;
    }
    
    .support-intro h2 {
        font-size: 32px;
        letter-spacing: -1px;
        margin-bottom: 20px;
    }
    
    .support-intro p {
        font-size: 14px;
    }
    
    .support-badge {
        font-size: 11px;
        margin-bottom: 16px;
    }
    
    .support-trigger {
        padding: 24px 28px;
    }
    
    .support-trigger h3 {
        font-size: 15px;
        line-height: 1.4;
        padding-right: 10px;
    }
    
    .support-content-inner {
        padding: 0 28px 24px 28px;
        font-size: 14px;
    }
    
    .support-item {
        border-radius: 16px;
    }
}

@media (max-width: 480px) {
    .support-center-section {
        padding: 30px 5%;
        gap: 30px;
    }
    
    .support-intro h2 {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .support-intro p {
        font-size: 13px;
    }
    
    .support-badge {
        font-size: 10px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
    
    .support-trigger {
        padding: 20px 24px;
    }
    
    .support-trigger h3 {
        font-size: 14px;
    }
    
    .support-toggle {
        width: 20px;
        height: 20px;
    }
    
    .support-toggle::before {
        width: 12px;
    }
    
    .support-toggle::after {
        height: 12px;
    }
}

@media (max-width: 360px) {
    .support-center-section {
        padding: 24px 12px;
        gap: 24px;
    }
    
    .support-intro h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }
    
    .support-intro p {
        font-size: 12px;
    }
    
    .support-badge {
        font-size: 9px;
        padding: 4px 10px;
    }
    
    .support-trigger {
        padding: 16px 18px;
    }
    
    .support-trigger h3 {
        font-size: 13px;
        line-height: 1.4;
    }
    
    .support-toggle {
        width: 18px;
        height: 18px;
    }
    
    .support-content-inner {
        padding: 0 18px 18px 18px;
        font-size: 12px;
        line-height: 1.6;
    }
    
    .support-item {
        border-radius: 12px;
    }
}
    }
    
    .support-content-inner {
        padding: 0 24px 20px 24px;
        font-size: 13px;
        line-height: 1.6;
    }
    
    .support-item {
        border-radius: 14px;
        gap: 10px;
    }
    
    .support-accordion {
        gap: 10px;
    }
}


/* Global Partners Section - Yeni Modern Tasarım */
:root {
    --gp-blue: #635bff;
    --gp-text: #1a1f36;
    --gp-muted: #677489;
    --gp-border: #f0f4f8;
    --gp-card-bg: #ffffff;
}

.global-partners {
    background: #ffffff;
    padding: 40px 5%;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.partners-header {
    text-align: center;
    margin-bottom: 60px;
}

.partners-badge {
    color: var(--gp-blue);
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.partners-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--gp-text);
    letter-spacing: -2.5px;
    line-height: 1.1;
    margin: 0;
}

.partners-header p {
    color: var(--gp-muted);
    font-size: 12px;
    margin-top: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* PARTNER GRID - TESTIMONIAL KARTLARIYLA AYNI DİL */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.partner-tile {
    background: var(--gp-card-bg);
    border: 1px solid var(--gp-border);
    border-radius: 24px; /* Testimonial kartlarıyla uyumlu */
    padding: 50px 40px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}

.partner-tile:hover {
    transform: translateY(-10px);
    border-color: var(--gp-blue);
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.12);
}

/* Logoları daha profesyonel ve sade tutalım */
.tile-logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--gp-text);
    margin-bottom: 25px;
    letter-spacing: -1px;
    filter: grayscale(100%); /* Başlangıçta gri/kurumsal */
    opacity: 0.7;
    transition: all 0.4s ease;
}

.partner-tile:hover .tile-logo {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.tile-info h4,
.tile-info h3 {
    font-size: 15px;
    color: var(--gp-text);
    margin: 0 0 10px 0;
    font-weight: 700;
}

.tile-info p {
    font-size: 12px;
    color: var(--gp-muted);
    line-height: 1.6;
    margin: 0;
}

/* Marka Renk Vurguları (Hover durumunda) */
.partner-tile.cloudflare:hover .tile-logo { color: #f38020; }
.partner-tile.didit:hover .tile-logo { color: #00d68f; }
.partner-tile.twilio:hover .tile-logo { color: #f22f46; }

@media (max-width: 992px) {
    .partners-grid { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
    .global-partners {
        padding: 40px 12px;
    }
    
    .partners-header h2 {
        font-size: 28px;
    }
    
    .partners-header p {
        font-size: 12px;
    }
    
    .partners-badge {
        font-size: 10px;
        padding: 4px 10px;
    }
    
    .partner-tile {
        padding: 24px 16px;
    }
    
    .tile-logo {
        font-size: 20px;
    }
    
    .tile-info h4,
    .tile-info h3 {
        font-size: 14px;
    }
    
    .tile-info p {
        font-size: 11px;
    }
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 80px;
}

.testimonials-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--corporate-navy);
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.testimonials-subtitle {
    font-size: 12px;
    color: var(--corporate-text-muted);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

.testimonials-slider {
    position: relative;
    margin-bottom: 80px;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonials-slide {
    min-width: 100%;
    padding: 0 20px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--corporate-white);
    border: 2px solid var(--corporate-border);
    border-radius: var(--corporate-radius);
    padding: 40px 32px;
    transition: var(--corporate-transition);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(9180deg, var(--corporate-navy), var(--accent));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    border-color: var(--corporate-navy);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
}

.testimonial-content {
    margin-bottom: 32px;
}

.testimonial-content p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--corporate-text);
    font-style: italic;
    margin: 0;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 48px;
    color: var(--corporate-border);
    position: absolute;
    top: -20px;
    left: -10px;
    opacity: 0.3;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--corporate-navy);
    margin: 0 0 4px 0;
}

.author-info p {
    font-size: 12px;
    color: var(--corporate-text-muted);
    margin: 0;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 40px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--corporate-white);
    border: 2px solid var(--corporate-border);
    color: var(--corporate-text);
    font-size: 15px;
    cursor: pointer;
    transition: var(--corporate-transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-btn:hover {
    background: var(--corporate-navy);
    border-color: var(--corporate-navy);
    color: var(--corporate-white);
    transform: scale(1.1);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--corporate-border);
    cursor: pointer;
    transition: var(--corporate-transition);
}

.dot.active {
    background: var(--corporate-navy);
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 80px 0;
    }
    
    .testimonials-title {
        font-size: 36px;
    }
    
    .testimonials-subtitle {
        font-size: 15px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .testimonial-card {
        padding: 32px 24px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 12px;
    }
}

/* Animation Classes */
.testimonial-card {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.testimonial-card:nth-child(1) { animation-delay: 0.1s; }
.testimonial-card:nth-child(2) { animation-delay: 0.2s; }
.testimonial-card:nth-child(3) { animation-delay: 0.3s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern How It Works Section - Zigzag SaaS Design */
.hiw-section {
    padding: 80px 5%;
    background: #ffffff;
    position: relative;
    overflow-x: hidden;
}

.hiw-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

.hiw-header {
    text-align: center;
    margin-bottom: 120px;
}

.hiw-title {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 0;
    line-height: 1.2;
    color: #111111;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.hiw-title span {
    color: #635bff;
}

.accent {
    color: #635bff;
    display: inline !important;
}

.hiw-subtitle {
    display: none; /* Zigzag tasarımda subtitle gizli */
}

.hiw-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 80px;
}

.hiw-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 32px;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 24px;
    color: #666666;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.tab-btn:hover {
    border-color: #635bff;
    color: #635bff;
}

.tab-btn.active {
    background: #635bff;
    color: #ffffff;
    border-color: #635bff;
}

.hiw-content {
    position: relative;
    overflow: hidden;
}

.hiw-steps {
    display: none;
}

.hiw-steps.active {
    display: block;
}

/* Zigzag Layout */
.step-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 150px;
    position: relative;
}

.step-row:nth-child(even) {
    flex-direction: row-reverse;
}

.step-row:last-child {
    margin-bottom: 0;
}

.step-content {
    flex: 0 0 45%;
    position: relative;
    z-index: 2;
}

.step-visual {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.big-number {
    font-size: 180px;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(180deg, rgba(99, 91, 255, 0.08) 0%, rgba(255, 255, 255, 0) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    user-select: none;
    position: absolute;
    z-index: 1;
}

.icon-box {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 800;
    color: #635bff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
    border: 1px solid #f0f0f0;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.step-row:hover .icon-box {
    transform: translateY(-10px) rotate(5deg);
    border-color: #635bff;
}

.step-content h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    color: #111111;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.step-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #666666;
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* Responsive Design */
@media (max-width: 850px) {
    .hiw-section {
        padding: 40px 5%;
    }

    .hiw-title {
        font-size: 42px;
        margin-bottom: 40px;
        letter-spacing: -1px;
    }

    .hiw-tabs-container {
        margin-bottom: 30px;
    }

    .step-row,
    .step-row:nth-child(even) {
        flex-direction: column;
        text-align: center;
        margin-bottom: 40px;
        gap: 20px;
    }

    .step-content,
    .step-visual {
        flex: 0 0 100%;
    }

    .big-number {
        font-size: 120px;
        top: -40px;
    }

    .icon-box {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }

    .step-content h3 {
        font-size: 22px;
        margin-bottom: 16px;
    }

    .step-content p {
        font-size: 12px;
        line-height: 1.6;
    }

    .tab-btn {
        padding: 10px 24px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .hiw-section {
        padding: 30px 5%;
    }

    .hiw-title {
        font-size: 28px;
    }
    
    .hiw-tabs {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
    }
    
    .step-row {
        margin-bottom: 60px;
    }
    
    .big-number {
        font-size: 100px;
    }
    
    .icon-box {
        width: 50px;
        height: 50px;
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .hiw-section {
        padding: 24px 12px;
    }

    .hiw-header {
        margin-bottom: 80px;
    }

    .hiw-title {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .hiw-tabs-container {
        margin-bottom: 24px;
    }
    
    .hiw-tabs {
        gap: 10px;
    }
    
    .tab-btn {
        max-width: 100%;
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .step-row {
        margin-bottom: 50px;
        gap: 16px;
    }
    
    .big-number {
        font-size: 80px;
        top: -30px;
    }
    
    .icon-box {
        width: 44px;
        height: 44px;
        font-size: 14px;
        border-radius: 16px;
    }
    
    .step-content h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .step-content p {
        font-size: 12px;
        line-height: 1.6;
    }
}

/* Animation Classes */
.step-row {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.step-row:nth-child(1) { animation-delay: 0.1s; }
.step-row:nth-child(2) { animation-delay: 0.2s; }
.step-row:nth-child(3) { animation-delay: 0.3s; }
.step-row:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern Pricing Section - Payoup Design */
.payoup-section {
    padding: 80px 5%;
    background-color: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1a1f36;
    width: 100%;
    box-sizing: border-box;
}

.payoup-section .section-header,
.payoup-section .flex-container,
.payoup-section .payment-methods {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Section Header */
.section-header {
    margin-bottom: 40px;
    text-align: center;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin: 0;
    color: #1a1f36;
}

.section-header h2 span {
    display: block;
    margin-top: 8px;
    background: linear-gradient(9180deg, #635bff, #a359ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Flex Container */
.flex-container {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.features-column {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

/* Feature Boxes */
.feature-box h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #1a1f36;
}

.feature-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #4f5b76;
    margin: 0;
}

/* Network Highlight */
.network-highlight {
    padding: 30px;
    border-left: 3px solid #635bff;
    background: #f9faff;
    border-radius: 0 16px 16px 0;
}

.network-highlight h3 {
    color: #635bff;
}

/* Pricing Sticky */
.pricing-sticky {
    flex: 0.8;
    padding: 60px;
    background: #ffffff;
    border: 1px solid #f0f0f5;
    border-radius: 32px;
    box-shadow: 0 30px 60px -12px rgba(50,50,93,0.05);
    text-align: center;
}

.price-label {
    font-size: 12px;
    font-weight: 700;
    color: #0f172a;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    display: block;
}

.price-value {
    font-size: 42px;
    font-weight: 800;
    letter-spacing: -3px;
    margin-bottom: 8px;
    color: #635bff;
}

.price-subtext {
    font-size: 12px;
    color: #4f5b76;
    margin-bottom: 32px;
}

.cta-btn {
    background: #635bff;
    color: white;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #635bff;
    display: inline-flex;
    align-items: center;
}

.cta-btn:hover {
    background: #544df0;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(99, 91, 255, 0.2);
}

/* Final CTA Section - SaaS Modern Style */
.final-cta-section {
    padding: 40px 5%;
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    text-align: center;
}

.brand-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    letter-spacing: -2.5px;
    margin-bottom: 20px;
    line-height: 1.1;
    color: #1a1f36;
}

.highlight-blue {
    background: #635bff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta-section .cta-description {
    font-size: 18px;
    color: #677489;
    max-width: 560px;
    margin: 0 auto 45px auto;
    line-height: 1.6;
    font-weight: 500;
}

.cta-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 55px;
    flex-wrap: wrap;
}

.btn-main {
    background: #635bff;
    color: white;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #635bff;
    display: inline-flex;
    align-items: center;
}

.btn-main:hover {
    background: #544df0;
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(99, 91, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: #1a1f36;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid #e2e8f0;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.btn-outline:hover {
    border-color: #635bff;
    background: #fcfdfe;
}

.badge-group {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.modern-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 700;
    color: #1a1f36;
    transition: all 0.3s ease;
}

.modern-badge svg {
    width: 18px;
    height: 18px;
    color: #635bff;
}

.modern-badge:hover {
    background: rgba(99, 91, 255, 0.08);
    border-color: rgba(99, 91, 255, 0.2);
    transform: scale(1.05);
}

@media (max-width: 640px) {
    .brand-title { font-size: 40px; }
    .cta-actions { flex-direction: column; }
    .badge-group { flex-direction: column; align-items: center; }
}

@media (max-width: 360px) {
    .final-cta-section {
        padding: 32px 12px;
    }
    
    .brand-title { 
        font-size: 32px;
        line-height: 1.2;
    }
    
    .cta-description {
        font-size: 14px;
        line-height: 1.6;
    }
    
    .cta-actions {
        gap: 12px;
    }
    
    .btn-main, .btn-outline {
        padding: 14px 24px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
    
    .modern-badge {
        padding: 8px 14px;
        font-size: 11px;
        width: 100%;
        justify-content: center;
    }
    
    .modern-badge svg {
        width: 16px;
        height: 16px;
    }
}

/* Bottom Status */
.bottom-status {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #f0f0f5;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: #4f5b76;
}

.status-badge {
    background: #1a1f36;
    color: white;
    padding: 3px 10px;
    border-radius: 5px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
}

/* Responsive Design */
@media (max-width: 900px) {
    .flex-container {
        flex-direction: column;
        gap: 60px;
    }
    
    .pricing-sticky {
        width: 100%;
        box-sizing: border-box;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
}

@media (max-width: 600px) {
    .payoup-section {
        padding: 80px 15px;
    }
    
    .section-header {
        margin-bottom: 60px;
    }
    
    .section-header h2 {
        font-size: 42px;
    }
    
    .features-column {
        gap: 32px;
    }
    
    .feature-box h3 {
        font-size: 12px;
    }
    
    .feature-box p {
        font-size: 12px;
    }
    
    .network-highlight {
        padding: 20px;
    }
    
    .pricing-sticky {
        padding: 40px 30px;
    }
    
    .price-value {
        font-size: 48px;
    }
    
    .flex-container {
        gap: 40px;
    }
}

@media (max-width: 480px) {
    .payoup-section {
        padding: 60px 15px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .pricing-sticky {
        padding: 30px 20px;
    }
    
    .price-value {
        font-size: 40px;
    }
    
    .cta-btn {
        padding: 16px 32px;
        font-size: 12px;
    }
    
    .bottom-status {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

@media (max-width: 360px) {
    .payoup-section {
        padding: 40px 12px;
    }
    
    .section-header h2 {
        font-size: 24px;
        line-height: 1.2;
    }
    
    .pricing-sticky {
        padding: 24px 16px;
    }
    
    .price-label {
        font-size: 11px;
    }
    
    .price-value {
        font-size: 32px;
    }
    
    .price-subtext {
        font-size: 12px;
    }
    
    .cta-btn {
        padding: 14px 24px;
        font-size: 12px;
        width: 100%;
    }
    
    .feature-box {
        padding: 20px 16px;
    }
    
    .feature-box h3 {
        font-size: 16px;
    }
    
    .feature-box p {
        font-size: 12px;
    }
    
    .payment-methods-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .payment-method-item {
        font-size: 11px;
        padding: 12px 8px;
    }
    
    .payment-method-item i {
        font-size: 20px;
    }
}

.corporate-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--corporate-white);
    font-weight: 800;
}

.corporate-cta p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 550px;;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 1200px) {
    .hiw-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .feature-banner {
        grid-template-columns: 1fr;
        padding: 32px;
        gap: 32px;
    }
    .hiw-hero h1 { font-size: 42px; }
}

@media (max-width: 768px) {
    .hiw-grid {
        grid-template-columns: 1fr;
    }
    .hiw-tabs {
        flex-direction: column;
        border-radius: 20px;
        width: 100%;
    }
    .tab-btn {
        width: 100%;
        padding: 10px;
    }
    .cta-btns {
        flex-direction: column;
    }
    .corporate-cta h2 { font-size: 28px; }
}

/* Payment Processing Page Styles */
.payment-processing-page {
    background-color: var(--corporate-bg);
    color: var(--corporate-text);
}

.pp-hero {
    background: linear-gradient(180deg, #635bff 0%, #1e293b 100%);
    padding: 140px 0 140px;
    text-align: center;
    color: var(--corporate-white);
    position: relative;
    overflow: hidden;
}

.pp-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--corporate-bg);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.pp-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.pp-hero p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.pp-tabs-container {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    margin-bottom: 60px;
}

.pp-tabs {
    display: flex;
    justify-content: center;
    gap: 10px;
    background: var(--corporate-white);
    padding: 6px;
    border-radius: 100px;
    box-shadow: var(--corporate-shadow);
    max-width: fit-content;
    margin: 0 auto;
    border: 1px solid var(--corporate-border);
}

.pp-content-section {
    display: none;
    animation: slideUp 0.5s ease-out forwards;
}

.pp-content-section.active {
    display: block;
}

.pp-table-container {
    background: var(--corporate-white);
    border-radius: 20px;
    border: 1px solid var(--corporate-border);
    overflow-x: auto;
    overflow-y: hidden;
    margin-bottom: 80px;
    -webkit-overflow-scrolling: touch;
}

.pp-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.pp-table th {
    background: #ffffff;
    padding: 16px 24px;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    color: var(--corporate-navy);
    border-bottom: 1px solid var(--corporate-border);
    white-space: nowrap;
}

.pp-table td {
    padding: 16px 24px;
    font-size: 12px;
    border-bottom: 1px solid var(--corporate-border);
}

.tab-btn:hover {
    color: var(--corporate-white);
	background: #635bff;
}

.pp-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--corporate-navy);
}

.pp-card p {
    font-size: 12px;
    color: var(--corporate-text-muted);
    line-height: 1.5;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 12px;
    font-weight: 500;
}

.feature-image img {
    width: 100%;
    border-radius: 16px;
}

/* Responsive */
@media (max-width: 992px) {
    .pp-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-banner { grid-template-columns: 1fr; }
    
    .pp-table-container {
        margin-bottom: 60px;
        border-radius: 16px;
    }
    
    .pp-table {
        min-width: 700px;
    }
}

@media (max-width: 768px) {
    .cta-btns {
        flex-direction: column;
    }
    
    .pp-hero h1 {
        font-size: 36px;
    }
    
    .pp-table-container {
        margin-bottom: 40px;
        border-radius: 12px;
    }
    
    .pp-table {
        min-width: 650px;
        font-size: 11px;
    }
    
    .pp-table th,
    .pp-table td {
        padding: 12px 16px;
        font-size: 11px;
    }
    
    .pp-table th {
        position: sticky;
        top: 0;
        background: #ffffff;
        z-index: 10;
    }
}

@media (max-width: 600px) {
    .pp-grid { grid-template-columns: 1fr; }
    
    .pp-hero h1 {
        font-size: 28px;
    }
    
    .pp-table-container {
        margin-bottom: 30px;
        border-radius: 10px;
        margin-left: -5%;
        margin-right: -5%;
        width: calc(100% + 10%);
        border-left: none;
        border-right: none;
        border-radius: 0;
    }
    
    .pp-table {
        min-width: 600px;
    }
    
    .pp-table th,
    .pp-table td {
        padding: 10px 12px;
        font-size: 10px;
    }
    
    .pp-table th:first-child,
    .pp-table td:first-child {
        padding-left: 16px;
    }
    
    .pp-table th:last-child,
    .pp-table td:last-child {
        padding-right: 16px;
    }
}

@media (max-width: 480px) {
    .pp-table {
        min-width: 550px;
    }
    
    .pp-table th,
    .pp-table td {
        padding: 8px 10px;
        font-size: 9px;
    }
}

/* API Documentation Page Styles */
.api-content {
    background: var(--corporate-white);
    padding: 60px;
    border-radius: 24px;
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid var(--corporate-border);
    box-shadow: var(--corporate-shadow);
}

.api-section {
    margin-bottom: 80px;
    scroll-margin-top: 120px;
}

.api-section:last-child {
    margin-bottom: 0;
}

.api-section h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--corporate-navy);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.api-section h2::before {
    content: '';
    display: block;
    width: 8px;
    height: 32px;
    background: var(--corporate-navy);
    border-radius: 4px;
}

.api-section h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--corporate-navy);
    margin: 40px 0 16px;
}

.api-section p {
    font-size: 15px;
    color: var(--corporate-text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Code Blocks */
.code-block {
    background: var(--code-bg);
    color: var(--code-text);
    padding: 24px;
    border-radius: 16px;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', monospace;
    font-size: 12px;
    line-height: 1.6;
    overflow-x: auto;
    margin: 24px 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 100%;
    box-sizing: border-box;
}

.code-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
}

.method-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    margin-right: 12px;
    text-transform: uppercase;
}

.method-get { background: #10B981; color: white; }
.method-post { background: var(--corporate-navy); color: white; }
.method-delete { background: #EF4444; color: white; }

.endpoint-path {
    font-family: monospace;
    background: #F1F5F9;
    padding: 6px 12px;
    border-radius: 8px;
    color: var(--corporate-navy);
    font-weight: 700;
    font-size: 12px;
}

/* Tables */
.api-table-container {
    border: 1px solid var(--corporate-border);
    border-radius: 16px;
    overflow: hidden;
    margin: 24px auto;
    max-width: 800px;
}

.api-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
}

.api-table th {
    text-align: left;
    padding: 16px 20px;
    background: #ffffff;
    border-bottom: 1px solid var(--corporate-border);
    font-size: 12px;
    font-weight: 800;
    color: var(--corporate-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.api-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--corporate-border);
    font-size: 12px;
    vertical-align: top;
}

.api-table tr:last-child td {
    border-bottom: none;
}

.param-name {
    font-family: monospace;
    font-weight: 700;
    color: var(--corporate-navy);
    display: block;
    margin-bottom: 4px;
}

.param-type {
    font-size: 12px;
    font-weight: 700;
    color: var(--corporate-text-muted);
    text-transform: uppercase;
}

.feature-list code {
    background: #F1F5F9;
    padding: 2px 6px;
    border-radius: 4px;
    font-family: monospace;
    font-weight: 700;
    color: var(--corporate-navy);
}

/* Responsive */
@media (max-width: 992px) {
    .api-container-grid {
        grid-template-columns: 1fr;
        margin-top: 40px;
    }
    .contract-sidebar {
        position: relative;
        top: 0;
        background: #ffffff;
        z-index: 10;
        max-height: none;
    }
    .api-content {
        padding: 40px 24px;
    }
}

@media (max-width: 768px) {
    .api-content {
        padding: 24px 16px;
        border-radius: 12px;
    }
    .api-section h2 {
        font-size: 24px;
    }
    .api-section h3 {
        font-size: 16px;
    }
    .api-table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .api-table {
        min-width: 480px;
    }
    .code-block {
        font-size: 11px;
        padding: 16px;
        overflow-x: auto;
    }
}

/* Payment Links Page Styles */
.payment-links-page {
    background-color: var(--corporate-bg);
    color: var(--corporate-text);
}

/* Hero Section */
.pl-hero {
    background: linear-gradient(180deg, rgb(46 42 123 / 90%) 0%, rgba(30, 41, 59, 0.9) 100%), url('../img/price-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 0 140px;
    text-align: center;
    color: var(--corporate-white);
    position: relative;
    overflow: hidden;
}

.pl-hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pl-hero-content {
    flex: 1;
    max-width: 650px;
    text-align: left;
}

.pl-hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 24px;
    border: 1px solid rgba(37, 99, 235, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pl-hero h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--corporate-white);
}

.pl-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 580px;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-top: 40px;
}

.pl-hero-mockup {
    flex: 0 0 400px;
    perspective: 1200px;
    display: flex;
    justify-content: flex-end;
}

.mockup-card {
    background: white;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 35px 70px -15px rgba(0, 0, 0, 0.6);
    color: #1e293b;
    transform: rotateY(-12deg) rotateX(6deg) rotateZ(1deg);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 100%;
    max-width: 360px;
}

.mockup-card:hover {
    transform: rotateY(-2deg) rotateX(2deg) rotateZ(0deg) scale(1.05);
    box-shadow: 0 45px 90px -20px rgba(0, 0, 0, 0.7);
}

.mockup-header {
    display: flex;
    gap: 10px;
    margin-bottom: 28px;
    border-bottom: 1px solid #f1f5f9;
    padding-bottom: 16px;
}

.mockup-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.mockup-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #635bff 0%, #4c63d2 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.mockup-badge i {
    font-size: 12px;
}

.mockup-status {
    background: rgba(0, 214, 143, 0.1);
    color: #00d68f;
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.dot { 
    width: 12px; 
    height: 12px; 
    border-radius: 50%; 
}
.dot-red { background: #ff5f57; }
.dot-yellow { background: #febc2e; }
.dot-green { background: #28c840; }

.mockup-body { 
    display: flex; 
    flex-direction: column; 
    gap: 20px; 
}
.mockup-line { 
    height: 16px; 
    background: #f1f5f9; 
    border-radius: 6px; 
}
.mockup-link-box {
    background: #eff6ff;
    border-radius: 14px;
    padding: 16px;
    color: #2563eb;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    border: 1px dashed rgba(37, 99, 235, 0.4);
    word-break: break-all;
}
.mockup-btn {
    background: #0f172a;
    color: white;
    border: none;
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 12px;
    cursor: pointer;
    transition: var(--corporate-transition);
}

.mockup-btn:hover {
    background: #1e293b;
    transform: translateY(-2px);
}

.pl-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--corporate-bg);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

/* Feature Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.feature-card {
    background: var(--corporate-white);
    padding: 30px 24px;
    border-radius: 20px;
    border: 1px solid var(--corporate-border);
    box-shadow: var(--corporate-shadow);
    transition: var(--corporate-transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--corporate-navy);
}

.feature-icon {
    font-size: 24px;
    color: var(--corporate-navy);
    margin-bottom: 16px;
}

.feature-card h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--corporate-navy);
}

.feature-card p {
    font-size: 12px;
    color: var(--corporate-text-muted);
    line-height: 1.5;
}

/* Modern Steps Section */
.modern-steps-section {
    padding: 100px 0;
    background: var(--corporate-bg);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--corporate-border) 10%, var(--corporate-border) 90%, transparent);
    transform: translateX(-50%);
    z-index: 1;
}

.modern-step-card {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.modern-step-card:nth-child(even) {
    flex-direction: row-reverse;
}

.step-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.step-icon-wrapper {
    width: 90px;
    height: 90px;
    background: var(--corporate-white);
    border-radius: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--corporate-navy);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    border: 1px solid var(--corporate-border);
    transition: var(--corporate-transition);
    position: relative;
}

.modern-step-card:hover .step-icon-wrapper {
    transform: translateY(-10px) rotate(5deg);
    background: var(--corporate-navy);
    color: var(--corporate-white);
    border-color: var(--corporate-navy);
}

.step-center-point {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--corporate-navy);
    border: 4px solid var(--corporate-white);
    border-radius: 50%;
    z-index: 5;
}

.step-content-box {
    flex: 1;
    background: var(--corporate-white);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid var(--corporate-border);
    box-shadow: var(--corporate-shadow);
    transition: var(--corporate-transition);
}

.modern-step-card:hover .step-content-box {
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    border-color: rgba(37, 99, 235, 0.2);
}

.step-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 800;
    color: #2563eb;
    background: rgba(37, 99, 235, 0.08);
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.step-content-box h3 {
    font-size: 12px;
    font-weight: 800;
    color: var(--corporate-navy);
    margin-bottom: 16px;
    line-height: 1.2;
}

.step-content-box p {
    font-size: 12px;
    color: var(--corporate-text-muted);
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 1200px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .hiw-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .feature-banner { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
    .pl-hero h1 { font-size: 42px; }
    .pl-hero .container { flex-direction: column; text-align: center; gap: 40px; }
    .pl-hero-mockup { flex: 0 0 auto; width: 100%; max-width: 350px; }
    .mockup-card { transform: none; }
}

@media (max-width: 850px) {
    .steps-container::before { left: 40px; transform: none; }
    .modern-step-card, .modern-step-card:nth-child(even) { flex-direction: column; align-items: flex-start; gap: 30px; }
    .step-center-point { left: 40px; }
    .step-visual { justify-content: flex-start; margin-left: 80px; }
    .step-content-box { margin-left: 80px; width: calc(100% - 80px); }
}

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; margin-top: -40px; }
    .hiw-grid { grid-template-columns: 1fr; }
    .corporate-cta h2 { font-size: 28px; }
}

/* About Page Styles */
.about-page {
    background-color: var(--corporate-bg);
    color: var(--corporate-text);
}

/* Hero Section */
.about-hero {
    background: linear-gradient(180deg, rgb(46 42 123 / 90%) 0%, rgba(30, 41, 59, 0.9) 100%), url('../img/about-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 0 135px;
    text-align: center;
    color: var(--corporate-white);
    position: relative;
    overflow: hidden;
}

.about-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--corporate-bg);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.about-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.about-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section Styling */
.section-padding {
    padding: 100px 0;
}

/* Story & Alternating Sections */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse .story-content {
    direction: ltr;
}

.about-grid.reverse .story-image {
    direction: ltr;
}

.story-content h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--corporate-navy);
}

.story-content p {
    font-size: 15px;
    color: var(--corporate-text-muted);
    line-height: 1.8;
    margin-bottom: 20px;
}

.story-image img {
    width: 100%;
    border-radius: var(--corporate-radius);
    box-shadow: var(--corporate-shadow);
    transition: var(--corporate-transition);
}

.story-image img:hover {
    transform: scale(1.02);
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.value-card {
    background: var(--corporate-white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid #f1f5f9;
    transition: var(--corporate-transition);
    display: flex;
    gap: 24px;
    align-items: flex-start;
    text-align: left;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
    border-color: #e2e8f0;
}

.value-icon {
    width: 56px;
    height: 56px;
    background: #ffffff;
    color: var(--corporate-navy);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    transition: var(--corporate-transition);
}

.value-card:hover .value-icon {
    background: var(--corporate-navy);
    color: var(--corporate-white);
}

.value-info h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--corporate-navy);
}

.value-info p {
    font-size: 12px;
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.team-card {
    text-align: center;
}

.team-card img {
    width: 100%;
    border-radius: var(--corporate-radius);
    margin-bottom: 20px;
    filter: grayscale(100%);
    transition: var(--corporate-transition);
}

.team-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.team-card h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--corporate-navy);
    margin-bottom: 4px;
}

.team-card p {
    font-size: 12px;
    color: var(--corporate-navy);
    font-weight: 600;
}

/* Corporate Power Section */
.corporate-power-card {
    background: #ffffff;
    border-radius: 48px;
    padding: 80px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    border: 1px solid #f1f5f9;
    margin-bottom: 100px;
}

.corporate-power-info .section-badge {
    background: rgba(37, 99, 235, 0.1);
    color: var(--corporate-navy);
    margin-bottom: 24px;
}

.corporate-power-info h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--corporate-navy);
}

.corporate-power-info p {
    font-size: 12px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 32px;
}

.corporate-tag-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.corporate-tag {
    background: var(--corporate-white);
    padding: 8px 16px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.corporate-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.visual-box {
    height: 160px;
    background: var(--corporate-white);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    color: var(--corporate-navy);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border: 1px solid #f1f5f9;
    transition: var(--corporate-transition);
}

.visual-box:nth-child(even) {
    transform: translateY(32px);
}

.visual-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.visual-box:nth-child(even):hover {
    transform: translateY(27px);
}

/* Corporate CTA with background */
.corporate-cta.about-cta {
    background: linear-gradient(180deg, rgb(46 42 123 / 90%) 0%, rgba(30, 41, 59, 0.9) 100%), url('../img/about-footer-bg.jpg');
    background-size: cover;
    background-position: center;
}

/* Responsive */
@media (max-width: 992px) {
    .values-grid { grid-template-columns: 1fr; }
    .corporate-power-card { grid-template-columns: 1fr; padding: 60px 40px; gap: 40px; }
    .visual-box:nth-child(even) { transform: none; }
    .visual-box:nth-child(even):hover { transform: translateY(-5px); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-grid.reverse { direction: ltr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
}

@media (max-width: 600px) {
    .values-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
    .about-hero h1 { font-size: 36px; }
}

/* Careers Page Styles */
.careers-page {
    background-color: var(--corporate-bg);
    color: var(--corporate-text);
}

/* Hero Section */
.careers-hero {
    background: linear-gradient(180deg, #635bff 0%, #1e293b 100%);
    padding: 140px 0 135px;
    text-align: center;
    color: var(--corporate-white);
    position: relative;
    overflow: hidden;
}

.careers-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--corporate-bg);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.careers-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
    color: var(--corporate-white);
}

.careers-hero p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Grid (Same as hiw-grid) */
.careers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.careers-card {
    background: var(--corporate-white);
    padding: 32px 24px;
    border-radius: 20px;
    border: 1px solid var(--corporate-border);
    transition: var(--corporate-transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.careers-card:hover {
    border-color: var(--corporate-navy);
    transform: translateY(-6px);
    box-shadow: var(--corporate-shadow);
}

.card-icon {
    width: 52px;
    height: 52px;
    background: #F1F5F9;
    color: var(--corporate-navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 24px;
    transition: var(--corporate-transition);
}

.careers-card:hover .card-icon {
    background: var(--corporate-navy);
    color: var(--corporate-white);
}

.careers-card h3 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--corporate-navy);
    line-height: 1.4;
}

.careers-card p {
    color: var(--corporate-text-muted);
    font-size: 12px;
    line-height: 1.6;
}

/* Jobs List */
.jobs-list {
    margin-bottom: 80px;
}

.job-item {
    background: var(--corporate-white);
    padding: 24px 32px;
    border-radius: 20px;
    border: 1px solid var(--corporate-border);
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: var(--corporate-transition);
}

.job-item:hover {
    border-color: var(--corporate-navy);
    transform: translateX(8px);
    box-shadow: var(--corporate-shadow);
}

.job-info h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--corporate-navy);
    margin-bottom: 6px;
}

.job-meta {
    display: flex;
    gap: 20px;
    color: var(--corporate-text-muted);
    font-size: 12px;
}

.job-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.btn-apply-sm {
    padding: 10px 24px;
    background: var(--corporate-navy);
    color: var(--corporate-white);
    border-radius: 100px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--corporate-transition);
    font-size: 12px;
}

.btn-apply-sm:hover {
    background: #1e293b;
    transform: translateY(-2px);
}

/* Modern Modal (Stripe Style) */
.modal-overlay {
    display: none; 
    position: fixed; 
    inset: 0; 
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px); 
    z-index: 9999; 
    align-items: center; 
    justify-content: center;
    opacity: 0; 
    transition: opacity 0.3s ease;
    padding: 20px;
}
.modal-overlay.active { 
    display: flex; 
    opacity: 1; 
}

.modal-card {
    background: white; 
    width: 100%; 
    max-width: 520px; 
    border-radius: 24px; 
    padding: 40px;
    position: relative; 
    transform: scale(0.95); 
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    max-height: 90vh;
    overflow-y: auto;
}
.modal-overlay.active .modal-card { 
    transform: scale(1); 
}

.modal-close { 
    position: absolute; 
    top: 24px; 
    right: 24px; 
    cursor: pointer; 
    color: #94a3b8; 
    border: none; 
    background: none; 
    font-size: 24px; 
    transition: var(--corporate-transition);
    z-index: 10;
}
.modal-close:hover {
    color: var(--corporate-navy);
    transform: rotate(9180deg);
}

.modal-icon { 
    width: 64px; 
    height: 64px; 
    background: var(--corporate-navy); 
    color: var(--corporate-navy); 
    border-radius: 18px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 28px; 
    margin: 0 auto 24px; 
}
.modal-title { 
    text-align: center; 
    font-size: 24px; 
    font-weight: 800; 
    color: var(--corporate-navy); 
    margin-bottom: 8px; 
    letter-spacing: -0.02em;
}
.modal-text { 
    text-align: center; 
    color: #64748b; 
    font-size: 12px; 
    margin-bottom: 32px; 
    line-height: 1.6; 
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--corporate-navy);
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    border-radius: 14px;
    border: 1.5px solid #e2e8f0;
    background: #fcfdfe;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 12px;
    color: var(--corporate-navy);
    caret-color: #2563eb;
}

.form-control:focus {
    border-color: #2563eb;
    outline: none;
    background: var(--corporate-white);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    transform: translateY(-1px);
}

.form-control::placeholder {
    color: #94a3b8;
    transition: opacity 0.2s;
}

.form-control:focus::placeholder {
    opacity: 0.5;
}

.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    font-weight: 500;
    font-size: 12px;
}

.alert-success {
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.alert-error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* Responsive */
@media (max-width: 1200px) {
    .careers-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .feature-banner { grid-template-columns: 1fr; padding: 32px; gap: 32px; }
    .careers-hero h1 { font-size: 42px; }
}

@media (max-width: 768px) {
    .careers-grid { grid-template-columns: 1fr; }
    .job-item { flex-direction: column; align-items: flex-start; gap: 20px; }
    .btn-apply-sm { width: 100%; text-align: center; }
    .corporate-cta h2 { font-size: 28px; }
}

/* Blog Page Styles */
.blog-page {
    background-color: var(--corporate-bg);
    color: var(--corporate-text);
    padding-bottom: 50px;
}

/* Hero Section */
.blog-hero {
    background: linear-gradient(180deg, rgb(46 42 123 / 90%) 0%, rgba(30, 41, 59, 0.9) 100%), url('../img/blog-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 0 135px;
    text-align: center;
    color: var(--corporate-white);
    position: relative;
    overflow: hidden;
}

.blog-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.blog-hero p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Categories */
.blog-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--corporate-white);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--corporate-transition);
    text-decoration: none;
}

.category-btn:hover, .category-btn.active {
    background: var(--corporate-navy);
    border-color: var(--corporate-navy);
    color: var(--corporate-white);
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.blog-card {
    background: var(--corporate-white);
    border-radius: var(--corporate-radius);
    overflow: hidden;
    border: 1px solid var(--corporate-border);
    transition: var(--corporate-transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    border-color: var(--corporate-navy);
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--corporate-transition);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--corporate-navy);
    color: var(--corporate-white);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-date {
    font-size: 12px;
    color: var(--corporate-text-muted);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--corporate-navy);
    margin-bottom: 16px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 12px;
    color: var(--corporate-text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.blog-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.read-more {
    color: var(--corporate-navy);
    font-weight: 700;
    text-decoration: none;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.read-more:hover {
    gap: 10px;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.blog-author img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}

.blog-author span {
    font-size: 12px;
    font-weight: 600;
    color: var(--corporate-navy);
}

/* Newsletter Section */
.newsletter-box {
    background: var(--corporate-navy);
    border-radius: var(--corporate-radius);
    padding: 60px;
    text-align: center;
    color: var(--corporate-white);
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.newsletter-box h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
}

.newsletter-box p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 12px;
}

.newsletter-form input {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #635bff;
    padding: 16px 24px;
    border-radius: 100px;
    color: var(--corporate-white);
    outline: none;
}

.newsletter-form input:focus {
    border-color: var(--corporate-navy);
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
    background: var(--corporate-white);
    color: var(--corporate-navy);
    border: none;
    padding: 0 32px;
    border-radius: 100px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--corporate-transition);
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

/* Responsive */
@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .blog-grid { grid-template-columns: 1fr; }
    .blog-hero h1 { font-size: 36px; }
    .newsletter-form { flex-direction: column; border-radius: 20px; }
    .newsletter-btn { padding: 16px; }
}

/* Blog Detail Page Styles */
.blog-detail-page {
    background-color: var(--corporate-bg);
    color: var(--corporate-text);
    padding-bottom: 50px;
}

/* Hero / Header Section */
.detail-hero {
    background: linear-gradient(180deg, #635bff 0%, #1e293b 100%);
    padding: 140px 0 135px;
    text-align: center;
    color: var(--corporate-white);
    position: relative;
}

.detail-hero .container {
    max-width: 900px;
}

.detail-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(37, 99, 235, 0.2);
    color: #60a5fa;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.detail-hero h1 {
    font-size: 44px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.detail-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 12px;
}

.detail-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Content Area */
.detail-container {
    max-width: 1200px;
    margin: -80px auto 0;
    position: relative;
    z-index: 10;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 40px;
}

.blog-article {
    background: var(--corporate-white);
    padding: 60px;
    border-radius: var(--corporate-radius);
    border: 1px solid var(--corporate-border);
    box-shadow: var(--corporate-shadow);
    line-height: 1.6;
    font-size: 12px;
    color: var(--corporate-text-muted);
}

/* Sidebar Styles */
.blog-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-widget {
    background: var(--corporate-white);
    padding: 30px;
    border-radius: var(--corporate-radius);
    border: 1px solid var(--corporate-border);
    box-shadow: var(--corporate-shadow);
}

.widget-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--corporate-navy);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #f1f5f9;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Categories Widget */
.sidebar-categories {
    list-style: none;
    padding: 0;
}

.sidebar-categories li {
    margin-bottom: 12px;
}

.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    font-size: 12px;
    transition: var(--corporate-transition);
    padding: 8px 12px;
    border-radius: 12px;
}

.sidebar-categories li a:hover {
    background: #ffffff;
    color: var(--corporate-navy);
    transform: translateX(5px);
}

/* Popular Posts Widget */
.popular-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.popular-post-item {
    display: flex;
    gap: 15px;
    text-decoration: none;
}

.pop-post-img {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    object-fit: cover;
}

.pop-post-info {
    flex: 1;
}

.pop-post-info h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--corporate-navy);
    margin-bottom: 6px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pop-post-info span {
    font-size: 12px;
    color: var(--corporate-text-muted);
}

/* CTA Widget */
.sidebar-cta {
    background: linear-gradient(180deg, #635bff 0%, #1e293b 100%);
    color: var(--corporate-white);
    text-align: center;
}

.sidebar-cta h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 12px;
}

.sidebar-cta p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.btn-sidebar-cta {
    width: 100%;
    padding: 14px;
    background: var(--corporate-navy);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-sidebar-cta:hover {
    background: #1d4ed8;
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.detail-main-image {
    width: 100%;
    height: 400px;
    border-radius: var(--corporate-radius);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.15);
    margin-bottom: 40px;
}

.detail-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-article h2, .blog-article h3 {
    color: var(--corporate-navy);
    font-weight: 800;
    margin: 32px 0 16px;
    line-height: 1.3;
}

.blog-article p {
    margin-bottom: 20px;
}

.blog-article ul {
    margin-bottom: 24px;
    padding-left: 20px;
    list-style: disc;
}

.blog-article li {
    margin-bottom: 8px;
}

.blog-article strong {
    color: var(--corporate-navy);
    font-weight: 700;
}

/* Social Share Styles */
.share-container {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.share-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--corporate-navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.share-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    transition: var(--corporate-transition);
    border: 1px solid var(--corporate-border);
    background: var(--corporate-white);
}

.share-btn.x-twitter { color: #000000; }
.share-btn.linkedin { color: #0077b5; }
.share-btn.whatsapp { color: #25d366; }
.share-btn.copy-link { color: var(--corporate-navy); }

.share-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: currentColor;
    background: #ffffff;
}

/* Copy Feedback Toast */
#copy-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--corporate-navy);
    color: white;
    padding: 12px 24px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10000;
    display: none;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.2);
}

/* Back Button Sidebar Style */
.back-to-blog-btn {
    position: absolute;
    top: 40px;
    left: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    padding: 10px 18px;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    transition: all 0.2s;
    z-index: 100;
}

.back-to-blog-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transform: translateX(-3px);
}

/* Responsive */
@media (max-width: 992px) {
    .detail-container { grid-template-columns: 1fr; }
    .detail-hero h1 { font-size: 42px; }
    .blog-article { padding: 30px; }
    .detail-main-image { height: 300px; }
    .back-to-blog-btn { top: 20px; left: 20px; padding: 8px 14px; font-size: 12px; }
}

/* Press Page Styles */
.press-page {
    background-color: var(--corporate-bg);
    color: var(--corporate-text);
}

/* Hero Section */
.press-hero {
    background: linear-gradient(180deg, #635bff 0%, #1e293b 100%);
    padding: 140px 0 135px;
    text-align: center;
    color: var(--corporate-white);
    position: relative;
    overflow: hidden;
}

.press-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.press-hero p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.press-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--corporate-bg);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    margin-top: 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 800;
    color: var(--corporate-navy);
    margin-bottom: 12px;
}

.section-badge {
    display: inline-block;
    padding: 5px 14px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--corporate-navy);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Press Grid */
.press-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 80px;
}

.press-card {
    background: var(--corporate-white);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid var(--corporate-border);
    transition: var(--corporate-transition);
    display: flex;
    flex-direction: column;
}

.press-card:hover {
    border-color: var(--corporate-navy);
    transform: translateY(-6px);
    box-shadow: var(--corporate-shadow);
}

.press-date {
    font-size: 12px;
    color: var(--corporate-text-muted);
    font-weight: 600;
    margin-bottom: 12px;
}

.press-card h3 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--corporate-navy);
    line-height: 1.5;
}

.press-card p {
    color: var(--corporate-text-muted);
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.btn-press-link {
    font-size: 12px;
    font-weight: 700;
    color: #2563eb;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--corporate-transition);
}

.btn-press-link:hover {
    gap: 12px;
}

/* Media Kit Section */
.media-kit-banner {
    background: var(--corporate-white);
    border-radius: 24px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    border: 1px solid var(--corporate-border);
    box-shadow: var(--corporate-shadow);
}

.media-kit-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--corporate-navy);
    font-weight: 800;
}

.media-kit-text p {
    color: var(--corporate-text-muted);
    margin-bottom: 30px;
    line-height: 1.7;
}

.asset-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.asset-item {
    background: #ffffff;
    padding: 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: var(--corporate-navy);
    font-weight: 600;
    font-size: 12px;
    transition: var(--corporate-transition);
    border: 1px solid transparent;
}

.asset-item:hover {
    background: var(--corporate-white);
    border-color: var(--corporate-navy);
    transform: translateY(-2px);
}

.asset-item.disabled-asset {
    opacity: 0.6;
    cursor: not-allowed;
    background: #f1f5f9;
    border-color: transparent;
}

.asset-item.disabled-asset:hover {
    transform: none;
    border-color: transparent;
}

.asset-icon {
    width: 40px;
    height: 40px;
    background: var(--corporate-navy);
    color: var(--corporate-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* Responsive */
@media (max-width: 992px) {
    .press-grid { grid-template-columns: 1fr 1fr; }
    .media-kit-banner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .press-grid { grid-template-columns: 1fr; }
    .asset-grid { grid-template-columns: 1fr; }
    .press-hero h1 { font-size: 42px; }
    .corporate-cta h2 { font-size: 28px; }
}

/* Company Information Page Styles */
.company-info-page {
    background-color: var(--corporate-bg);
    color: var(--corporate-text);
    min-height: 80vh;
}

/* Hero Section */
.info-hero {
    background: linear-gradient(180deg, #635bff 0%, #1e293b 100%);
    padding: 140px 0 135px;
    text-align: center;
    color: var(--corporate-white);
    position: static;
    overflow: hidden;
}

.info-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--corporate-bg);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

/* Info Content */
.info-container {
    max-width: 900px;
    margin: -60px auto 100px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.info-card {
    background: var(--corporate-white);
    padding: 60px;
    border-radius: 24px;
    border: 1px solid var(--corporate-border);
    box-shadow: var(--corporate-shadow);
}

.legal-notice {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--corporate-border);
    text-align: center;
}

.legal-notice h2 {
    font-size: 20px;
    font-weight: 700;
    color: var(--corporate-navy);
    margin-bottom: 12px;
}

.legal-notice p {
    font-size: 14px;
    color: var(--corporate-text-muted);
    line-height: 1.7;
}

.registration-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.detail-item {
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid var(--corporate-border);
    transition: all 0.2s ease;
    text-align: center;
}

.detail-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.country-flag {
    font-size: 36px;
    margin-bottom: 12px;
    line-height: 1;
    opacity: 0.9;
}

.detail-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--corporate-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    display: block;
}

.detail-value {
    font-size: 13px;
    font-weight: 600;
    color: var(--corporate-navy);
}

.detail-desc {
    font-size: 11px;
    color: var(--corporate-text-muted);
    margin-top: 8px;
    display: block;
    font-style: italic;
}

.cert-section {
    margin-top: 50px;
    padding: 30px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid var(--corporate-border);
    text-align: center;
}

.cert-icon {
    font-size: 32px;
    color: #64748b;
    margin-bottom: 15px;
}

.cert-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--corporate-text-muted);
    font-weight: 500;
}

.company-name {
    display: block;
    font-size: 22px;
    font-weight: 800;
    margin-top: 15px;
    color: var(--corporate-navy);
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .registration-details { grid-template-columns: 1fr; }
    .info-card { padding: 40px 20px; }
    .info-hero h1 { font-size: 42px; }
}

/* Help Center Page Styles */
.help-page {
    background-color: var(--corporate-bg);
    color: var(--corporate-text);
    padding-bottom: 50px;
}

/* Modern Support CTA Panel - Index CTA Uyumlu */
.support-cta-panel {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    padding: 80px 5%;
    border-radius: 24px;
    text-align: center;
    color: #ffffff;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.support-cta-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../img/office-bg.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    z-index: 1;
}

.support-cta-content {
    position: relative;
    z-index: 2;
}

.support-cta-panel h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.support-cta-panel p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.support-cta-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-support-white {
    background: #ffffff;
    color: #0f172a;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #ffffff;
}

.btn-support-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(255, 255, 255, 0.2);
}

.btn-support-outline {
    background: transparent;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-support-outline:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.btn-support-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-support-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--corporate-white);
    transform: translateY(-3px);
}

/* Hero Section */
.help-hero {
    background: linear-gradient(180deg, rgb(46 42 123 / 90%) 0%, rgba(30, 41, 59, 0.9) 100%), url('../img/help-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 140px 0 135px;
    text-align: center;
    color: var(--corporate-white);
    position: relative;
}

.help-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.brand-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 20px;
    background: linear-gradient(9180deg, rgba(37, 99, 235, 0.2) 0%, rgba(37, 99, 235, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

.brand-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: #3b82f6;
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 12px #3b82f6;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0% { transform: scale(0.95); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(0.95); opacity: 0.8; }
}

.search-box {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.search-box input {
    width: 100%;
    padding: 20px 30px 20px 60px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--corporate-white);
    font-size: 15px;
    outline: none;
    backdrop-filter: blur(10px);
    transition: var(--corporate-transition);
}

.search-box input:focus {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--corporate-navy);
}

.search-box i {
    position: absolute;
    left: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 18px;
}

/* Categories Grid - Corporate Redesign */
.help-categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.category-card {
    background: var(--corporate-white);
    padding: 24px;
    border-radius: 20px;
    border: 1px solid rgba(15, 23, 42, 0.08);
    text-align: left;
    transition: var(--corporate-transition);
    text-decoration: none;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.01);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 160px;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: var(--corporate-navy);
    box-shadow: 0 20px 25px -5px rgba(15, 23, 42, 0.1);
}

.category-icon {
    width: 48px;
    height: 48px;
    background: #ffffff;
    color: var(--corporate-navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 20px;
    transition: var(--corporate-transition);
    border: 1px solid #f1f5f9;
}

.category-card:hover .category-icon {
    background: var(--corporate-navy);
    color: var(--corporate-white);
    border-color: var(--corporate-navy);
    transform: scale(1.1);
}

.category-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--corporate-navy);
    margin-bottom: 8px;
    line-height: 1.2;
}

.category-card span {
    font-size: 12px;
    color: var(--corporate-text-muted);
    font-weight: 500;
}

.category-card .arrow-link {
    margin-top: auto;
    font-size: 12px;
    color: var(--corporate-navy);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0;
    transform: translateX(-10px);
    transition: var(--corporate-transition);
}

.category-card:hover .arrow-link {
    opacity: 1;
    transform: translateX(0);
}

/* FAQ Section */
.help-section {
    padding: 100px 0;
}

.section-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--corporate-navy);
    margin-bottom: 24px;
    padding: 16px 20px;
    background: linear-gradient(180deg, rgba(99, 91, 255, 0.05) 0%, rgba(99, 91, 255, 0.02) 100%);
    border-left: 4px solid #635bff;
    border-radius: 0 12px 12px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 2px 8px rgba(99, 91, 255, 0.1);
}

.section-title i {
    color: #635bff;
    font-size: 15px;
}

.faq-category-title {
    font-size: 18px;
    font-weight: 800;
    color: var(--corporate-navy);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.faq-category-title i {
    color: var(--corporate-navy);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 60px;
}

.faq-item {
    background: var(--corporate-white);
    border-radius: 16px;
    border: 1px solid var(--corporate-border);
    overflow: hidden;
    transition: var(--corporate-transition);
}

.faq-header {
    padding: 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    color: var(--corporate-navy);
}

.faq-header i {
    transition: var(--corporate-transition);
    color: var(--corporate-navy);
}

.faq-item.active .faq-header i {
    transform: rotate(180deg);
}

.faq-body {
    padding: 0 24px 24px;
    color: var(--corporate-text-muted);
    line-height: 1.6;
    display: none;
}

.faq-item.active .faq-body {
    display: block;
}

/* Search No Results */
#no-results {
    display: none;
    text-align: center;
    padding: 60px;
    background: var(--corporate-white);
    border-radius: var(--corporate-radius);
    border: 1px dashed var(--corporate-border);
    margin-top: 40px;
}

#no-results i {
    font-size: 48px;
    color: #cbd5e1;
    margin-bottom: 20px;
}

/* Guides Section */
.guides-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.guide-card {
    background: var(--corporate-white);
    border-radius: var(--corporate-radius);
    overflow: hidden;
    border: 1px solid var(--corporate-border);
    transition: var(--corporate-transition);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
    border-color: var(--corporate-navy);
}

.guide-image {
    height: 200px;
    overflow: hidden;
}

.guide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.guide-content {
    padding: 24px;
}

.guide-content h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--corporate-navy);
    margin-bottom: 12px;
    line-height: 1.4;
}

.guide-content p {
    font-size: 12px;
    color: var(--corporate-text-muted);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .help-categories-grid { grid-template-columns: repeat(2, 1fr); }
    .guides-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .help-categories-grid { grid-template-columns: 1fr; }
    .guides-grid { grid-template-columns: 1fr; }
    .help-hero h1 { font-size: 42px; }
}

/* Article Feedback Styles */
.article-feedback {
    margin-top: 40px;
    padding: 30px;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
}

.feedback-title {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.feedback-btns {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-feedback {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    background: #0f172a;
    color: var(--text-primary);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.btn-feedback:hover {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.2);
}

.btn-feedback:first-child:hover {
    border-color: #10b981;
    background: #10b981;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.btn-feedback:last-child:hover {
    border-color: #ef4444;
    background: #ef4444;
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.2);
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #10b981;
    color: white;
    padding: 16px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    z-index: 10000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Contact Page Styles */
.contact-page {
    background-color: var(--corporate-bg);
    color: var(--corporate-text);
}

/* Contact Hero Section */
.contact-hero {
    background: linear-gradient(180deg, rgb(46 42 123 / 90%) 0%, rgba(30, 41, 59, 0.9) 100%), url('../img/contact-bg.jpg');          
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 140px 0 135px;
    text-align: center;
    color: var(--corporate-white);
    position: static;
    overflow: hidden;
}

.contact-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--corporate-bg);
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.contact-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

/* Contact Container */
.contact-container {
    max-width: 1000px;
    margin: -60px auto 100px;
    position: relative;
    z-index: 10;
    padding: 0 20px;
}

.contact-main-card {
    background: var(--corporate-white);
    border-radius: 24px;
    border: 1px solid var(--corporate-border);
    box-shadow: var(--corporate-shadow);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    overflow: hidden;
}

/* Contact Form Column */
.contact-form-col {
    padding: 60px;
    border-right: 1px solid var(--corporate-border);
}

.form-header {
    margin-bottom: 32px;
}

.form-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--corporate-navy);
    margin-bottom: 12px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--p-blue);
    margin-bottom: 8px;
}

.field-meta {
    display: flex;
    justify-content: flex-end;
    margin-top: 6px;
}

.char-counter {
    font-size: 12px;
    color: var(--corporate-text-muted);
    font-weight: 700;
    letter-spacing: 0.02em;
}

.char-counter.is-near {
    color: #b45309;
}

.char-counter.is-max {
    color: #991B1B;
}

.hp-field {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-control {
    width: 100%;
    padding: 14px 20px;
    border-radius: 12px;
    border: 1px solid var(--corporate-border);
    background: #ffffff;
    font-size: 12px;
    color: var(--corporate-navy);
    transition: var(--corporate-transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--corporate-navy);
    background: var(--corporate-white);
    box-shadow: 0 0 0 4px rgba(15, 23, 42, 0.05);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--corporate-navy);
    color: var(--corporate-white);
    border: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--corporate-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
    background: #1e293b;
}

/* Contact Info Column */
.contact-info-col {
    background: #ffffff;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.info-item {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon-circle {
    width: 48px;
    height: 48px;
    background: var(--corporate-white);
    border: 1px solid var(--corporate-border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--corporate-navy);
    font-size: 12px;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.03);
}

.info-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--corporate-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.info-value {
    font-size: 12px;
    font-weight: 600;
    color: var(--corporate-navy);
    line-height: 1.5;
}

.info-value a {
    color: var(--corporate-navy);
    text-decoration: none;
    transition: var(--corporate-transition);
    border-bottom: 1px solid transparent;
}

.info-value a:hover {
    border-bottom-color: var(--corporate-navy);
}

/* Help Info Box */
.help-info-box {
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--corporate-border);
}

.help-info-box h3 {
    font-size: 12px;
    font-weight: 800;
    color: var(--corporate-navy);
    margin-bottom: 10px;
}

.help-info-box p {
    font-size: 12px;
    color: var(--corporate-text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-help-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--corporate-navy);
    color: var(--corporate-white);
    border-radius: 100px;
    font-weight: 700;
    font-size: 12px;
    text-decoration: none;
    transition: var(--corporate-transition);
}

.btn-help-inline:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(15, 23, 42, 0.1);
}

/* Alert Styles */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 12px;
    font-weight: 600;
}

.alert-success {
    background: #ECFDF5;
    color: #065F46;
    border: 1px solid #A7F3D0;
}

.alert-error {
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* Freelancer Dispute Modal */
.freelancer-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.freelancer-modal-overlay.freelancer-modal-hidden {
    opacity: 0;
    pointer-events: none;
}

.freelancer-modal {
    background: var(--corporate-white);
    border-radius: 24px;
    padding: 48px 40px 40px;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: 0 25px 60px rgba(15, 23, 42, 0.3);
    animation: freelancerModalIn 0.35s ease;
    text-align: center;
}

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

.freelancer-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--corporate-border);
    background: var(--corporate-white);
    color: var(--corporate-text-muted);
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--corporate-transition);
}

.freelancer-modal-close:hover {
    background: #f1f5f9;
    color: var(--corporate-navy);
}

.freelancer-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 24px;
    color: #b45309;
}

.freelancer-modal-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--corporate-navy);
    margin-bottom: 24px;
}

.freelancer-modal-body {
    text-align: left;
    margin-bottom: 32px;
}

.freelancer-modal-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.freelancer-modal-step:last-child {
    margin-bottom: 0;
}

.freelancer-modal-step .step-number {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: var(--corporate-navy);
    color: var(--corporate-white);
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.freelancer-modal-step p {
    font-size: 14px;
    color: var(--corporate-text);
    line-height: 1.7;
    margin: 0;
    padding-top: 4px;
}

.freelancer-modal-step p strong {
    color: var(--corporate-navy);
}

.freelancer-modal-btn {
    width: 100%;
    padding: 16px 24px;
    background: var(--corporate-navy);
    color: var(--corporate-white);
    border: none;
    border-radius: 100px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: var(--corporate-transition);
}

.freelancer-modal-btn:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

/* Freelancer Modal Responsive */
@media (max-width: 576px) {
    .freelancer-modal {
        padding: 36px 24px 28px;
        border-radius: 20px;
        margin: 12px;
    }

    .freelancer-modal-title {
        font-size: 18px;
    }

    .freelancer-modal-icon {
        width: 52px;
        height: 52px;
        font-size: 20px;
        margin-bottom: 20px;
    }

    .freelancer-modal-step p {
        font-size: 13px;
    }

    .freelancer-modal-step .step-number {
        width: 28px;
        height: 28px;
        min-width: 28px;
        font-size: 12px;
    }

    .freelancer-modal-btn {
        font-size: 14px;
        padding: 14px 20px;
    }
}

/* Contact Page Responsive */
@media (max-width: 992px) {
    .contact-main-card { 
        grid-template-columns: 1fr; 
    }
    .contact-form-col { 
        border-right: none; 
        border-bottom: 1px solid var(--corporate-border); 
        padding: 40px; 
    }
    .contact-info-col { 
        padding: 40px; 
    }
}

@media (max-width: 768px) {
    .contact-hero h1 { 
        font-size: 42px; 
    }
}

/* System Status Page Styles */
.status-page {
    background: var(--corporate-bg);
    color: var(--corporate-text);
    padding-bottom: 90px;
}

.status-hero {
    position: relative;
    overflow: hidden;
    padding: 140px 0 135px;
    background: linear-gradient(180deg, #635bff 0%, #1e293b 100%);
    border-bottom: 1px solid var(--corporate-border);
}

.hero-top {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #4ade80;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 1.8s ease-out infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.55); }
    70% { box-shadow: 0 0 0 7px rgba(74, 222, 128, 0); }
    100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0); }
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.75);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.status-hero h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--corporate-white);
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.status-hero p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: -28px;
    margin-bottom: 48px;
    position: relative;
    z-index: 10;
}

.kpi-card {
    background: var(--corporate-white);
    border: 1px solid var(--corporate-border);
    border-radius: var(--corporate-radius);
    padding: 22px 24px;
    box-shadow: var(--corporate-shadow);
    text-align: center;
    transition: var(--corporate-transition);
}

.kpi-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.kpi-icon {
    width: 44px;
    height: 44px;
    background: rgba(37, 99, 235, 0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 12px;
    color: #2563eb;
}

.kpi-value {
    font-size: 30px;
    font-weight: 900;
    color: var(--corporate-navy);
    letter-spacing: -0.03em;
    margin-bottom: 4px;
}

.kpi-label {
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--corporate-text-muted);
    margin-bottom: 4px;
}

.kpi-sub {
    font-size: 12px;
    font-weight: 700;
    color: var(--green);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.status-section {
    margin-bottom: 40px;
}

.status-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.status-card {
    background: var(--corporate-white);
    border: 1px solid var(--corporate-border);
    border-radius: var(--corporate-radius);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    transition: var(--corporate-transition);
    box-shadow: var(--corporate-shadow);
}

.status-card:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.07);
}

.sc-left {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    min-width: 0;
}

.sc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--green);
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.45);
    animation: pulse 1.8s ease-out infinite;
}

.sc-dot.degraded { 
    background: var(--amber); 
    animation: pulse-amber 1.8s ease-out infinite; 
}

.sc-dot.down { 
    background: var(--red); 
    animation: none; 
    box-shadow: none; 
}

.sc-dot.unknown { 
    background: rgba(148, 163, 184, 0.9); 
    animation: none; 
    box-shadow: none; 
}

@keyframes pulse-amber {
    0% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.45); }
    70% { box-shadow: 0 0 0 7px rgba(245, 158, 11, 0); }
    100% { box-shadow: 0 0 0 0 rgba(245, 158, 11, 0); }
}

.sc-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--corporate-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sc-meta {
    color: var(--green);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    flex-shrink: 0;
}

.sc-meta.degraded { 
    color: var(--amber); 
}

.sc-meta.down { 
    color: var(--red); 
}

.footer-note {
    text-align: center;
    font-size: 12px;
    color: var(--corporate-text-muted);
    margin-top: 40px;
    padding: 20px;
    background: var(--corporate-white);
    border: 1px solid var(--corporate-border);
    border-radius: var(--corporate-radius);
}

/* System Status Responsive */
@media (max-width: 980px) {
    .kpi-grid { 
        grid-template-columns: repeat(2, 1fr); 
    }
    .status-grid { 
        grid-template-columns: 1fr; 
    }
}

@media (max-width: 640px) {
    .kpi-grid { 
        grid-template-columns: 1fr 1fr; 
    }
}

/* API Status Page Specific Styles */
.hero-timestamp {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 600;
    margin-top: 16px;
}

.endpoint-table {
    width: 100%;
    background: var(--corporate-white);
    border: 1px solid var(--corporate-border);
    border-radius: var(--corporate-radius);
    overflow: hidden;
    box-shadow: var(--corporate-shadow);
}

.endpoint-table thead {
    background: var(--corporate-navy);
}

.endpoint-table th {
    padding: 14px 20px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    text-align: left;
}

.endpoint-table td {
    padding: 14px 20px;
    font-size: 12px;
    color: var(--corporate-text);
    border-bottom: 1px solid var(--corporate-border);
}

.endpoint-table tbody tr:last-child td {
    border-bottom: none;
}

.endpoint-table tbody tr:hover td {
    background: rgba(37, 99, 235, 0.03);
}

.method-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.method-badge.post { 
    background: #DCFCE7; 
    color: #166534; 
}

.method-badge.get { 
    background: #DBEAFE; 
    color: #1e40af; 
}

.method-badge.put { 
    background: #FEF9C3; 
    color: #854D0E; 
}

.method-badge.delete { 
    background: #FEE2E2; 
    color: #991b1b; 
}

.ep-status {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--green);
}

.ep-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 1.8s ease-out infinite;
}

.ep-latency {
    color: var(--corporate-text-muted);
    font-size: 12px;
    font-weight: 700;
}

.footer-note a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 700;
}

.footer-note a:hover {
    text-decoration: underline;
}

/* API Status Responsive */
@media (max-width: 640px) {
    .endpoint-table { 
        display: block; 
        overflow-x: auto; 
    }
}



* { 
    margin: 0; 
    padding: 0; 
    box-sizing: border-box; 
    font-family: 'Plus Jakarta Sans', sans-serif; 
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

body { 
    background-color: #ffffff; 
    color: #1e293b; 
    line-height: 1.5; 
}

.alert { 
    padding: 12px 16px; 
    border-radius: 10px; 
    margin-bottom: 24px; 
    font-size: 12px; 
    display: flex; 
    align-items: center; 
    gap: 10px;
    animation: fadeIn 0.3s ease;
}

.alert-error { 
    background: #fef2f2; 
    color: #b91c1c; 
    border: 1px solid #fee2e2; 
}

@keyframes fadeIn { 
    from { opacity: 0; transform: translateY(-10px); } 
    to { opacity: 1; transform: translateY(0); } 
}

.login-page {
    display: flex;
    min-height: 100vh;
}

.login-left { 
    flex: 1; 
    background: linear-gradient(180deg, rgb(46 42 123 / 90%) 0%, rgba(30, 41, 59, 0.9) 100%), url('../img/login-bg.jpg'); 
    background-size: cover;
    background-position: center;
    color: white; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    padding: 60px;
    position: relative;
}

.login-info {
    max-width: 480px;
}

.login-info h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.login-info p {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 40px;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-weight: 500;
}

.feature-list i {
    color: #38bdf8;
    font-size: 18px;
}

/* Login Right Panel - Form */
.login-right { 
    flex: 1; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 40px;
    background-color: #ffffff;
}

.form-box { 
    width: 100%; 
    max-width: 480px; 
    padding: 40px;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.04), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    border: 1px solid #f1f5f9;
}

.form-header {
    text-align: center;
    margin-bottom: 32px;
}

.brand-text {
    display: inline-block;
    background: #0f172a;
    color: white;
    padding: 10px 24px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.25);
    position: relative;
    overflow: hidden;
}

.brand-text::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(9180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.brand-text:hover::before {
    left: 100%;
}

.form-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.form-subtitle {
    color: #64748b;
    font-size: 12px;
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #334155;
}

.input-group {
    position: relative;
}

.input-group i:first-child { 
    position: absolute; 
    left: 16px; 
    top: 50%; 
    transform: translateY(-50%); 
    color: #94a3b8;
    font-size: 12px;
    transition: color 0.2s;
}

.form-input { 
    width: 100%; 
    padding: 14px 16px 14px 48px; 
    border: 1.5px solid #e2e8f0; 
    border-radius: 12px; 
    font-size: 12px; 
    color: #1e293b;
    background-color: #fcfdfe;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); 
}

.form-input::placeholder {
    color: #cbd5e1;
}

.form-input:focus { 
    outline: none; 
    border-color: #2563eb; 
    background-color: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.08); 
}

.form-input:focus + i:first-child {
    color: #2563eb;
}

.toggle-password {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #94a3b8;
    cursor: pointer;
    padding: 4px;
    transition: color 0.2s;
}

.toggle-password:hover {
    color: #2563eb;
}

.form-actions { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 32px; 
    font-size: 12px; 
}

.remember-me { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    cursor: pointer; 
    color: #64748b;
    font-weight: 500;
}

.remember-me input {
    width: 16px;
    height: 16px;
    border-radius: 4px;
    border: 1.5px solid #e2e8f0;
    cursor: pointer;
}

.forgot-link {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.forgot-link:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.btn-login { 
    width: 100%; 
    padding: 16px; 
    border: none; 
    border-radius: 12px; 
    background-color: #0f172a; 
    color: white; 
    font-size: 15px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-login:hover { 
    background: #000000; 
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-login:active {
    transform: translateY(0);
}

.social-divider {
    position: relative;
    text-align: center;
    margin: 32px 0;
}

.social-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e2e8f0;
    z-index: 1;
}

.social-divider span {
    position: relative;
    background: #ffffff;
    padding: 0 16px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
}

.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.social-btn { 
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px; 
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    background: white;
    color: #1e293b; 
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.social-btn:hover {
    background: #ffffff;
    border-color: #cbd5e1;
}

.social-btn i {
    font-size: 12px;
}

.signup-link {
    text-align: center;
    margin-top: 32px;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.signup-link a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 700;
    margin-left: 4px;
}

.signup-link a:hover {
    text-decoration: underline;
}

/* Login Modal Styles */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-card {
    background: white;
    width: 100%;
    max-width: 720px;
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
    color: #94a3b8;
    border: none;
    background: none;
    font-size: 18px;
}

.modal-icon {
    width: 56px;
    height: 56px;
    background: #eff6ff;
    color: #2563eb;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 20px;
}

.modal-title {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
}

.modal-text {
    text-align: center;
    color: #64748b;
    font-size: 12px;
    margin-bottom: 24px;
    line-height: 1.5;
}

.modal-alert {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 12px;
    display: none;
}

.modal-alert.error {
    background: #fef2f2;
    color: #b91c1c;
    border: 1px solid #fee2e2;
}

.modal-alert.success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #dcfce7;
}

/* Back to Home Button */
.back-to-home {
    position: fixed;
    top: 32px;
    left: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    font-size: 12px;
    padding: 10px 16px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.2s;
    z-index: 10;
}

.back-to-home:hover {
    color: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.back-to-home i {
    font-size: 15px;
}

/* Login Page Responsive */
@media (max-width: 968px) {
    .login-left {
        display: none;
    }
    
    .back-to-home {
        top: 20px;
        left: 20px;
    }
}

/* Register Page Styles */
.register-page {
    display: flex;
    min-height: 100vh;
}

.register-left { 
    flex: 1; 
    background: linear-gradient(180deg, rgb(46 42 123 / 90%) 0%, rgba(30, 41, 59, 0.9) 100%), url('../img/register-bg.jpg'); 
    background-size: cover;
    background-position: center;
    color: white; 
    display: flex; 
    align-items: center; 
    justify-content: center;
    padding: 60px;
    position: relative;
}

.register-info {
    max-width: 480px;
}

.register-info h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.register-info p {
    font-size: 12px;
    color: #cbd5e1;
    margin-bottom: 40px;
}

/* Register Right Panel - Form */
.register-right { 
    flex: 1; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    padding: 40px;
    background-color: #ffffff;
}

.form-checkbox {
    margin-bottom: 24px;
}

.checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    color: #64748b;
    font-size: 12px;
    line-height: 1.4;
}

.checkbox-wrapper input {
    margin-top: 3px;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.checkbox-wrapper a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
}

.checkbox-wrapper a:hover {
    text-decoration: underline;
}

.btn-register { 
    width: 100%; 
    padding: 14px; 
    background: #0f172a; 
    color: white; 
    border: none; 
    border-radius: 12px; 
    font-size: 15px; 
    font-weight: 600; 
    cursor: pointer; 
    transition: all 0.2s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-register:hover { 
    background: #000000; 
    transform: translateY(-1px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.btn-register:active {
    transform: translateY(0);
}

.login-link {
    text-align: center;
    margin-top: 32px;
    font-size: 12px;
    color: #64748b;
    font-weight: 500;
}

.login-link a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 700;
    margin-left: 4px;
}

.login-link a:hover {
    text-decoration: underline;
}

/* Password Strength & Requirements */
.password-strength {
    height: 6px;
    background: #f1f5f9;
    border-radius: 10px;
    margin-top: 12px;
    overflow: hidden;
}

.password-strength-bar {
    height: 100%;
    width: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.password-strength-weak {
    width: 33%;
    background: #ef4444;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.3);
}

.password-strength-medium {
    width: 66%;
    background: #f59e0b;
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.password-strength-strong {
    width: 100%;
    background: #10b981;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.password-requirements { 
    margin-top: 16px; 
    padding: 12px;
    background: #ffffff;
    border-radius: 12px;
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 10px; 
    border: 1px solid #f1f5f9;
}

.requirement { 
    display: flex; 
    align-items: center; 
    gap: 8px; 
    font-size: 12px; 
    font-weight: 500;
    color: #94a3b8; 
    transition: all 0.2s;
}

.requirement.met {
    color: #0f172a;
}

.requirement-icon { 
    width: 16px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 8px;
    background: #e2e8f0;
    color: white;
    transition: all 0.2s;
}

.requirement.met .requirement-icon { 
    background: #10b981;
    transform: scale(1.1);
}

.requirement.unmet .requirement-icon {
    background: #cbd5e1;
}

/* intl-tel-input styles */
.iti {
    width: 100%;
}

.iti__flag-container {
    border-radius: 12px 0 0 12px;
}

.iti--allow-dropdown input, 
.iti--allow-dropdown input[type=text], 
.iti--allow-dropdown input[type=tel] {
    padding-left: 85px !important;
}

.iti__selected-flag {
    background-color: #fcfdfe;
    border-radius: 12px 0 0 12px;
    padding: 0 16px;
}

.iti__country-list {
    border-radius: 12px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    border: 1.5px solid #e2e8f0;
    padding: 8px 0;
    z-index: 100;
}

.iti__country {
    padding: 10px 16px;
    font-size: 12px;
}

.iti__country:hover {
    background-color: #f1f5f9;
}

.iti__selected-country-name {
    display: none;
}

/* Register Modal Styles */
.modal-btn {
    width: 100%;
    padding: 14px;
    background: #0f172a;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s;
}

.modal-btn:hover {
    background: #000;
}

/* Register Page Responsive */
@media (max-width: 968px) {
    .register-left {
        display: none;
    }
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgb(255 255 255);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav {
    padding: 16px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 24px;
    font-weight: 800;
    color: var(--corporate-navy);
    text-decoration: none;
}

.logo-img {
    width: 130px;
    height: 64px;
    margin-right: 12px;
    object-fit: contain;
}

.logo-text {
    font-weight: 800;
    color: var(--corporate-navy);
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

/* Hide mobile menu actions by default */
.mobile-menu-actions {
    display: none;
}

.nav-link {
    text-decoration: none;
    color: var(--corporate-text);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--corporate-navy);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--corporate-navy);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    gap: 12px;
    align-items: center;
}

.language-selector {
    margin-right: 16px;
}

.language-selector select {
    background: white;
    border: 1px solid var(--corporate-border);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    color: var(--corporate-text);
    cursor: pointer;
    transition: all 0.2s ease;
}

.language-selector select:hover {
    border-color: var(--corporate-navy);
}

.language-selector select:focus {
    outline: none;
    border-color: var(--corporate-navy);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn {
    padding: 10px 20px;
    border-radius: var(--corporate-radius);
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: var(--corporate-navy);
    color: white;
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

.btn-primary:hover {
    background: #1d4ed8;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--corporate-text);
    border: 2px solid var(--corporate-border);
}

.btn-outline:hover {
    border-color: var(--corporate-navy);
    color: var(--corporate-navy);
    transform: translateY(-2px);
    box-shadow: 0 2px 4px rgba(37, 99, 235, 0.1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--corporate-text);
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover span {
    background: var(--corporate-navy);
}

/* Header Responsive */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 16px;
    }
    
    .logo-img {
        width: 110px;
        height: 50px;
    }
    
    .nav-center {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        z-index: 999;
        display: block;
    }
    
    .nav-center.active {
        max-height: 600px;
        overflow-y: auto;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 20px;
        gap: 12px;
    }
    
    .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid #f0f0f0;
        display: block;
        width: 100%;
        font-size: 15px;
    }
    
    /* Hide desktop nav-right entirely on mobile */
    .nav-right {
        display: none !important;
    }
    
    /* Show mobile menu actions */
    .mobile-menu-actions {
        display: block !important;
        border-top: 1px solid #f0f0f0;
        padding-top: 16px;
        margin-top: 12px;
    }
    
    .mobile-language-selector {
        margin-bottom: 12px;
    }
    
    .mobile-language-selector select {
        width: 100%;
        padding: 12px;
        border: 1px solid #e2e8f0;
        border-radius: 8px;
        font-size: 14px;
        background: white;
    }
    
    .mobile-btn {
        width: 100%;
        padding: 12px 20px !important;
        font-size: 14px !important;
        margin-bottom: 10px;
        display: block !important;
        text-align: center;
    }
    
    .mobile-btn:last-child {
        margin-bottom: 0;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .logo-img {
        width: 120px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 10px 0;
    }
    
    .nav-container {
        padding: 0 12px;
    }
    
    .logo-img {
        width: 100px;
        height: 44px;
    }
    
    .nav-center {
        top: 65px;
    }
    
    .nav-menu {
        padding: 16px;
        gap: 10px;
    }
    
    .nav-link {
        padding: 10px 0;
        font-size: 14px;
    }
    
    .mobile-language-selector select {
        padding: 10px;
        font-size: 13px;
    }
    
    .mobile-btn {
        padding: 10px 16px !important;
        font-size: 13px !important;
    }
}

/* Extra Small Devices - 340px and below */
@media (max-width: 360px) {
    .nav {
        padding: 8px 0;
    }
    
    .nav-container {
        padding: 0 10px;
    }
    
    .logo-img {
        width: 90px;
        height: 40px;
    }
    
    .nav-center {
        top: 60px;
    }
    
    .nav-menu {
        padding: 14px;
        gap: 8px;
    }
    
    .nav-link {
        padding: 10px 0;
        font-size: 13px;
    }
    
    .mobile-language-selector {
        margin-bottom: 10px;
    }
    
    .mobile-language-selector select {
        padding: 10px;
        font-size: 13px;
    }
    
    .mobile-btn {
        padding: 10px 16px !important;
        font-size: 13px !important;
        margin-bottom: 8px;
    }
    
    .mobile-menu-toggle {
        padding: 6px;
    }
    
    .mobile-menu-toggle span {
        width: 22px;
        height: 2px;
    }
}

/* Modern Hero Section - SaaS Style */
.payoup-hero-master {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 24px 60px;
    min-height: 65vh;
    position: relative;
    background: #ffffff;
    font-family: 'Plus Jakarta Sans', sans-serif;
    overflow-x: hidden;
}

/* Hero Content */
.payoup-hero-content {
    flex: 1;
    max-width: 520px;
    z-index: 50;
    padding-top: 100px;
}

.payoup-trust-badge {
    font-size: 12px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.payoup-trust-badge span {
    width: 24px;
    height: 1px;
    background: #e2e8f0;
}

.payoup-hero-title-wrapper {
    position: relative;
    margin-bottom: 20px;
}

.payoup-hero-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1.15;
    margin: 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.title-main {
    color: #1e293b;
    font-weight: 800;
}

.title-accent {
    background: linear-gradient(135deg, #635bff 0%, #4339ca 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    position: relative;
    display: inline-block;
}

.title-underline {
    position: absolute;
    bottom: -8px;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #635bff 0%, #4339ca 50%, transparent 90%);
    width: 100%;
    border-radius: 2px;
    animation: expandWidth 2s ease-out;
}

.payoup-hero-description {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    max-width: 440px;
    font-weight: 500;
    margin-bottom: 24px;
}

.payoup-hero-cta {
    display: inline-block;
    background: #635bff;
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    box-shadow: 0 8px 20px rgba(99, 91, 255, 0.25);
    transition: 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.payoup-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(99, 91, 255, 0.35);
}

.payoup-hero-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.payoup-hero-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #635bff;
    border: 2px solid #635bff;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.payoup-hero-video-btn:hover {
    background: #635bff;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(99, 91, 255, 0.25);
}

.video-play-icon {
    font-size: 12px;
}

/* Hero Visual */
.payoup-hero-visual {
    flex: 1;
    position: relative;
    height: 320px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 2500px;
    contain: layout;
}

/* 3D Payment Card */
.payoup-payment-card {
    width: 400px;
    background: white;
    border-radius: 24px;
    padding: 28px;
    margin-top: 40px;
    box-shadow: 0 35px 70px -18px rgba(50,50,93,0.15);
    border: 1px solid #f0f4f8;
    transform: rotateY(-15deg) rotateX(6deg) rotateZ(1deg);
    transform-style: preserve-3d;
    transition: transform 0.6s ease;
}

.payoup-payment-card:hover {
    transform: rotateY(-5deg) rotateX(2deg) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(99, 91, 255, 0.25);
}

.payoup-card-amount { 
    font-size: 42px; 
    font-weight: 800; 
    color: #1a1f36; 
    letter-spacing: -2px; 
    margin: 12px 0; 
    transform: translateZ(30px); 
}

.payoup-project-name {
    font-size: 12px;
    font-weight: 600;
    color: #8898aa;
    margin-bottom: 18px;
}

/* Calculation Area */
.payoup-calculation-area {
    background: #f8f9fb;
    border-radius: 18px;
    padding: 18px;
    margin: 18px 0;
    transform: translateZ(15px);
}

.payoup-calc-row {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
}

.payoup-calc-row.net {
    border-top: 1px solid #eef1f5;
    margin-top: 12px;
    padding-top: 12px;
    font-size: 12px;
    color: #00d68f;
}

/* Share Box */
.payoup-share-container {
    text-align: center;
}

.payoup-share-link {
    background: #f1f4f9;
    padding: 12px;
    border-radius: 10px;
    font-family: monospace;
    font-size: 12px;
    color: #635bff;
    border: 1px dashed #cbd5e1;
}

/* Status Toast */
.payoup-status-notification {
    position: absolute;
    bottom: -40px;
    right: -60px;
    background: #1a1f36;
    color: white;
    padding: 14px 20px;
    border-radius: 18px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    z-index: 100;
    transform: translateZ(60px);
}

.payoup-status-content {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 12px;
}

.payoup-status-time {
    font-size: 12px;
    color: #8898aa;
    margin-top: 3px;
    padding-left: 16px;
    font-weight: 600;
}

.payoup-status-dot {
    width: 6px;
    height: 6px;
    background: #00d68f;
    border-radius: 50%;
    box-shadow: 0 0 8px #00d68f;
}

/* Waterfall Comments */
.payoup-waterfall-stream {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
}

.payoup-stream-card {
    background: rgba(248, 250, 252, 0.85);
    backdrop-filter: blur(10px);
    padding: 12px 20px;
    border-radius: 50px;
    border: 1px solid rgba(99, 91, 255, 0.2);
    font-size: 12px;
    font-weight: 700;
    color: #635bff;
    position: absolute;
    white-space: nowrap;
    opacity: 0;
    animation: payoup-waterfall-flow 12s linear forwards;
    will-change: transform, opacity;
    left: 10%;
    right: 10%;
    text-align: center;
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    letter-spacing: -0.5px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

@keyframes payoup-waterfall-flow {
    0% {
        transform: translateY(100vh);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .payoup-hero-master {
        flex-direction: column;
        text-align: center;
        padding: 60px 5%;
    }
    
    .payoup-hero-visual {
        height: 600px;
        width: 100%;
    }
    
    .payoup-payment-card {
        width: 100%;
        transform: none;
    }
    
    .payoup-status-notification {
        right: 10px;
    }
    
    .payoup-hero-content {
        max-width: 100%;
    }
    
    .payoup-hero-title {
        font-size: clamp(36px, 8vw, 56px);
    }
    
    .payoup-hero-description {
        max-width: 100%;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .payoup-hero-master {
        padding: 60px 5%;
        gap: 40px;
    }

    .payoup-hero-visual {
        height: 500px;
    }

    .payoup-payment-card {
        padding: 30px;
    }

    .payoup-card-amount {
        font-size: 48px;
    }

    .payoup-hero-title {
        font-size: clamp(32px, 10vw, 48px);
    }

    .payoup-hero-description {
        font-size: 15px;
        margin-bottom: 30px;
    }

    .payoup-hero-cta {
        padding: 16px 32px;
        font-size: 12px;
    }

    .payoup-trust-badge {
        font-size: 12px;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .payoup-hero-master {
        padding: 40px 5%;
        gap: 30px;
    }
    
    .payoup-hero-visual {
        height: 400px;
    }
    
    .payoup-payment-card {
        padding: 20px;
    }
    
    .payoup-card-amount {
        font-size: 36px;
    }
    
    .payoup-status-notification {
        right: 5px;
        bottom: -20px;
        padding: 15px 20px;
    }
}

/* Extra Small Devices - 340px and below */
@media (max-width: 360px) {
    .payoup-hero-master {
        padding: 30px 12px;
        gap: 20px;
        min-height: auto;
    }
    
    .payoup-hero-content {
        padding-top: 80px;
    }
    
    .payoup-hero-visual {
        height: 350px;
        margin: 0 -12px;
    }
    
    .payoup-payment-card {
        padding: 16px;
        width: calc(100% + 24px);
        margin-left: -12px;
        margin-right: -12px;
        border-radius: 16px;
    }
    
    .payoup-card-amount {
        font-size: 28px;
        letter-spacing: -1px;
    }
    
    .payoup-project-name {
        font-size: 11px;
    }
    
    .payoup-calculation-area {
        padding: 14px;
        border-radius: 12px;
    }
    
    .payoup-calc-row {
        font-size: 11px;
    }
    
    .payoup-share-link {
        font-size: 10px;
        padding: 10px;
    }
    
    .payoup-status-notification {
        right: 0;
        bottom: -20px;
        padding: 10px 14px;
        border-radius: 12px;
    }
    
    .payoup-status-content {
        font-size: 11px;
    }
    
    .payoup-status-time {
        font-size: 10px;
    }
    
    .payoup-hero-title {
        font-size: 24px;
        letter-spacing: -1px;
        gap: 6px;
    }
    
    .payoup-hero-description {
        font-size: 13px;
        margin-bottom: 20px;
    }
    
    .payoup-hero-cta {
        padding: 12px 24px;
        font-size: 12px;
        width: 100%;
        text-align: center;
    }

    .payoup-hero-btns {
        flex-direction: column;
    }

    .payoup-hero-video-btn {
        width: 100%;
        margin-left: 0;
        justify-content: center;
    }
    
    .payoup-trust-badge {
        font-size: 10px;
        letter-spacing: 1px;
        margin-bottom: 12px;
    }
    
    .payoup-trust-badge span {
        width: 16px;
    }
}

/* Modern Testimonials Section */
.proof-container {
    display: flex;
    align-items: center;
    padding: 80px 5%;
    width: 100%;
    min-height: 80vh;
    gap: 100px;
    position: relative;
    justify-content: flex-start;
    box-sizing: border-box;
    z-index: 1;
    isolation: isolate;
}

.proof-sticky {
    flex: 1;
    max-width: 600px;
    padding: 0 24px;
    z-index: 10;
    text-align: left;
}

.proof-stack-area {
    flex: 1.5;
    position: relative;
    height: 500px;
    perspective: 2000px;
    display: flex;
    align-items: center;
    padding: 0 24px;
    z-index: 1;
}

/* Arka plan ızgara dokusu - SaaS Estetiği */
.grid-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: radial-gradient(#e6ebf1 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black, transparent 80%);
    z-index: -1;
    opacity: 0.5;
}

.proof-sticky { 
    flex: 1; 
    max-width: 600px; 
    padding: 0 8% 0 5%;
    z-index: 10;
    text-align: left;
}

.proof-sticky h2 { 
    font-size: 42px; 
    font-weight: 800; 
    letter-spacing: -2px; 
    line-height: 1.1; 
    color: #1a1f36; 
    margin-bottom: 24px; 
}

.proof-sticky p {
    font-size: 12px;
    color: #677489;
    line-height: 1.6;
    margin-bottom: 30px;
}

.testimonials-subtitle {
    font-size: 16px !important;
    color: #677489 !important;
    line-height: 1.5 !important;
    margin-bottom: 30px !important;
    max-width: 350px !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
}

.proof-stack-area {
    flex: 1.5;
    position: relative;
    height: 500px;
    perspective: 2000px;
    display: flex;
    align-items: center;
}

/* GELİŞTİRİLMİŞ KART TASARIMI */
.comment-bubble {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px); /* Cam efekti */
    padding: 40px;
    border-radius: 24px;
    box-shadow: 
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 20px 40px -10px rgba(0, 0, 0, 0.08);
    border: 1px solid white;
    max-width: 420px;
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    z-index: 1;
}

.comment-bubble.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    z-index: 2;
}

/* Daha profesyonel yerleşim */
.pos-1 { top: 0; left: 0; }
.pos-2 { top: 180px; left: 180px; border-top: 4px solid #635bff; }

/* Kart boyutlarını eşitle */
.comment-bubble.pos-1,
.comment-bubble.pos-2 {
    width: 420px;
    max-width: 420px;
    box-sizing: border-box;
}

/* Kart İçeriği Geliştirmeleri */
.bubble-txt { 
    font-size: 12px; 
    font-weight: 600; 
    color: #1a1f36; 
    line-height: 1.6; 
    margin-bottom: 32px; 
    letter-spacing: -0.2px;
    word-break: break-word;
    overflow-wrap: break-word;
    white-space: normal;
}

.bubble-usr { 
    display: flex; 
    align-items: center; 
    gap: 14px; 
    border-top: 1px solid #e6ebf1;
    padding-top: 24px;
}

.usr-img { 
    width: 44px; 
    height: 44px; 
    border-radius: 12px; /* Karemsi modern yapı */
    background: #1a1f36; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: 800; 
    font-size: 12px; 
    color: white; 
}

.usr-meta b { font-size: 12px; color: #1a1f36; display: block; margin-bottom: 2px; }
.usr-meta span { font-size: 12px; color: #677489; font-weight: 500; }

.comment-bubble:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 30px 60px -12px rgba(50, 50, 93, 0.15);
    border-color: #635bff;
}

/* Alt kısımdaki ilerleme göstergesi */
.progress-dots {
    display: flex;
    gap: 8px;
    margin-top: 40px;
}
.dot {
    width: 30px;
    height: 4px;
    background: #e6ebf1;
    border-radius: 2px;
    transition: background 0.3s;
}
.dot.active { background: #635bff; }

@media (max-width: 1199px) {
    .proof-container { 
        flex-direction: column; 
        text-align: center; 
        padding: 60px 20px;
        gap: 32px;
        min-height: auto;
        overflow: hidden;
    }
    
    .proof-sticky {
        max-width: 100%;
        padding: 0;
    }
    
    .proof-sticky h2 { font-size: 32px; }
    
    .testimonials-subtitle {
        max-width: 100% !important;
        margin: 0 auto 24px !important;
    }
    
    .progress-dots { justify-content: center; }
    
    /* Kart alanı: absolute → flex */
    .proof-stack-area { 
        position: relative !important;
        height: auto !important;
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 16px !important;
        padding: 0 !important;
        perspective: none !important;
        overflow: visible !important;
        align-items: stretch !important;
    }
    
    .testimonial-card-mobile {
        display: block;
    }
    
    /* Tüm absolute konumlandırmayı sıfırla */
    .comment-bubble,
    .comment-bubble.pos-1,
    .comment-bubble.pos-2,
    .comment-bubble.active,
    .comment-bubble.pos-1.active,
    .comment-bubble.pos-2.active,
    .pos-1,
    .pos-2 {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
        padding: 20px !important;
        margin: 0 !important;
        border-top: none !important;
        white-space: normal !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        overflow: visible !important;
    }

    .comment-bubble.pos-2,
    .comment-bubble.pos-2.active {
        border-top: 3px solid #635bff !important;
    }

    .comment-bubble:hover,
    .comment-bubble:active,
    .comment-bubble:focus {
        transform: none !important;
        box-shadow: 0 4px 6px -1px rgba(0,0,0,0.05), 0 20px 40px -10px rgba(0,0,0,0.08) !important;
    }
    
    .bubble-txt {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 16px !important;
        white-space: normal !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        overflow: visible !important;
        max-width: 100% !important;
    }
    
    .bubble-usr { padding-top: 14px !important; }
}

@media (max-width: 480px) {
    .proof-container { padding: 40px 16px; gap: 16px; }
    .proof-sticky h2 { font-size: 26px; }
    .comment-bubble,
    .comment-bubble.pos-1,
    .comment-bubble.pos-2 { padding: 16px !important; }
    .bubble-txt { font-size: 13px !important; }
    .usr-img { width: 36px; height: 36px; font-size: 12px; }
    .progress-dots { justify-content: center; margin-top: 16px; }
    .dot { width: 20px; height: 3px; }
}

@media (max-width: 360px) {
    .proof-container { padding: 32px 12px; gap: 12px; }
    .proof-sticky h2 { font-size: 22px; }
    .comment-bubble,
    .comment-bubble.pos-1,
    .comment-bubble.pos-2 { padding: 14px !important; }
    .bubble-txt { font-size: 12px !important; }
}

/* 404 Error Page Styles */
.error-container {
    text-align: center;
    padding: 140px 20px 60px;
    max-width: 500px;
    margin: 0 auto;
}

.error-illustration {
    width: 120px;
    height: 120px;
    background: var(--p-blue-soft);
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 40px;
    position: relative;
    animation: float 4s ease-in-out infinite;
}

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

.error-code {
    font-size: 110px;
    font-weight: 800;
    letter-spacing: -5px;
    color: var(--p-blue);
    line-height: 1;
    margin: 0;
    opacity: 0.15;
    position: absolute;
    z-index: -1;
}

.error-container h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
    color: var(--p-text);
}

.error-container p {
    font-size: 15px;
    color: var(--p-muted);
    line-height: 1.6;
    margin-bottom: 35px;
}

.actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.btn {
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 12px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--p-blue);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(99, 91, 255, 0.3);
}

.btn-secondary {
    background: var(--p-blue-soft);
    color: var(--p-blue);
    border: 1px solid var(--p-blue);
}

.btn-secondary:hover {
    background: var(--p-blue);
    color: white;
}

.link-tag {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: white;
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-size: 12px;
    font-weight: 700;
    color: var(--p-blue);
    border: 1px solid var(--p-blue-soft);
}
