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

:root {
    --primary: #f97316;
    --primary-light: #fb923c;
    --primary-dark: #ea580c;
    --secondary: #6366f1;
    --accent: #5eead4;
    --success: #10b981;
    --bg: #f8fafc;
    --bg-elevated: #ffffff;
    --text: #0f172a;
    --text-muted: #64748b;
    --border: #e2e8f0;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 30px 60px rgba(0, 30px, 60px, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

.background-blobs {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    opacity: 0.3;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.6;
    transition: all 0.3s ease-out;
    animation-play-state: running;
}

#blob1 {
    width: 600px;
    height: 600px;
    background: var(--primary-light);
    top: -100px;
    left: -150px;
    animation: move-blob-1 30s infinite alternate;
}

#blob2 {
    width: 800px;
    height: 800px;
    background: var(--secondary);
    bottom: -200px;
    right: -100px;
    animation: move-blob-2 40s infinite alternate-reverse;
}

#blob3 {
    width: 450px;
    height: 450px;
    background: var(--accent);
    top: 50%;
    right: 10%;
    animation: move-blob-3 35s infinite alternate;
}

.blobs-fast #blob1 {
    animation: move-blob-1 5s infinite alternate !important;
}
.blobs-fast #blob2 {
    animation: move-blob-2 7s infinite alternate-reverse !important;
}
.blobs-fast #blob3 {
    animation: move-blob-3 6s infinite alternate !important;
}
.blobs-fast {
    opacity: 0.6;
}

@keyframes move-blob-1 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(100px, -80px) scale(1.1); }
    100% { transform: translate(0, 0) scale(1); }
}
@keyframes move-blob-2 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-150px, 120px) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}
@keyframes move-blob-3 {
    0% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, -50px) scale(1.2); }
    100% { transform: translate(0, 0) scale(1); }
}

nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 80px);
    max-width: 1300px;
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-radius: 20px;
    padding: 1rem 2rem;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav:hover {
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.75);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text);
}

.logo i {
    color: var(--primary);
    font-size: 1.6rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.btn {
    padding: 0.7rem 1.8rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 16px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(249, 115, 22, 0.4);
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.05rem;
    border-radius: 14px;
}

.btn-secondary {
    background: var(--bg-elevated);
    color: var(--text);
    border: 2px solid var(--border);
    box-shadow: var(--shadow-md);
}

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

.hero {
    margin-top: 140px;
    padding: 4rem 2rem 6rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.8rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 50%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: gradient-shift 3s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    align-items: center;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: var(--bg-elevated);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.stat-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(94, 234, 212, 0.12));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.stat-info h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text);
}

.stat-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}

.hero-visual {
    position: relative;
}

.live-stats-card {
    background: linear-gradient(135deg, rgba(255,255,255,0.95), rgba(255,255,255,0.85));
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(255,255,255,0.5);
    border: 1px solid rgba(249, 115, 22, 0.1);
    position: relative;
    overflow: hidden;
}

.live-stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
    background-size: 200% 100%;
    animation: gradient-flow 3s linear infinite;
}

@keyframes gradient-flow {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

.live-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.live-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.live-title i {
    color: var(--primary);
    font-size: 1.3rem;
}

.live-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--success);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.live-pulse {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    position: relative;
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.live-pulse::before {
    content: '';
    position: absolute;
    inset: -4px;
    border: 2px solid var(--success);
    border-radius: 50%;
    opacity: 0;
    animation: pulse-ring 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(2); opacity: 0; }
}

.stats-container {
    display: grid;
    gap: 1.5rem;
}

.stat-row {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.03), rgba(94, 234, 212, 0.03));
    border-radius: 16px;
    border: 1px solid rgba(249, 115, 22, 0.08);
    transition: all 0.3s ease;
}

.stat-row:hover {
    transform: translateX(4px);
    border-color: rgba(249, 115, 22, 0.2);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.08);
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-display {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.stat-unit {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-change {
    font-size: 0.8rem;
    color: var(--success);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.live-footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px dashed rgba(148, 163, 184, 0.3);
    font-size: 0.85rem;
    color: var(--text-muted);
    text-align: center;
    font-weight: 500;
}

.features {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(94, 234, 212, 0.1));
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.2rem;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.8;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(94, 234, 212, 0.12));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 1.8rem;
    color: var(--primary);
    border: 2px solid rgba(249, 115, 22, 0.2);
    transition: all 0.4s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05) rotate(3deg);
}

.feature-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text);
}

.feature-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

.process {
    padding: 8rem 2rem;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-elevated) 100%);
    position: relative;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 5rem;
    position: relative;
}

