:root {
    --brand-color-1: #00f2ff;
    --brand-color-2: #00f2ff;
    --brand-color-text: #08162d;
    --brand-gradient-1: none;
    --brand-gradient-2: none;
    --background-gradient-1: none;
    --background-gradient-2: none;
    --background-gradient-3: none;
    --background-gradient-4: none;
    --background-gradient-5: none;
    --background-gradient-6: none;
    --background-color-1: #08162d;
    --background-color-2: #0a1d3f;
    --background-color-3: #0a2249;
    --background-color-4: #0a2249;
    --background-color-5: #0a2249;
    --background-color-6: #08162d;
    --text-color-1: #FFFFFF;
    --text-color-2: #ffffff;
    --text-color-3: #ffffff;
    --text-color-4: #ffffff;
    --font-family-1: 'Montserrat', sans-serif;
    --modal-bg-color-1: #08162d;
    --modal-bg-color-2: #0a1d3f;
    --modal-bg-color-3: #0a2249;
    --modal-bg-color-4: #0a2249;
    --modal-text-color-1: #ffffff;
    --modal-text-color-2: #ffffff;
    --modal-text-color-3: #ffffff;
}

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

body {
    font-family: var(--font-family-1);
    background-color: var(--background-color-1);
    color: var(--text-color-1);
    overflow-x: hidden;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(8, 22, 45, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
    padding: 20px 0;
}

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

.logo img {
    height: 45px;
    width: auto;
}

@media (max-width: 768px) {
    .logo img {
        height: 35px;
    }
}

.desktop-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

.desktop-nav a {
    color: var(--text-color-1);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-color-1);
    transition: width 0.3s ease;
}

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

.desktop-nav a:hover {
    color: var(--brand-color-1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Language selector removed */

.login-btn {
    padding: 10px 24px;
    background: transparent;
    border: 2px solid var(--brand-color-1);
    color: var(--brand-color-1);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.login-btn:hover {
    background: var(--brand-color-1);
    color: var(--background-color-1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.3);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--brand-color-1);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--background-color-2);
    z-index: 2000;
    padding: 30px;
    transition: right 0.3s ease;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    right: 0;
}

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

.close-menu {
    background: transparent;
    border: none;
    color: var(--brand-color-1);
    font-size: 30px;
    cursor: pointer;
}

.login-btn-mobile {
    padding: 8px 20px;
    background: transparent;
    border: 2px solid var(--brand-color-1);
    color: var(--brand-color-1);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    display: inline-block;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.mobile-nav a {
    color: var(--text-color-1);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 242, 255, 0.1);
}

/* Mobile language selector removed */

.cta-btn-mobile {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--brand-color-1), #00b8ff);
    border: none;
    color: var(--background-color-1);
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    text-decoration: none;
    display: block;
    text-align: center;
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0, 242, 255, 0.15), transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--brand-color-1), #00b8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.6;
}

.cta-btn {
    padding: 18px 48px;
    background: linear-gradient(135deg, var(--brand-color-1), #00b8ff);
    border: none;
    color: var(--background-color-1);
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 242, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.cta-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 ease, height 0.6s ease;
}

.cta-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 242, 255, 0.6);
}

.cta-btn:hover::before {
    width: 300px;
    height: 300px;
}

.cta-btn:active {
    transform: translateY(-2px) scale(1.02);
}

.coins-container {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.animated-icon {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-svg {
    width: 400px;
    height: 400px;
    filter: drop-shadow(0 20px 60px rgba(0, 242, 255, 0.3));
}

.circle-1, .circle-2, .circle-3 {
    fill: none;
    stroke: var(--brand-color-1);
    stroke-width: 2;
    opacity: 0.3;
}

.circle-1 {
    animation: rotate 20s linear infinite;
    stroke-dasharray: 10 5;
}

.circle-2 {
    animation: rotate 15s linear infinite reverse;
    stroke-dasharray: 8 4;
    opacity: 0.5;
}

.circle-3 {
    animation: rotate 10s linear infinite;
    stroke-dasharray: 5 3;
    opacity: 0.7;
}

.icon-text {
    font-size: 100px;
    font-weight: 900;
    fill: var(--brand-color-1);
    text-anchor: middle;
    dominant-baseline: middle;
    filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.8));
    animation: pulse-text 3s ease-in-out infinite;
}

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

