* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

.background-paths {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg,
            rgba(74, 158, 255, 0.05) 0%,
            rgba(0, 119, 255, 0.05) 50%,
            rgba(0, 42, 255, 0.05) 100%);
}

.floating-paths {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    top: 0;
    left: 0;
    opacity: 0.7;
    filter: blur(1px);
    transform-origin: center;
    animation: containerFloat 20s infinite ease-in-out;
}

.floating-paths svg {
    width: 100%;
    height: 100%;
}

.path1,
.path2,
.path3,
.path4,
.path5,
.path6,
.path7,
.path8,
.path9,
.path10 {
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    animation: pathFloat 12s infinite ease-in-out;
}

.path1 {
    stroke: rgba(74, 158, 255, 0.2);
    animation-delay: -0s;
}

.path2 {
    stroke: rgba(41, 128, 255, 0.15);
    animation-delay: -1.2s;
}

.path3 {
    stroke: rgba(0, 119, 255, 0.12);
    animation-delay: -2.4s;
}

.path4 {
    stroke: rgba(0, 102, 255, 0.1);
    animation-delay: -3.6s;
}

.path5 {
    stroke: rgba(0, 89, 255, 0.15);
    animation-delay: -4.8s;
}

.path6 {
    stroke: rgba(0, 68, 255, 0.12);
    animation-delay: -6s;
}

.path7 {
    stroke: rgba(0, 55, 255, 0.1);
    animation-delay: -7.2s;
}

.path8 {
    stroke: rgba(0, 42, 255, 0.15);
    animation-delay: -8.4s;
}

.path9 {
    stroke: rgba(0, 34, 255, 0.12);
    animation-delay: -9.6s;
}

.path10 {
    stroke: rgba(0, 21, 255, 0.1);
    animation-delay: -10.8s;
}

@keyframes pathFloat {
    0% {
        stroke-dasharray: 0 1500;
        stroke-dashoffset: 0;
        opacity: 0.1;
        transform: translateX(-20px);
    }

    25% {
        opacity: 0.4;
    }

    50% {
        stroke-dasharray: 1500 0;
        stroke-dashoffset: -750;
        opacity: 0.3;
        transform: translateX(20px);
    }

    75% {
        opacity: 0.4;
    }

    100% {
        stroke-dasharray: 0 1500;
        stroke-dashoffset: -1500;
        opacity: 0.1;
        transform: translateX(-20px);
    }
}

.content {
    position: relative;
    z-index: 2;
    text-align: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.discover-button {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.discover-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-color);
    transition: all 0.3s ease;
    z-index: -1;
}

.discover-button:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 158, 255, 0.2);
}

.discover-button:hover::before {
    width: 100%;
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

/* Mobil header varsayılan olarak gizli */
.mobile-header {
    display: none;
    padding: 1rem;
    justify-content: space-between;
    align-items: center;
}

/* Normal görünüm için header */
.desktop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 4rem;
}

.mobile-menu {
    display: none;
    width: 100%;
    padding: 0.5rem 0;
    margin-left: 1rem;
}


.mobile-menu ul {
    display: none;
}

.mobile-menu ul.active {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    flex-direction: column;
}

.mobile-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.5rem;
}



.header-top {
    display: none;
    /* Normal görünümde gizli */
}

.left-menu {
    display: flex;
    align-items: center;
}

.left-menu ul {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.left-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.2rem;
}

/* Menü linklerinin normal durumu için stil */
.left-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

/* Aktif menü öğesi için stil */
.left-menu a.active::after {
    width: 100%;
}

/* Hover efektini sadece aktif olmayan öğeler için uygula */
.left-menu a:not(.active):hover::after {
    width: 100%;
}

.logo {
    margin: 0 2rem;
}

.logo-img {
    height: 40px;
    width: auto;
}

.login-btn {
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.login-btn:hover {
    background: var(--accent-color);
    color: white;
}



.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 4rem;
    padding: 80px 0;
}

.hero-text {
    flex: 1;
    text-align: left;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4a9eff 0%, #3b8aff 50%, #2d7aff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(74, 158, 255, 0.3);
    position: relative;
}

