:root {
    --bg-color: #000000;
    --surface-color: #101010;
    --surface-hover: #181818;
    --primary-color: #CBFF2E;
    --primary-glow: rgba(203, 255, 46, 0.35);
    --accent-color: #A6D800;
    --text-primary: #FFFFFF;
    --text-secondary: #B8B8B8;
    --border-color: rgba(255, 255, 255, 0.08);
    --gradient-main: linear-gradient(135deg, #CBFF2E 0%, #9FD81E 100%);
    --header-height: 80px;
    --radius: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

/* GLOBAL INTERACTIVITY FIX */
a,
button,
input,
select,
textarea,
label {
    pointer-events: auto !important;
}

body {
    font-family: 'Plus Jakarta Sans', 'Outfit', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    line-height: 1.2
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease
}

ul {
    list-style: none
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.98rem;
    letter-spacing: 0.01em;
    text-transform: none;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.3s ease,
        background 0.3s ease;
    cursor: pointer;
    gap: 10px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.btn-primary {
    color: #FFFFFF;
    border-color: rgba(255, 255, 255, 0.4);
    background:
        linear-gradient(135deg, rgba(74, 222, 255, 0.35) 0%, rgba(124, 58, 237, 0.25) 100%);
    box-shadow:
        0 16px 40px rgba(14, 8, 40, 0.45),
        0 0 24px rgba(99, 102, 241, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 18px 46px rgba(14, 8, 40, 0.55),
        0 0 30px rgba(99, 102, 241, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.45);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-secondary {
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    box-shadow:
        0 10px 26px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    border-color: rgba(99, 102, 241, 0.6);
    transform: translateY(-2px);
}

/* Open App CTA - neon border style */
.open-app-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 700;
    color: #f4f7ff !important;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.35) !important;
    background:
        linear-gradient(135deg, rgba(16, 24, 64, 0.6) 0%, rgba(24, 14, 64, 0.35) 100%);
    backdrop-filter: blur(18px) saturate(150%);
    -webkit-backdrop-filter: blur(18px) saturate(150%);
    box-shadow:
        0 12px 30px rgba(8, 10, 32, 0.55),
        0 0 24px rgba(255, 110, 199, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.open-app-btn::after {
    content: "↗";
    font-size: 1.1em;
    line-height: 1;
    margin-left: 2px;
}

.open-app-btn:hover {
    transform: translateY(-1px);
    box-shadow:
        0 0 0 1px rgba(255, 128, 222, 0.62),
        0 12px 30px rgba(14, 18, 62, 0.56),
        0 0 26px rgba(255, 111, 214, 0.48);
}

header .open-app-btn {
    min-height: 44px;
    padding: 8px 18px;
    font-size: 0.95rem;
    white-space: nowrap;
}

.bg-glow-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
    background-color: var(--bg-color)
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.15;
    animation: float 20s infinite alternate cubic-bezier(0.45, 0, 0.55, 1)
}

.blob-1 {
    width: 700px;
    height: 700px;
    background: #1e1b4b;
    top: -10%;
    left: -10%
}

.blob-2 {
    width: 600px;
    height: 600px;
    background: #ff2e54;
    bottom: 10%;
    right: -5%;
    animation-duration: 25s;
    animation-delay: -5s
}

.blob-3 {
    width: 500px;
    height: 500px;
    background: #ff9004;
    top: 40%;
    left: 30%;
    animation-duration: 30s;
    animation-delay: -10s
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg)
    }

    100% {
        transform: translate(100px, 50px) rotate(30deg)
    }
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% 50%, transparent 0%, var(--bg-color) 100%);
    opacity: 0.5;
    pointer-events: none
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(3, 3, 5, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.header-logo {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    gap: 32px
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500
}

.nav-links a:hover {
    color: white
}

.mobile-only-login,
.mobile-only-exit {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer
}

.nav-cta {
    margin-left: 16px;
    padding: 11px 20px;
    border-radius: 999px;
    font-weight: 700;
    white-space: nowrap;
}

/* Hero & Main Layout */
.hero {
    padding: 140px 0 80px;
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero h1 {
    font-size: 3.7rem;
    margin-bottom: 24px;
    letter-spacing: -2px;
    line-height: 1.12;
    text-wrap: balance;
}

.hero h1 span {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-title-top {
    color: #fff;
    -webkit-text-fill-color: #fff !important;
    white-space: nowrap;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 600px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.hero-sub-text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    opacity: 0.8;
}

.social-proof {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 10px;
}

.proof-avatars {
    display: flex;
    align-items: center;
}

.proof-avatar {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 2px solid var(--surface-color);
    margin-right: -10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 700;
    color: #eaf8ff;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.35), rgba(0, 119, 255, 0.35));
    box-shadow: 0 4px 16px rgba(0, 119, 255, 0.2);
}

.proof-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 999px;
    display: block;
}

.proof-avatar.more {
    background: #252535;
    color: #d7d7e2;
}

.trust-list>div {
    transition: transform 0.2s ease;
}

.trust-list>div:hover {
    transform: translateX(2px);
}

.testimonial-card {
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 229, 255, 0.35) !important;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
}

.testimonial-stars {
    margin-bottom: 8px;
    color: #f59e0b;
    font-size: 0.8rem;
    letter-spacing: 2px;
}

.hero-visual {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: stretch;
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
}

.hero-visual img {
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #0b0f1f;
    overflow: hidden;
}

.hero-visual .hero-look {
    width: 100%;
    height: clamp(220px, 30vw, 360px);
    aspect-ratio: 3 / 4;
    object-fit: contain;
    object-position: center 45%;
    background: #0a0c16;
    padding: 8px;
}

.hero-look-model {
    object-position: center 36%;
}

.hero-look-garment {
    object-position: center 30%;
}

.hero-look-result {
    object-position: center 34%;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--accent-color);
    margin-bottom: 24px;
    font-weight: 600;
}

/* Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin: 40px auto;
    padding: 40px;
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    max-width: 1000px;
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    font-family: 'Outfit', sans-serif;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500
}

.section-title {
    text-align: center;
    margin-bottom: 60px
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 16px
}

.section-title p {
    color: var(--text-secondary);
    font-size: 1.1rem
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 120px
}

.feature-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 48px 40px;
    border-radius: 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card p {
    color: var(--text-secondary)
}

.steps-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 80px 0 120px
}

.steps-container::before {
    content: '';
    position: absolute;
    top: 110px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--surface-hover);
    z-index: -1
}

.step-item {
    flex: 1;
    text-align: center;
    padding: 0 20px;
    background: var(--bg-color)
}

.step-item h3 {
    min-height: 58px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    text-align: center;
}

.step-item p {
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
}

.step-visual {
    width: 280px;
    height: 280px;
    margin: 0 auto 18px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2
}

.step-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(99, 102, 241, 0.4));
    transition: transform 0.4s ease
}

.step-item:hover .step-visual img {
    transform: scale(1.1) translateY(-10px);
    filter: drop-shadow(0 0 35px rgba(99, 102, 241, 0.6))
}

.step-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    border: 3px solid var(--bg-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    z-index: 3
}

.showcase {
    background: linear-gradient(180deg, rgba(17, 17, 28, 0.85), rgba(9, 9, 15, 0.92));
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 120px;
    padding: 70px 40px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.compare-shell {
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px;
    background: radial-gradient(circle at top left, rgba(0, 229, 255, 0.12), rgba(99, 102, 241, 0.06) 40%, rgba(0, 0, 0, 0.15) 80%);
}

.compare-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
}

.compare-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.2px;
    color: #e8fbff;
    border: 1px solid rgba(0, 229, 255, 0.35);
    background: rgba(0, 229, 255, 0.12);
}

.compare-hint {
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.compare-footer {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.compare-footer span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 6px 11px;
    border-radius: 999px;
    font-size: 0.8rem;
    color: #d6dbe7;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.compare-slider {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: min(68vw, 600px);
    min-height: 360px;
    margin: 0 auto;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: ew-resize;
    user-select: none;
    background: #0b0b10;
}

.compare-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

.img-after {
    z-index: 1
}

.img-before {
    z-index: 2;
    clip-path: inset(0 50% 0 0)
}

.slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.88);
    z-index: 10;
    transform: translateX(-50%);
    pointer-events: none
}

.slider-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    background: linear-gradient(180deg, #ffffff, #e8f4ff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 11;
    transform: translate(-50%, -50%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
    color: var(--primary-color);
    font-size: 1.2rem
}

.compare-label {
    position: absolute;
    bottom: 24px;
    padding: 8px 16px;
    background: rgba(3, 3, 5, 0.68);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    z-index: 15;
    border: 1px solid rgba(255, 255, 255, 0.1)
}

.label-before {
    left: 24px
}

.label-after {
    right: 24px
}

.placeholder-grid {
    background-image: linear-gradient(var(--surface-hover) 1px, transparent 1px), linear-gradient(90deg, var(--surface-hover) 1px, transparent 1px);
    background-size: 40px 40px;
    width: 100%;
    height: 100%;
    position: absolute
}

footer {
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
    background: var(--surface-color)
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 16px;
    max-width: 300px
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: white
}

.footer-col ul li {
    margin-bottom: 12px
}

.footer-col ul li a {
    color: var(--text-secondary)
}

.footer-col ul li a:hover {
    color: var(--primary-color)
}

.copyright {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05)
}

/* --- Media Queries --- */

/* Desktop & Large Screens (Adjustments if needed) */
@media (min-width: 769px) {
    .nav-links {
        display: flex !important;
        position: static !important;
        height: auto !important;
        background: transparent !important;
        flex-direction: row !important;
        gap: 32px;
        padding: 0 !important;
    }

    .mobile-menu-btn {
        display: none !important;
    }
}

/* Mobile Devices (Max width 768px) */
@media (max-width: 768px) {
    :root {
        --header-height: 70px
    }

    /* Mobile Header Cleanup */
    .header-container {
        padding: 0 16px;
        height: 60px;
    }

    .logo {
        font-size: 1.25rem;
        gap: 8px;
    }

    .logo span {
        display: none;
        /* Metni gizle, sadece ikon kalsın */
    }

    .logo i {
        font-size: 1.8rem;
    }

    .header-right {
        gap: 8px;
    }

    /* Mobilde Giriş Yap butonunu gizle (Menü içine taşıyacağız) */
    #user-auth-section {
        display: none !important;
    }

    .nav-cta {
        padding: 8px 12px;
        font-size: 0.75rem;
        border-radius: 8px;
        white-space: nowrap;
    }

    .mobile-menu-btn {
        display: block !important;
        background: transparent;
        border: none;
        color: white;
        font-size: 1.5rem;
        padding: 8px;
        cursor: pointer;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #0b0b12 !important;
        /* Solid background to prevent see-through */
        z-index: 10000 !important;
        /* Extremely high z-index */
        padding: 120px 24px 40px;
        gap: 20px;
        align-items: center;
        justify-content: flex-start;
        transition: none;
        /* Instant show for better mobile feel */
        overflow-y: auto;
        padding-bottom: calc(32px + env(safe-area-inset-bottom));
    }

    .nav-links.active {
        display: flex !important;
    }

    .mobile-only-login,
    .mobile-only-exit {
        display: block;
    }

    .mobile-only-exit {
        margin-top: auto;
        background: rgba(99, 102, 241, 0.22) !important;
        border-color: rgba(99, 102, 241, 0.55) !important;
    }

    .nav-links a {
        width: 100%;
        max-width: 320px;
        padding: 18px !important;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links a:hover,
    .nav-links a:active {
        background: rgba(99, 102, 241, 0.2);
        border-color: var(--primary-color);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    }

    .nav-links.active {
        display: flex;
    }

    /* Hero Section Mobile */
    .hero {
        padding: 100px 0 60px;
        text-align: center;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        align-items: center;
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-title-top {
        white-space: normal;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
        padding: 0 20px;
        gap: 15px;
    }

    .btn {
        width: 100%;
    }

    .hero-visual {
        padding: 0 15px;
        grid-template-columns: 1fr;
        max-width: 340px;
        gap: 12px;
    }

    .hero-visual img {
        width: 100%;
        max-width: 320px;
        height: auto;
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    }

    .social-proof {
        justify-content: center;
        flex-wrap: wrap;
    }

    /* Stats Mobile */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 20px;
        gap: 15px;
    }

    .stat-value {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    /* Sections Mobile */
    .section-title h2 {
        font-size: 2.2rem;
    }

    .section-title p {
        font-size: 1rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        padding: 30px 24px;
    }

    .steps-container {
        flex-direction: column;
        gap: 50px;
    }

    .step-visual {
        width: 180px;
        height: 180px;
    }

    .step-item h3 {
        min-height: auto;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-visual {
        min-height: 300px;
    }

    .contact-form-side {
        padding: 40px 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.steps-container::before {
    display: none
}

    .showcase {
        padding: 40px 15px
    }

    .compare-topbar {
        flex-direction: column;
        align-items: flex-start;
    }

.compare-slider {
    height: 400px
}


#pricing {
    padding: 100px 0;
    position: relative
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-bottom: 80px
}

.price-card {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    padding: 48px 40px;
    border-radius: 32px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden
}

.price-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-color);
    background: var(--surface-hover);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5)
}

.price-card.featured {
    border-color: var(--primary-color);
    background: rgba(99, 102, 241, 0.05);
    box-shadow: 0 0 30px rgba(99, 102, 241, 0.1)
}

.price-card.featured::after {
    content: 'En Popüler';
    position: absolute;
    top: 24px;
    right: -32px;
    background: var(--gradient-main);
    color: white;
    padding: 8px 40px;
    font-size: 0.75rem;
    font-weight: 700;
    transform: rotate(45deg);
    text-transform: uppercase
}

.plan-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 12px
}

.plan-price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 32px;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: baseline;
    gap: 4px;
    justify-content: flex-start
}

.plan-price span {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400
}

.plan-price .price-currency,
.plan-price .price-val {
    font-size: 3.5rem;
    font-weight: 800;
    color: white
}

.plan-features {
    list-style: none;
    margin-bottom: 48px;
    flex-grow: 1
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--text-secondary);
    font-size: 1rem
}

