:root {
    --bg-color: #0f111a;
    /* Daha mat, Linux tarzı derin koyu gri */
    --text-color: #e2e8f0;
    --primary: #5eead4;
    /* Teal / Soluk cam yeşili */
    --primary-glow: rgba(94, 234, 212, 0.05);
    /* Extremely subtle glow */
    --secondary: #64748b;
    /* Nötr, sade bir slate rengi */
    --card-bg: rgba(255, 255, 255, 0.03);
    /* Cam hissi için ince bir katman */
    --card-border: rgba(255, 255, 255, 0.05);
    /* Zarif, ince cam çerçeveleri */
    --font: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Plan Colors */
    --color-daily: #38bdf8;
    /* Sky Blue */
    --color-weekly: #5eead4;
    /* Teal (ForceX Primary) */
    --color-monthly: #a78bfa;
    /* Violet */
    --color-lifetime: #facc15;
    /* Gold/Amber */
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    overflow-y: scroll;
    scrollbar-gutter: stable;
    width: 100%;
}

/* Global Glassy Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(94, 234, 212, 0.2);
}

/* For Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.05) transparent;
}

#bg-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -3;
    opacity: 0.15;
    pointer-events: none;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font);
    overflow-x: hidden;
    width: 100%;
    line-height: 1.6;
    position: relative;
    margin: 0;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

input, textarea {
    user-select: text !important;
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
}

/* Siber Devre (Circuit) Arka Planı */
.circuit-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--card-border) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: -2;
    opacity: 0.15;
}

/* Arka plan ışık damlaları (Neon Devre Enerjisi) */
.blob {
    position: absolute;
    filter: blur(100px);
    z-index: -1;
    border-radius: 50%;
    animation: drift 12s infinite alternate ease-in-out;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    top: -5%;
    left: -10%;
    opacity: 0.15;
    /* Increased for better blur effect */
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: var(--secondary);
    bottom: 10%;
    right: -5%;
    opacity: 0.1;
    animation-direction: alternate-reverse;
}

@keyframes drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(40px, 40px) scale(1.1);
    }
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(15px);
    background: rgba(15, 17, 26, 0.1);
    border-bottom: 1px solid transparent;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
}

.navbar.scrolled {
    padding: 12px 8%;
    background: rgba(11, 14, 20, 0.98);
    /* Much more opaque to hide background text */
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}