@keyframes pulse-text {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(0, 242, 255, 0.3), transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

/* Steps Section */
.steps {
    padding: 80px 0;
    background: var(--background-color-2);
}

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

.step-card {
    background: rgba(10, 34, 73, 0.5);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 242, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.step-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--brand-color-1);
    box-shadow: 0 25px 60px rgba(0, 242, 255, 0.3);
}

.step-number {
    font-size: 72px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--brand-color-1), #00b8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.step-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-color-1);
}

.step-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Stats Section */
.stats {
    padding: 80px 0;
}

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

.stat-card {
    background: rgba(10, 34, 73, 0.5);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(0, 242, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-15px) scale(1.05);
    border-color: var(--brand-color-1);
    box-shadow: 0 25px 60px rgba(0, 242, 255, 0.4);
}

.stat-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 242, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.stat-card:hover::after {
    left: 100%;
}

.stat-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--brand-color-1);
    display: flex;
    justify-content: center;
    align-items: center;
}

.stat-icon svg {
    stroke: var(--brand-color-1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover .stat-icon svg {
    stroke: var(--brand-color-1);
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(0, 242, 255, 0.8));
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--brand-color-1), #00b8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

/* Section Title */
.section-title {
    font-size: 48px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--brand-color-1), #00b8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 100%;
    display: block;
}

/* Komisyonlar Section */
.komisyonlar {
    padding: 80px 0;
    background: var(--background-color-2);
}

.komisyon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.komisyon-card {
    background: rgba(10, 34, 73, 0.5);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 242, 255, 0.1);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.komisyon-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 242, 255, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.komisyon-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--brand-color-1);
    box-shadow: 0 25px 60px rgba(0, 242, 255, 0.3);
}

.komisyon-card:hover .komisyon-icon {
    transform: scale(1.1) rotate(5deg);
}

.komisyon-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.komisyon-icon svg {
    stroke: var(--brand-color-1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.3));
}

.komisyon-card:hover .komisyon-icon svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(0, 242, 255, 0.6));
}

.komisyon-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-color-1);
}

.komisyon-card p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
    line-height: 1.6;
}

.komisyon-rate {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--brand-color-1), #00b8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

/* Pazarlama Section */
.pazarlama {
    padding: 80px 0;
}

.pazarlama-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.pazarlama-card {
    background: rgba(10, 34, 73, 0.5);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 242, 255, 0.1);
    min-height: 400px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.pazarlama-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border-color: var(--brand-color-1);
}

.pazarlama-card:hover .card-icon {
    transform: scale(1.2) rotate(10deg);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--brand-color-1);
}

.card-icon svg {
    stroke: var(--brand-color-1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.pazarlama-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-color-1);
    position: relative;
    z-index: 2;
}

.pazarlama-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.card-preview {
    margin-top: 30px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.card-preview img {
    width: 100%;
    height: auto;
    display: block;
}

.gradient-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    z-index: 1;
    opacity: 0.6;
}

.gradient-orange {
    background: linear-gradient(to top, rgba(255, 127, 80, 0.4), transparent);
}

.gradient-red {
    background: linear-gradient(to top, rgba(220, 20, 60, 0.4), transparent);
}

.gradient-green {
    background: linear-gradient(to top, rgba(124, 252, 0, 0.4), transparent);
}

.card-features {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 2;
}

.feature-item {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    padding: 8px 12px;
    background: rgba(0, 242, 255, 0.1);
    border-radius: 6px;
    border-left: 3px solid var(--brand-color-1);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--background-color-2);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: rgba(10, 34, 73, 0.5);
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid rgba(0, 242, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--brand-color-1);
    box-shadow: 0 25px 60px rgba(0, 242, 255, 0.3);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    color: rgba(0, 242, 255, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 50%;
    border: 2px solid var(--brand-color-1);
    background: linear-gradient(135deg, var(--brand-color-1), #00b8ff);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    color: var(--background-color-1);
    flex-shrink: 0;
}

.author-name {
    font-weight: 700;
    color: var(--text-color-1);
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
}

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

.faq-item {
    background: rgba(10, 34, 73, 0.5);
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 242, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--brand-color-1);
}

