/* ============================================================
   EÄŸitim Seti â€” Main Stylesheet
   ============================================================ */

/* Reset & Base */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

:root {
    --bg: #0f172a;
    --bg-card: #1e293b;
    --bg-input: #0f172a;
    --surface: #334155;
    --border: #334155;
    --text: #e2e8f0;
    --text-muted: #94a3b8;
    --primary: #6366f1;
    --primary-hover: #4f46e5;
    --success: #22c55e;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #3b82f6;
    --radius: 0.75rem;
    --radius-sm: 0.5rem;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --transition: all 0.2s ease;
    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

img {
    max-width: 100%;
    display: block;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header */
.header {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 0.75rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
}

.logo-icon {
    font-size: 1.5rem;
}

.nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.user-name {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Avatar */
.avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    object-fit: cover;
}

.avatar-sm {
    width: 28px;
    height: 28px;
}

.avatar-xs {
    width: 24px;
    height: 24px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1.4;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
}

.btn-primary:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: translateY(-1px);
}

.btn-success {
    background: var(--success);
    color: #fff;
}

.btn-success:hover {
    background: #16a34a;
    color: #fff;
}

.btn-danger {
    background: var(--danger);
    color: #fff;
}

.btn-danger:hover {
    background: #dc2626;
    color: #fff;
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-ghost {
    background: transparent;
    color: var(--text-muted);
    border: none;
}

.btn-ghost:hover {
    color: var(--text);
}

.btn-sm {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 0.875rem 2rem;
    font-size: 1rem;
}

.btn-reset {
    all: unset;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

/* Google Button */
.btn-google {
    background: #fff;
    color: #333;
    font-weight: 600;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-google:hover {
    background: #f8f9fa;
    color: #333;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-1px);
}

/* Alerts */
.alert {
    padding: 1rem 1.25rem;
    border-radius: var(--radius-sm);
    margin: 1rem 0;
    font-size: 0.9rem;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(34, 197, 94, 0.1);
    border-color: var(--success);
    color: var(--success);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border-color: var(--danger);
    color: var(--danger);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.badge-success {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
}

.badge-danger {
    background: rgba(239, 68, 68, 0.15);
    color: var(--danger);
}

.badge-warning {
    background: rgba(245, 158, 11, 0.15);
    color: var(--warning);
}

.badge-info {
    background: rgba(59, 130, 246, 0.15);
    color: var(--info);
}

.badge-muted {
    background: var(--surface);
    color: var(--text-muted);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 6rem 0 8rem;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.feature-icon {
    font-size: 1.25rem;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(99, 102, 241, 0.15), transparent 70%),
        radial-gradient(ellipse at 80% 50%, rgba(139, 92, 246, 0.1), transparent 60%);
    z-index: 1;
}

/* Section */
.section {
    padding: 3rem 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

/* Curriculum */
.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.curriculum-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
}

.curriculum-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
}

.curriculum-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), #8b5cf6);
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.75rem;
}

.curriculum-card h3 {
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.curriculum-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Training Grid */
.training-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.training-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    text-decoration: none;
    color: var(--text);
}

.training-card:hover {
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
    color: var(--text);
}

.training-cover {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: var(--surface);
}

.training-cover-default {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
}

.training-card-body {
    padding: 1.25rem;
}

.training-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.training-card-body p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Training Header */
.training-header {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.training-hero-img {
    max-width: 300px;
    border-radius: var(--radius);
}

.training-desc {
    color: var(--text-muted);
    margin-top: 0.75rem;
}

/* Sections & Lessons List */
.section-block {
    margin-bottom: 1.5rem;
}

.section-block-title {
    font-size: 1.1rem;
    font-weight: 600;
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}

.lesson-list {
    list-style: none;
}

.lesson-item {
    border: 1px solid var(--border);
    border-top: none;
}

.lesson-item:last-child {
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.lesson-item a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: var(--text);
    transition: var(--transition);
}

.lesson-item a:hover {
    background: var(--surface);
}

.lesson-item.completed a {
    opacity: 0.7;
}

.lesson-icon {
    font-size: 1.1rem;
}

.lesson-title {
    flex: 1;
}

.lesson-type-badge {
    font-size: 0.7rem;
    padding: 0.15rem 0.5rem;
    background: var(--surface);
    border-radius: 9999px;
    color: var(--text-muted);
    text-transform: uppercase;
}

/* Lesson Page */
.lesson-section {
    padding-top: 1rem;
}

.lesson-title-main {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb-sep {
    opacity: 0.5;
}

/* Video Container */
.video-container {
    position: relative;
    background: #000;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 1.5rem;
    user-select: none;
    -webkit-user-select: none;
}

.video-container video {
    width: 100%;
    display: block;
    max-height: 600px;
}

.video-meta {
    padding: 0.75rem 1rem;
    background: var(--bg-card);
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Lesson Content */
.lesson-content {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* lesson complete */
.lesson-complete-action {
    margin-bottom: 1.5rem;
}

/* Notes */
.lesson-notes {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: var(--radius);
    padding: 2rem;
    margin-bottom: 2rem;
}

.notes-title {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.notes-body {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Lesson Navigation */
.lesson-nav {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

/* No Access */
.no-access-box {
    text-align: center;
    padding: 4rem 2rem;
}

.no-access-icon {
    font-size: 4rem;
    display: block;
    margin-bottom: 1rem;
}

.no-access-box h1 {
    margin-bottom: 0.75rem;
}

.no-access-box p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.no-access-box .btn {
    margin-top: 1.5rem;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 3rem 2rem;
}

.empty-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.empty-state h3 {
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-muted);
}

/* Footer */
.footer {
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 4rem;
}

/* Forms */
.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.375rem;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    padding: 0.625rem 0.875rem;
    background: var(--bg-input);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-family: var(--font);
    font-size: 0.9rem;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

textarea.form-control {
    resize: vertical;
}

select.form-control {
    cursor: pointer;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
}

.form-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.form-row {
    display: flex;
    gap: 0.75rem;
    align-items: flex-end;
}

.text-center {
    text-align: center;
}

.text-muted {
    color: var(--text-muted);
}

/* Table */
.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--text-muted);
    border-bottom: 1px solid var(--border);
}

.table td {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(51, 65, 85, 0.5);
}

.table tbody tr:hover {
    background: rgba(99, 102, 241, 0.03);
}

.user-cell {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.actions-cell {
    display: flex;
    gap: 0.375rem;
}

/* Card */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    margin-bottom: 1.25rem;
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.card-header-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1rem;
}

/* Progress Bar */
.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--surface);
    border-radius: 3px;
    overflow: hidden;
    margin: 0.5rem 0;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    border-radius: 3px;
    width: 0%;
    transition: width 0.3s ease;
}

/* Video upload */
.video-upload-area {
    padding: 1rem 0;
}

.current-video-info {
    margin-bottom: 0.75rem;
}


/* ============================================================
   Landing Page - Light Theme
   ============================================================ */

/* -- Hero -- */
.lp-hero {
    position: relative;
    padding: 5rem 0 4rem;
    overflow: hidden;
    background: #fafbfc;
    width: 100%;
}

.lp-hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    will-change: left, top;
}

.lp-hero-glow--1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.35), rgba(59, 130, 246, 0.15), transparent 70%);
    left: 50%;
    top: 50%;
}