.hero-text h1::after {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: radial-gradient(circle at center, rgba(74, 158, 255, 0.1) 0%, transparent 70%);
    z-index: -1;
    filter: blur(15px);
}

.hero-text .subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    margin-bottom: 3rem;
}

.demo-button {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.demo-button:hover {
    background: rgba(74, 158, 255, 0.1);
    border-color: var(--accent-color);
}

.hero-stats {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    position: relative;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #4a9eff 0%, #3b8aff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: statFadeIn 0.5s ease forwards;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
    opacity: 0;
    transform: translateY(20px);
    animation: statFadeIn 0.5s ease forwards 0.2s;
}

@keyframes statFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-illustration {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Responsive düzenlemeler */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 120px 0 40px;
        gap: 2rem;
    }

    .hero-text {
        max-width: 100%;
        padding: 0 1rem;
    }

    .hero-text h1 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .hero-text .subtitle {
        text-align: center;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 2rem;
        margin-top: 2rem;
    }

    .stat-item {
        flex: 0 0 auto;
        min-width: 150px;
    }

    .hero-illustration {
        display: none;
        /* SVG'yi mobilde gizle */
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 100px 0 40px;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .hero-text .subtitle {
        font-size: 1rem;
    }

    .hero-stats {
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .stat-item {
        min-width: 120px;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 80px 0 30px;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .stat-item {
        min-width: 100px;
    }
}

/* Tablet için yatay görünüm düzeltmeleri */
@media (max-width: 1024px) and (orientation: landscape) {
    .hero-content {
        flex-direction: row;
        align-items: center;
        padding: 100px 0;
        gap: 2rem;
    }

    .hero-text {
        flex: 1;
        text-align: left;
    }

    .hero-illustration {
        flex: 1;
        margin-top: 0;
    }

    .hero-buttons {
        justify-content: flex-start;
    }

    .hero-stats {
        justify-content: flex-start;
    }
}

/* Mobil menü için hamburger menü */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-primary);
    cursor: pointer;
}

@media (max-width: 1024px) {
    .desktop-header {
        display: none;
        /* Normal görünümü gizle */
    }

    .mobile-header {
        display: flex;
        /* Mobil header'ı göster */
    }

    .mobile-menu {
        display: block;
        /* Mobil menüyü göster */
    }

    .main-header {
        flex-direction: column;
    }

    /* Normal görünümdeki logo ve giriş yapı gizle */
    .main-header>.logo,
    .main-header>.right-menu {
        display: none;
    }

    .header-top {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-bottom: 1rem;
    }

    .logo {
        margin: 0;
    }

    .left-menu {
        width: 100%;
    }

    .left-menu ul {
        justify-content: center;
        gap: 1.5rem;
        padding: 0.5rem 0;
    }

    .left-menu a {
        font-size: 0.9rem;
    }

    /* Header-top içindeki giriş butonunu göster */
    .header-top .right-menu {
        display: block;
    }
}

@media (min-width: 1025px) {
    .right-menu {
        display: flex;
        align-items: center;
    }
}

/* Genel Container Stili */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Özellikler Section */
.features {
    padding: 4rem 0;
    background: #f8faff;
}

.features-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    padding: 0 2rem;
}