.plan-features li i {
    color: var(--primary-color);
    font-size: 0.9rem
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px
}

.faq-item {
    background: var(--surface-color);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease
}

.faq-question {
    padding: 24px 32px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem
}

.faq-question:hover {
    background: var(--surface-hover)
}

.faq-answer {
    padding: 0 32px 32px;
    color: var(--text-secondary);
    display: none;
    line-height: 1.7
}

.faq-item.active {
    border-color: var(--primary-color)
}

.faq-item.active .faq-answer {
    display: block
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color)
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 48px
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
    background: var(--surface-hover);
    border-radius: 100px;
    cursor: pointer;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease
}

.toggle-knob {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 22px;
    height: 22px;
    background: white;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2)
}

.pricing-toggle.yearly .toggle-switch {
    background: var(--primary-color)
}

.pricing-toggle.yearly .toggle-knob {
    left: 32px
}

.toggle-label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-secondary);
    transition: color 0.3s
}

.toggle-label.active {
    color: white
}

.yearly-badge {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
    padding: 4px 10px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-left: 8px
}

.topup-section {
    margin-top: 80px;
    padding-top: 80px;
    border-top: 1px solid var(--border-color)
}

.topup-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px
}

.topup-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease
}

.topup-card:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-color);
    transform: translateY(-5px)
}