.nav-links {
    list-style: none;
    display: flex;
    gap: 28px;
    align-items: center;
    flex-shrink: 0;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-links a:hover {
    color: var(--primary);
    text-shadow: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

/* Dil Seçici (Lang Switch) */
.lang-switch {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid var(--card-border);
    overflow: hidden;
    margin-left: 20px;
}

.lang-btn {
    background: transparent;
    color: #94a3b8;
    border: none;
    padding: 8px 16px;
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.lang-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.lang-btn.active {
    background: var(--primary);
    color: #0b0e14;
}

/* Discreet Navbar Icon Button (Customer Panel) */
.nav-icon-btn {
    background: transparent;
    color: #64748b;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-icon-btn:hover {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(94, 234, 212, 0.2);
}

/* Buttons */
.btn {
    padding: 10px 24px;
    border-radius: 8px;
    /* Daha yumuşak cam kenarları */
    font-family: var(--font);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--card-border);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(5px);
    color: #e2e8f0;
}

.btn-primary {
    background: var(--primary);
    color: #0b0e14;
    border: none;
}

.btn-primary:hover {
    background: #4fd1c5;
    /* Slightly brighter teal */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #f8fafc;
}

.w-100 {
    width: 100%;
    justify-content: center;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 140px 8% 60px;
    gap: 50px;
    position: relative;
}

.hero-content {
    flex: 1;
    max-width: 650px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid var(--card-border);
    border-radius: 30px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    color: var(--primary);
    margin-bottom: 24px;
    text-shadow: none;
}

.pulse {
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 10px var(--secondary);
    animation: animatePulse 2s infinite;
}

@keyframes animatePulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }

    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    background: linear-gradient(180deg, #ffffff 30%, rgba(255, 255, 255, 0.3) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero h1 span {
    color: var(--primary);
    text-shadow: none;
}

.hero p {
    color: #94a3b8;
    font-size: 1.15rem;
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.hero-visuals {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-visuals img {
    filter: drop-shadow(0 0 30px rgba(0, 0, 0, 0.5));
    border-radius: 8px;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

/* About / HWID Box Görseli */
.about-section {
    padding: 100px 8%;
    background: linear-gradient(180deg, var(--bg-color) 0%, rgba(255, 255, 255, 0.01) 50%, var(--bg-color) 100%);
    position: relative;
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}



@keyframes float-slow {
    0% {
        transform: translateY(0);
        filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.2));
    }

    50% {
        transform: translateY(-20px);
        filter: drop-shadow(0 0 50px rgba(6, 182, 212, 0.6));
    }

    100% {
        transform: translateY(0);
        filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.2));
    }
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.about-content h2 {
    font-size: 3rem;
    margin-bottom: 0;
    font-weight: 800;
    text-align: center;
    background: linear-gradient(90deg, #fff 0%, var(--primary) 25%, rgba(94, 234, 212, 0.1) 50%, var(--primary) 75%, #fff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textFlow 5s linear infinite;
    filter: drop-shadow(2px 2px 5px rgba(0, 0, 0, 0.2));
    letter-spacing: -1px;
}

.about-text {
    margin-top: 0;
    text-align: center;
    position: relative;
    z-index: 10;
}

.about-text p {
    color: #94a3b8;
    font-size: 1.15rem;
    margin: 0 auto 25px auto;
    line-height: 1.8;
    max-width: 800px;
}

@keyframes textFlow {
    from {
        background-position: 0% center;
    }

    to {
        background-position: 200% center;
    }
}

.about-list {
    list-style: none;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    color: #e2e8f0;
    font-size: 1.05rem;
    font-weight: 500;
}

.about-list li i {
    color: var(--primary);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(94, 234, 212, 0.5));
}

/* Özellikler (Features) */
section {
    padding: 100px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title p {
    color: #94a3b8;
    max-width: 500px;
    margin: 0 auto;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-item {
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    /* High iOS-style radius */
    padding: 35px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(94, 234, 212, 0.05), transparent);
    pointer-events: none;
}

.feature-item:hover {
    transform: scale(1.05);
    /* Zoom effect */
    border-color: rgba(94, 234, 212, 0.3);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.6);
    /* Purely depth-based shadow */
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    /* iOS Icon style */
    background: linear-gradient(135deg, rgba(94, 234, 212, 0.1), rgba(94, 234, 212, 0.02));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 25px;
    border: 1px solid rgba(94, 234, 212, 0.2);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-item h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: #f8fafc;
}

.feature-item p {
    color: #94a3b8;
    font-size: 0.95rem;
}


/* Fiyatlandırma (Pricing) */
.pricing-grid {
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.price-item {
    opacity: 0.85;
    /* Slightly muted */
    cursor: pointer;
    /* overflow: hidden;  <-- Bu satırı kaldırdık, etiketi kesiyordu */
    transform: scale(0.96);
    /* Orantılı küçültme */
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.price-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: transparent;
    /* Varsayılan yuvarlak parlama kaldırıldı */
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    border-radius: inherit;
    z-index: 1;
    /* İçeriğin arkasında ama kutunun üstünde kalması için */
}

.price-item:hover {
    /* transform: scale(1.02) translateY(-10px);  <-- Hareket kaldırıldı */
    opacity: 1;
    /* Renkler plan bazlı stillerden gelecek */
}

.price-item:hover::before {
    opacity: 1;
}

.price-item.featured {
    border-color: rgba(94, 234, 212, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    padding: 48px 32px;
    transform: scale(1.08);
    /* Orantılı büyüme */
    opacity: 1;
    z-index: 2;
}

/* Plan Specific Hover Styles */
.price-item[data-plan="daily"]:hover {
    border-color: var(--color-daily);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    /* Arkadaki parlama kaldırıldı */
}

.price-item[data-plan="daily"]:hover::before {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.2) 0%, rgba(56, 189, 248, 0.05) 100%);
}

.price-item[data-plan="daily"]:hover .tier,
.price-item[data-plan="daily"]:hover h3 {
    color: var(--color-daily);
}

.price-item[data-plan="weekly"]:hover {
    border-color: var(--color-weekly);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7);
    /* Arkadaki parlama kaldırıldı */
}