.faq-question {
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
}

.faq-toggle {
    font-size: 28px;
    color: var(--brand-color-1);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 30px 24px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: var(--background-color-2);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 34, 73, 0.8), rgba(10, 29, 63, 0.8));
    padding: 60px 40px;
    border-radius: 20px;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 242, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-cta::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--brand-color-1), #00b8ff, var(--brand-color-1));
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
    animation: border-glow 3s ease-in-out infinite;
}

@keyframes border-glow {
    0%, 100% {
        opacity: 0.3;
    }
    50% {
        opacity: 0.6;
    }
}

.cta-content {
    text-align: center;
}

.cta-content h3 {
    font-size: 32px;
    margin-bottom: 16px;
    background: linear-gradient(135deg, var(--brand-color-1), #00b8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.cta-btn-large {
    display: inline-block;
    text-decoration: none;
    padding: 20px 60px;
    font-size: 18px;
    position: relative;
    overflow: hidden;
}

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

.cta-btn-large:hover::after {
    width: 400px;
    height: 400px;
}

.contact-info h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--brand-color-1), #00b8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 18px;
}

.contact-item svg {
    stroke: var(--brand-color-1);
    flex-shrink: 0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-input,
.form-textarea {
    padding: 16px 20px;
    background: rgba(10, 34, 73, 0.5);
    border: 1px solid rgba(0, 242, 255, 0.1);
    border-radius: 12px;
    color: var(--text-color-1);
    font-family: var(--font-family-1);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--brand-color-1);
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.2);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* Footer */
.footer {
    padding: 60px 0 30px;
    background: var(--background-color-1);
    border-top: 1px solid rgba(0, 242, 255, 0.1);
}

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

.footer-logo img {
    height: 50px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--brand-color-1);
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: all 0.3s ease;
}

.footer-column a:hover {
    color: var(--brand-color-1);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 242, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .desktop-nav {
        gap: 20px;
    }
    
    .desktop-nav a {
        font-size: 14px;
    }
}

@media (max-width: 1024px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

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

    .hero-title {
        font-size: 42px;
    }

    .steps-grid,
    .komisyon-grid,
    .pazarlama-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .hero {
        padding: 140px 0 60px;
    }

    .hero-title {
        font-size: 36px;
    }

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

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

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

    .language-selector {
        display: none;
    }

    .login-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .cta-btn {
        padding: 14px 32px;
        font-size: 16px;
    }

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

    .step-number {
        font-size: 56px;
    }

    .step-card h3,
    .komisyon-card h3,
    .pazarlama-card h3 {
        font-size: 24px;
    }
}

/* Additional Animations */
/* Float animation removed - not used */

@keyframes glow {
    0%, 100% {
        text-shadow: 0 0 20px rgba(0, 242, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 30px rgba(0, 242, 255, 0.5);
    }
}

/* Shimmer animation removed - not used */

.step-number {
    will-change: box-shadow;
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--brand-color-1), transparent);
    border-radius: 2px;
}

/* Scroll Reveal Animation */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Particle Effect */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(0, 242, 255, 0.3), transparent),
        radial-gradient(2px 2px at 60% 70%, rgba(0, 242, 255, 0.3), transparent),
        radial-gradient(1px 1px at 50% 50%, rgba(0, 242, 255, 0.3), transparent),
        radial-gradient(1px 1px at 80% 10%, rgba(0, 242, 255, 0.3), transparent);
    background-size: 200% 200%;
    animation: particle-float 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes particle-float {
    0%, 100% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
}

/* Gradient Text Animation */
.gradient-text {
    background-size: 200% auto;
    animation: gradient-shift 3s ease infinite;
}

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

/* Card Entrance Animation */
@keyframes card-entrance {
    from {
        opacity: 0;
        transform: translateY(50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Hover Glow Effect for Icons - handled in icon styles above */

/* Loading Bar Animation */
.komisyon-rate {
    position: relative;
    overflow: hidden;
}

.komisyon-rate::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: loading-bar 2s ease-in-out infinite;
}

@keyframes loading-bar {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}
