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

        :root {
            --primary: #059669;
            --primary-light: #10b981;
            --primary-dark: #047857;
            --accent: #d97706;
            --accent-light: #f59e0b;
            --bg: #ffffff;
            --bg-light: #f9fafb;
            --bg-soft: #f3f4f6;
            --bg-ivory: #fffbf0;
            --text: #111827;
            --text-medium: #374151;
            --text-soft: #6b7280;
            --border: #e5e7eb;
            --border-light: #f3f4f6;
            --gold: #d97706;
            --gold-light: #fbbf24;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
            --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
            --shadow-gold: 0 8px 24px rgba(217, 119, 6, 0.15);
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(2deg); }
        }

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

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        @keyframes gradientShift {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @keyframes shimmer {
            0% {
                background-position: -1000px 0;
            }
            100% {
                background-position: 1000px 0;
            }
        }

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

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        @keyframes typing {
            0%, 100% { opacity: 0.3; }
            50% { opacity: 1; }
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', system-ui, sans-serif;
            line-height: 1.6;
            color: var(--text);
            background: var(--bg);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        .container {
            max-width: 1440px;
            margin: 0 auto;
            padding: 0 48px;
        }

        .container-wide {
            max-width: 1600px;
            margin: 0 auto;
            padding: 0 48px;
        }

        /* Header */
        header {
            position: sticky;
            top: 0;
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            z-index: 1000;
            padding: 20px 0;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s;
        }

        header.scrolled {
            padding: 14px 0;
            box-shadow: var(--shadow);
        }

        .header-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 60px;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 14px;
            cursor: pointer;
            transition: all 0.3s;
            flex-shrink: 0;
        }

        .logo:hover {
            transform: scale(1.03);
        }

        .logo-icon {
            width: 52px;
            height: 52px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            box-shadow: 0 4px 14px rgba(5, 150, 105, 0.25);
            animation: pulse 3s ease-in-out infinite;
        }

        .logo-text-wrapper {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }

        .logo-text {
            font-size: 27px;
            font-weight: 800;
            color: var(--text);
            letter-spacing: -0.5px;
            line-height: 1;
        }

        .logo-subtitle {
            font-size: 10px;
            color: var(--gold);
            letter-spacing: 1.8px;
            text-transform: uppercase;
            font-weight: 700;
        }

        nav {
            display: flex;
            gap: 4px;
            align-items: center;
            flex: 1;
            justify-content: center;
        }

        nav a {
            text-decoration: none;
            color: var(--text-medium);
            font-size: 14.5px;
            font-weight: 600;
            transition: all 0.3s;
            position: relative;
            padding: 11px 16px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            gap: 7px;
            white-space: nowrap;
            letter-spacing: -0.2px;
        }

        nav a::before {
            content: '';
            position: absolute;
            inset: 0;
            border-radius: 10px;
            padding: 2px;
            background: linear-gradient(135deg, var(--primary), var(--gold));
            -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            opacity: 0;
            transition: opacity 0.3s;
        }

        nav a:hover::before {
            opacity: 1;
        }

        nav a:hover {
            color: var(--primary);
            background: linear-gradient(135deg, rgba(5, 150, 105, 0.06), rgba(217, 119, 6, 0.06));
            transform: translateY(-1px);
        }

        nav a svg {
            width: 17px;
            height: 17px;
            stroke-width: 2.2;
            transition: all 0.3s;
            flex-shrink: 0;
        }

        nav a:hover svg {
            transform: scale(1.08);
            stroke: var(--primary);
        }

        .header-cta {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
        }

        .btn {
            padding: 12px 28px;
            border-radius: 12px;
            font-size: 14.5px;
            font-weight: 700;
            cursor: pointer;
            border: none;
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 7px;
            white-space: nowrap;
            position: relative;
            overflow: hidden;
            letter-spacing: -0.2px;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.3);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 30px;
            height: 30px;
        }

        .btn-primary {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            background-size: 200% 200%;
            color: white;
            box-shadow: 0 4px 16px rgba(5, 150, 105, 0.25);
            animation: gradientShift 3s ease infinite;
        }

        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(5, 150, 105, 0.35);
        }

        /* Buton içindeki tüm SVG ikonlarını küçültür */