.lp-hero-glow--2 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), rgba(168, 85, 247, 0.1), transparent 70%);
    right: 10%;
    bottom: 10%;
    left: auto;
    top: auto;
    transform: none;
    animation: lp-float 8s ease-in-out infinite;
}

@keyframes lp-float {

    0%,
    100% {
        transform: translate(0, 0);
    }

    25% {
        transform: translate(-30px, 20px);
    }

    50% {
        transform: translate(20px, -30px);
    }

    75% {
        transform: translate(30px, 15px);
    }
}

/* Base hero grid - will be overridden by landing-active styles */
.lp-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.lp-hero-left {
    padding-top: 1.5rem;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: rgba(34, 197, 94, 0.08);
    border: 1px solid rgba(34, 197, 94, 0.25);
    border-radius: 9999px;
    font-size: 0.82rem;
    font-weight: 500;
    color: #16a34a;
    margin-bottom: 1.75rem;
}

.lp-pulse {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    animation: lp-pulse 2s ease-in-out infinite;
}

@keyframes lp-pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.lp-hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.lp-gradient-text {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.lp-hero-desc {
    font-size: 1.05rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 480px;
}

.lp-hero-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* -- Buttons -- */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-family: var(--font);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    border: 2px solid transparent;
}

.lp-btn--dark {
    background: #111827;
    color: #fff;
    border-color: #111827;
}

.lp-btn--dark:hover {
    background: #1f2937;
    border-color: #1f2937;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(17, 24, 39, 0.2);
}

.lp-btn--outline {
    background: #fff;
    color: #111827;
    border-color: #d1d5db;
}

.lp-btn--outline:hover {
    border-color: #111827;
    color: #111827;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.lp-btn--full {
    width: 100%;
    justify-content: center;
}

.lp-btn--white {
    background: #fff;
    color: #111827;
    border-color: #fff;
}

.lp-btn--white:hover {
    background: #f1f5f9;
    color: #111827;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.15);
}

/* -- Lead Form Card -- */
.lp-lead-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.lp-lead-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.25rem;
    line-height: 1.4;
}

.lp-lead-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp-lead-field {
    display: flex;
    flex-direction: column;
}

.lp-lead-field label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.lp-lead-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 0.92rem;
    font-family: var(--font);
    border: 1.5px solid #d1d5db;
    border-radius: 0.5rem;
    background: #f9fafb;
    color: #111827;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    box-sizing: border-box;
}

.lp-lead-input:focus {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.12);
    background: #fff;
}

.lp-lead-input::placeholder {
    color: #9ca3af;
}