.topup-card i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 20px
}

.comparison-section {
    margin-top: 120px
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    background: var(--surface-color);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--border-color)
}

.comparison-table th,
.comparison-table td {
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid var(--border-color)
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.02);
    font-family: 'Outfit', sans-serif;
    font-weight: 700
}

.comparison-table td:first-child,
.comparison-table th:first-child {
    text-align: left;
    padding-left: 40px;
    color: var(--text-secondary)
}

.comparison-table td:first-child {
    color: white;
    font-weight: 600
}

.check-icon {
    color: #10B981
}

.times-icon {
    color: #EF4444
}

.user-auth-section {
    display: flex;
    align-items: center;
    gap: 16px
}

.user-info-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    padding: 8px 16px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease
}

.user-info-badge:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2)
}

.user-email-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    max-width: 150px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.user-credits-badge {
    background: var(--gradient-main);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 10px;
    border-radius: 100px;
    box-shadow: 0 0 10px var(--primary-glow)
}

.logout-link {
    font-size: 0.85rem;
    color: var(--text-secondary);
    cursor: pointer;
    transition: color 0.3s
}

.logout-link:hover {
    color: #EF4444
}

.contact-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--surface-color);
    border-radius: 40px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6)
}

.contact-visual {
    position: relative;
    background: #09090b;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px
}