.price-item[data-plan="weekly"]:hover::before {
    background: linear-gradient(135deg, rgba(94, 234, 212, 0.25) 0%, rgba(94, 234, 212, 0.08) 100%);
}

.price-item[data-plan="weekly"]:hover .tier,
.price-item[data-plan="weekly"]:hover h3 {
    color: var(--color-weekly);
}

.price-item[data-plan="monthly"]:hover {
    border-color: var(--color-monthly);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    /* Arkadaki parlama kaldırıldı */
}

.price-item[data-plan="monthly"]:hover::before {
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2) 0%, rgba(167, 139, 250, 0.05) 100%);
}

.price-item[data-plan="monthly"]:hover .tier,
.price-item[data-plan="monthly"]:hover h3 {
    color: var(--color-monthly);
}

.price-item[data-plan="lifetime"]:hover {
    border-color: var(--color-lifetime);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    /* Arkadaki parlama kaldırıldı */
}

.price-item[data-plan="lifetime"]:hover::before {
    background: linear-gradient(135deg, rgba(250, 204, 21, 0.2) 0%, rgba(250, 204, 21, 0.05) 100%);
}

.price-item[data-plan="lifetime"]:hover .tier,
.price-item[data-plan="lifetime"]:hover h3 {
    color: var(--color-lifetime);
}

.popular-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #0f111a;
    font-size: 0.8rem;
    font-weight: 800;
    padding: 6px 16px;
    border-radius: 4px;
    text-transform: uppercase;
}

.tier {
    color: var(--primary);
    font-weight: 700;
    font-family: var(--font-mono);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Payment Modal (Iframe) */
.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 12, 16, 0.85);
    /* Deep dark fade */
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    background: rgba(10, 14, 23, 0.35);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    width: 95%;
    max-width: 380px;
    height: auto;
    max-height: 85vh;
    border-radius: 20px;
    position: relative;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transform: scale(0.95) translateY(10px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.modal.show .modal-content {
    transform: scale(1) translateY(0);
}

/* Purchase modal - compact size for checkout form */
#payment-modal .payment-modal-content {
    max-width: 380px;
    width: 95%;
    height: auto;
    min-height: auto;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    /* Yumuşak genişleme animasyonu */
}

/* Iframe görünürken modalı büyüt */
#payment-modal .payment-modal-content.expanded {
    max-width: 540px;
    height: 600px;
    max-height: 85vh;
}

.modal.show .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.01);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 100;
}

.modal-body {
    flex: 1;
    position: relative;
    width: 100%;
    overflow: hidden; /* Formlar direkt sığması için */
}

.close-btn {
    color: #94a3b8;
    font-size: 26px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    background: transparent;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    /* Sekme kapama görünümü */
    border: 1px solid transparent;
}

.close-btn:hover {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.3);
}

/* Panel Login Internals */
.panel-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-group i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #64748b;
    font-size: 1.2rem;
}

.input-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 14px 14px 14px 44px;
    color: #f8fafc;
    font-family: var(--font-mono);
    font-size: 0.9rem;
    outline: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.input-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
    background: rgba(0, 0, 0, 0.4);
}

.input-group input::placeholder {
    color: #475569;
}

.error-msg {
    color: #ef4444;
    font-size: 0.85rem;
    margin-top: 10px;
    min-height: 20px;
    text-align: center;
}

/* Dashboard View Internals */
.dash-info-box {
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 15px 20px;
    margin-bottom: 20px;
}

.info-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.95rem;
}

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

.info-label {
    color: #64748b;
}

.info-value {
    color: #f8fafc;
    font-weight: 600;
}

.primary-text {
    color: var(--primary);
    text-shadow: 0 0 5px var(--primary-glow);
}

.mono-text {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    padding: 2px 6px;
    border-radius: 4px;
}

.dash-instructions {
    background: rgba(6, 182, 212, 0.03);
    /* Çok hafif Primary Teal */
    border-left: 3px solid var(--primary);
    padding: 15px 20px;
    border-radius: 4px 8px 8px 4px;
}