.lp-lead-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M2 4l4 4 4-4'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    padding-right: 2rem;
    cursor: pointer;
}

.lp-lead-btn {
    width: 100%;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    font-family: var(--font);
    color: #fff;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.25s ease;
    margin-top: 0.25rem;
}

.lp-lead-btn:hover {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.35);
}

.lp-lead-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.lp-lead-btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.lp-spinner {
    animation: lp-spin 0.8s linear infinite;
}

@keyframes lp-spin {
    to {
        transform: rotate(360deg);
    }
}

.lp-lead-kvkk {
    font-size: 0.7rem;
    color: #9ca3af;
    line-height: 1.5;
    margin-top: 0.25rem;
}


/* -- Stats Strip -- */
.lp-stats {
    padding: 3rem 0;
    background: #fff;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
}

.lp-stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.lp-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.lp-stat-row {
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
}

.lp-stat strong,
.lp-stat-num {
    font-size: 2.5rem;
    font-weight: 800;
    color: #111827;
    line-height: 1;
    display: inline;
    font-variant-numeric: tabular-nums;
}

.lp-stat-sfx {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6366f1;
    display: inline;
}

.lp-stat-lbl {
    display: block;
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
    margin-top: 0.25rem;
}

.lp-stat-divider {
    width: 1px;
    height: 48px;
    background: #e5e7eb;
}

/* -- Section Headers -- */
.lp-section-head {
    text-align: center;
    margin-bottom: 3rem;
}

.lp-tag {
    display: inline-block;
    padding: 0.35rem 1rem;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 9999px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #6366f1;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
}

.lp-section-head h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.lp-section-head p {
    font-size: 1.05rem;
    color: #6b7280;
    max-width: 500px;
    margin: 0 auto;
}

/* -- Features -- */
.lp-features {
    padding: 3rem 0 5rem;
    background: #fff;
    border-top: 1px solid #f3f4f6;
}

.lp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lp-feature-card {
    background: #fafbfc;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.25s ease;
}

.lp-feature-card:hover {
    border-color: #c7d2fe;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.08);
}

.lp-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 0.75rem;
    background: rgba(99, 102, 241, 0.08);
    color: var(--accent, #6366f1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.lp-feature-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.lp-feature-card p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}

/* -- How It Works -- */
.lp-how {
    padding: 5rem 0;
    background: #fafbfc;
}

.lp-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
}

.lp-step {
    text-align: center;
    position: relative;
    padding: 2rem 1.5rem;
}

.lp-step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.lp-step-connector {
    position: absolute;
    top: 2rem;
    left: calc(50% + 40px);
    width: calc(100% - 32px);
    height: 28px;
    display: flex;
    align-items: center;
}

.lp-step-connector::after {
    content: '';
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #c7d2fe, #e5e7eb);
    display: block;
}

.lp-step h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.lp-step p {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.6;
}

/* -- Testimonials -- */
.lp-testimonials {
    padding: 5rem 0;
    background: #fff;
}

.lp-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lp-tcard {
    background: #fafbfc;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}

.lp-tcard:hover {
    border-color: #c7d2fe;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(99, 102, 241, 0.08);
}

.lp-tcard-stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.lp-tcard p {
    font-size: 0.92rem;
    color: #374151;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.lp-tcard-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid #f3f4f6;
}

.lp-tcard-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--c1), var(--c2));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.lp-tcard-author strong {
    display: block;
    font-size: 0.9rem;
    color: #111827;
}

.lp-tcard-author span {
    font-size: 0.8rem;
    color: #6b7280;
}

/* -- FAQ -- */
.lp-faq {
    padding: 5rem 0;
    background: #fafbfc;
}

.lp-faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.lp-faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

.lp-faq-item:hover,
.lp-faq-item[open] {
    border-color: #c7d2fe;
}

.lp-faq-item summary {
    padding: 1.125rem 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #111827;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-faq-item summary::-webkit-details-marker {
    display: none;
}

.lp-faq-item summary::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: #9ca3af;
    transition: transform 0.3s ease, color 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.lp-faq-item[open] summary::after {
    content: '\2212';
    color: #6366f1;
}

.lp-faq-item p {
    padding: 0 1.25rem 1.25rem;
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

/* -- Payment Proofs Gallery -- */
.lp-proofs {
    padding: 5rem 0;
    background: #fff;
}

.lp-proofs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1rem;
}

.lp-proof-item {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid #e5e7eb;
    aspect-ratio: 4/3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lp-proof-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.12);
}

.lp-proof-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.lp-proof-item:hover img {
    transform: scale(1.08);
}

.lp-proof-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lp-proof-item:hover .lp-proof-overlay {
    opacity: 1;
}

.lp-proof-zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    font-size: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.lp-proof-item:hover .lp-proof-zoom {
    transform: translate(-50%, -50%) scale(1);
}

.lp-proof-caption {
    color: #fff;
    font-size: 0.82rem;
    text-align: center;
}

/* -- Lightbox -- */
.lp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lp-lightbox--active {
    opacity: 1;
    pointer-events: auto;
}