.btn-primary svg {
    width: 20px;       /* İkon genişliği */
    height: 20px;      /* İkon yüksekliği */
    margin-left: 8px;  /* Yazı ile ikon arasına boşluk koyar */
    vertical-align: middle; /* Hizalamayı düzeltir */
}

        .btn-secondary {
            background: white;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        .btn-ghost {
            background: var(--bg-soft);
            color: var(--text-medium);
            border: 1px solid var(--border);
        }

        .btn-ghost:hover {
            background: var(--bg-light);
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
        }

        .btn-gold {
            background: linear-gradient(135deg, var(--gold) 0%, var(--accent-light) 100%);
            background-size: 200% 200%;
            color: white;
            box-shadow: var(--shadow-gold);
            animation: gradientShift 3s ease infinite;
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(217, 119, 6, 0.25);
        }

        /* Hero */
        .hero {
            padding: 120px 0 140px;
            background: linear-gradient(180deg, var(--bg-ivory) 0%, var(--bg) 100%);
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -200px;
            right: -200px;
            width: 700px;
            height: 700px;
            background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 8s ease-in-out infinite;
        }

        .hero::after {
            content: '⚽';
            position: absolute;
            bottom: 10%;
            left: 5%;
            font-size: 120px;
            opacity: 0.03;
            animation: rotate 20s linear infinite;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 100px;
            align-items: center;
            position: relative;
        }

        .hero-text {
            animation: slideInLeft 1s ease-out;
        }

        .hero-text h1 {
            font-size: 68px;
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 28px;
            color: var(--text);
            letter-spacing: -2px;
        }

        .hero-text h1 .highlight {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--gold) 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 5s ease infinite;
        }

        .hero-text p {
            font-size: 21px;
            color: var(--text-medium);
            margin-bottom: 44px;
            line-height: 1.8;
            max-width: 640px;
        }

        .hero-badges {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
            margin-bottom: 44px;
        }

        .badge {
            padding: 14px 24px;
            background: white;
            border: 1px solid var(--border);
            border-radius: 14px;
            box-shadow: var(--shadow-sm);
            font-size: 15px;
            font-weight: 700;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 12px;
            transition: all 0.3s;
            animation: fadeInUp 1s ease-out;
            animation-fill-mode: both;
        }

        .badge:nth-child(1) { animation-delay: 0.2s; }
        .badge:nth-child(2) { animation-delay: 0.4s; }
        .badge:nth-child(3) { animation-delay: 0.6s; }

        .badge:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow);
            transform: translateY(-4px) scale(1.05);
        }

        .badge svg {
            width: 22px;
            height: 22px;
            stroke: var(--primary);
            animation: pulse 2s ease-in-out infinite;
        }

        .hero-cta {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
        }

        .hero-cta .btn {
            padding: 16px 40px;
            font-size: 16px;
            animation: fadeInUp 1s ease-out 0.8s;
            animation-fill-mode: both;
        }

        .hero-note {
            margin-top: 28px;
            padding: 16px 24px;
            background: rgba(217, 119, 6, 0.08);
            border-left: 3px solid var(--gold);
            border-radius: 12px;
            font-size: 14px;
            color: var(--text-medium);
            font-weight: 600;
            line-height: 1.6;
        }

        /* Premium Tarot Card */
        .card-wrapper {
            perspective: 1000px;
            animation: float 6s ease-in-out infinite, slideInRight 1s ease-out;
        }

        .sample-card {
            background: linear-gradient(135deg, #ffffff 0%, #fefefe 100%);
            border-radius: 28px;
            padding: 0;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.12),
                0 0 0 1px rgba(5, 150, 105, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            transition: all 0.4s;
        }

        .sample-card::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--primary) 50%, var(--gold) 100%);
            background-size: 200% 200%;
            border-radius: 28px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s;
            animation: gradientShift 3s ease infinite;
        }

        .sample-card:hover::before {
            opacity: 1;
        }

        .sample-card:hover {
            transform: translateY(-12px) rotateY(5deg);
            box-shadow: 0 35px 90px rgba(0, 0, 0, 0.18);
        }

        .card-inner {
            padding: 40px;
            position: relative;
            background: white;
            border-radius: 26px;
        }

        .sample-tag {
            display: inline-block;
            padding: 9px 20px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--accent-light) 100%);
            background-size: 200% 200%;
            color: white;
            border-radius: 11px;
            font-size: 12px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 26px;
            box-shadow: 0 4px 12px rgba(217, 119, 6, 0.25);
            animation: shimmer 3s linear infinite, pulse 2s ease-in-out infinite;
        }

        .card-ornament {
            text-align: center;
            color: var(--gold);
            font-size: 18px;
            margin: 22px 0;
            opacity: 0.4;
            letter-spacing: 4px;
            animation: pulse 3s ease-in-out infinite;
        }

        .match-info {
            margin-bottom: 30px;
            text-align: center;
            padding-bottom: 26px;
            border-bottom: 2px solid var(--bg-soft);
        }

        .match-title {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 12px;
            color: var(--text);
            letter-spacing: -0.5px;
        }

        .match-league {
            font-size: 14px;
            color: var(--gold);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }

        .match-league span:first-child {
            animation: bounce 2s ease-in-out infinite;
        }

        .predictions {
            display: grid;
            gap: 18px;
            margin: 30px 0;
        }

        .prediction-row {
            display: flex;
            gap: 14px;
        }

        .prediction-item {
            flex: 1;
            background: linear-gradient(135deg, var(--bg-light) 0%, white 100%);
            padding: 22px 18px;
            border-radius: 18px;
            text-align: center;
            border: 2px solid var(--border-light);
            transition: all 0.3s;
        }

        .prediction-item:hover {
            transform: translateY(-6px) scale(1.05);
            border-color: var(--primary);
            box-shadow: 0 12px 30px rgba(5, 150, 105, 0.2);
        }

        .prediction-label {
            font-size: 13px;
            color: var(--text-soft);
            margin-bottom: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .prediction-value {
            font-size: 36px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: -1px;
            animation: gradientShift 3s ease infinite;
        }

        .rationale {
            padding: 26px;
            background: linear-gradient(135deg, var(--bg-ivory) 0%, rgba(255, 251, 240, 0.5) 100%);
            border-radius: 18px;
            border-left: 4px solid var(--gold);
            margin-top: 26px;
            position: relative;
            animation: fadeInUp 1s ease-out 1.2s;
            animation-fill-mode: both;
        }

        .rationale::before {
            content: '"';
            position: absolute;
            top: 18px;
            left: 18px;
            font-size: 52px;
            color: var(--gold);
            opacity: 0.15;
            font-family: Georgia, serif;
            font-weight: 700;
        }

        .rationale-title {
            font-size: 12px;
            font-weight: 800;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 14px;
            letter-spacing: 1.5px;
        }

        .rationale-text {
            font-size: 16px;
            color: var(--text-medium);
            line-height: 1.7;
            padding-left: 28px;
            font-style: italic;
        }

        /* AI Chat Section - ULTRA PREMIUM */
        .ai-chat-section {
            padding: 140px 0;
            background: linear-gradient(180deg, #ffffff 0%, var(--bg-ivory) 30%, var(--bg-light) 70%, #ffffff 100%);
            position: relative;
            overflow: hidden;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .ai-chat-section::before {
            content: '💬';
            position: absolute;
            top: 80px;
            right: 5%;
            font-size: 180px;
            opacity: 0.03;
            animation: float 15s ease-in-out infinite;
        }

        .ai-chat-section::after {
            content: '🤖';
            position: absolute;
            bottom: 80px;
            left: 5%;
            font-size: 180px;
            opacity: 0.03;
            animation: float 18s ease-in-out infinite reverse;
        }

        .ai-floating-circles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .ai-circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.08;
        }

        .ai-circle-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
            top: -100px;
            right: 10%;
            animation: float 12s ease-in-out infinite;
        }

        .ai-circle-2 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
            bottom: -50px;
            left: 15%;
            animation: float 15s ease-in-out infinite reverse;
        }

        .ai-circle-3 {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
            top: 50%;
            left: 5%;
            animation: float 10s ease-in-out infinite;
        }

        .ai-chat-header {
            text-align: center;
            margin-bottom: 72px;
            position: relative;
            z-index: 1;
        }

        .ai-chat-tag {
            display: inline-block;
            padding: 10px 24px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            background-size: 200% 200%;
            color: white;
            border-radius: 24px;
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1.2px;
            margin-bottom: 24px;
            box-shadow: 0 4px 14px rgba(5, 150, 105, 0.25);
            animation: gradientShift 3s ease infinite, pulse 2s ease-in-out infinite;
        }

        .ai-chat-title {
            font-size: 56px;
            font-weight: 900;
            margin-bottom: 24px;
            color: var(--text);
            letter-spacing: -2px;
        }

        .ai-chat-title .highlight-ai {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 50%, var(--gold) 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: gradientShift 5s ease infinite;
        }

        .ai-chat-subtitle {
            font-size: 20px;
            color: var(--text-medium);
            max-width: 720px;
            margin: 0 auto 36px;
            line-height: 1.8;
        }

        .ai-chat-stats {
            display: flex;
            justify-content: center;
            gap: 48px;
            flex-wrap: wrap;
        }

        .ai-stat {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .ai-stat-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
        }

        .ai-stat-text {
            text-align: left;
        }

        .ai-stat-value {
            font-size: 22px;
            font-weight: 900;
            color: var(--primary);
            line-height: 1;
            margin-bottom: 4px;
        }

        .ai-stat-label {
            font-size: 13px;
            color: var(--text-soft);
            font-weight: 600;
        }

        .ai-chat-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .ai-chat-layout {
            display: grid;
            grid-template-columns: 1fr 380px;
            gap: 40px;
            align-items: start;
        }

        .ai-chat-main {
            background: white;
            border-radius: 32px;
            padding: 0;
            box-shadow: 
                0 24px 64px rgba(0, 0, 0, 0.12),
                inset 0 1px 0 rgba(255, 255, 255, 1);
            border: 1px solid var(--border);
            overflow: hidden;
            animation: fadeInUp 1s ease-out;
        }

        .ai-chat-header-bar {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            background-size: 200% 200%;
            padding: 24px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            animation: gradientShift 5s ease infinite;
        }

        .ai-chat-info {
            display: flex;
            align-items: center;
            gap: 16px;
        }

        .ai-header-avatar {
            width: 56px;
            height: 56px;
            background: white;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            position: relative;
        }

        .ai-header-avatar::after {
            content: '';
            position: absolute;
            bottom: -2px;
            right: -2px;
            width: 16px;
            height: 16px;
            background: #10b981;
            border: 3px solid var(--primary);
            border-radius: 50%;
            box-shadow: 0 2px 8px rgba(16, 185, 129, 0.4);
        }

        .ai-header-text h3 {
            color: white;
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 4px;
        }

        .ai-header-text p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 13px;
            font-weight: 600;
        }

        .ai-header-actions {
            display: flex;
            gap: 12px;
        }

        .ai-header-btn {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }

        .ai-header-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .ai-header-btn svg {
            width: 20px;
            height: 20px;
            stroke: white;
            stroke-width: 2.5;
        }

        .ai-messages-area {
            padding: 40px;
            max-height: 360px;
            overflow-y: auto;
            background: linear-gradient(180deg, #fafafa 0%, white 100%);
        }

        .ai-messages-area::-webkit-scrollbar {
            width: 6px;
        }

        .ai-messages-area::-webkit-scrollbar-track {
            background: var(--bg-soft);
            border-radius: 10px;
        }

        .ai-messages-area::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }

        .ai-messages-area::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }

        .ai-messages-wrapper {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .ai-message {
            display: flex;
            gap: 16px;
            animation: fadeInUp 0.6s ease-out;
            animation-fill-mode: both;
        }

        .ai-message.user-message {
            flex-direction: row-reverse;
        }

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

        .ai-avatar {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        .ai-avatar.bot-avatar {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            background-size: 200% 200%;
            animation: gradientShift 3s ease infinite;
        }

        .ai-avatar.user-avatar {
            background: linear-gradient(135deg, var(--gold) 0%, var(--accent-light) 100%);
            background-size: 200% 200%;
            animation: gradientShift 3s ease infinite;
        }

        .ai-message-content {
            flex: 1;
            max-width: 70%;
        }

        .ai-message-header {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
        }

        .ai-message.user-message .ai-message-header {
            flex-direction: row-reverse;
        }

        .ai-name {
            font-size: 14px;
            font-weight: 800;
            color: var(--text);
        }

        .ai-time {
            font-size: 12px;
            color: var(--text-soft);
            font-weight: 600;
        }

        .ai-message-bubble {
            padding: 20px 24px;
            border-radius: 18px;
            font-size: 16px;
            line-height: 1.7;
            position: relative;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s;
        }

        .ai-message-bubble:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .ai-message.bot-message .ai-message-bubble {
            background: white;
            border: 2px solid var(--border);
            color: var(--text-medium);
            border-bottom-left-radius: 4px;
        }

        .ai-message.user-message .ai-message-bubble {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            border-bottom-right-radius: 4px;
        }

        /* Markdown Styling in Chat Messages */
        .ai-message-bubble h1,
        .ai-message-bubble h2,
        .ai-message-bubble h3,
        .ai-message-bubble h4,
        .ai-message-bubble h5,
        .ai-message-bubble h6 {
            margin-top: 0.5em;
            margin-bottom: 0.3em;
            font-weight: bold;
            line-height: 1.3;
        }
        
        .ai-message-bubble h1 { font-size: 1.5em; }
        .ai-message-bubble h2 { font-size: 1.3em; }
        .ai-message-bubble h3 { font-size: 1.15em; }
        .ai-message-bubble h4 { font-size: 1.1em; }
        
        .ai-message-bubble strong {
            font-weight: 700;
            color: inherit;
        }
        
        .ai-message-bubble em {
            font-style: italic;
        }
        
        .ai-message-bubble code {
            background-color: rgba(0, 0, 0, 0.05);
            padding: 3px 8px;
            border-radius: 6px;
            font-family: 'Courier New', Consolas, Monaco, monospace;
            font-size: 0.9em;
            color: #d63384;
            border: 1px solid rgba(0, 0, 0, 0.1);
        }
        
        .ai-message-bubble pre {
            background-color: #f8f9fa;
            padding: 16px;
            border-radius: 8px;
            overflow-x: auto;
            margin: 0.8em 0;
            border: 1px solid #dee2e6;
        }
        
        .ai-message-bubble pre code {
            background: none;
            padding: 0;
            border: none;
            color: #212529;
            font-size: 0.95em;
        }
        
        .ai-message-bubble ul,
        .ai-message-bubble ol {
            margin: 0.8em 0;
            padding-left: 1.8em;
        }
        
        .ai-message-bubble li {
            margin: 0.4em 0;
            line-height: 1.6;
        }
        
        .ai-message-bubble ul li {
            list-style-type: disc;
        }
        
        .ai-message-bubble ol li {
            list-style-type: decimal;
        }
        
        .ai-message-bubble blockquote {
            border-left: 4px solid var(--primary);
            padding-left: 1.2em;
            margin: 1em 0;
            color: #6c757d;
            font-style: italic;
            background: rgba(16, 185, 129, 0.05);
            padding: 0.8em 1.2em;
            border-radius: 4px;
        }
        
        .ai-message-bubble a {
            color: var(--primary);
            text-decoration: underline;
            font-weight: 600;
        }
        
        .ai-message-bubble a:hover {
            color: var(--primary-dark);
        }
        
        .ai-message-bubble p {
            margin: 0.6em 0;
        }
        
        .ai-message-bubble p:first-child {
            margin-top: 0;
        }
        
        .ai-message-bubble p:last-child {
            margin-bottom: 0;
        }
        
        .ai-message-bubble hr {
            border: none;
            border-top: 2px solid #dee2e6;
            margin: 1em 0;
        }
        
        .ai-message-bubble table {
            width: 100%;
            border-collapse: collapse;
            margin: 1em 0;
        }
        
        .ai-message-bubble th,
        .ai-message-bubble td {
            padding: 8px 12px;
            border: 1px solid #dee2e6;
            text-align: left;
        }
        
        .ai-message-bubble th {
            background-color: #f8f9fa;
            font-weight: 700;
        }
        
        /* User message overrides for dark background */
        .ai-message.user-message .ai-message-bubble code {
            background-color: rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.95);
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .ai-message.user-message .ai-message-bubble pre {
            background-color: rgba(0, 0, 0, 0.2);
            border-color: rgba(255, 255, 255, 0.3);
        }
        
        .ai-message.user-message .ai-message-bubble pre code {
            color: white;
        }
        
        .ai-message.user-message .ai-message-bubble blockquote {
            border-left-color: rgba(255, 255, 255, 0.6);
            background: rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.9);
        }

        .ai-sample-card-preview {
            margin-top: 16px;
            padding: 20px;
            background: var(--bg-ivory);
            border-radius: 14px;
            border: 2px solid var(--gold);
        }

        .ai-preview-title {
            font-size: 13px;
            font-weight: 800;
            color: var(--gold);
            text-transform: uppercase;
            margin-bottom: 12px;
            letter-spacing: 1px;
        }

        .ai-preview-match {
            font-size: 15px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
        }

        .ai-preview-odds {
            display: flex;
            gap: 8px;
        }

        .ai-preview-odd {
            flex: 1;
            padding: 10px;
            background: white;
            border-radius: 8px;
            text-align: center;
            border: 1px solid var(--border);
        }

        .ai-preview-label {
            font-size: 11px;
            color: var(--text-soft);
            font-weight: 700;
            margin-bottom: 4px;
        }

        .ai-preview-value {
            font-size: 18px;
            font-weight: 900;
            color: var(--primary);
        }

        .ai-typing {
            display: flex;
            gap: 16px;
            opacity: 0.8;
        }

        .ai-typing-indicator {
            background: white;
            padding: 16px 24px;
            border-radius: 18px;
            border: 2px dashed var(--border);
            display: flex;
            gap: 6px;
            align-items: center;
            border-bottom-left-radius: 4px;
        }

        .ai-typing-dot {
            width: 8px;
            height: 8px;
            background: var(--primary);
            border-radius: 50%;
            animation: typing 1.4s ease-in-out infinite;
        }

        .ai-typing-dot:nth-child(1) { animation-delay: 0s; }
        .ai-typing-dot:nth-child(2) { animation-delay: 0.2s; }
        .ai-typing-dot:nth-child(3) { animation-delay: 0.4s; }

        .ai-input-area {
            padding: 32px 40px;
            background: white;
            border-top: 1px solid var(--border);
        }

        .ai-quick-actions {
            display: flex;
            gap: 8px;
            margin-bottom: 16px;
            overflow-x: auto;
            padding-bottom: 8px;
        }

        .ai-quick-actions::-webkit-scrollbar {
            height: 4px;
        }

        .ai-quick-actions::-webkit-scrollbar-thumb {
            background: var(--border);
            border-radius: 4px;
        }

        .ai-quick-chip {
            padding: 8px 16px;
            background: var(--bg-soft);
            border: 1px solid var(--border);
            border-radius: 20px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-medium);
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .ai-quick-chip:hover {
            background: var(--primary);
            border-color: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        .ai-input-wrapper {
            display: flex;
            gap: 12px;
            align-items: center;
            background: var(--bg-light);
            padding: 6px;
            border-radius: 16px;
            border: 2px solid var(--border);
            transition: all 0.3s;
        }

        .ai-input-wrapper:focus-within {
            border-color: var(--primary);
            background: white;
            box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.08);
        }

        .ai-attach-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
        }

        .ai-attach-btn:hover {
            background: var(--bg-soft);
        }

        .ai-attach-btn svg {
            width: 20px;
            height: 20px;
            stroke: var(--text-soft);
            stroke-width: 2;
        }

        .ai-voice-btn {
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s;
            background: transparent;
            border: none;
            position: relative;
        }

        .ai-voice-btn:hover {
            background: var(--bg-soft);
        }

        .ai-voice-btn.recording {
            background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
            animation: pulse 1.5s ease-in-out infinite;
        }

        .ai-voice-btn.recording svg {
            stroke: white;
        }

        .ai-voice-btn svg {
            width: 20px;
            height: 20px;
            stroke: var(--text-soft);
            stroke-width: 2;
            transition: all 0.3s;
        }

        .ai-voice-wave {
            display: none;
            align-items: center;
            gap: 3px;
            padding: 0 12px;
        }

        .ai-voice-wave.active {
            display: flex;
        }

        .ai-wave-bar {
            width: 3px;
            background: var(--primary);
            border-radius: 3px;
            animation: waveAnimation 1.2s ease-in-out infinite;
        }

        .ai-wave-bar:nth-child(1) {
            height: 12px;
            animation-delay: 0s;
        }

        .ai-wave-bar:nth-child(2) {
            height: 18px;
            animation-delay: 0.1s;
        }

        .ai-wave-bar:nth-child(3) {
            height: 24px;
            animation-delay: 0.2s;
        }

        .ai-wave-bar:nth-child(4) {
            height: 18px;
            animation-delay: 0.3s;
        }

        .ai-wave-bar:nth-child(5) {
            height: 12px;
            animation-delay: 0.4s;
        }

        @keyframes waveAnimation {
            0%, 100% {
                transform: scaleY(0.5);
            }
            50% {
                transform: scaleY(1);
            }
        }

        .ai-voice-time {
            font-size: 13px;
            color: var(--text-soft);
            font-weight: 700;
            margin-left: 8px;
        }

        .ai-voice-message {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 16px 20px;
            background: var(--bg-ivory);
            border-radius: 14px;
            margin-top: 12px;
        }

        .ai-voice-play-btn {
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            border: none;
            transition: all 0.3s;
        }

        .ai-voice-play-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
        }

        .ai-voice-play-btn svg {
            width: 14px;
            height: 14px;
            fill: white;
            stroke: none;
        }

        .ai-voice-waveform {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 2px;
            height: 32px;
        }

        .ai-waveform-bar {
            width: 3px;
            background: var(--primary);
            border-radius: 2px;
            opacity: 0.6;
            transition: all 0.3s;
        }

        .ai-voice-duration {
            font-size: 12px;
            color: var(--text-soft);
            font-weight: 700;
        }

        .ai-input-container {
            flex: 1;
        }

        .ai-input {
            width: 100%;
            padding: 12px 16px;
            border: none;
            background: transparent;
            font-size: 15px;
            color: var(--text);
            font-family: inherit;
        }

        .ai-input:focus {
            outline: none;
        }

        .ai-input::placeholder {
            color: var(--text-soft);
        }

        .ai-send-btn {
            padding: 12px 28px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            background-size: 200% 200%;
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.25);
            animation: gradientShift 3s ease infinite;
        }

        .ai-send-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(5, 150, 105, 0.35);
        }

        .ai-send-btn svg {
            width: 18px;
            height: 18px;
        }

        .ai-chat-sidebar {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .ai-sidebar-card {
            background: white;
            border-radius: 24px;
            padding: 32px 28px;
            border: 2px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: all 0.3s;
            animation: fadeInUp 1s ease-out;
            animation-fill-mode: both;
        }

        .ai-sidebar-card:nth-child(1) { animation-delay: 0.4s; }
        .ai-sidebar-card:nth-child(2) { animation-delay: 0.5s; }

        .ai-sidebar-card:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .ai-sidebar-icon {
            width: 56px;
            height: 56px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
        }

        .ai-sidebar-title {
            font-size: 19px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 12px;
        }

        .ai-sidebar-desc {
            font-size: 14px;
            color: var(--text-soft);
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .ai-sidebar-features {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .ai-sidebar-feature {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--text-medium);
            font-weight: 600;
        }

        .ai-sidebar-feature svg {
            width: 18px;
            height: 18px;
            stroke: var(--primary);
            stroke-width: 2.5;
            flex-shrink: 0;
        }

        .ai-sidebar-btn {
            width: 100%;
            padding: 14px 24px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 800;
            cursor: pointer;
            transition: all 0.3s;
            margin-top: 8px;
        }

        .ai-sidebar-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(5, 150, 105, 0.3);
        }

        /* Section */
        section {
            padding: 120px 0;
            position: relative;
        }

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

        .section-title {
            font-size: 54px;
            font-weight: 900;
            margin-bottom: 20px;
            color: var(--text);
            letter-spacing: -2px;
        }

        .section-subtitle {
            font-size: 21px;
            color: var(--text-medium);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.7;
        }

        /* What is Gol Kahini - PREMIUM */
        .what-is-section {
            background: linear-gradient(180deg, #ffffff 0%, var(--bg-ivory) 50%, #ffffff 100%);
            position: relative;
            overflow: hidden;
        }

        .what-is-section::before {
            content: '';
            position: absolute;
            top: -300px;
            left: -300px;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(217, 119, 6, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 10s ease-in-out infinite;
        }

        .what-is-section::after {
            content: '';
            position: absolute;
            bottom: -300px;
            right: -300px;
            width: 800px;
            height: 800px;
            background: radial-gradient(circle, rgba(5, 150, 105, 0.05) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 12s ease-in-out infinite reverse;
        }

        .what-is-content {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .what-is-main-box {
            background: linear-gradient(135deg, #ffffff 0%, rgba(255, 251, 240, 0.5) 100%);
            border-radius: 32px;
            padding: 80px;
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.08),
                inset 0 1px 0 rgba(255, 255, 255, 0.8);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            animation: fadeInUp 1s ease-out;
        }

        .what-is-main-box::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 50%, var(--primary) 100%);
            background-size: 200% 200%;
            border-radius: 32px;
            z-index: -1;
            opacity: 0.15;
            animation: gradientShift 5s ease infinite;
        }

        .what-is-icon-wrapper {
            display: flex;
            justify-content: center;
            margin-bottom: 48px;
        }

        .what-is-icon {
            width: 120px;
            height: 120px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            background-size: 200% 200%;
            border-radius: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 64px;
            box-shadow: 
                0 20px 40px rgba(5, 150, 105, 0.3),
                inset 0 2px 8px rgba(255, 255, 255, 0.3);
            animation: gradientShift 3s ease infinite, pulse 3s ease-in-out infinite;
            position: relative;
        }

        .what-is-icon::after {
            content: '✨';
            position: absolute;
            top: -10px;
            right: -10px;
            font-size: 32px;
            animation: bounce 2s ease-in-out infinite;
        }

        .what-is-text {
            font-size: 22px;
            color: var(--text);
            line-height: 2;
            text-align: center;
            font-weight: 500;
            letter-spacing: -0.2px;
        }

        .what-is-highlight {
            color: var(--primary);
            font-weight: 700;
            position: relative;
            display: inline-block;
        }

        .what-is-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            margin-top: 0;
        }

        .what-is-feature {
            background: white;
            padding: 40px 32px;
            border-radius: 24px;
            text-align: center;
            box-shadow: var(--shadow);
            border: 2px solid var(--border);
            transition: all 0.4s;
            animation: fadeInUp 1s ease-out;
            animation-fill-mode: both;
        }

        .what-is-feature:nth-child(1) { animation-delay: 0.2s; }
        .what-is-feature:nth-child(2) { animation-delay: 0.4s; }
        .what-is-feature:nth-child(3) { animation-delay: 0.6s; }

        .what-is-feature:hover {
            transform: translateY(-12px) scale(1.05);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .what-is-feature-icon {
            font-size: 48px;
            margin-bottom: 24px;
            display: inline-block;
            animation: bounce 2s ease-in-out infinite;
        }

        .what-is-feature-title {
            font-size: 20px;
            font-weight: 800;
            margin-bottom: 12px;
            color: var(--text);
            letter-spacing: -0.5px;
        }

        .what-is-feature-desc {
            font-size: 15px;
            color: var(--text-medium);
            line-height: 1.7;
        }

        /* Video Section */
        .what-is-video-section {
            margin-top: 80px;
            padding-top: 80px;
            border-top: 2px solid var(--border);
        }

        .video-header {
            text-align: center;
            margin-bottom: 48px;
        }

        .video-title {
            font-size: 36px;
            font-weight: 900;
            color: var(--text);
            margin-bottom: 16px;
            letter-spacing: -1px;
        }

        .video-subtitle {
            font-size: 18px;
            color: var(--text-medium);
            max-width: 600px;
            margin: 0 auto;
        }

        .video-container {
            max-width: 900px;
            margin: 0 auto;
        }

        .video-wrapper {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
            border-radius: 24px;
            background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-light) 100%);
            box-shadow: 
                0 24px 64px rgba(0, 0, 0, 0.15),
                inset 0 1px 0 rgba(255, 255, 255, 1);
            border: 2px solid var(--border);
        }

        .video-player {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border-radius: 24px;
        }

        .video-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, rgba(16, 185, 129, 0.1) 100%);
            cursor: pointer;
            transition: all 0.3s;
        }

        .video-placeholder:hover {
            background: linear-gradient(135deg, rgba(5, 150, 105, 0.1) 0%, rgba(16, 185, 129, 0.15) 100%);
        }

        .video-placeholder:hover .play-button {
            transform: scale(1.1);
        }

        .play-button {
            width: 96px;
            height: 96px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 
                0 12px 32px rgba(5, 150, 105, 0.4),
                0 0 0 12px rgba(5, 150, 105, 0.1);
            transition: all 0.3s;
            animation: pulse 2s ease-in-out infinite;
            position: relative;
            z-index: 2;
        }

        .play-button svg {
            width: 40px;
            height: 40px;
            color: white;
            margin-left: 4px;
        }

        .placeholder-overlay {
            position: absolute;
            bottom: 24px;
            left: 24px;
            right: 24px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 20px 24px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            gap: 16px;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
        }

        .placeholder-icon {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            flex-shrink: 0;
        }

        .placeholder-text {
            flex: 1;
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
        }

        .placeholder-duration {
            padding: 6px 14px;
            background: var(--bg-soft);
            border-radius: 8px;
            font-size: 14px;
            font-weight: 700;
            color: var(--text-medium);
        }

        .video-info {
            margin-top: 32px;
        }

        .video-features {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .video-feature-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 20px;
            background: white;
            border: 2px solid var(--border);
            border-radius: 16px;
            transition: all 0.3s;
        }

        .video-feature-item:hover {
            border-color: var(--primary);
            transform: translateY(-4px);
            box-shadow: var(--shadow);
        }

        .feature-icon {
            width: 32px;
            height: 32px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: 800;
            font-size: 18px;
            flex-shrink: 0;
        }

        .video-feature-item span:last-child {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-medium);
        }

        /* How It Works */
        .how-it-works-intro {
            max-width: 900px;
            margin: 0 auto 64px;
            background: white;
            padding: 48px 56px;
            border-radius: 24px;
            border: 2px solid var(--border);
            box-shadow: var(--shadow);
            text-align: center;
        }

        .intro-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 48px;
            margin: 0 auto 24px;
            box-shadow: 0 8px 24px rgba(5, 150, 105, 0.25);
        }

        .intro-title {
            font-size: 28px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 24px;
            letter-spacing: -0.5px;
        }

        .intro-text {
            font-size: 17px;
            line-height: 1.8;
            color: var(--text-medium);
            margin-bottom: 20px;
            text-align: left;
        }

        .intro-text:last-child {
            margin-bottom: 0;
        }

        .intro-text strong {
            color: var(--primary);
            font-weight: 700;
        }

        /* Modal Styles */
        .modal-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.6);
            backdrop-filter: blur(4px);
            z-index: 9998;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .modal-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .modal {
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.9);
            z-index: 9999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            max-height: 100%;
            overflow-y: auto;
            -ms-overflow-style: none;  /* IE ve Edge için */
    scrollbar-width: 10px;  /* Firefox için */
    overflow-y: scroll; /* Kaydırma özelliği açık kalsın */
        }

        .modal.active {
            opacity: 1;
            visibility: visible;
            transform: translate(-50%, -50%) scale(1);
        }

        .modal-content {
            background: white;
            border-radius: 24px;
            width: 480px;
            max-width: 90vw;
            box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .modal-large {
            width: 680px;
        }

        .modal-close {
            position: absolute;
            top: 20px;
            right: 20px;
            width: 40px;
            height: 40px;
            border: none;
            background: var(--bg-soft);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
            z-index: 10;
        }

        .modal-close:hover {
            background: var(--border);
            transform: rotate(90deg);
        }

        .modal-close svg {
            width: 20px;
            height: 20px;
            stroke: var(--text-medium);
            stroke-width: 2.5;
        }

        .modal-header {
            text-align: center;
            padding: 48px 48px 32px;
            border-bottom: 1px solid var(--border);
        }

        .modal-icon {
            width: 72px;
            height: 72px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            box-shadow: 0 8px 24px rgba(5, 150, 105, 0.25);
        }

        .modal-icon svg {
            width: 36px;
            height: 36px;
            stroke: white;
            stroke-width: 2;
        }

        .modal-title {
            font-size: 28px;
            font-weight: 900;
            color: var(--text);
            margin-bottom: 8px;
            letter-spacing: -0.5px;
        }

        .modal-subtitle {
            font-size: 15px;
            color: var(--text-soft);
            line-height: 1.6;
        }

        .modal-form {
            padding: 32px 48px 48px;
        }

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

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

        .input-wrapper {
            position: relative;
            display: flex;
            align-items: center;
        }

        .input-wrapper svg {
            position: absolute;
            left: 16px;
            width: 20px;
            height: 20px;
            stroke: var(--text-soft);
            stroke-width: 2;
        }

        .input-wrapper input {
            width: 100%;
            padding: 14px 16px 14px 48px;
            border: 2px solid var(--border);
            border-radius: 12px;
            font-size: 15px;
            font-family: inherit;
            color: var(--text);
            transition: all 0.3s;
        }

        .input-wrapper input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.1);
        }

        .input-wrapper input::placeholder {
            color: var(--text-soft);
        }

        .input-wrapper input[type="date"] {
            color: var(--text);
            cursor: pointer;
        }

        .input-wrapper input[type="date"]::-webkit-calendar-picker-indicator {
            cursor: pointer;
            opacity: 0.6;
            transition: opacity 0.3s;
        }

        .input-wrapper input[type="date"]::-webkit-calendar-picker-indicator:hover {
            opacity: 1;
        }

        .form-hint {
            display: block;
            font-size: 12px;
            color: var(--text-soft);
            margin-top: 6px;
        }

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

        .form-footer {
            text-align: right;
            margin-bottom: 20px;
        }

        .link-forgot {
            font-size: 14px;
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            transition: color 0.3s;
        }

        .link-forgot:hover {
            color: var(--primary-dark);
        }

        .form-divider {
            position: relative;
            text-align: center;
            margin: 24px 0;
        }

        .form-divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--border);
        }

        .form-divider span {
            position: relative;
            background: white;
            padding: 0 16px;
            font-size: 13px;
            color: var(--text-soft);
            font-weight: 600;
        }

        .form-checkbox {
            display: flex;
            align-items: start;
            gap: 12px;
            margin-bottom: 16px;
        }

        .form-checkbox input[type="checkbox"] {
            margin-top: 4px;
            width: 18px;
            height: 18px;
            flex-shrink: 0;
            cursor: pointer;
        }

        .form-checkbox label {
            font-size: 14px;
            color: var(--text-medium);
            line-height: 1.6;
            margin: 15 0 0 0;
            cursor: pointer;
        }

        .form-checkbox label a {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
        }

        .form-checkbox label a:hover {
            text-decoration: underline;
        }

        .form-info {
            display: flex;
            gap: 12px;
            padding: 16px;
            background: var(--bg-light);
            border-radius: 12px;
            margin-bottom: 20px;
        }

        .form-info svg {
            width: 20px;
            height: 20px;
            stroke: var(--primary);
            stroke-width: 2;
            flex-shrink: 0;
            margin-top: 2px;
        }

        .form-info p {
            font-size: 13px;
            color: var(--text-medium);
            line-height: 1.6;
            margin: 0;
        }

        .form-info p + p {
            margin-top: 8px;
        }

        .form-info strong {
            color: var(--text);
            display: block;
            margin-bottom: 4px;
        }

        .btn-full {
            width: 100%;
            justify-content: center;
            padding: 14px 28px;
        }

        .btn-large {
            padding: 18px 32px;
            font-size: 17px;
        }

        /* Başlangıçta gizli olsun */