.contact-visual-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 30px;
    transform: rotate(-5deg) scale(1.1);
    position: absolute;
    width: 120%
}

.grid-item {
    aspect-ratio: 3/4;
    border-radius: 12px;
    overflow: hidden;
    background: var(--surface-hover);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s ease
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5);
    transition: all 0.5s ease
}

.grid-item.highlight {
    transform: scale(1.1) translateY(-20px);
    z-index: 10;
    box-shadow: 0 0 30px rgba(255, 140, 0, 0.5);
    border: 2px solid #FF8C00
}

.grid-item.highlight img {
    filter: grayscale(0)
}

.contact-form-side {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.contact-form-side h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    line-height: 1.2
}

.modern-form .form-group {
    margin-bottom: 25px
}

.modern-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary)
}

.modern-form input,
.modern-form select,
.modern-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: #030305;
    border: 2px solid #1A1A24;
    border-radius: 16px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    outline: none
}

.modern-form input:focus,
.modern-form select:focus,
.modern-form textarea:focus {
    border-color: var(--primary-color);
    background: #09090b
}

.modern-form select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='white'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='激19l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px
}


@media (max-width: 992px) {
    .contact-wrapper {
        grid-template-columns: 1fr
    }

    .contact-visual {
        min-height: 300px
    }

    .contact-form-side {
        padding: 40px 24px
    }
}