.lp-lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-lightbox--active .lp-lightbox-content {
    transform: scale(1);
}

.lp-lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 0.75rem;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.lp-lightbox-caption {
    color: #d1d5db;
    font-size: 0.9rem;
    margin-top: 1rem;
    text-align: center;
}

.lp-lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.75rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 10;
}

.lp-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lp-lightbox-prev,
.lp-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.25rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
    z-index: 10;
}

.lp-lightbox-prev {
    left: 1.5rem;
}

.lp-lightbox-next {
    right: 1.5rem;
}

.lp-lightbox-prev:hover,
.lp-lightbox-next:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* -- CTA -- */
.lp-cta {
    padding: 3rem 0 5rem;
    background: #fafbfc;
}

.lp-cta-card {
    position: relative;
    background: linear-gradient(135deg, #111827, #1e293b);
    border-radius: 1.5rem;
    padding: 4rem 3rem;
    text-align: center;
    overflow: hidden;
}

.lp-cta-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4), transparent 70%);
    filter: blur(60px);
    top: -100px;
    right: -100px;
    pointer-events: none;
    animation: lp-float 6s ease-in-out infinite;
}

.lp-cta-card h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.lp-cta-card p {
    font-size: 1.05rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.lp-cta-card .lp-btn {
    position: relative;
    z-index: 1;
}

/* -- Scroll Reveal -- */
.lp-reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.lp-reveal.lp-visible {
    opacity: 1;
    transform: translateY(0);
}

/* -- Landing overrides -- */
body.landing-active {
    background: #fafbfc;
}

body.landing-active .header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom-color: #e5e7eb;
}

body.landing-active .logo {
    color: #111827;
}

body.landing-active .btn-google {
    border-color: #d1d5db;
}

body.landing-active .footer {
    background: #fff;
    border-top-color: #e5e7eb;
    color: #6b7280;
}

/* -- Responsive -- */
@media (max-width: 768px) {
    .header-inner {
        gap: 0.5rem;
    }

    .logo {
        font-size: 0.95rem;
    }

    .logo-icon {
        font-size: 1.2rem;
    }

    .nav {
        gap: 0.4rem;
        flex-wrap: nowrap;
    }

    .btn.btn-sm {
        padding: 0.35rem 0.7rem;
        font-size: 0.75rem;
        white-space: nowrap;
    }

    .header .btn-primary.btn-sm {
        padding-inline: 0.9rem;
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero {
        padding: 3rem 0 5rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .training-header {
        flex-direction: column;
    }

    .training-hero-img {
        max-width: 100%;
    }

    .lesson-nav {
        flex-direction: column;
    }

    .filters-row {
        flex-direction: column;
    }

    .form-row {
        flex-direction: column;
    }

    .lp-hero {
        padding: 3rem 0 2.5rem;
    }

    .lp-hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .lp-hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .lp-hero-kicker {
        font-size: 0.8rem;
    }

    .lp-hero-animated {
        white-space: normal;
        word-break: break-word;
        display: block;
    }

    .lp-gradient-text {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .lp-features-grid {
        grid-template-columns: 1fr;
    }

    .lp-hero-actions {
        flex-direction: column;
    }

    .lp-btn {
        justify-content: center;
    }

    .lp-stats-bar {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .lp-stat-divider {
        display: none;
    }

    .lp-steps {
        grid-template-columns: 1fr;
    }

    .lp-step-connector {
        display: none;
    }

    .lp-testimonials-grid {
        grid-template-columns: 1fr;
    }

    .lp-section-head h2 {
        font-size: 1.75rem;
    }

    .lp-proofs-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .lp-lightbox-prev {
        left: 0.5rem;
    }

    .lp-lightbox-next {
        right: 0.5rem;
    }

    .lp-cta-card {
        padding: 3rem 1.5rem;
    }

    .lp-cta-card h2 {
        font-size: 1.5rem;
    }
}

/* Lesson Content Responsive Fixes */
.lesson-content {
    word-wrap: break-word;
    overflow-wrap: break-word;
    overflow-x: auto;
}

.lesson-content img,
.lesson-content video,
.lesson-content figure,
.lesson-content table,
.lesson-content div,
.lesson-content p {
    max-width: 100% !important;
}

.lesson-content img,
.lesson-content video {
    height: auto !important;
    object-fit: contain;
    border-radius: var(--radius, 0.5rem);
}

.lesson-content figure {
    margin: 1rem 0;
}

.lesson-content iframe {
    max-width: 100% !important;
    width: 100% !important;
    /* Force full width for embeds */
    aspect-ratio: 16/9;
    /* maintain aspect ratio */
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: pulse-wa 2s infinite;
}

.whatsapp-float svg {
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.5);
    animation: none;
    color: white;
}

.whatsapp-float:hover svg {
    transform: scale(1.1) rotate(5deg);
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Make it slightly smaller on mobile, reposition to avoid overlapping generic UI */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1.5rem;
        right: 1.5rem;
    }

    .whatsapp-float svg {
        width: 26px;
        height: 26px;
    }
}

/* Landing Lead Modal */
.lp-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.lp-modal--active {
    display: flex;
}

.lp-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(10px);
}

.lp-modal-dialog {
    position: relative;
    max-width: 480px;
    width: 100%;
    margin: 1.5rem;
    z-index: 1001;
}

.lp-modal-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    width: 36px;
    height: 36px;
    border-radius: 9999px;
    border: none;
    background: rgba(15, 23, 42, 0.9);
    color: #e5e7eb;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.8);
}