.step {
    text-align: center;
    position: relative;
    transition: all 0.4s;
    border-radius: 20px;
    padding: 1rem;
}

.step:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.step-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.08), rgba(94, 234, 212, 0.08));
    border: 2px solid rgba(249, 115, 22, 0.25);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 2rem;
    margin: 0 auto 2rem;
    color: var(--primary);
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.12);
    position: relative;
    transition: all 0.4s;
}

.step:hover .step-number {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.25);
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.12), rgba(94, 234, 212, 0.12));
    border-color: rgba(249, 115, 22, 0.4);
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -6px;
    border: 2px dashed rgba(249, 115, 22, 0.4);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.4s;
}

.step:hover .step-number::after {
    opacity: 1;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--text);
}

.step p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.7;
}

.tasks {
    padding: 8rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.tasks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.task-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.task-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.task-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.task-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(94, 234, 212, 0.1));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
}

.task-reward {
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.15), rgba(94, 234, 212, 0.15));
    color: var(--primary-dark);
    padding: 0.5rem 1.2rem;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    border: 1px solid rgba(249, 115, 22, 0.3);
}

.task-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: var(--text);
}

.task-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.task-meta {
    display: flex;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.task-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.task-meta i {
    color: var(--primary);
}

.referral {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.95) 0%, rgba(234, 88, 12, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.referral::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.03)"/></svg>') repeat;
    opacity: 0.4;
}

.referral-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.referral-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.02em;
}

.referral-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.8;
}

.referral-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.ref-stat-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    padding: 3rem 2rem;
    transition: all 0.3s;
}

.ref-stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.ref-stat-value {
    font-size: 4rem;
    font-weight: 800;
    color: white;
    margin-bottom: 0.8rem;
}

.ref-stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 600;
}

.cta {
    padding: 10rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cta-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: 40px;
    padding: 5rem 3rem;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--secondary));
}

.cta h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.cta p {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

footer {
    border-top: 1px solid var(--border);
    padding: 5rem 2rem 3rem;
    background: var(--bg-elevated);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--text);
}

.footer-section p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(249, 115, 22, 0.1), rgba(94, 234, 212, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.social-links a:hover {
    transform: translateY(-4px);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.animated-element {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.is-visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* MOBIL MENÜ İÇİN YENİ STİL */
.mobile-menu-toggle {
    display: none; /* Varsayılan olarak gizli */
    font-size: 1.6rem;
    color: var(--text);
    cursor: pointer;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-elevated);
    z-index: 1050;
    transform: translateX(100%);
    transition: transform 0.4s ease-out;
    padding: 2rem;
    display: flex;
    flex-direction: column;
}

.mobile-menu-overlay.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.mobile-menu-header .close-btn {
    font-size: 2rem;
    color: var(--text-muted);
    cursor: pointer;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-links li {
    margin-bottom: 2rem;
}

.mobile-menu-links a {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    text-decoration: none;
    transition: color 0.2s;
    padding: 0.5rem 0;
    border-bottom: 2px solid var(--border);
}

.mobile-menu-links a:hover {
    color: var(--primary);
}

.mobile-menu-overlay .btn-primary {
    margin-top: auto;
    align-self: center;
    width: 100%;
    max-width: 300px;
}

@media (max-width: 1200px) {
.hero-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

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

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

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

@media (max-width: 768px) {
    nav {
        width: calc(100% - 40px);
        padding: 1rem 1.5rem;
    }

.nav-links, .nav-container > .btn-primary {
        display: none; /* Büyük menü linklerini ve butonu gizle */
    }

.mobile-menu-toggle {
        display: block; /* Hamburger butonunu göster */
    }

.nav-container {
        justify-content: space-between;
    }

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

.hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

.hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1.5rem;
        font-size: 0.95rem;
    }

.hero-buttons .btn-large {
        padding: 0.95rem 1.5rem;
        font-size: 0.95rem;
    }

.section-header h2 {
        font-size: 2.5rem;
    }

.process-steps,
.referral-stats {
        grid-template-columns: 1fr;
    }

.footer-container {
        grid-template-columns: 1fr;
    }

.hero-stats {
        flex-direction: column;
        width: 100%;
    }

.stat-badge {
        width: 100%;
    }

    /* Live Stats tutarsızlık düzeltmeleri */
.live-stats-card {
        padding: 1.8rem;
    }

.stat-number {
        font-size: 2rem; /* Daha küçük mobil font */
    }

.stat-unit {
        font-size: 0.9rem;
    }
}