/* --- Markty-like Full Landing Theme Override --- */
body.landing-page {
    background: #090a0f;
    color: #fff;
}

body.landing-page .bg-glow-container,
body.landing-page .grain {
    display: none;
}

body.landing-page header {
    background: linear-gradient(180deg, rgba(58, 58, 64, 0.72) 0%, rgba(38, 38, 44, 0.64) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
    height: 86px;
}

body.landing-page .nav-links a {
    color: rgba(255, 255, 255, 0.88);
    font-weight: 600;
    font-size: 1rem;
}

body.landing-page .nav-links a:hover {
    color: #fff;
    opacity: 1;
}

body.landing-page .hero {
    max-width: none;
    min-height: 100vh;
    padding: 170px 0 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

body.landing-page .hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(18, 18, 24, 0.52) 0%, rgba(9, 9, 14, 0.5) 40%, rgba(8, 8, 12, 0.66) 100%),
        url('../images/app_poster_final.png') center/cover no-repeat;
    filter: blur(0.5px) saturate(108%);
    transform: scale(1.03);
    z-index: 0;
}

body.landing-page .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 35%, rgba(255, 187, 102, 0.24) 0%, rgba(148, 112, 255, 0.17) 32%, rgba(8, 8, 12, 0.72) 78%);
    z-index: 1;
}