@media (max-width: 768px) {
    .lp-modal-dialog {
        max-width: 100%;
        margin: 1.25rem;
        max-height: 80vh;
        overflow-y: auto;
    }

    .lp-modal-close {
        top: 0.75rem;
        right: 0.75rem;
        box-shadow: none;
    }
}

/* ============================================================
   Landing Page Modern Override
   (Dynamic PHP veriler korunur, sadece görünüm güncellenir)
   ============================================================ */

body.landing-active {
    /* Daha modern, yumuşak bir degrade arka plan */
    background:
        radial-gradient(circle at top left, rgba(129, 140, 248, 0.18), transparent 55%),
        radial-gradient(circle at bottom right, rgba(56, 189, 248, 0.18), transparent 55%),
        #0f172a;
    color: #e5e7eb;
}

body.landing-active .header {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(16px);
    border-bottom-color: rgba(148, 163, 184, 0.4);
}

body.landing-active .logo {
    color: #e5e7eb;
}

body.landing-active .btn-google {
    border-color: rgba(148, 163, 184, 0.6);
}

body.landing-active .footer {
    background: transparent;
    border-top-color: rgba(148, 163, 184, 0.4);
    color: #9ca3af;
}

/* Hero alanını tam ekran hissiyatına yaklaştır */
.lp-hero {
    background: transparent;
    padding: 5.5rem 0 4.5rem;
    width: 100%;
}

body.landing-active .lp-hero-grid {
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.9), rgba(15, 23, 42, 0.96));
    border-radius: 1.75rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
    padding: 2.5rem 2.25rem;
    width: 100%;
    max-width: 100%;
    box-shadow:
        0 24px 80px rgba(15, 23, 42, 0.9),
        0 0 0 1px rgba(15, 23, 42, 0.9);
    grid-template-columns: 1fr;
    margin: 0;
    box-sizing: border-box;
}

body.landing-active .lp-hero {
    width: 100%;
    max-width: 100%;
}

body.landing-active .lp-hero-left {
    max-width: 100%;
}

body.landing-active .lp-hero-desc {
    max-width: 100%;
}

.lp-hero-title {
    color: #f9fafb;
}

body.landing-active .lp-hero-title {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.lp-hero-kicker {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #a5b4fc;
}

.lp-hero-animated {
    position: relative;
    display: inline-block;
    white-space: normal;
    word-wrap: break-word;
    word-break: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
    padding-right: 0.15em;
    animation: lp-glow 3.5s ease-in-out infinite;
}

@keyframes lp-glow {
    0% {
        text-shadow: 0 0 0 rgba(129, 140, 248, 0.0);
        transform: translateY(0);
    }
    30% {
        text-shadow:
            0 0 18px rgba(129, 140, 248, 0.7),
            0 0 35px rgba(56, 189, 248, 0.6);
        transform: translateY(-1px);
    }
    60% {
        text-shadow:
            0 0 26px rgba(129, 140, 248, 0.9),
            0 0 55px rgba(56, 189, 248, 0.8);
        transform: translateY(-2px);
    }
    100% {
        text-shadow: 0 0 0 rgba(129, 140, 248, 0.0);
        transform: translateY(0);
    }
}

.lp-hero-desc {
    color: #cbd5f5;
}

body.landing-active .lp-lead-card {
    background: rgba(15, 23, 42, 0.96);
    border-color: rgba(148, 163, 184, 0.4);
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.9);
}

body.landing-active .lp-lead-title {
    color: #f9fafb;
}

body.landing-active .lp-lead-subtitle {
    color: #cbd5e1;
}

body.landing-active .lp-lead-field label {
    color: #e5e7eb;
}

body.landing-active .lp-lead-input {
    background: rgba(30, 41, 59, 0.8) !important;
    border-color: rgba(148, 163, 184, 0.5) !important;
    color: #f1f5f9 !important;
    background-image: none !important;
}

body.landing-active .lp-lead-input:focus {
    background: rgba(30, 41, 59, 0.95) !important;
    border-color: #818cf8 !important;
    box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.2) !important;
    color: #f9fafb !important;
    background-image: none !important;
}

body.landing-active .lp-lead-input::placeholder {
    color: #94a3b8 !important;
}

body.landing-active .lp-lead-select {
    background-color: rgba(30, 41, 59, 0.8) !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23cbd5e1' d='M2 4l4 4 4-4'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 0.75rem center !important;
    color: #f1f5f9 !important;
    border-color: rgba(148, 163, 184, 0.5) !important;
}