.dash-instructions h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.dash-instructions h4::before {
    content: '\2139';
    /* Info sign (i) */
    font-size: 1.1rem;
}

.dash-instructions ol {
    padding-left: 20px;
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.6;
}

.dash-instructions li {
    margin-bottom: 6px;
}

#payment-iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 12px;
    background: #fff;
    /* Shopier beyaz temasında olduğundan mecburi beyaz font */
    opacity: 0;
    transition: opacity 0.5s ease;
    position: relative;
    z-index: 10;
}

#payment-iframe.loaded {
    opacity: 1;
}

.modal-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--secondary);
    font-family: var(--font-mono);
    font-size: 0.9rem;
    z-index: 5;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top-color: var(--primary);
    animation: spin 1s ease-in-out infinite;
    margin: 0 auto 15px auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Footer Section */
.price-item h3 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.price-item ul {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.price-item li {
    margin-bottom: 14px;
    color: #cbd5e1;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.price-item li i {
    color: var(--secondary);
    font-weight: bold;
    font-size: 1.1rem;
}

/* Footer */
footer {
    border-top: 1px solid var(--card-border);
    padding: 40px 8%;
    background: rgba(0, 0, 0, 0.5);
    margin-top: 50px;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-content p {
    color: #64748b;
    font-size: 0.9rem;
    font-family: var(--font-mono);
}

@media (max-width: 900px) {

    .nav-links,
    .lang-switch {
        display: none;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 150px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero-actions {
        justify-content: center;
        flex-direction: column;
    }

    .price-item.featured {
        transform: scale(1);
        padding: 32px;
    }

    .price-item.featured:hover {
        transform: translateY(-5px);
    }

    .about-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-list li {
        justify-content: center;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* AI Chatbot Widget Styles */
.chat-trigger {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-trigger:hover {
    transform: scale(1.05);
    background: rgba(30, 41, 59, 1);
    border-color: rgba(94, 234, 212, 0.3);
}

.chat-trigger.active {
    background: #0f172a;
    color: var(--primary);
    transform: rotate(90deg) scale(1);
    border-color: rgba(94, 234, 212, 0.2);
}

.chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 350px;
    height: 500px;
    background: rgba(10, 14, 23, 0.35);
    backdrop-filter: blur(40px) saturate(200%);
    -webkit-backdrop-filter: blur(40px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), inset 0 0 0 1px rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.95);
    transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-widget.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.chat-header {
    background: rgba(255, 255, 255, 0.03);
    padding: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 16px 16px 0 0;
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--primary);
    font-weight: 600;
}

.chat-close {
    display: none;
}

.chat-messages {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.chat-messages::-webkit-scrollbar {
    display: none; /* Already covered by global but let's keep chat clean */
}

.chat-msg {
    display: flex;
    max-width: 85%;
}

.chat-msg.bot-msg {
    align-self: flex-start;
}

.chat-msg.user-msg {
    align-self: flex-end;
}

.msg-bubble {
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 0.9rem;
    line-height: 1.5;
    white-space: pre-wrap;
}

.bot-msg .msg-bubble {
    background: rgba(255, 255, 255, 0.05);
    color: #e2e8f0;
    border-bottom-left-radius: 4px;
}

.user-msg .msg-bubble {
    background: var(--primary);
    color: #0b0e14;
    border-bottom-right-radius: 4px;
}

.chat-input-area {
    display: flex;
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.2);
    border-radius: 0 0 16px 16px;
    gap: 10px;
}

.chat-input-area input {
    flex: 1;
    background: transparent;
    border: none;
    color: #e2e8f0;
    font-family: var(--font);
    font-size: 0.95rem;
    outline: none;
}

.chat-input-area input::placeholder {
    color: #64748b;
}

.chat-input-area button {
    background: rgba(255, 255, 255, 0.05);
    color: var(--primary);
    border: 1px solid rgba(255, 255, 255, 0.05);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-input-area button:hover {
    background: var(--primary);
    color: #0b0e14;
}

/* Toggle Switch (iOS Style) */
.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(255,255,255,0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #fff;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
}

input:checked + .slider {
    background-color: var(--primary);
}

input:checked + .slider:before {
    transform: translateX(24px);
}