#AlertBox {
    display: none; /* JS ile görünür yapacağız */
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 20px;
    margin-top: 10px;
    align-items: center;
    gap: 10px;
    
}

#AlertBox svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Hata Durumu (Kırmızı) */
#AlertBox.error {
    background-color: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
    font-size: 18px;
}

/* Başarı Durumu (Yeşil) */
#AlertBox.success {
    background-color: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
    font-size: 18px;
}

        /* Package Selection */
        .package-selection {
            margin-bottom: 32px;
        }

        .selection-title {
            font-size: 18px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 16px;
        }

        .package-options {
            display: grid;
            gap: 12px;
        }

        .package-option {
            display: block;
            cursor: pointer;
        }

        .package-option input[type="radio"] {
            display: none;
        }

        .package-card {
            padding: 20px 24px;
            border: 2px solid var(--border);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s;
            position: relative;
        }

        .package-option input[type="radio"]:checked + .package-card {
            border-color: var(--primary);
            background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
        }

        .package-card:hover {
            border-color: var(--primary);
            transform: translateX(4px);
        }

        .package-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
        }

        .package-price {
            font-size: 24px;
            font-weight: 900;
            color: var(--primary);
        }

        .package-desc {
            font-size: 13px;
            color: var(--text-soft);
            margin-top: 4px;
        }

        .package-card.popular {
            border-color: var(--gold);
        }

        .package-option input[type="radio"]:checked + .package-card.popular {
            background: linear-gradient(135deg, rgba(217, 119, 6, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
            box-shadow: 0 4px 12px rgba(217, 119, 6, 0.15);
        }

        .package-card.best-value {
            border-color: var(--primary-light);
        }

        .badge-popular,
        .badge-value {
            position: absolute;
            top: -12px;
            right: 20px;
            padding: 4px 12px;
            background: var(--gold);
            color: white;
            font-size: 11px;
            font-weight: 800;
            border-radius: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .badge-value {
            background: var(--primary);
        }

        .payment-summary {
            background: var(--bg-light);
            padding: 24px;
            border-radius: 16px;
            margin-bottom: 24px;
        }

        .summary-title {
            font-size: 16px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 16px;
        }

        .summary-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }

        .summary-row:last-child {
            border-bottom: none;
        }

        .summary-row span {
            font-size: 14px;
            color: var(--text-medium);
        }

        .summary-row strong {
            font-size: 15px;
            color: var(--text);
            font-weight: 700;
        }

        .summary-row.total {
            padding-top: 16px;
            margin-top: 8px;
            border-top: 2px solid var(--border);
        }

        .summary-row.total span {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
        }

        .summary-row.total strong {
            font-size: 24px;
            color: var(--primary);
            font-weight: 900;
        }

        .payment-info {
            display: flex;
            gap: 16px;
            padding: 20px;
            background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
            border-radius: 12px;
            margin-bottom: 24px;
        }

        .payment-info svg {
            width: 24px;
            height: 24px;
            stroke: var(--primary);
            stroke-width: 2;
            flex-shrink: 0;
        }

        .payment-info p {
            font-size: 13px;
            color: var(--text-medium);
            line-height: 1.6;
            margin: 0;
        }

        .payment-info strong {
            color: var(--text);
            font-weight: 700;
        }

        .payment-note {
            text-align: center;
            font-size: 12px;
            color: var(--text-soft);
            margin-top: 16px;
        }

        /* Register Package Selection */
        .register-package-selection {
            margin: 32px 0;
            padding: 24px;
            background: var(--bg-light);
            border-radius: 16px;
            border: 2px solid var(--border);
        }

        .package-selection-title {
            font-size: 18px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 8px;
        }

        .package-selection-subtitle {
            font-size: 14px;
            color: var(--text-soft);
            margin-bottom: 20px;
        }

        .register-package-options {
            display: grid;
            gap: 12px;
        }

        .register-package-option {
            display: block;
            cursor: pointer;
        }

        .register-package-option input[type="radio"] {
            display: none;
        }

        .register-package-card {
            padding: 16px 20px;
            background: white;
            border: 2px solid var(--border);
            border-radius: 12px;
            transition: all 0.3s;
            position: relative;
        }

        .register-package-option input[type="radio"]:checked + .register-package-card {
            border-color: var(--primary);
            background: linear-gradient(135deg, rgba(5, 150, 105, 0.05) 0%, rgba(16, 185, 129, 0.05) 100%);
            box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
        }

        .register-package-card:hover {
            border-color: var(--primary);
            transform: translateX(4px);
        }

        .register-package-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .register-package-name {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
        }

        .register-package-price {
            font-size: 20px;
            font-weight: 900;
            color: var(--primary);
        }

        .register-package-duration {
            font-size: 13px;
            color: var(--text-soft);
        }

        .register-package-save {
            display: inline-block;
            margin-top: 8px;
            padding: 4px 10px;
            background: linear-gradient(135deg, var(--gold) 0%, #f59e0b 100%);
            color: white;
            font-size: 11px;
            font-weight: 800;
            border-radius: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .register-popular {
            border-color: var(--gold) !important;
        }

        .register-package-option input[type="radio"]:checked + .register-popular {
            background: linear-gradient(135deg, rgba(217, 119, 6, 0.05) 0%, rgba(251, 191, 36, 0.05) 100%);
            box-shadow: 0 4px 12px rgba(217, 119, 6, 0.15);
        }

        .register-popular-badge {
            position: absolute;
            top: -10px;
            right: 16px;
            padding: 4px 12px;
            background: var(--gold);
            color: white;
            font-size: 10px;
            font-weight: 800;
            border-radius: 6px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .steps {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 36px;
        }

        .step-card {
            background: white;
            padding: 44px 36px;
            border-radius: 28px;
            box-shadow: var(--shadow);
            border: 1px solid var(--border);
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .step-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary) 0%, var(--gold) 100%);
            border-radius: 28px 28px 0 0;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .step-card::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(5, 150, 105, 0.1) 0%, transparent 70%);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .step-card:hover::after {
            width: 500px;
            height: 500px;
        }

        .step-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .step-card:hover::before {
            opacity: 1;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            background-size: 200% 200%;
            color: white;
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            font-weight: 900;
            margin-bottom: 28px;
            box-shadow: 0 8px 20px rgba(5, 150, 105, 0.25);
            position: relative;
            z-index: 1;
            animation: gradientShift 3s ease infinite, pulse 2s ease-in-out infinite;
        }

        .step-title {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 14px;
            color: var(--text);
            position: relative;
            z-index: 1;
        }

        .step-desc {
            font-size: 16px;
            color: var(--text-medium);
            line-height: 1.7;
            margin-bottom: 22px;
            position: relative;
            z-index: 1;
        }

        .command-chips {
            display: flex;
            flex-wrap: wrap;
            gap: 9px;
            position: relative;
            z-index: 1;
        }

        .chip {
            padding: 9px 16px;
            background: var(--bg-soft);
            border: 1px solid var(--border);
            border-radius: 9px;
            font-size: 13px;
            font-weight: 700;
            color: var(--primary);
            font-family: 'Courier New', monospace;
            transition: all 0.3s;
        }

        .chip:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
            transform: translateY(-2px) scale(1.1);
        }

        /* Cards Showcase */
        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 48px;
        }

        .card-showcase-wrapper {
            position: relative;
            animation: fadeInUp 1s ease-out;
            animation-fill-mode: both;
        }

        .card-showcase-wrapper:nth-child(1) { animation-delay: 0.1s; }
        .card-showcase-wrapper:nth-child(2) { animation-delay: 0.3s; }
        .card-showcase-wrapper:nth-child(3) { animation-delay: 0.5s; }

        .card-locked {
            filter: blur(5px);
            opacity: 0.4;
            pointer-events: none;
        }

        .unlock-overlay {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            z-index: 10;
            animation: pulse 2s ease-in-out infinite;
        }

        .unlock-btn {
            padding: 20px 40px;
            font-size: 17px;
        }

        /* Pricing */
        .pricing-section {
            background: var(--bg-light);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
            margin-top: 48px;
        }

        .price-card {
            background: white;
            border: 2px solid var(--border);
            border-radius: 28px;
            padding: 44px;
            transition: all 0.4s;
            position: relative;
            box-shadow: var(--shadow-sm);
            animation: fadeInUp 1s ease-out;
            animation-fill-mode: both;
        }

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

        .price-card:hover {
            transform: translateY(-12px) scale(1.03);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .price-card.popular {
            border-color: var(--gold);
            box-shadow: var(--shadow-gold);
            background: linear-gradient(135deg, #fffbf0 0%, white 100%);
            transform: scale(1.05);
        }

        .price-card.popular:hover {
            transform: translateY(-12px) scale(1.08);
        }

        .popular-badge {
            position: absolute;
            top: -18px;
            left: 50%;
            transform: translateX(-50%);
            background: linear-gradient(135deg, var(--gold) 0%, var(--accent-light) 100%);
            background-size: 200% 200%;
            color: white;
            padding: 10px 24px;
            border-radius: 24px;
            font-size: 13px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
            box-shadow: var(--shadow-gold);
            animation: gradientShift 3s ease infinite, pulse 2s ease-in-out infinite;
        }

        .price-header {
            text-align: center;
            margin-bottom: 36px;
            padding-bottom: 32px;
            border-bottom: 2px solid var(--bg-soft);
        }

        .price-name {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 18px;
            color: var(--text);
        }

        .price-amount {
            font-size: 58px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            letter-spacing: -2px;
            animation: gradientShift 5s ease infinite;
        }

        .price-card.popular .price-amount {
            background: linear-gradient(135deg, var(--gold) 0%, var(--accent-light) 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .price-period {
            font-size: 16px;
            color: var(--text-soft);
            font-weight: 600;
        }

        .savings-badge {
            display: inline-block;
            padding: 9px 18px;
            background: var(--primary);
            color: white;
            border-radius: 12px;
            font-size: 13px;
            font-weight: 800;
            margin-top: 14px;
            animation: pulse 2s ease-in-out infinite;
        }

        .price-card.popular .savings-badge {
            background: linear-gradient(135deg, var(--gold) 0%, var(--accent-light) 100%);
            background-size: 200% 200%;
            animation: gradientShift 3s ease infinite;
        }

        .per-day {
            font-size: 15px;
            color: var(--text-soft);
            margin-top: 10px;
            font-weight: 600;
        }

        .price-features {
            list-style: none;
            margin: 32px 0;
        }

        .price-features li {
            padding: 14px 0;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 14px;
            font-weight: 600;
            color: var(--text-medium);
            transition: all 0.3s;
        }

        .price-features li:hover {
            transform: translateX(5px);
            color: var(--primary);
        }

        .price-features li::before {
            content: '✓';
            color: var(--primary);
            font-weight: 900;
            font-size: 20px;
        }

        .price-cta {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .note-text {
            font-size: 14px;
            color: var(--text-soft);
            text-align: center;
            margin-top: 14px;
            font-weight: 600;
            line-height: 1.6;
        }

        /* Trust Section */
        .trust-section {
            background: white;
        }

        .trust-content {
            background: linear-gradient(135deg, var(--bg-ivory) 0%, white 100%);
            border-radius: 36px;
            padding: 80px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--border);
            animation: fadeInUp 1s ease-out;
        }

        .trust-statement {
            font-size: 44px;
            font-weight: 900;
            text-align: center;
            background: linear-gradient(135deg, var(--primary) 0%, var(--gold) 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 28px;
            letter-spacing: -1px;
            animation: gradientShift 5s ease infinite;
        }

        .trust-subtitle {
            text-align: center;
            color: var(--text-medium);
            margin-bottom: 56px;
            font-size: 19px;
            line-height: 1.7;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

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

        .kpi-box {
            background: white;
            padding: 40px;
            border-radius: 24px;
            text-align: center;
            border: 2px solid var(--border);
            transition: all 0.4s;
            box-shadow: var(--shadow-sm);
        }

        .kpi-box:hover {
            transform: translateY(-8px) scale(1.05);
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
        }

        .kpi-value {
            font-size: 52px;
            font-weight: 900;
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 10px;
            letter-spacing: -1px;
            animation: gradientShift 5s ease infinite;
        }

        .kpi-label {
            font-size: 16px;
            color: var(--text-medium);
            font-weight: 600;
        }

        .disclaimer-box {
            background: white;
            border-left: 4px solid var(--gold);
            padding: 36px;
            border-radius: 20px;
            margin-top: 48px;
            border: 1px solid var(--border);
            border-left: 4px solid var(--gold);
        }

        .disclaimer-box p {
            margin-bottom: 18px;
            font-size: 17px;
            line-height: 1.8;
            color: var(--text-medium);
        }

        .disclaimer-box strong {
            color: var(--text);
            font-weight: 800;
        }

        .disclaimer-box .links {
            margin-top: 24px;
            padding-top: 24px;
            border-top: 1px solid var(--border);
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }

        .disclaimer-box .links a {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.2s;
        }

        .disclaimer-box .links a:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        /* FAQ */
        .faq-section {
            background: var(--bg-light);
        }

        .faq-list {
            max-width: 1100px;
            margin: 0 auto;
        }

        .faq-item {
            background: white;
            border: 2px solid var(--border);
            border-radius: 24px;
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 0.3s;
            box-shadow: var(--shadow-sm);
            animation: fadeInUp 1s ease-out;
            animation-fill-mode: both;
        }

        .faq-item:nth-child(1) { animation-delay: 0.1s; }
        .faq-item:nth-child(2) { animation-delay: 0.2s; }
        .faq-item:nth-child(3) { animation-delay: 0.3s; }
        .faq-item:nth-child(4) { animation-delay: 0.4s; }
        .faq-item:nth-child(5) { animation-delay: 0.5s; }
        .faq-item:nth-child(6) { animation-delay: 0.6s; }
        .faq-item:nth-child(7) { animation-delay: 0.7s; }
        .faq-item:nth-child(8) { animation-delay: 0.8s; }

        .faq-item:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow);
            transform: translateX(5px);
        }

        .faq-question {
            padding: 32px 40px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-weight: 700;
            font-size: 19px;
            color: var(--text);
            transition: all 0.3s;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-icon {
            width: 28px;
            height: 28px;
            transition: transform 0.3s;
            flex-shrink: 0;
            stroke: var(--primary);
            stroke-width: 3;
        }

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

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
        }

        .faq-answer-content {
            padding: 0 40px 32px;
            color: var(--text-medium);
            line-height: 1.8;
            font-size: 17px;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, var(--text) 0%, #1f2937 100%);
            color: white;
            padding: 80px 0 48px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 80px;
            margin-bottom: 60px;
        }

        .footer-brand {
            max-width: 480px;
        }

        .footer-logo {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .footer-desc {
            color: rgba(255, 255, 255, 0.7);
            font-size: 17px;
            line-height: 1.8;
        }

        .footer-section h4 {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 24px;
            color: var(--gold);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 14px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            font-size: 16px;
            transition: all 0.2s;
        }

        .footer-links a:hover {
            color: white;
            padding-left: 8px;
        }

        .social-title {
            color: var(--gold);
            font-size: 16px;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin: 32px 0 16px;
        }

        .social-icons {
            display: flex;
            gap: 16px;
        }

        .social-icon {
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
            color: rgba(255, 255, 255, 0.7);
        }

        .social-icon:hover {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            transform: translateY(-4px);
        }

        .social-icon svg {
            width: 24px;
            height: 24px;
        }

        .footer-bottom {
            padding-top: 48px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            text-align: center;
            color: rgba(255, 255, 255, 0.5);
            font-size: 15px;
            line-height: 1.8;
        }

        .quota-banner {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
            background-size: 200% 200%;
            color: white;
            padding: 24px 40px;
            border-radius: 24px;
            text-align: center;
            margin-top: 56px;
            font-weight: 800;
            font-size: 20px;
            box-shadow: 0 12px 32px rgba(5, 150, 105, 0.3);
            animation: gradientShift 3s ease infinite, pulse 2s ease-in-out infinite;
        }

        /* Mobile */
        @media (max-width: 1380px) {
            nav {
                gap: 2px;
            }
            
            nav a {
                font-size: 13.5px;
                padding: 10px 14px;
            }
            
            nav a svg {
                width: 16px;
                height: 16px;
            }
        }

        @media (max-width: 1280px) {
            .container, .container-wide {
                padding: 0 32px;
            }

            .pricing-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .steps {
                grid-template-columns: repeat(2, 1fr);
            }

            .price-card.popular {
                transform: scale(1);
            }

            .what-is-features {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 968px) {
            nav {
                display: none;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 60px;
            }

            .hero-text h1 {
                font-size: 48px;
            }

            .section-title {
                font-size: 40px;
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .social-icons {
                justify-content: start;
            }

            .social-icon {
                width: 44px;
                height: 44px;
            }

            .social-icon svg {
                width: 22px;
                height: 22px;
            }

            .social-title {
                font-size: 14px;
                margin: 24px 0 12px;
            }

            .trust-content {
                padding: 48px 32px;
            }

            .container, .container-wide {
                padding: 0 24px;
            }

            .pricing-grid {
                grid-template-columns: 1fr;
            }

            .steps {
                grid-template-columns: 1fr;
            }

            .cards-grid {
                grid-template-columns: 1fr;
            }

            .kpi-grid {
                grid-template-columns: 1fr;
            }

            .disclaimer-box .links {
                flex-direction: column;
                gap: 12px;
            }

            .what-is-main-box {
                padding: 48px 32px;
            }

            .what-is-text {
                font-size: 18px;
            }

            .ai-chat-layout {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .ai-chat-stats {
                flex-direction: column;
                gap: 16px;
            }

            .ai-stat {
                width: 100%;
            }

            .ai-messages-area {
                max-height: 300px;
                padding: 24px;
            }

            .ai-input-area {
                padding: 20px 24px;
            }

            .ai-quick-actions {
                gap: 6px;
            }

            .ai-quick-chip {
                font-size: 12px;
                padding: 6px 12px;
            }

            .ai-message {
                gap: 12px;
            }

            .ai-avatar {
                width: 40px;
                height: 40px;
                font-size: 22px;
            }

            .ai-message-bubble {
                padding: 16px 20px;
                font-size: 15px;
            }

            .ai-chat-header-bar {
                padding: 20px 24px;
            }

            .ai-header-avatar {
                width: 48px;
                height: 48px;
                font-size: 26px;
            }

            .ai-header-text h3 {
                font-size: 17px;
            }

            .ai-header-text p {
                font-size: 12px;
            }

            .ai-input-wrapper {
                flex-wrap: wrap;
            }

            .ai-send-btn {
                width: 100%;
                justify-content: center;
                padding: 14px 24px;
            }

            .ai-sidebar-card {
                padding: 28px 24px;
            }
        }

        @media (max-width: 640px) {
            .hero {
                padding: 80px 0 100px;
            }

            section {
                padding: 80px 0;
            }

            .hero-text h1 {
                font-size: 38px;
            }

            .section-title {
                font-size: 34px;
            }

            .what-is-main-box {
                padding: 36px 24px;
            }

            .what-is-text {
                font-size: 17px;
            }

            .ai-chat-section {
                padding: 80px 0;
            }

            .ai-message {
                flex-direction: column;
                align-items: flex-start;
            }

            .ai-chat-title {
                font-size: 36px;
            }

            .ai-chat-subtitle {
                font-size: 16px;
            }

            .ai-chat-tag {
                font-size: 11px;
                padding: 8px 18px;
            }

            .ai-message-bubble {
                font-size: 14px;
                padding: 14px 18px;
            }

            .ai-preview-title {
                font-size: 11px;
            }

            .ai-preview-match {
                font-size: 13px;
            }

            .ai-preview-value {
                font-size: 16px;
            }

            .ai-sidebar-card {
                padding: 24px 20px;
            }

            .ai-sidebar-title {
                font-size: 17px;
            }

            .ai-sidebar-desc {
                font-size: 13px;
            }

            .ai-stat-value {
                font-size: 18px;
            }

            .ai-stat-label {
                font-size: 12px;
            }

            .video-title {
                font-size: 28px;
            }

            .video-subtitle {
                font-size: 16px;
            }

            .video-features {
                grid-template-columns: 1fr;
            }

            .placeholder-overlay {
                left: 16px;
                right: 16px;
                bottom: 16px;
                padding: 16px;
                flex-direction: column;
                text-align: center;
                gap: 12px;
            }

            .placeholder-text {
                font-size: 16px;
            }

            .play-button {
                width: 72px;
                height: 72px;
            }

            .play-button svg {
                width: 32px;
                height: 32px;
            }
            .what-is-video-section {
                margin-top: 60px;
                padding-top: 60px;
            }

            .video-feature-item {
                padding: 16px;
            }

            .video-feature-item span:last-child {
                font-size: 14px;
            }

            .how-it-works-intro {
                padding: 32px 28px;
                margin-bottom: 48px;
            }

            .intro-icon {
                width: 64px;
                height: 64px;
                font-size: 36px;
            }

            .intro-title {
                font-size: 22px;
            }

            .intro-text {
                font-size: 15px;
            }

            /* Modal Mobile Styles */
            .modal-content {
                width: 95vw;
                max-height: 85vh;
            }

            .modal-large {
                width: 95vw;
            }

            .modal-header {
                padding: 32px 24px 24px;
            }

            .modal-icon {
                width: 56px;
                height: 56px;
            }

            .modal-icon svg {
                width: 28px;
                height: 28px;
            }

            .modal-title {
                font-size: 22px;
            }

            .modal-subtitle {
                font-size: 14px;
            }

            .modal-form {
                padding: 24px;
            }

            .form-row {
                grid-template-columns: 1fr;
            }

            .package-card {
                flex-direction: column;
                align-items: start;
                gap: 8px;
            }

            .package-price {
                font-size: 20px;
            }

            .payment-summary {
                padding: 20px;
            }

            .btn-large {
                padding: 16px 24px;
                font-size: 15px;
            }

            .register-package-selection {
                padding: 16px;
                margin: 24px 0;
            }

            .package-selection-title {
                font-size: 16px;
            }

            .package-selection-subtitle {
                font-size: 13px;
            }

            .register-package-card {
                padding: 14px 16px;
            }

            .register-package-name {
                font-size: 15px;
            }

            .register-package-price {
                font-size: 18px;
            }

            .register-package-duration {
                font-size: 12px;
            }

            .register-popular-badge {
                font-size: 9px;
                padding: 3px 10px;
            }
        }
    
        /* === EMERGENCY FIXES === */
        
        /* Ensure Navigation Visible on Desktop */
        @media (min-width: 769px) {
            nav {
                display: flex !important;
            }
            
            .header-cta {
                display: flex !important;
            }
        }
        
        /* Modal Button Size Fix */
        @media (max-width: 768px) {
            .btn-full {
                padding: 12px 24px !important;
                font-size: 15px !important;
            }
            
            .btn-large {
                padding: 14px 28px !important;
                font-size: 16px !important;
            }
        }
        
        /* Hide Sidebar */
        .ai-sidebar-card {
            display: none !important;
        }
        
        .ai-chat-sidebar {
            display: none !important;
        }

    
        /* === MOBILE MENU RESPONSIVE === */
        
        /* Hamburger Button */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 5px;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
        }
        
        .mobile-menu-toggle span {
            width: 28px;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
            transition: all 0.3s;
        }
        
        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }
        
        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -7px);
        }
        
        /* Mobile Overlay */
        .mobile-menu-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 999;
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .mobile-menu-overlay.active {
            display: block;
            opacity: 1;
        }
        
        /* Mobile Responsive */
        @media (max-width: 768px) {
            
            .mobile-menu-toggle {
                display: flex !important;
            }
            
            header {
                padding: 12px 0 !important;
            }
            
            .header-content {
                gap: 15px !important;
            }
            
            .logo img {
                height: 50px !important;
            }
            
            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 280px;
                height: 100vh;
                background: white;
                flex-direction: column !important;
                justify-content: flex-start !important;
                padding: 80px 20px 30px !important;
                gap: 0 !important;
                box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
                transition: right 0.3s ease;
                overflow-y: auto;
                z-index: 1000;
            }
            
            nav.active {
                right: 0 !important;
            }
            
            nav a {
                width: 100% !important;
                padding: 16px 20px !important;
                font-size: 16px !important;
                border-radius: 8px !important;
                margin-bottom: 8px !important;
                justify-content: flex-start !important;
            }
            
            .header-cta {
                gap: 8px !important;
            }
            
            .header-cta .btn {
                padding: 10px 16px !important;
                font-size: 13px !important;
            }
        }
        
        @media (max-width: 480px) {
            .logo img {
                height: 40px !important;
            }
        }

    
        /* === STAT ICONS HORIZONTAL LAYOUT === */
        .ai-chat-stats {
            display: flex !important;
            flex-direction: row !important;
            justify-content: center !important;
            align-items: center !important;
            gap: 20px !important;
            flex-wrap: wrap !important;
            width: 100% !important;
            margin: 0 auto !important;
            padding: 20px 0 !important;
        }
        
        .ai-stat {
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            justify-content: center !important;
            text-align: center !important;
            flex: 0 1 auto !important;
            min-width: 100px !important;
            max-width: 150px !important;
        }
        
        .ai-stat-icon {
            font-size: 32px !important;
            margin-bottom: 8px !important;
        }
        
        .ai-stat-text {
            display: flex !important;
            flex-direction: column !important;
            align-items: center !important;
            gap: 4px !important;
        }
        
        .ai-stat-value {
            font-size: 18px !important;
            font-weight: 700 !important;
            color: var(--primary) !important;
        }
        
        .ai-stat-label {
            font-size: 13px !important;
            color: var(--text-soft) !important;
        }
        
        /* === CHAT CENTERING === */
        .ai-chat-section {
            width: 100%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .ai-chat-layout {
            display: flex !important;
            justify-content: center !important;
            align-items: flex-start !important;
            width: 100% !important;
        }
        
        .ai-chat-main {
            width: 100% !important;
            max-width: 900px !important;
            margin: 0 auto !important;
        }
        
        /* Mobile Stat Icons */
        @media (max-width: 768px) {
            .ai-chat-stats {
                gap: 15px !important;
                padding: 15px 10px !important;
            }
            
            .ai-stat {
                min-width: 80px !important;
                max-width: 120px !important;
            }
            
            .ai-stat-icon {
                font-size: 28px !important;
            }
            
            .ai-stat-value {
                font-size: 16px !important;
            }
            
            .ai-stat-label {
                font-size: 12px !important;
            }
            
            .ai-chat-main {
                max-width: 100% !important;
            }
        }
        
        @media (max-width: 480px) {
            .ai-chat-stats {
                gap: 10px !important;
            }
            
            .ai-stat {
                min-width: 70px !important;
                max-width: 100px !important;
            }
            
            .ai-stat-icon {
                font-size: 24px !important;
            }
            
            .ai-stat-value {
                font-size: 14px !important;
            }
        }
/* Ücretsiz paket kartı */
.register-package-card.register-free {
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #10b981;
    position: relative;
}

.register-package-card.register-free:hover {
    background: linear-gradient(135deg, #dcfce7 0%, #d1fae5 100%);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(16, 185, 129, 0.15);
}

/* Ücretsiz badge */
.register-free-badge {
    position: absolute;
    top: -12px;
    right: 12px;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    animation: pulse-free 2s ease-in-out infinite;
}

@keyframes pulse-free {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
    }
}

/* Ücretsiz paket özellikleri */
.register-package-features {
    display: block;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(16, 185, 129, 0.2);
    font-size: 12px;
    color: #059669;
    font-weight: 600;
}

/* Ücretsiz paket seçili durumu */
.register-package-option input[type="radio"]:checked ~ .register-package-card.register-free {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: #047857;
    color: white;
}

.register-package-option input[type="radio"]:checked ~ .register-package-card.register-free .register-package-name,
.register-package-option input[type="radio"]:checked ~ .register-package-card.register-free .register-package-price,
.register-package-option input[type="radio"]:checked ~ .register-package-card.register-free .register-package-duration,
.register-package-option input[type="radio"]:checked ~ .register-package-card.register-free .register-package-features {
    color: white;
}

/* Ücretsiz paket 0₺ fiyatı */
.register-package-card.register-free .register-package-price {
    color: #10b981;
    font-size: 32px;
    font-weight: 800;
}

.register-package-option input[type="radio"]:checked ~ .register-package-card.register-free .register-package-price {
    color: white;
}