body.landing-active .lp-lead-select:focus {
    background-color: rgba(30, 41, 59, 0.95) !important;
    border-color: #818cf8 !important;
    color: #f9fafb !important;
    box-shadow: 0 0 0 3px rgba(129, 140, 248, 0.2) !important;
}

body.landing-active .lp-lead-select option {
    background: #1e293b !important;
    color: #f1f5f9 !important;
    padding: 0.5rem;
}

body.landing-active textarea.lp-lead-input {
    background: rgba(30, 41, 59, 0.8) !important;
    color: #f1f5f9 !important;
    background-image: none !important;
}

body.landing-active textarea.lp-lead-input:focus {
    background: rgba(30, 41, 59, 0.95) !important;
    color: #f9fafb !important;
    background-image: none !important;
}

body.landing-active .lp-lead-kvkk {
    color: #9ca3af;
}

/* Hero içi detay satırları ve güven alanı */
.lp-hero-meta {
    margin: 1.5rem 0 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.lp-hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: #e5e7eb;
}

.lp-hero-meta-item span {
    flex-shrink: 0;
}

.lp-hero-actions {
    margin-top: 1.25rem;
    gap: 0.75rem;
}

.lp-btn--hero {
    padding-inline: 1.9rem;
    padding-block: 0.9rem;
    font-size: 0.95rem;
}

.lp-hero-trust {
    margin-top: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: #9ca3af;
}

.lp-hero-trust-avatars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.lp-avatar-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.7rem;
    border-radius: 9999px;
    background: rgba(59, 130, 246, 0.18);
    color: #bfdbfe;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Hero Stats - Modern Yan Yana Tasarım */
.lp-hero-stats {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.lp-hero-stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.lp-hero-stat-item {
    flex: 1;
    min-width: 140px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.lp-hero-stat-item:hover {
    background: rgba(15, 23, 42, 0.7);
    transform: translateY(-2px);
    border-color: rgba(129, 140, 248, 0.5);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

.lp-hero-stat-icon {
    flex-shrink: 0;
    width: 2.25rem;
    height: 2.25rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(139, 92, 246, 0.25));
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a5b4fc;
}

.lp-hero-stat-icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

.lp-hero-stat-content {
    flex: 1;
    min-width: 0;
}

.lp-hero-stat-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #f9fafb;
    line-height: 1.2;
    margin-bottom: 0.15rem;
    white-space: nowrap;
}

.lp-hero-stat-label {
    font-size: 0.75rem;
    color: #9ca3af;
    line-height: 1.2;
    white-space: nowrap;
}

.lp-hero-stats-bottom {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.lp-hero-stat-bottom-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.75rem 1.25rem;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 0.625rem;
    border: 1px solid rgba(148, 163, 184, 0.15);
    min-width: 100px;
    transition: all 0.3s ease;
}

.lp-hero-stat-bottom-item:hover {
    background: rgba(15, 23, 42, 0.6);
    border-color: rgba(129, 140, 248, 0.4);
}

.lp-hero-stat-bottom-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f9fafb;
    line-height: 1.2;
}

.lp-hero-stat-bottom-label {
    font-size: 0.75rem;
    color: #9ca3af;
    line-height: 1.2;
    text-align: center;
}

@media (max-width: 768px) {
    .lp-hero-stats {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .lp-hero-stats-grid {
        flex-direction: column;
        gap: 0.75rem;
    }

    .lp-hero-stat-item {
        min-width: 100%;
        padding: 0.75rem;
    }

    .lp-hero-stat-icon {
        width: 2rem;
        height: 2rem;
    }

    .lp-hero-stat-icon svg {
        width: 1rem;
        height: 1rem;
    }

    .lp-hero-stat-value {
        font-size: 1.125rem;
    }

    .lp-hero-stat-label {
        font-size: 0.7rem;
    }

    .lp-hero-stats-bottom {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }

    .lp-hero-stat-bottom-item {
        min-width: 100%;
        padding: 0.75rem 1rem;
    }

    .lp-hero-stat-bottom-value {
        font-size: 1.375rem;
    }

    .lp-hero-stat-bottom-label {
        font-size: 0.7rem;
    }
}

/* Alt bölümler için yarı saydam kart hissi */
.lp-stats,
.lp-features,
.lp-how,
.lp-testimonials,
.lp-proofs,
.lp-faq,
.lp-cta {
    background: transparent;
    border: none;
}

.lp-stats-bar,
.lp-features-grid,
.lp-testimonials-grid,
.lp-proofs-grid,
.lp-faq-list {
    background: rgba(15, 23, 42, 0.85);
    border-radius: 1.5rem;
    border: 1px solid rgba(148, 163, 184, 0.28);
    box-shadow: 0 18px 60px rgba(15, 23, 42, 0.9);
    padding: 1.75rem 1.5rem;
}

.lp-stat strong,
.lp-stat-num {
    color: #e5e7eb;
}

.lp-stat-lbl {
    color: #9ca3af;
}

.lp-feature-card {
    background: transparent;
    border-color: rgba(148, 163, 184, 0.4);
}

.lp-feature-card h3 {
    color: #e5e7eb;
}

.lp-feature-card p {
    color: #9ca3af;
}

.lp-section-head h2 {
    color: #e5e7eb;
}

.lp-section-head p {
    color: #9ca3af;
}

.lp-step h3 {
    color: #e5e7eb;
}

.lp-step p {
    color: #9ca3af;
}

.lp-tcard {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(148, 163, 184, 0.4);
}

/* Pricing */
.lp-pricing {
    padding: 5rem 0;
}

.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.75rem;
    max-width: 900px;
    margin: 0 auto;
}