/* Yan Menü Stilleri */
.features-sidebar {
    width: 280px;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-header {
    margin-bottom: 2rem;
}

.sidebar-header h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.sidebar-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.features-nav {
    list-style: none;
}

.features-nav li {
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.features-nav li i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.features-nav li.active {
    background: var(--accent-color);
    color: white;
    font-weight: 500;
}

.features-nav li:not(.active):hover {
    background: rgba(74, 158, 255, 0.1);
    color: var(--accent-color);
}

/* İçerik Alanı Stilleri */
.features-content {
    flex: 1;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature-tab {
    display: none;
}

.feature-tab.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.feature-header {
    text-align: left;
    margin-bottom: 3rem;
}

.feature-header h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #4a9eff 0%, #3b8aff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.feature-details {
    display: flex;
    gap: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    flex: 1;
}

.feature-item {
    padding: 1.5rem;
    border-radius: 15px;
    background: #f8faff;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(74, 158, 255, 0.1);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i {
    color: white;
    font-size: 1.5rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.feature-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Responsive Tasarım */
@media (max-width: 1200px) {
    .feature-details {
        flex-direction: column;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .features-container {
        flex-direction: column;
        padding: 1rem;
    }

    .features-sidebar {
        width: 100%;
        position: static;
        margin-bottom: 2rem;
    }

    .features-nav {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .features-nav li {
        width: 100%;
        padding: 1rem;
        border-radius: 8px;
        background: var(--card-bg);
        transition: all 0.3s ease;
    }

    .features-nav li.active {
        background: var(--accent-color);
        color: white;
    }

    .features-content {
        padding: 1rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-header h2 {
        font-size: 2rem;
        text-align: center;
    }

    .feature-header p {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .feature-grid {
        grid-template-columns: 1fr;
    }

    .features-content {
        padding: 2rem;
    }

    .feature-header h2 {
        font-size: 2rem;
    }
}

/* Hakkımızda Section */
.about {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8faff 0%, #f0f5ff 100%);
}

.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-header h1 {
    font-size: 2.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #4a9eff 0%, #3b8aff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-header .subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.about-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.card-icon i {
    font-size: 1.8rem;
    color: white;
}

.about-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.values-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-secondary);
}

.values-list i {
    color: var(--accent-color);
}

.success-story {
    text-align: center;
    margin-bottom: 4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1rem;
}

.why-us {
    text-align: center;
    margin-bottom: 4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.feature i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.future-goals {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.future-goals p {
    max-width: 800px;
    margin: 1.5rem auto 0;
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2.2rem;
    }

    .values-list {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Ücretlendirme Section */
.pricing {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8faff 0%, #f0f5ff 100%);
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    font-size: 2.8rem;
    background: linear-gradient(135deg, #4a9eff 0%, #3b8aff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.pricing-header .subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--accent-color);
}

input:checked+.slider:before {
    transform: translateX(26px);
}

.discount-badge {
    background: #ff4a4a;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.1);
}

.pricing-card.popular {
    background: linear-gradient(135deg, #4a9eff 0%, #3b8aff 100%);
    color: white;
    transform: scale(1.05);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #ff4a4a;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.price .currency {
    font-size: 1.5rem;
    vertical-align: super;
}

.price .period {
    font-size: 1rem;
    color: var(--text-secondary);
}

.popular .price .period {
    color: rgba(255, 255, 255, 0.8);
}

.description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.popular .description {
    color: rgba(255, 255, 255, 0.8);
}

.card-features {
    margin: 2rem 0;
}

.card-features ul {
    list-style: none;
}

.card-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin: 1rem 0;
    color: var(--text-primary);
}

.popular .card-features li {
    color: white;
}

.card-features li.disabled {
    color: var(--text-secondary);
    text-decoration: line-through;
}

.card-features i {
    font-size: 1.1rem;
    color: var(--accent-color);
}

.popular .card-features i {
    color: white;
}

.pricing-btn {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    background: transparent;
    color: var(--accent-color);
    font-size: 1.1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: var(--accent-color);
    color: white;
}

.pricing-btn.primary {
    background: white;
    color: var(--accent-color);
    border-color: white;
}

.pricing-btn.primary:hover {
    background: rgba(255, 255, 255, 0.9);
}

.pricing-faq {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.pricing-faq h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.faq-item {
    text-align: left;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Responsive Tasarım */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-card.popular {
        grid-row: 1;
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .pricing-header h2 {
        font-size: 2.2rem;
    }
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, #1a1f25 0%, #121417 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(74, 158, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.footer-top {
    padding: 5rem 0;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1.5rem;
}

.brand-description {
    color: #a0a8b3;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-color);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-weight: 600;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    opacity: 0.5;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 1rem;
}

.footer-column ul li a {
    color: #a0a8b3;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-column ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #a0a8b3;
}

.contact-info li i {
    color: var(--accent-color);
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #a0a8b3;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: #a0a8b3;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #fff;
}

/* Responsive Tasarım */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-brand {
        padding-right: 0;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column h4 {
        color: var(--accent-color);
    }

    .footer-column h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .legal-links {
        flex-direction: column;
        gap: 1rem;
    }

    .contact-info li {
        justify-content: center;
    }
}

/* Ana renk değişkenleri ekleyelim */
:root {
    /* Açık tema renkleri */
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-accent: #e9ecef;
    --text-primary: #2d3436;
    --text-secondary: #636e72;
    --accent-color: #4a9eff;
    --border-color: #dee2e6;
    --card-bg: #ffffff;
    --header-bg: rgba(255, 255, 255, 0.8);
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* Ana stil güncellemeleri */
body {
    background: var(--bg-primary);
    color: var(--text-primary);
}

.main-header {
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
}

.left-menu a {
    color: var(--text-primary);
}

.left-menu a::after {
    background: var(--accent-color);
}

.login-btn {
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.login-btn:hover {
    background: var(--accent-color);
    color: white;
}

/* Hero section */
.hero-content h1 {
    color: var(--text-primary);
    text-shadow: 0 0 20px var(--shadow-color);
}

.subtitle {
    color: var(--text-secondary);
}

.discover-button {
    color: var(--accent-color);
    border: 3px solid var(--accent-color);
}

.discover-button:hover {
    background: var(--accent-color);
    color: white;
}

/* Features section */
.features {
    background: var(--bg-secondary);
}

.feature-card {
    background: var(--card-bg);
    box-shadow: 0 5px 15px var(--shadow-color);
}

/* About section */
.about {
    background: var(--bg-primary);
}

.stats span {
    color: var(--accent-color);
}

/* Pricing section */
.pricing {
    background: var(--bg-secondary);
}

.pricing-card {
    background: var(--card-bg);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.pricing-card.popular {
    border: 2px solid var(--accent-color);
}

.popular-badge {
    background: var(--accent-color);
    color: white;
}

.pricing-btn {
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
}

.pricing-btn:hover {
    background: var(--accent-color);
    color: white;
}

/* Footer */
.footer {
    background: var(--bg-accent);
    color: var(--text-primary);
}

.footer-column a,
.social-link {
    color: var(--text-secondary);
}

/* SVG container animasyonu */
@keyframes containerFloat {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.1) rotate(1deg);
    }
}

/* Font Awesome için CDN linki head'e eklenecek */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');

/* Modal Styles */
.auth-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 1100;
}

.auth-modal.active {
    display: flex;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: auto;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    z-index: 1101;
    transform: translateY(-20px);
    opacity: 0;
    animation: modalContentSlide 0.3s ease-out forwards;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.modal-close:hover {
    color: #333;
}

.modal-header {
    text-align: center;
    margin-bottom: 2rem;
}

.modal-logo {
    height: 40px;
    width: auto;
}

/* Form Styles */
.auth-form {
    transition: all 0.3s ease;
}

.auth-form.hidden {
    display: none;
}

.auth-form h2 {
    text-align: center;
    color: #333;
    margin-bottom: 1.5rem;
}

.social-auth {
    /* display: flex; */
    display: none;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1rem;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
}

.social-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-btn.google {
    color: #DB4437;
    border: 1px solid #eee;
}

.social-btn.facebook {
    color: #4267B2;
    border: 1px solid #eee;
}

.divider {
    text-align: center;
    margin: 2rem 0 1.5rem;
    position: relative;
    display: none;
}

.divider::before,
.divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: calc(50% - 30px);
    height: 1px;
    background: #eee;
}

.divider::before {
    left: 0;
}

.divider::after {
    right: 0;
}

.divider span {
    background: white;
    padding: 0 10px;
    color: #666;
    font-size: 0.9rem;
}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus {
    border-color: var(--accent-color);
    outline: none;
}

.form-group label {
    position: absolute;
    left: 1rem;
    top: 1rem;
    color: #666;
    transition: all 0.3s;
    pointer-events: none;
    background: white;
    padding: 0 5px;
}

.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 0.8rem;
    color: var(--accent-color);
}

.password-toggle {
    position: absolute;
    right: 1rem;
    top: 1rem;
    background: none;
    border: none;
    color: #666;
    cursor: pointer;
    padding: 0;
    z-index: 1;
}

.password-toggle:hover {
    color: #333;
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.remember-me,
.terms {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
}

.forgot-password {
    color: var(--accent-color);
    text-decoration: none;
}

.auth-submit {
    width: 100%;
    padding: 1rem;
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.auth-submit:hover {
    background: #3b8aff;
    transform: translateY(-2px);
}

.switch-form {
    text-align: center;
    margin-top: 1.5rem;
    color: #666;
}

.switch-form a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
}

/* Animations */
@keyframes modalFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes modalContentSlide {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Şifre yenileme form stilleri */
.forgot-password-steps .step {
    display: none;
}

.forgot-password-steps .step.active {
    display: block;
    animation: fadeIn 0.3s ease-out;
}

.form-info {
    text-align: center;
    color: #666;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Doğrulama kodu input stilleri */
.verification-code {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.verification-code input {
    width: 45px;
    height: 45px;
    text-align: center;
    font-size: 1.2rem;
    border: 2px solid #eee;
    border-radius: 8px;
    background: white;
    transition: all 0.3s ease;
}

.verification-code input:focus {
    border-color: var(--accent-color);
    outline: none;
    box-shadow: 0 0 0 2px rgba(74, 158, 255, 0.2);
}

.verification-code input:not(:placeholder-shown) {
    border-color: var(--accent-color);
}

/* Tekrar gönder butonu ve zamanlayıcı */
.resend-code {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

#timer {
    color: #666;
}

#resendButton {
    background: none;
    border: none;
    color: var(--accent-color);
    cursor: pointer;
    font-size: 0.9rem;
    padding: 0;
    transition: all 0.3s ease;
}

#resendButton:hover:not(:disabled) {
    color: #3b8aff;
    text-decoration: underline;
}

#resendButton:disabled {
    color: #999;
    cursor: not-allowed;
}

/* Animasyon */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero SVG Animasyonları */
.bird {
    transform-origin: center;
}

.bird-large {
    animation: birdFloat 8s infinite ease-in-out;
}

.bird-medium {
    animation: birdFloat 6s infinite ease-in-out 1s;
}

.bird-small {
    animation: birdFloat 4s infinite ease-in-out 2s;
}

.wing-right {
    transform-origin: left center;
    animation: wingFlap 2s infinite ease-in-out;
}

.wing-left {
    transform-origin: right center;
    animation: wingFlap 2s infinite ease-in-out;
}

.bird-medium .wing-right,
.bird-medium .wing-left {
    animation-duration: 1.5s;
}

.bird-small .wing-right,
.bird-small .wing-left {
    animation-duration: 1s;
}

@keyframes birdFloat {

    0%,
    100% {
        transform: translateY(0) rotate(2deg);
    }

    50% {
        transform: translateY(-20px) rotate(-2deg);
    }
}

@keyframes wingFlap {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(15deg);
    }
}

/* Kuşların gölge efekti */
.bird path {
    filter: drop-shadow(0 5px 15px rgba(74, 158, 255, 0.3));
}

/* Hover efekti */
.hero-illustration:hover .bird {
    animation-play-state: paused;
}

.hero-illustration:hover .wing-right,
.hero-illustration:hover .wing-left {
    animation-play-state: running;
    animation-duration: 0.5s;
}

/* Yatay ekranlar için düzenleme */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-content {
        padding: 100px 0 40px;
    }

    .hero-illustration {
        max-width: 300px;
    }
}

/* Normal görünüm için logo ve giriş yap */
.main-header>.logo,
.main-header>.right-menu {
    display: flex;
    align-items: center;
}
#contactForm{
    z-index: 1000;
}