body.landing-page .hero-grid {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

body.landing-page .hero-content {
    align-items: center;
    text-align: center;
}

body.landing-page .hero h1 {
    font-size: clamp(1.85rem, 4.8vw, 3.4rem);
    line-height: 1.06;
    letter-spacing: -1.5px;
    margin-bottom: 14px;
    color: #fff;
    text-shadow: 0 4px 28px rgba(0, 0, 0, 0.42);
}

body.landing-page .hero h1 span,
body.landing-page .hero-title-top {
    background: none;
    -webkit-text-fill-color: #fff !important;
    color: #fff !important;
}

body.landing-page .hero p {
    color: rgba(255, 255, 255, 0.92);
    font-size: clamp(0.98rem, 1.5vw, 1.3rem);
    line-height: 1.34;
    max-width: 860px;
    margin: 0 auto 18px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

body.landing-page .hero-btns {
    justify-content: center;
    margin-bottom: 18px;
}

body.landing-page .hero-sub-text {
    color: rgba(255, 255, 255, 0.72);
    font-size: 1rem;
}

body.landing-page .hero-visual,
body.landing-page .trust-list,
body.landing-page .social-proof {
    display: none !important;
}

body.landing-page .hero .btn {
    min-width: min(82vw, 290px);
    min-height: 50px;
    border-radius: 999px;
    font-size: clamp(0.92rem, 1.05vw, 1.08rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 10px 18px;
}

body.landing-page .btn-primary {
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.52) 0%, rgba(37, 99, 235, 0.44) 100%);
    border: 1px solid rgba(96, 165, 250, 0.82);
    color: #f3f9ff;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.5), 0 0 24px rgba(56, 189, 248, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.34);
    backdrop-filter: blur(18px) saturate(155%);
    -webkit-backdrop-filter: blur(18px) saturate(155%);
}

body.landing-page .btn-primary:hover {
    box-shadow: 0 16px 38px rgba(37, 99, 235, 0.58), 0 0 28px rgba(56, 189, 248, 0.5);
    border-color: rgba(147, 197, 253, 0.95);
}

body.landing-page header .btn,
body.landing-page .nav-cta,
body.landing-page #user-auth-section .btn {
    min-width: 126px;
    min-height: 40px;
    padding: 7px 14px;
    font-size: 0.84rem;
    font-weight: 700;
    border-radius: 999px;
    letter-spacing: 0.01em;
}

body.landing-page .nav-container {
    gap: 16px;
}

body.landing-page .logo {
    flex-shrink: 0;
}

body.landing-page .nav-links {
    gap: 26px;
    flex: 1;
    justify-content: center;
}

body.landing-page main section:not(.hero),
body.landing-page footer {
    position: relative;
    background: linear-gradient(180deg, rgba(11, 12, 18, 0.96) 0%, rgba(8, 9, 14, 0.98) 100%);
}

body.landing-page .section-title h2,
body.landing-page .section-title p {
    color: #fff;
}

body.landing-page .section-title p {
    opacity: 0.8;
}

body.landing-page .feature-card,
body.landing-page .showcase,
body.landing-page .stats-grid,
body.landing-page .price-card,
body.landing-page .topup-card,
body.landing-page .comparison-section,
body.landing-page .contact-section {
    background: linear-gradient(180deg, rgba(23, 24, 30, 0.86) 0%, rgba(14, 15, 20, 0.9) 100%);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

body.landing-page .compare-shell,
body.landing-page .compare-footer span,
body.landing-page .compare-label {
    border-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    body.landing-page .hero {
        padding: 130px 0 70px;
        min-height: 92vh;
    }

    body.landing-page .hero p {
        font-size: 0.94rem;
        max-width: 92%;
    }

    body.landing-page .hero .btn {
        min-width: min(80vw, 260px);
        min-height: 46px;
        font-size: 0.9rem;
        padding: 8px 14px;
    }

    body.landing-page header .btn,
    body.landing-page .nav-cta {
        min-width: auto;
        min-height: 38px;
        padding: 7px 12px;
        font-size: 0.82rem;
    }
}