.lp-pricing-card {
    position: relative;
    background: rgba(15, 23, 42, 0.9);
    border-radius: 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.9);
}

.lp-pricing-card--popular {
    border-width: 2px;
    border-color: rgba(147, 197, 253, 0.95);
    box-shadow: 0 24px 70px rgba(37, 99, 235, 0.9);
}

.lp-pricing-badge {
    position: absolute;
    top: -0.9rem;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.2rem 0.8rem;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 9999px;
    background: linear-gradient(90deg, #7c3aed, #2563eb);
    color: #f9fafb;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.7);
}

.lp-pricing-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lp-pricing-header h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #e5e7eb;
}

.lp-pricing-header p {
    font-size: 0.9rem;
    color: #9ca3af;
}

.lp-pricing-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.9rem;
    background: radial-gradient(circle at 30% 0, rgba(129, 140, 248, 0.7), rgba(15, 23, 42, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.lp-pricing-price {
    margin-top: 0.5rem;
}

.lp-pricing-main {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.lp-pricing-amount {
    font-size: 2.2rem;
    font-weight: 800;
    color: #f9fafb;
}

.lp-pricing-old {
    font-size: 1rem;
    color: #9ca3af;
    text-decoration: line-through;
}

.lp-pricing-discount {
    font-size: 0.9rem;
    color: #a5b4fc;
    margin-top: 0.35rem;
    font-weight: 500;
}

.lp-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.lp-pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.45rem;
    font-size: 0.9rem;
    color: #e5e7eb;
}

.lp-pricing-check {
    flex-shrink: 0;
    font-size: 0.95rem;
    color: #4ade80;
    margin-top: 0.1rem;
}

.lp-pricing-bonuses {
    margin-top: 2.5rem;
}

.lp-pricing-bonus-inner {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.08), rgba(59, 130, 246, 0.08));
    border-radius: 1.25rem;
    padding: 1.75rem 1.75rem 1.5rem;
}

.lp-pricing-bonus-inner h3 {
    font-size: 1.35rem;
    font-weight: 700;
    color: #e5e7eb;
    text-align: center;
}

.lp-pricing-bonus-grid {
    margin-top: 1.25rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.lp-pricing-bonus-card {
    background: #f9fafb;
    border-radius: 0.9rem;
    padding: 0.9rem 1rem;
}

.lp-pricing-bonus-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #7c3aed;
    margin-bottom: 0.15rem;
}

.lp-pricing-bonus-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #111827;
}

.lp-pricing-bonus-desc {
    font-size: 0.8rem;
    color: #4b5563;
}

/* Results Section */
.lp-results {
    padding: 5rem 0;
    background: linear-gradient(135deg, #9333ea 0%, #2563eb 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.lp-results::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.lp-results-header {
    text-align: center;
    margin-bottom: 4rem;
}

.lp-results-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #fff;
}

.lp-results-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 42rem;
    margin: 0 auto;
}

.lp-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.lp-result-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lp-result-card:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

.lp-result-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.8), rgba(37, 99, 235, 0.8));
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.lp-result-icon svg {
    width: 2rem;
    height: 2rem;
}

.lp-result-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: #fff;
}

