
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

        :root {
            --gold: #0e7f36;
            --gold-light: #00ff00;
            --dark: #0d0d0d;
            --dark2: #1a1a1a;
            --dark3: #242424;
            --text: #f0ede6;
            --text-muted: #888;
            --border: rgba(201,168,76,0.2);
        }

        html { scroll-behavior: smooth; }

        body {
            font-family: 'DM Sans', sans-serif;
            background: var(--dark);
            color: var(--text);
            min-height: 100vh;
            overflow-x: hidden;
        }
                a {
                    text-decoration: none;
                }
           /* ── NAV ── */
           nav {
               position: fixed;
               top: 0;
               left: 0;
               right: 0;
               z-index: 100;
               height: 68px;
               padding: 0 5%;
               display: flex;
               align-items: center;
               justify-content: space-between;
               background: rgba(40, 40, 40, 0.92);
               backdrop-filter: blur(16px);
               border-bottom: 1px solid var(--border);
           }
    
           .nav-logo img {
               height: 36px;
           }
    
           .nav-links {
               display: flex;
               gap: 32px;
               list-style: none;
           }
    
           .nav-links a {
               color: var(--muted);
               font-size: 0.9rem;
               font-weight: 500;
               transition: color 0.2s;
           }
    
           .nav-links a:hover {
               color: var(--text);
           }
    
           .nav-cta {
               background: var(--gold) !important;
               color: #fff !important;
               padding: 8px 20px;
               border-radius: 6px;
           }
    
           .nav-cta:hover {
               background: var(--gold-light) !important;
            color: #3d3b3b !important;
           }
    
           .nav-social {
               display: flex;
               gap: 14px;
           }
    
           .nav-social a {
               color: var(--muted);
               font-size: 1.1rem;
               transition: color 0.2s;
           }
    
           .nav-social a:hover {
               color: var(--green);
           }
        
        /* HERO */
        .hero {
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start;
            padding-top: 140px;
            padding-bottom: 40px;
            text-align: center;
            position: relative;
            background: radial-gradient(ellipse at 50% 0%, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: 
                repeating-linear-gradient(0deg, transparent, transparent 60px, rgba(201,168,76,0.03) 60px, rgba(201,168,76,0.03) 61px),
                repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(201,168,76,0.03) 60px, rgba(201,168,76,0.03) 61px);
            pointer-events: none;
        }

        .logo-badge {
            display: inline-block;
            border: 1px solid var(--border);
            padding: 8px 20px;
            border-radius: 100px;
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 40px;
            animation: fadeDown 0.8s ease both;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2.8rem, 8vw, 6rem);
            font-weight: 900;
            line-height: 1.05;
            margin-bottom: 24px;
            animation: fadeDown 0.8s 0.1s ease both;
        }

        .hero h1 span {
            color: var(--gold);
            font-style: italic;
        }

        .hero p {
            font-size: clamp(1rem, 2.5vw, 1.2rem);
            color: var(--text-muted);
            max-width: 560px;
            line-height: 1.7;
            margin-bottom: 48px;
            animation: fadeDown 0.8s 0.2s ease both;
        }

        .cta-btn {
            display: inline-block;
            background: var(--gold);
            color: var(--dark);
            padding: 18px 48px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 1rem;
            letter-spacing: 1px;
            text-decoration: none;
            transition: all 0.3s ease;
            animation: fadeDown 0.8s 0.3s ease both;
        }

        .cta-btn:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 20px 60px rgba(201,168,76,0.3);
        }

        .scroll-hint {
            position: absolute;
            bottom: 40px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            color: var(--text-muted);
            font-size: 0.75rem;
            letter-spacing: 2px;
            animation: bounce 2s infinite;
        }

        .scroll-hint::after {
            content: '↓';
            font-size: 1.2rem;
        }
            /* VİDEOLAR */
            .videos-section {
                padding: 10px 50px 50px;
                text-align: center;
            }

            .videos-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 40px;
                max-width: 1000px;
                margin: 60px auto 0;
            }

            .video-card {
                background: rgba(255, 255, 255, 0.04);
                border: 1px solid rgba(255, 255, 255, 0.08);
                border-radius: 16px;
                padding: 24px;
            }

            .video-label {
                font-size: 0.9rem;
                color: var(--gold);
                margin-bottom: 16px;
                text-align: left;
                font-weight: 600;
            }

            .video-wrapper {
                position: relative;
                padding-bottom: 56.25%;
                height: 0;
                overflow: hidden;
                border-radius: 10px;
                cursor: pointer;
            }

            .video-wrapper img {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .play-btn {
                position: absolute;
                top: 50%;
                left: 50%;
                transform: translate(-50%, -50%);
                font-size: 3rem;
                pointer-events: none;
            }

            .video-wrapper iframe {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                border: none;
            }
            /* FİYATLANDIRMA */
            .pricing-section {
                padding: 80px 5%;
                text-align: center;
            }

            .pricing-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 24px;
                max-width: 1000px;
                margin: 48px auto 0;
            }

            .pricing-card {
                background: var(--dark2);
                border: 1px solid var(--border);
                border-radius: 12px;
                padding: 36px 28px;
                position: relative;
                text-align: left;
            }

            .pricing-card.featured {
                border-color: var(--gold);
                box-shadow: 0 0 40px rgba(201, 168, 76, 0.12);
            }

            .pricing-badge {
                position: absolute;
                top: -12px;
                left: 50%;
                transform: translateX(-50%);
                background: var(--gold);
                color: var(--dark);
                font-size: 0.7rem;
                font-weight: 700;
                letter-spacing: 1.5px;
                padding: 4px 14px;
                border-radius: 20px;
                white-space: nowrap;
            }

            .pricing-card h3 {
                font-size: 1rem;
                letter-spacing: 2px;
                text-transform: uppercase;
                color: var(--gold);
                margin-bottom: 12px;
            }

            .pricing-price {
                font-size: 2.4rem;
                font-weight: 700;
                margin-bottom: 4px;
            }

            .pricing-price span {
                font-size: 0.9rem;
                color: var(--text-muted);
                font-weight: 400;
            }

            .pricing-old {
                font-size: 1rem;
                color: var(--text-muted);
                text-decoration: line-through;
                margin-bottom: 5px;
            }

            .pricing-features {
                list-style: none;
                margin-bottom: 32px;
            }

            .pricing-features li {
                font-size: 0.9rem;
                color: var(--text-muted);
                padding: 8px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.05);
                display: flex;
                gap: 10px;
            }

            .pricing-features li::before {
                content: '✓';
                color: var(--gold);
                flex-shrink: 0;
            }

            .addon-card {
                max-width: 320px;
                margin: 24px auto 0;
                background: var(--dark2);
                border: 1px dashed var(--border);
                border-radius: 12px;
                padding: 24px 28px;
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 20px;
            }

            @media (max-width: 768px) {
                .pricing-grid {
                    grid-template-columns: 1fr;
                }

                .addon-card {
                    flex-direction: column;
                    text-align: center;
                }
            }
            @media (max-width: 768px) {
                .videos-grid {
                    grid-template-columns: 1fr;
                }
            }
        
                .pdf-btn {
                    display: inline-flex;
                    align-items: center;
                    gap: 10px;
                    padding: 14px 32px;
                    border: 1px solid var(--gold);
                    color: var(--gold);
                    border-radius: 50px;
                    text-decoration: none;
                    font-size: 0.95rem;
                    transition: all 0.3s;
                }
        
                .pdf-btn:hover {
                    background: var(--gold);
                    color: #000;
                }
        
                /* KVKK */
                .kvkk-group {
                    margin: 20px 0;
                }
        
                .kvkk-label {
                    display: flex;
                    align-items: flex-start;
                    gap: 12px;
                    cursor: pointer;
                    font-size: 0.9rem;
                    color: #aaa;
                    line-height: 1.6;
                }
        
                .kvkk-label input[type="checkbox"] {
                    margin-top: 3px;
                    width: 18px;
                    height: 18px;
                    flex-shrink: 0;
                    cursor: pointer;
                    accent-color: var(--gold);
                }
        
                .kvkk-label a {
                    color: var(--gold);
                    text-decoration: underline;
                }
        
                /* MOBİL */
                @media (max-width: 768px) {
                    .videos-grid {
                        grid-template-columns: 1fr;
                    }
                }

        /* FEATURES */
        .section-label {
            text-align: center;
            font-size: 0.75rem;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold);
            margin-bottom: 16px;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: clamp(2rem, 5vw, 3.5rem);
            text-align: center;
            margin-bottom: 80px;
            line-height: 1.2;
        }

        .stories-section {
            background: var(--dark3);
            padding: 60px 5%;
        }
    
        .story-slider {
            max-width: 900px;
            margin: 0 auto;
        }
    
        .story-slide {
            display: none;
            align-items: center;
            gap: 40px;
        }
    
        .story-slide.active {
            display: flex;
        }
    
        .story-slide img {
            width: 40%;
            border-radius: 12px;
            object-fit: cover;
            aspect-ratio: 4/3;
        }
    
        .story-text {
            flex: 1;
            font-size: 1rem;
            line-height: 1.8;
        }
    
        .story-dots {
            text-align: center;
            margin-top: 24px;
        }
    
        .dot {
            display: inline-block;
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: var(--border);
            margin: 0 5px;
            cursor: pointer;
        }
    
        .dot.active {
            background: var(--gold);
        }
    
        @media (max-width: 768px) {
            .story-slide {
                flex-direction: column;
            }
    
            .story-slide img {
                width: 100%;
            }
        }

        /* FORM SECTION */
        .form-section {
            padding: 120px 24px;
            background: var(--dark2);
            position: relative;
        }

        .form-section::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--gold), transparent);
        }

        .form-wrapper {
            max-width: 680px;
            margin: 0 auto;
        }

        .form-wrapper .section-title { margin-bottom: 16px; }

        .form-subtitle {
            text-align: center;
            color: var(--text-muted);
            margin-bottom: 56px;
            line-height: 1.6;
        }

        .trial-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(201,168,76,0.1);
            border: 1px solid var(--border);
            padding: 10px 20px;
            border-radius: 4px;
            font-size: 0.85rem;
            color: var(--gold);
            margin-bottom: 48px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 20px;
        }

        .form-grid.full { grid-template-columns: 1fr; }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }

        .form-group label {
            font-size: 0.8rem;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--text-muted);
        }

        .form-group input,
        .form-group select {
            background: var(--dark);
            border: 1px solid var(--border);
            color: var(--text);
            padding: 14px 18px;
            border-radius: 4px;
            font-family: 'DM Sans', sans-serif;
            font-size: 0.95rem;
            transition: border-color 0.3s;
            outline: none;
            width: 100%;
        }

        .form-group input:focus,
        .form-group select:focus {
            border-color: var(--gold);
        }

        .form-group select option { background: var(--dark2); }

        .submit-btn {
            width: 100%;
            background: var(--gold);
            color: var(--dark);
            border: none;
            padding: 20px;
            border-radius: 4px;
            font-family: 'DM Sans', sans-serif;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 12px;
        }

        .submit-btn:hover {
            background: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 20px 60px rgba(201,168,76,0.25);
        }

        .submit-btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

        .form-note {
            text-align: center;
            color: var(--text-muted);
            font-size: 0.82rem;
            margin-top: 20px;
            line-height: 1.6;
        }

        /* SUCCESS */
        .success-msg {
            display: none;
            text-align: center;
            padding: 60px 40px;
            background: rgba(201,168,76,0.05);
            border: 1px solid var(--border);
            border-radius: 4px;
        }

        .success-msg h3 {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            color: var(--gold);
            margin-bottom: 16px;
        }

        .success-msg p { color: var(--text-muted); line-height: 1.7; }

        /* ERROR */
        .error-msg {
            display: none;
            background: rgba(220,53,69,0.1);
            border: 1px solid rgba(220,53,69,0.3);
            color: #ff6b6b;
            padding: 14px 18px;
            border-radius: 4px;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }

        /* FOOTER */
        footer {
            text-align: center;
            padding: 40px 24px;
            color: var(--text-muted);
            font-size: 0.82rem;
            border-top: 1px solid rgba(255,255,255,0.05);
        }

        /* ANIMATIONS */
        @keyframes fadeDown {
            from { opacity: 0; transform: translateY(-20px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        @keyframes bounce {
            0%, 100% { transform: translateX(-50%) translateY(0); }
            50%       { transform: translateX(-50%) translateY(8px); }
        }

        /* RESPONSIVE */
        @media (max-width: 600px) {
            .form-grid { grid-template-columns: 1fr; }
        }
                                /* ── HAMBURGER ── */
                                .hamburger {
                                    display: none;
                                    flex-direction: column;
                                    gap: 5px;
                                    cursor: pointer;
                                    background: none;
                                    border: none;
                                    padding: 4px;
                                }
                
                                .hamburger span {
                                    display: block;
                                    width: 24px;
                                    height: 2px;
                                    background: var(--text);
                                    border-radius: 2px;
                                    transition: all 0.3s;
                                }
                
                                .hamburger.open span:nth-child(1) {
                                    transform: translateY(7px) rotate(45deg);
                                }
                
                                .hamburger.open span:nth-child(2) {
                                    opacity: 0;
                                }
                
                                .hamburger.open span:nth-child(3) {
                                    transform: translateY(-7px) rotate(-45deg);
                                }
                
                                .mobile-menu {
                                    display: none;
                                    position: fixed;
                                    top: 68px;
                                    left: 0;
                                    right: 0;
                                    background: rgba(40, 40, 40, 0.98);
                                    border-bottom: 1px solid var(--border);
                                    z-index: 99;
                                    padding: 20px 5%;
                                    flex-direction: column;
                                    gap: 16px;
                                }
                
                                .mobile-menu.open {
                                    display: flex;
                                }
                
                                .mobile-menu a {
                                    color: var(--muted);
                                    font-size: 1rem;
                                    font-weight: 500;
                                    padding: 8px 0;
                                    border-bottom: 1px solid var(--border);
                                }
                
                                .mobile-menu a:last-child {
                                    border-bottom: none;
                                }
                
                                .mobile-menu .nav-cta {
                                    color: #fff !important;
                                    text-align: center;
                                    border-bottom: none;
                                }
         /* ── BACK TO TOP ── */
        #backTop {
            position: fixed;
            bottom: 28px;
            right: 28px;
            width: 44px;
            height: 44px;
            background: var(--gold);
            color: var(--dark3);
            border: none;
            border-radius: 8px;
            font-size: 1.1rem;
            cursor: pointer;
            display: none;
            align-items: center;
            justify-content: center;
            z-index: 99;
            transition: all 0.25s;
        }

        #backTop:hover {
            background: var(--text-muted);
            transform: translateY(-2px);
        }

        #backTop.visible {
            display: flex;
        }
        
    @media (max-width: 960px) {
        .hamburger {
            display: flex;
        }
        .nav-links {
            display: none;}
        }
                               