.lp-result-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.lp-results-bottom {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    max-width: 56rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.lp-result-bottom-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lp-result-bottom-value {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
}

.lp-result-bottom-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .lp-results {
        padding: 3rem 0;
    }

    .lp-results-title {
        font-size: 1.75rem;
    }

    .lp-results-subtitle {
        font-size: 1rem;
    }

    .lp-results-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .lp-results-bottom {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .lp-result-bottom-value {
        font-size: 2.5rem;
    }
}

.lp-faq-item {
    background: rgba(15, 23, 42, 0.9);
    border-color: rgba(148, 163, 184, 0.4);
}

.lp-faq-item summary {
    color: #e5e7eb;
}

.lp-faq-item p {
    color: #9ca3af;
}

.lp-cta-card {
    background: radial-gradient(circle at top left, rgba(59, 130, 246, 0.35), rgba(29, 78, 216, 0.9));
    border: 1px solid rgba(191, 219, 254, 0.5);
    box-shadow: 0 24px 80px rgba(30, 64, 175, 0.9);
}

.lp-cta-card h2 {
    color: #f9fafb;
}

.lp-cta-card p {
    color: #e5e7eb;
}

@media (max-width: 768px) {
    .lp-hero-grid {
        padding: 1.75rem 1.25rem;
        border-radius: 1.5rem;
    }

    body.landing-active .lp-hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    body.landing-active .lp-hero-animated {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    body.landing-active .lp-gradient-text {
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .lp-stats-bar,
    .lp-features-grid,
    .lp-testimonials-grid,
    .lp-proofs-grid,
    .lp-faq-list {
        padding: 1.5rem 1.25rem;
        border-radius: 1.25rem;
    }
}

/* ============================================================
   Yeni Hero Tasarımı (Modern 2 Sütunlu)
   ============================================================ */
.lp-hero-new {
    padding: 5rem 0;
    background: #ffffff;
}

.lp-hero-new-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

/* Sol Taraf */
.lp-hero-new-left {
    padding-right: 2rem;
}

.lp-hero-new-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f3e8ff;
    color: #7c3aed;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.lp-hero-new-badge svg {
    width: 1rem;
    height: 1rem;
}

.lp-hero-new-title {
    font-size: 3rem;
    line-height: 1.1;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1.5rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.lp-hero-new-gradient {
    background: linear-gradient(to right, #9333ea, #2563eb);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero-new-desc {
    font-size: 1.25rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.lp-hero-new-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.lp-hero-new-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 2rem;
    font-size: 1.125rem;
    font-weight: 500;
    border-radius: 0.5rem;
    transition: all 0.2s;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.lp-hero-new-btn-primary {
    background: linear-gradient(to right, #9333ea, #2563eb);
    color: #ffffff;
}

.lp-hero-new-btn-primary:hover {
    background: linear-gradient(to right, #7e22ce, #1d4ed8);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(147, 51, 234, 0.3);
}

.lp-hero-new-btn-secondary {
    background: #ffffff;
    color: #111827;
    border: 1px solid #e5e7eb;
}

.lp-hero-new-btn-secondary:hover {
    background: #f9fafb;
    border-color: #d1d5db;
}

.lp-hero-new-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.lp-hero-new-trust-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lp-hero-new-avatars {
    display: flex;
    gap: -0.5rem;
}

.lp-hero-new-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: linear-gradient(to bottom right, #a78bfa, #60a5fa);
    border: 2px solid #ffffff;
    margin-left: -0.5rem;
}

.lp-hero-new-avatar:first-child {
    margin-left: 0;
}

.lp-hero-new-rating {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.lp-hero-new-stars {
    display: flex;
    gap: 0.125rem;
}

.lp-hero-new-stars .lp-star-filled {
    width: 1rem;
    height: 1rem;
    fill: #fbbf24;
    color: #fbbf24;
}

.lp-hero-new-trust-text {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
}

.lp-hero-new-trust-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #6b7280;
    font-size: 0.875rem;
}

.lp-hero-new-trust-right svg {
    width: 1.25rem;
    height: 1.25rem;
    color: #9333ea;
}

.lp-hero-new-trust-right strong {
    color: #111827;
    font-weight: 600;
}

/* Sağ Taraf */
.lp-hero-new-right {
    position: relative;
}

.lp-hero-new-image-wrapper {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.lp-hero-new-image {
    width: 100%;
    height: auto;
    display: block;
}

.lp-hero-new-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
}

.lp-hero-new-image-card {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-radius: 0.5rem;
    padding: 1rem;
}

.lp-hero-new-image-card-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.lp-hero-new-image-card-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0 0 0.25rem 0;
}

.lp-hero-new-image-card-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #9333ea;
    margin: 0;
}

.lp-hero-new-image-card-icon {
    width: 3rem;
    height: 3rem;
    background: #dcfce7;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
}

.lp-hero-new-image-card-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.lp-hero-new-floating-badge {
    position: absolute;
    top: -1rem;
    right: -1rem;
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: none;
}

@media (min-width: 1024px) {
    .lp-hero-new-floating-badge {
        display: block;
    }
}

.lp-hero-new-floating-badge-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(to bottom right, #9333ea, #2563eb);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.lp-hero-new-floating-badge-icon svg {
    width: 1.5rem;
    height: 1.5rem;
}

.lp-hero-new-floating-badge-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0 0 0.25rem 0;
}

.lp-hero-new-floating-badge-value {
    font-size: 1.25rem;
    font-weight: 800;
    color: #111827;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .lp-hero-new-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .lp-hero-new-left {
        padding-right: 0;
    }

    .lp-hero-new-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .lp-hero-new {
        padding: 3rem 0;
    }

    .lp-hero-new-title {
        font-size: 2rem;
    }

    .lp-hero-new-desc {
        font-size: 1.125rem;
    }

    .lp-hero-new-actions {
        flex-direction: column;
    }

    .lp-hero-new-btn {
        width: 100%;
        justify-content: center;
    }

    .lp-hero-new-trust {
        flex-direction: column;
        align-items: flex-start;
    }
}