@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}

html,
body {
    scroll-behavior: auto;
    scroll-padding-top: 80px;
}

.navbar {
    background: #121211;
    padding: 0;
    display: flex;
    justify-content: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 64px;
    /* App'deki gibi sabit yükseklik */
    min-height: 64px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0;
    box-sizing: border-box;
}

.navbar::after {
    display: none;
}

.navbar-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    margin: 0;
    height: 100%;
    /* Tam yükseklik */
    box-sizing: border-box;
}

.brand {
    color: #62F962;
    /* App'deki gibi açık yeşil */
    text-decoration: none;
    font-size: 26px;
    font-weight: 700;
    line-height: 50px;
    /* Logo ile aynı yükseklik için */
    display: flex;
    /* Flex ekledik */
    align-items: center;
    /* Dikey hizalama */
    /* Titremeyi önlemek için eklenenler */
    transition: none !important;
    transform: none !important;
    animation: none !important;
    padding: 0 !important;
    padding-top: 9px !important;
    margin: 0 !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    /* Font stabilitesi için ek kurallar */
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    letter-spacing: -0.5px;
    font-display: swap !important;
    /* Layout stabilitesi */
    min-height: 60px !important;
    width: auto !important;
    flex-shrink: 0 !important;
}

/* .brand içindeki resim için stiller ve titreme önlemleri */
.brand img {
    height: 50px !important;
    width: auto !important;
    margin: 0 4px 0 0 !important;
    /* Sağ boşluk, diğerleri sıfır */
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    opacity: 1 !important;
    transition: none !important;
    transform: none !important;
    animation: none !important;
    display: block !important;
    /* Resmin satır içi hizalama sorunlarını önler */
    flex-shrink: 0 !important;
    object-fit: contain !important;
    /* Resim yükleme stabilitesi */
    min-width: 50px !important;
    max-width: 50px !important;
}

/* Etkileşim durumlarında .brand stilinin sabit kalmasını sağla */
.brand:hover,
.brand:focus,
.brand:active {
    color: #62F962 !important;
    /* App'deki gibi açık yeşil */
    text-decoration: none !important;
    /* Orijinal alt çizgiyi koru veya olmamasını sağla */
    /* Diğer font, boyut vs. özellikler .brand temel stilinden miras alınır ve değişmemelidir. */
    transform: none !important;
    transition: none !important;
    padding-top: 9px !important;
}

/* Etkileşim durumlarında .brand img stilinin sabit kalmasını sağla */
/* Temel .brand img kurallarında zaten !important kullanıldığı için bu kısım ekstra güvence sağlar */
.brand img:hover,
.brand img:focus,
.brand img:active {
    height: 50px !important;
    transform: none !important;
    transition: none !important;
    margin: 0 4px 0 0 !important;
    opacity: 1 !important;
    /* Diğer padding, border, transform, animation gibi özellikler zaten !important ile tanımlı */
}

/* Sayfa yükleme sırasında brand stabilitesi için ek kurallar */
.brand,
.brand * {
    will-change: auto !important;
    backface-visibility: hidden !important;
    perspective: 1000px !important;
    transform-style: preserve-3d !important;
}

.auth-buttons {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    /* Boşluğu azalttık (0.8rem'den 0.3rem'e) */
}

.auth-buttons a {
    padding: 0.5rem 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-size: 1.2rem;
    display: inline-block;
}

.auth-divider {
    color: rgba(255, 255, 255, 0.3);
    margin: 0 0.5rem;
    font-size: 1.8rem;
    font-weight: 300;
}

/* Önceki ayraç stilini kaldır */
.auth-buttons .login-btn::after {
    display: none;
}

.login-btn,
.signup-btn {
    background-color: transparent;
    color: #ffffff;
    border: none;
    text-decoration: none;
    font-weight: 500;
}

.signup-btn {
    background-color: transparent;
}

/* Login/Signup butonları için hover stil */
.login-btn:hover,
.signup-btn:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.url-shortener {
    max-width: 1200px;
    /* 1400px'den 1200px'e düşürdük */
    margin: 2rem auto 2rem;
    padding: 0 1rem;
    text-align: center;
    width: 100%;
}

.url-shortener h1 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    text-align: left;
}

.shortener-container {
    background-color: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border: none;
    margin-left: 0;
}

#shortener-form {
    display: flex;
    flex-direction: column;
    /* Dikey yönde hizalama */
    gap: 1rem;
    margin-bottom: 1rem;
}

#long-url {
    width: 100%;
    min-width: 200px;
    padding: 0.8rem;
    border: 1px solid #212529;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: white;
}

#long-url:focus {
    border-color: #ffffff;
    outline: none;
    background-color: rgba(2, 54, 130, 0.05);
}

#long-url:hover {
    border-color: #ffffff;
    background-color: rgba(2, 54, 130, 0.05);
}

#long-url.error {
    border: 1px solid #ff3b3b;
    border-radius: 8px;
    background-color: #fff;
}

#shortener-form button,
.upload-button {
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    width: 150px;
    padding: 0.8rem;
    white-space: nowrap;
}

#shortener-form button i,
.upload-button i {
    font-size: 1rem;
}

button {
    background-color: #ffffff;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
}

button:hover {
    background-color: #ffffff;
}

.result {
    display: none;
    margin-top: 1rem;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.result.active {
    display: flex;
}

#short-url {
    padding: 0.8rem;
    border: 2px solid #ffffff;
    border-radius: 4px;
    font-size: 1rem;
    width: 60%;
    background-color: white;
}

/* Footer stilleri */
.footer {
    background-color: #262626;
    color: #ffffff;
    padding: 3rem 2rem 3rem;
    /* Alt padding'i 2rem'den 3rem'e çıkardık */
    margin: 0;
    width: 100%;
    margin-top: auto;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-nav {
    display: flex;
    justify-content: space-around;
    width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Tüm footer nav linklerini eşit aralıklarla dağıt */
.footer-nav a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-block;
    text-align: center;
    padding: 0 10px;
    margin: 0 auto;
}

/* Önceki margin ayarlarını kaldır */
.footer-nav:first-child a:nth-child(1),
.footer-nav:first-child a:nth-child(2),
.footer-nav:first-child a:nth-child(3),
.footer-nav:last-child a:nth-child(1),
.footer-nav:last-child a:nth-child(2),
.footer-nav:last-child a:nth-child(3) {
    margin: 0;
}

.footer-divider {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.5rem 2rem;
    position: relative;
    height: 2.5rem;
}

.copyright {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-left: auto;
    display: flex;
    align-items: center;
    height: 2.5rem;
}

.social-section {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.social-icons {
    display: flex;
    gap: 0.8rem;
}

.social-icons a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.follow-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

/* Mobil cihazlar için responsive tasarım */
@media (max-width: 768px) {
    .footer-top {
        align-items: center;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .footer-nav a {
        text-align: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        height: auto;
        padding: 1rem 2rem;
    }

    .social-section {
        justify-content: center;
        width: 100%;
        margin: 0;
        flex-direction: row;
        /* Yatay hizalama */
        gap: 0.8rem;
        /* Boşluk miktarı */
        align-items: center;
        /* Dikey ortalama */
    }

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

    .copyright {
        margin: 0;
        justify-content: center;
        width: 100%;
        height: auto;
        text-align: center;
    }
}

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background-color: #121211;
    /* Kırık beyaz arka plan rengi */
}

main {
    padding-top: 4rem;
    margin: 0 2rem;
    flex: 1;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
}

/* File Transfer stilleri */
.file-input-container {
    border: none;
    border-radius: 8px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    margin-bottom: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    background-color: rgba(2, 54, 130, 0.02);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.file-input-container:hover {
    background-color: rgba(2, 54, 130, 0.05);
    border-color: #ffffff;
}

.file-input-container.highlight {
    background-color: rgba(2, 54, 130, 0.08);
    border-color: #ffffff;
}

.file-input-container.error {
    border-color: #dc3545;
}

#file-input {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
}

.file-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
}

.file-label .file-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
}

.file-label .file-name {
    font-weight: 500;
    color: #ffffff;
}

.file-label .file-size {
    font-size: 0.9rem;
    color: #6c757d;
}

.file-label .file-status {
    font-size: 0.9rem;
    color: #28a745;
    margin-top: 0.3rem;
}

.file-label i {
    font-size: 2rem;
    margin-bottom: 0.3rem;
    color: #ffffff;
}

.file-label span {
    color: #ffffff;
}

.file-size-limit {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.file-list {
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.file-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 1rem;
    background-color: white;
    border-radius: 6px;
    border: 0.5px solid #212529;
    /* Rengi #212529 yaptık */
    transition: all 0.2s ease;
}

.file-item:hover:not(.action-hover) {
    border-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.file-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.file-name {
    font-weight: 500;
    color: #333;
}

.file-size {
    color: #666;
    font-size: 0.9rem;
}

.remove-file {
    color: #dc3545;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s ease;
}

.remove-file:hover {
    color: #c82333;
}

.upload-progress {
    display: none;
    margin-top: 1.5rem;
}

.upload-progress.active {
    display: block;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background-color: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.progress {
    width: 0;
    height: 100%;
    background-color: #ffffff;
    transition: width 0.3s ease;
}

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

.progress-text {
    color: #ffffff;
    font-weight: 500;
}

.progress-status {
    color: #666;
    font-size: 0.9rem;
}

.download-result {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    border: 0.5px solid #212529;
    /* Rengi #212529 yaptık */
}

.download-info {
    text-align: center;
}

.download-info p {
    margin: 0.5rem 0;
    color: #ffffff;
}

.download-link-container {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.download-link {
    width: 100%;
    max-width: 400px;
    padding: 0.8rem;
    border: 2px solid #ffffff;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #ffffff;
    background-color: white;
}

.copy-link-btn {
    padding: 0.8rem;
    background-color: #ffffff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.copy-link-btn:hover {
    background-color: #ffffff;
}

.tool-container {
    display: flex;
    gap: 4rem;
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 0;
}

.tool-section {
    min-width: 0;
    text-align: left;
    margin-bottom: 15px;
}

/* Link kısaltma bölümü için 2/3 genişlik */
.tool-section:first-child {
    flex: 2;
    /* 2/3 oranı için */
}

/* Dosya transfer bölümü için 1/3 genişlik */
.tool-section:last-child {
    flex: 1;
    /* 1/3 oranı için */
}

/* Mobil görünüm için */
@media (max-width: 768px) {
    .url-shortener {
        padding: 0;
    }

    .tool-container {
        flex-direction: column;
        padding: 0 1rem;
        /* Mobilde her iki yanda padding */
        gap: 3rem;
    }

    /* Mobilde tam genişlik */
    .tool-section:first-child,
    .tool-section:last-child {
        flex: 1;
    }

    .shortener-container {
        margin-left: -1rem;
        /* Mobilde daha az negatif margin */
    }
}

/* Auth sayfaları için stiller */
.auth-container {
    padding: 6rem 1.5rem;
    /* Yanlarda 1.5rem padding */
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 4rem);
    width: 100%;
    max-width: 1200px;
}

.auth-box {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    border: none;
}

.auth-box h1 {
    text-align: center;
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    /* Tüm auth kartları için aynı boyut */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.auth-box h1 i {
    color: #ffffff;
    /* Success sayfasındaki yeşil (#198754) yerine başlık rengi */
    margin-right: 0.5rem;
}

/* Success sayfası için özel stil */
.auth-box h1 i.fa-circle-check {
    color: #198754;
    /* Sadece success sayfasındaki onay ikonu yeşil kalsın */
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #333;
    font-weight: 500;
}

.form-group input {
    padding: 0.8rem;
    border: 2px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input:focus {
    border-color: #ffffff;
    outline: none;
}

.password-input {
    position: relative;
    margin-bottom: 0.5rem;
}

.password-input input {
    width: 100%;
    padding-right: 2.5rem;
}

.toggle-password {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #666;
    font-size: 1.2rem;
}

.toggle-password:hover {
    color: #ffffff;
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    /* Elemanları iki yana yay */
    align-items: center;
    /* Dikey ortala */
    width: 100%;
    /* Tam genişlik */
    margin-bottom: 1rem;
    /* Alt boşluk */
}

.remember-me {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.forgot-password {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
}

.forgot-password:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

.auth-button {
    background-color: #ffffff;
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.auth-button:hover {
    background-color: #ffffff;
}

.auth-redirect {
    text-align: center;
    margin-top: 1.5rem;
    color: #666;
}

.auth-redirect a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.terms {
    font-size: 0.9rem;
}

.terms a {
    color: #ffffff;
    text-decoration: none;
}

/* Mobil görünüm için düzenlemeler */
@media (max-width: 480px) {
    .auth-container {
        padding: 6rem 2rem;
        /* Yanlarda daha fazla boşluk */
        min-height: calc(100vh - 4rem);
    }

    .auth-box {
        padding: 1.5rem;
        width: 90%;
        /* Genişliği sınırla */
        margin: 0 auto;
        /* Ortalamak için */
    }

    .form-group input {
        width: 100%;
        /* Input genişliğini ayarla */
    }
}

/* Daha küçük ekranlar için ek düzenleme */
/* Mobile-First Optimizations */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .section-subtitle {
        font-size: 0.85rem;
    }

    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.85rem;
        max-width: 220px;
    }

    .final-cta-button {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        max-width: 220px;
    }

    .plan-badge {
        padding: 0.5rem 0.8rem;
        max-width: 240px;
    }

    .plan-badge-icon {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .plan-badge-value {
        font-size: 0.8rem;
    }

    .plan-badge-label {
        font-size: 0.7rem;
    }

    .feature-card {
        padding: 1.2rem;
    }

    .step-card {
        padding: 1.2rem;
    }

    .faq-question {
        padding: 16px 18px;
    }

    .faq-question h3 {
        font-size: 0.85rem;
    }

    .faq-answer p {
        padding: 12px 18px 16px 18px;
        font-size: 0.8rem;
    }



    .social-link {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        line-height: 35px;
    }
}

/* Touch-friendly optimizations */
@media (hover: none) and (pointer: coarse) {

    .cta-button,
    .final-cta-button,
    .contact-option,
    .newsletter-submit {
        min-height: 44px;
        min-width: 44px;
    }

    .faq-question {
        min-height: 44px;
    }

    .social-link {
        min-height: 44px;
        min-width: 44px;
    }

    .plan-badge {
        min-height: 44px;
    }

    /* Disable hover effects on touch devices */
    .feature-card:hover,
    .step-card:hover,
    .testimonial-card:hover,
    .trust-card:hover,
    .update-card:hover,
    .integration-card:hover,
    .proof-item:hover,
    .community-card:hover,
    .partner-card:hover {
        transform: none;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    }
}

/* Footer linkleri için hover stil */
.footer-nav a,
.social-icons a {
    text-decoration: none;
}

.footer-nav a:hover,
.social-icons a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Tüm eski hover efektlerini kaldır */
.login-btn::after,
.signup-btn::after,
.footer-nav a::after,
.social-icons a::after {
    display: none;
}

/* Navbar divider için yeni stil */
.navbar-divider {
    position: fixed;
    top: 4rem;
    /* Navbar'ın yüksekliğine göre ayarla */
    left: 0;
    width: 100%;
    border: none;
    border-top: 1px solid rgba(2, 54, 130, 0.1);
    margin: 0;
    z-index: 999;
    /* Navbar'dan bir düşük z-index */
}

/* Body'nin en üstüne ekleyin */
html,
body {
    max-width: 100%;
    overflow-x: hidden;
    /* Yatay scroll'u engelle */
}

/* Tool section başlıkları */
.tool-section h1 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding-left: 0;
    margin-left: 0;
}

.slogan {
    text-align: center;
    color: #ffffff;
    font-size: 1.5rem;
    margin-top: 5rem;
    margin-bottom: 3rem;
    font-weight: 500;
}

.back-to-top {
    position: fixed;
    right: 2rem;
    bottom: 3.2rem;
    /* Copyright metniyle aynı hizada olması için ayarladık */
    background-color: #ffffff;
    color: white;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    padding: 0.5rem 0.8rem;
    line-height: 0;
}

.back-to-top i {
    font-size: 1rem;
    /* İkon boyutunu ayarla */
    display: flex;
    /* İkonu flex container yap */
    align-items: center;
    /* Dikey ortala */
    justify-content: center;
    /* Yatay ortala */
    width: 100%;
    /* Tam genişlik */
    height: 100%;
    /* Tam yükseklik */
    margin: 0;
    /* Margin'leri sıfırla */
    padding: 0;
    /* Padding'leri sıfırla */
    color: #000000;
    /* Ok işaretinin rengi */
}

.back-to-top:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Mobil cihazlar için responsive ayar */
@media (max-width: 1200px) {
    .back-to-top {
        right: 2rem;
        bottom: 3.2rem;
        /* Mobilde de aynı mesafe */
    }
}

.contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 20rem);
    margin: 0;
    padding: 0;
    flex: 1;
    width: 100vw;
    /* Viewport genişliği */
    position: relative;
}

.contact-content {
    text-align: center;
    width: 100%;
    max-width: 1200px;
    /* Maximum genişlik */
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -45%);
}

.contact-text,
.contact-email {
    color: #212529;
    font-size: 1.1rem;
    margin: 0.5rem 0;
    line-height: 1.5;
    width: auto;
    /* Auto genişlik */
    text-align: center;
}

.contact-content h1 {
    color: #ffffff;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    /* 0.8rem'den 1.5rem'e çıkardık */
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: auto;
}

.success-text {
    color: #198754 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    /* 0.5rem'den 0.2rem'e düşürdük */
    font-weight: 500;
    margin: 0.6rem auto 0.5rem;
}

.success-text i {
    color: #198754;
    margin-top: 1px;
    font-weight: 600;
}

.contact-email {
    color: #212529;
    font-size: 1.1rem;
    margin: 1.2rem auto;
    line-height: 1.5;
    max-width: 600px;
    font-weight: normal;
}

.contact-email a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.contact-text a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
}

.contact-email a:hover,
.contact-text a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Main elementi için stil */
main.contact-container {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    margin: 0;
    /* Margin'i kaldırdık */
    padding: 0;
    /* Padding'i kaldırdık */
    width: 100%;
    max-width: none;
    /* Max-width'i kaldırdık */
}

/* Hamburger menü ikonu */
.menu-toggle {
    display: none;
    font-size: 1.5rem;
    color: #ffffff;
    cursor: pointer;
    padding: 0.5rem;
}

/* Mobil cihazlar için responsive tasarım */
@media (max-width: 768px) {
    .navbar {
        height: 64px;
        min-height: 64px;
    }

    .navbar-content {
        padding: 0 1rem;
        justify-content: space-between;
        position: relative;
    }

    .brand {
        position: relative;
        z-index: 1001;
    }

    .menu-toggle {
        display: block;
        font-size: 1.3rem;
        padding: 0.3rem;
        position: relative;
        z-index: 1001;
    }

    .menu-icon-close {
        display: none;
    }

    .menu-icon-bars {
        display: block;
    }

    .menu-toggle.active .menu-icon-bars {
        display: none;
    }

    .menu-toggle.active .menu-icon-close {
        display: block;
    }

    .auth-buttons {
        position: fixed;
        top: 64px;
        /* Navbar yüksekliği */
        right: -100%;
        /* Başlangıçta gizli */
        width: 180px;
        background-color: #1a1a1a;
        padding: 1rem;
        flex-direction: column;
        gap: 0.8rem;
        transition: right 0.3s ease;
        box-shadow: -2px 2px 10px rgba(0, 0, 0, 0.3);
        z-index: 999;
        border-radius: 0 0 8px 8px;
    }

    .auth-buttons.active {
        right: 0;
        /* Menü açıldığında görünür */
    }

    .auth-buttons a {
        width: 100%;
        text-align: center;
        padding: 0.6rem 0.8rem;
        font-size: 0.9rem;
        border-radius: 4px;
        transition: background-color 0.3s ease;
    }

    .auth-buttons a:hover {
        background-color: transparent;
        text-decoration: underline;
        text-underline-offset: 3px;
    }

    .auth-divider {
        display: block;
        /* Mobilde yatay çizgiyi göster */
        width: 80%;
        height: 1px;
        background-color: rgba(255, 255, 255, 0.2);
        margin: 0.2rem auto;
        border: none;
        font-size: 0;
        /* Dikine çizgi karakterini gizle */
    }
}

.content-container {
    max-width: 1200px;
    margin: 8rem auto 4rem;
    padding: 0 2rem;
}

.content-container h1 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.content-container p {
    color: #212529;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    /* Paragraflar arası boşluk */
}

.content-container p:last-child {
    margin-bottom: 0;
    /* Son paragrafın alt boşluğunu kaldır */
}

.success-message {
    text-align: center;
    color: #198754;
    margin: 1.5rem 0;
    font-size: 1.1rem;
}

.auth-box h1 i {
    color: #ffffff;
    /* Success sayfasındaki yeşil (#198754) yerine başlık rengi */
    margin-right: 0.5rem;
}

.auth-box .auth-button {
    display: inline-block;
    text-decoration: none;
    text-align: center;
    margin-top: 1rem;
}

.password-help {
    color: #666;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    display: block;
}

.recovery-text {
    text-align: center;
    color: #212529;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.recovery-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.back-button,
.recovery-buttons .auth-button {
    width: 160px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

.back-button {
    background-color: white;
    color: #ffffff;
}

.recovery-buttons .auth-button {
    background-color: #ffffff;
    color: white;
}

.back-button:hover {
    background-color: #f8f9fa;
}

.recovery-buttons .auth-button:hover {
    background-color: #ffffff;
}

.password-tooltip {
    position: relative;
    /* absolute yerine relative */
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.8rem;
    font-size: 0.8rem;
    color: #666;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    margin-top: 0.5rem;
    /* Kutunun altında boşluk */
    display: none;
}

.password-requirements {
    margin-top: 0.5rem;
    display: none;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #666;
    font-size: 0.8rem;
    margin: 0.3rem 0;
}

.requirement i {
    color: #666;
    /* Başlangıçta gri */
    width: 14px;
    /* Sabit genişlik */
    font-size: 6px;
    /* Nokta işareti için daha küçük boyut */
    display: flex;
    align-items: center;
    justify-content: center;
}

.requirement.valid i {
    color: #198754;
    /* Geçerli olduğunda yeşil */
    font-size: 12px;
    /* Tik işareti için normal boyut */
}

/* Profil sayfası stilleri */
.profile-container {
    padding: 6rem 1.5rem;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: calc(100vh - 4rem);
    width: 100%;
    max-width: 1200px;
}

.profile-box {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 600px;
    border: 0.5px solid #212529;
}

.profile-box h1 {
    color: #ffffff;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-info {
    margin-bottom: 2rem;
}

.info-group {
    margin-bottom: 1.5rem;
}

.info-group label {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.info-group p {
    color: #212529;
    font-size: 1rem;
    font-weight: 500;
}

.profile-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.profile-actions button {
    flex: 1;
    padding: 0.8rem;
    border-radius: 4px;
    border: none;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.change-password-btn {
    background-color: #ffffff;
    color: white;
}

.change-password-btn:hover {
    background-color: #ffffff;
}

.delete-account-btn {
    background-color: #dc3545;
    color: white;
}

.delete-account-btn:hover {
    background-color: #bb2d3b;
}

.profile-menu {
    position: relative;
}

.profile-button {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.profile-button i {
    font-size: 1.5rem;
}

.profile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 0.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: none;
}

.profile-menu:hover .profile-dropdown {
    display: block;
}

.profile-dropdown a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    color: #212529;
    text-decoration: none;
    white-space: nowrap;
}

.profile-dropdown a:hover {
    background-color: #f8f9fa;
}

.error-message {
    color: #dc3545;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    display: none;
}

.error-message.visible {
    display: block;
}

.accordion-button:not(.collapsed) {
    background-color: #f8f9fa;
    color: #0d6efd;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: rgba(0, 0, 0, .125);
}

.accordion-item {
    border: 1px solid rgba(0, 0, 0, .125);
    margin-bottom: 10px;
    border-radius: 5px;
}

.accordion-body {
    padding: 1rem 1.25rem;
    background-color: #fff;
}

.url-error-message {
    color: #ff3b3b;
    font-size: 14px;
    margin-top: 8px;
    display: none;
    text-align: left;
    font-weight: 400;
}

.url-error-message.visible {
    display: block;
}

#url-shortener-tool #link-title:focus {
    border-color: #0000FF;
}

/* Email Verification Styles */
.verification-container {
    text-align: center;
    margin-bottom: 30px;
}

.verification-container p {
    margin-bottom: 10px;
    color: #FFFFFF !important;
    font-size: 0.95rem;
}

.verification-container p:last-of-type {
    margin-bottom: 20px;
    color: #4CD84D !important;
    font-weight: 600;
    font-size: 1.2rem;
}

.verification-resend-section {
    text-align: center;
    margin-top: 30px;
    padding: 0;
    background: transparent;
    border: none;
    transition: all 0.3s ease;
}

.verification-resend-section p {
    color: #FFFFFF !important;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

#resend-code-btn {
    background: transparent;
    color: #60f961;
    border: 2px solid #60f961;
    padding: 10px 20px;
    border-radius: 25px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

#resend-code-btn:hover {
    background: #60f961;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(96, 249, 97, 0.3);
}

#resend-code-btn:active {
    transform: translateY(0);
}

#resend-code-btn:disabled,
#resend-code-btn.disabled {
    background: transparent;
    color: #666666;
    border-color: #666666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

#resend-code-btn i {
    font-size: 0.85rem;
}

/* Verification code input styling */
#verification-code {
    text-align: center;
    font-size: 1.5rem;
    letter-spacing: 0.5rem;
    font-family: 'Courier New', monospace;
    background: #1a1a1a;
    border: 2px solid #404040;
    color: #ffffff;
    transition: all 0.3s ease;
}

#verification-code:focus {
    border-color: #60f961;
    box-shadow: 0 0 0 4px rgba(96, 249, 97, 0.15), 0 4px 12px rgba(96, 249, 97, 0.2);
    transform: translateY(-1px);
}

#verification-code::placeholder {
    color: #888888;
    opacity: 0.7;
}

/* Page title with icon */
.page-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
    text-align: center;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
}

.page-title i {
    font-size: 1.2em;
    color: #60f961;
}

/* Notification Styles */
.notification-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #262626;
    border: 2px solid;
    border-radius: 20px;
    padding: 30px 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    text-align: center;
    max-width: 400px;
    width: 90%;
    animation: slideIn 0.3s ease-out;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.notification-container.error {
    border-color: #dc3545;
    box-shadow: 0 8px 30px rgba(220, 53, 69, 0.2);
}

.notification-container.success {
    border-color: #60f961;
    box-shadow: 0 8px 30px rgba(96, 249, 97, 0.2);
}

.notification-icon {
    font-size: 4em;
    margin-bottom: 20px;
    display: block;
}

.notification-container.error .notification-icon {
    color: #dc3545;
}

.notification-container.success .notification-icon {
    color: #60f961;
}

/* Success notification checkmark icon specific styling */
.notification-container.success .fa-check-circle {
    color: #60f961 !important;
}

.notification-title {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.notification-message {
    color: #ffffff;
    margin: 0;
    font-size: 1rem;
    line-height: 1.4;
    opacity: 0.9;
}

.notification-redirect {
    margin-top: 20px;
    color: #cccccc;
    font-size: 0.9rem;
    opacity: 0.8;
}

.notification-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    animation: fadeIn 0.3s ease-out;
    backdrop-filter: blur(2px);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Hero Section Styles */
.hero-section {
    padding: 60px 0 40px;
    min-height: 80vh;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 10;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(98, 249, 98, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(98, 249, 98, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 70vh;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.gradient-text {
    background: linear-gradient(135deg, #62F962 0%, #28a745 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-secondary {
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.4;
    color: #cccccc;
    margin-bottom: 1.5rem;
    max-width: 550px;
    white-space: nowrap;
}

.hero-plan-details {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.plan-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1rem 1.5rem;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.plan-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #62F962, #28a745);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.plan-badge:hover::before {
    transform: scaleX(1);
}

.plan-badge:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(98, 249, 98, 0.15);
    border-color: rgba(98, 249, 98, 0.3);
}

.plan-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(98, 249, 98, 0.1), rgba(40, 167, 69, 0.1));
    border-radius: 12px;
    color: #62F962;
    font-size: 1.2rem;
}

.plan-badge-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.plan-badge-value {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
}

.plan-badge-label {
    color: #cccccc;
    font-size: 0.85rem;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}

.highlight-text {
    color: #62F962;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.highlight-text i {
    font-size: 1rem;
    color: #62F962;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* Hero CTA buton boyutunu download-link sayfasındaki buton hissine yaklaştır */
.hero-cta .cta-button {
    padding: 1.2rem 2.5rem;
    /* final-cta-button ile aynı */
    min-width: 200px;
    /* final-cta-button ile aynı */
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
    justify-content: center;
}

.cta-button.primary {
    background: #62F962;
    color: #000000;
}

.cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(98, 249, 98, 0.4);
}



.hero-visual {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: float 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    top: 50%;
    right: 15%;
    animation: float-center 6s ease-in-out infinite;
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

.card-icon {
    font-size: 2rem;
    color: #62F962;
    margin-bottom: 0.5rem;
}

.card-text {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.9rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

@keyframes float-center {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-35px);
    }
}

@keyframes float-center-fast {

    0%,
    100% {
        transform: translateX(-50%) translateY(0px);
    }

    50% {
        transform: translateX(-50%) translateY(-35px);
    }
}

/* Hero Section Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 110px 0 30px;
        min-height: 60vh;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
        padding: 0 1rem;
        min-height: auto;
        align-items: flex-start;
        padding-top: 0;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 0.8rem;
        line-height: 1.2;
        margin-top: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.2rem;
        white-space: normal;
        line-height: 1.4;
        max-width: 100%;
    }

    .hero-plan-details {
        justify-content: center;
        gap: 0.8rem;
        margin-bottom: 1.5rem;
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
    }

    .plan-badge {
        padding: 1rem 1.5rem;
        width: auto;
        max-width: 180px;
        justify-content: center;
        flex: 1;
        gap: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 16px;
        backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
    }

    .plan-badge-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
        background: linear-gradient(135deg, rgba(98, 249, 98, 0.1), rgba(40, 167, 69, 0.1));
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #62F962;
    }

    .plan-badge-content {
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
    }

    .plan-badge-value {
        color: #ffffff;
        font-size: 0.9rem;
        font-weight: 700;
        line-height: 1;
    }

    .plan-badge-label {
        color: #cccccc;
        font-size: 0.75rem;
        font-weight: 400;
        line-height: 1;
        white-space: nowrap;
    }

    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 0.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 250px;
    }

    .hero-visual {
        height: 150px;
        margin-top: 1.5rem;
        order: 1;
        /* Mobilde animasyonları butonun altına taşı */
    }

    .hero-cta {
        order: 0;
        /* Mobilde butonu üstte tut */
    }

    .floating-card {
        padding: 0.8rem;
        font-size: 0.8rem;
    }

    .floating-card:nth-child(1) {
        top: 10%;
        left: 10%;
    }

    .floating-card:nth-child(2) {
        top: 40%;
        right: 10%;
        animation: float-center 6s ease-in-out infinite;
    }

    .floating-card:nth-child(3) {
        top: 25%;
        left: 50%;
        transform: translateX(-50%);
        animation: float-center-fast 6s ease-in-out infinite;
        animation-delay: 1s;
    }

    .card-icon {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .card-text {
        font-size: 0.8rem;
    }
}

/* Hero Section Tablet (769px - 950px) */
@media (min-width: 769px) and (max-width: 950px) {
    .hero-visual {
        height: 300px;
    }

    .floating-card {
        padding: 0.9rem;
        font-size: 0.85rem;
    }

    .floating-card:nth-child(1) {
        top: 10%;
        left: 0%;
        animation: float-small 6s ease-in-out infinite;
        animation-delay: 0s;
    }

    .floating-card:nth-child(2) {
        top: 50%;
        right: 0%;
        animation: float-small 6s ease-in-out infinite;
        animation-delay: 2s;
    }

    .floating-card:nth-child(3) {
        bottom: 10%;
        left: 50%;
        transform: translateX(-50%);
        animation: float-small-center 6s ease-in-out infinite;
        animation-delay: 4s;
    }

    .card-icon {
        font-size: 1.5rem;
        margin-bottom: 0.4rem;
    }

    .card-text {
        font-size: 0.85rem;
    }

    @keyframes float-small {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-12px);
        }
    }

    @keyframes float-small-center {

        0%,
        100% {
            transform: translateX(-50%) translateY(0px);
        }

        50% {
            transform: translateX(-50%) translateY(-12px);
        }
    }
}

/* Hero Section Narrow Tablet (769px - 855px) - Daha spesifik ayarlar */
@media (min-width: 769px) and (max-width: 855px) {
    .hero-visual {
        height: 350px;
    }

    .floating-card {
        padding: 0.85rem;
        font-size: 0.8rem;
    }

    .floating-card:nth-child(1) {
        top: 8%;
        left: 3%;
        animation: float-tiny 6s ease-in-out infinite;
        animation-delay: 0s;
    }

    .floating-card:nth-child(2) {
        top: 40%;
        right: 3%;
        animation: float-tiny 6s ease-in-out infinite;
        animation-delay: 2s;
    }

    .floating-card:nth-child(3) {
        bottom: 8%;
        left: 15%;
        animation: float-tiny 6s ease-in-out infinite;
        animation-delay: 4s;
    }

    .card-icon {
        font-size: 1.4rem;
        margin-bottom: 0.3rem;
    }

    .card-text {
        font-size: 0.8rem;
    }

    @keyframes float-tiny {

        0%,
        100% {
            transform: translateY(0px);
        }

        50% {
            transform: translateY(-8px);
        }
    }
}

/* Stats Section Styles */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    z-index: 9;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(98, 249, 98, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

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

.stat-card:hover {
    transform: translateY(-5px);
    border-color: rgba(98, 249, 98, 0.3);
    box-shadow: 0 10px 30px rgba(98, 249, 98, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    color: #62F962;
    margin-bottom: 1rem;
}

.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.stat-card .stat-label {
    font-size: 1rem;
    color: #cccccc;
    font-weight: 500;
}

/* Features Section Styles */
.features-section {
    padding: 80px 0;
    background: #0f0f0f;
    position: relative;
    margin-top: 0;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    z-index: 8;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.features-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    flex: 0 0 calc(33.333% - 1.4rem);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #62F962, #28a745);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    color: #62F962;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    min-height: 1.5em;
    /* Başlık hizalaması için */
    display: flex;
    align-items: center;
}

.feature-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
    min-height: 4.8em;
    /* Açıklama hizalaması için (3 satır) */
}

/* CTA Section Styles */
.cta-section {
    padding: 80px 0 60px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    z-index: 5;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(98, 249, 98, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 180px;
    justify-content: center;
}

.cta-button.primary {
    background: #62F962;
    color: #000000;
}

.cta-button.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(98, 249, 98, 0.3);
}

.cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 100px 0;
    background: #0f0f0f;
    position: relative;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(98, 249, 98, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.stars i {
    color: #ffd700;
    font-size: 1rem;
}

.testimonial-text {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: rgba(98, 249, 98, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #62F962;
    font-size: 1.2rem;
}

.author-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.author-title {
    color: #999;
    font-size: 0.9rem;
}

/* Tablet Responsiveness - 2-2-1 Layout */
@media (max-width: 907px) {
    .features-wrapper {
        gap: 1.5rem;
        max-width: 100%;
    }

    .feature-card {
        flex: 0 0 calc(50% - 0.8rem);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 2.5rem;
        margin-bottom: 0.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

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

    .stat-card {
        padding: 1.5rem;
    }

    .stat-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .stat-card .stat-number {
        font-size: 2rem;
    }

    .stat-card .stat-label {
        font-size: 0.9rem;
    }

    .features-section {
        padding: 50px 0;
    }


    /* Mobilde tüm kartları eşit boyut yap */
    .features-wrapper {
        max-width: 100%;
    }

    .feature-card {
        padding: 1rem;
    }

    .feature-icon {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }

    .feature-title {
        font-size: 1rem;
        margin-bottom: 0.6rem;
    }

    .feature-description {
        font-size: 0.85rem;
    }

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

    .step-card {
        padding: 1rem;
        min-height: 180px;
    }

    /* Üçüncü kartı ortala - why choose kartları gibi küçülsün */
    .step-card:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: calc(50% - 0.5rem);
    }

    .step-icon {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }

    .step-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .step-description {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .step-number {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
        top: 12px;
        right: 12px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .cta-button {
        width: 100%;
        max-width: 280px;
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .author-name {
        font-size: 0.9rem;
    }

    .author-title {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {

    /* Mobilde hero CTA tam genişlik ve 300px üst sınır */
    .hero-cta {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-cta .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .section-title {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .section-subtitle {
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .cta-title {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .cta-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }

    .final-cta-title {
        font-size: 2rem;
        line-height: 1.1;
    }

    .final-cta-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }

    .features-wrapper {
        gap: 1rem;
    }

    .feature-card {
        flex: 0 0 calc(50% - 0.5rem);
    }

    .feature-title {
        font-size: 1rem;
        min-height: 2.4em;
        /* Mobilde başlık hizalaması - 2 satıra izin ver */
        align-items: flex-start;
        /* Mobilde üstten hizala */
        margin-bottom: 0.5rem;
    }

    .feature-description {
        font-size: 0.85rem;
        min-height: 3.6em;
        /* Mobilde 3 satır olacak şekilde hizala */
    }

    .faq-question h3 {
        font-size: 0.9rem;
    }

    .faq-answer p {
        font-size: 0.85rem;
    }
}

/* How It Works Section Styles */
.how-it-works-section {
    padding: 60px 0 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    z-index: 7;
}

.how-it-works-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(98, 249, 98, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.steps-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    justify-items: stretch;
    gap: 2rem;
    max-width: 1100px;
    margin: 3rem auto 0;
    width: 100%;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: stretch;
    min-height: 260px;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #62F962, #28a745);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-number {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: #62F962;
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    z-index: 10;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-icon {
    font-size: 3rem;
    color: #62F962;
    margin: 2.5rem 0 1.5rem;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    min-height: 1.5em;
    /* Başlık hizalaması için */
    display: flex;
    align-items: center;
    justify-content: center;
    /* Ortala */
}

.step-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
    min-height: 4.8em;
    /* Açıklama hizalaması için */
}

/* Mobile Spacing Optimizations */
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 40px 0 50px 0;
    }

    .trust-security-section {
        padding: 60px 0;
    }

    .latest-updates-section {
        padding: 60px 0;
    }

    .newsletter-section {
        padding: 40px 0;
    }

    .integration-section {
        padding: 60px 0;
    }

    .comparison-section {
        padding: 60px 0;
    }

    .social-proof-section {
        padding: 60px 0;
    }

    .support-section {
        padding: 60px 0;
    }

    .roadmap-section {
        padding: 60px 0;
    }

    .community-section {
        padding: 60px 0;
    }

    .partners-section {
        padding: 60px 0;
    }

    .final-cta-section {
        padding: 50px 0 60px 0;
    }

    .modern-footer {
        padding-top: 15px;
    }

    .footer-content {
        padding: 30px 0 40px;
    }

    .footer-main {
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .footer-brand {
        padding-left: 0;
        text-align: center;
    }

    .footer-links {
        padding-right: 0;
        gap: 1.5rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-list li {
        margin-bottom: 0.6rem;
    }

    .footer-list a {
        font-size: 0.9rem;
    }
}

/* Trust & Security Section Styles */
.trust-security-section {
    padding: 100px 0;
    background: #0f0f0f;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    z-index: 3;
}

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

.trust-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #62F962, #28a745);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.trust-icon {
    font-size: 2.5rem;
    color: #62F962;
    margin-bottom: 1.5rem;
}

.trust-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.trust-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

/* Mobile Responsiveness for Trust & Security */
@media (max-width: 768px) {
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-card {
        padding: 1.5rem;
    }
}

/* Latest Updates Section Styles */
.latest-updates-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    z-index: 4;
}

.latest-updates-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(98, 249, 98, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.update-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.update-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #62F962, #28a745);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.update-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.update-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #62F962, #28a745);
    color: #000000;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.update-icon {
    font-size: 2.5rem;
    color: #62F962;
    margin: 1rem 0 1.5rem;
}

.update-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.update-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.update-date {
    color: #999;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mobile Responsiveness for Latest Updates */
@media (max-width: 768px) {
    .updates-grid {
        grid-template-columns: 1fr;
    }

    .update-card {
        padding: 1.5rem;
    }

    .update-badge {
        top: 0.5rem;
        right: 0.5rem;
        font-size: 0.7rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Newsletter Section Styles */
.newsletter-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    z-index: 5;
}

.newsletter-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(98, 249, 98, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.newsletter-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.newsletter-form {
    margin-top: 2rem;
}

.input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-input:focus {
    outline: none;
    border-color: #62F962;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-button {
    background: linear-gradient(135deg, #62F962, #28a745);
    color: #000000;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.newsletter-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(98, 249, 98, 0.3);
}

.newsletter-note {
    color: #999;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Mobile Button and Form Optimizations */
@media (max-width: 768px) {
    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .final-cta-button {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        justify-content: center;
    }

    .final-cta-features {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .feature-item {
        font-size: 0.9rem;
    }

    .contact-option {
        width: 100%;
        max-width: 250px;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .support-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
        margin-top: 25px;
    }

    .newsletter-input-group {
        flex-direction: column;
        gap: 0.8rem;
        padding: 0.8rem;
    }

    .newsletter-input {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }

    .newsletter-submit {
        width: 100%;
        height: 45px;
        border-radius: 8px;
        font-size: 0.9rem;
    }

    .newsletter-title {
        font-size: 1.8rem;
    }

    .newsletter-subtitle {
        font-size: 1rem;
    }

    .newsletter-note {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .newsletter-title {
        font-size: 1.8rem;
    }

    .newsletter-subtitle {
        font-size: 1rem;
    }
}

/* Integration Section Styles */
.integration-section {
    padding: 100px 0;
    background: #0f0f0f;
    position: relative;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    z-index: 6;
}

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

.integration-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.integration-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #62F962, #28a745);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.integration-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.integration-icon {
    font-size: 2.5rem;
    color: #62F962;
    margin-bottom: 1.5rem;
}

.integration-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.integration-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.integration-status {
    display: flex;
    justify-content: flex-end;
}

.status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.available {
    background: linear-gradient(135deg, #62F962, #28a745);
    color: #000000;
}

.status-badge.coming-soon {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #000000;
}

/* Mobile Responsiveness for Integration */
@media (max-width: 768px) {
    .integration-grid {
        grid-template-columns: 1fr;
    }

    .integration-card {
        padding: 1.5rem;
    }
}

/* Comparison Section Styles */
.comparison-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    z-index: 7;
}

.comparison-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(98, 249, 98, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.comparison-table {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    margin-top: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.comparison-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: rgba(98, 249, 98, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-feature {
    padding: 1.5rem;
    font-weight: 600;
    color: #ffffff;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-single {
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: #62F962;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-other {
    padding: 1.5rem;
    text-align: center;
    font-weight: 600;
    color: #dc3545;
}

.comparison-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.comparison-row:hover {
    background: rgba(255, 255, 255, 0.02);
}

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

.comparison-row .comparison-feature {
    padding: 1.5rem;
    color: #cccccc;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-row .comparison-single {
    padding: 1.5rem;
    text-align: center;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-row .comparison-other {
    padding: 1.5rem;
    text-align: center;
}

.comparison-row i {
    font-size: 1.2rem;
}

/* Mobile Responsiveness for Comparison */
@media (max-width: 768px) {
    .comparison-table {
        margin: 3rem 1rem;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .comparison-feature,
    .comparison-single,
    .comparison-other {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
    }

    .comparison-row:last-child .comparison-feature,
    .comparison-row:last-child .comparison-single,
    .comparison-row:last-child .comparison-other {
        border-bottom: none;
    }
}

/* Social Proof Section Styles */
.social-proof-section {
    padding: 100px 0;
    background: #0f0f0f;
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    z-index: 8;
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.proof-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.proof-item:hover {
    transform: translateY(-5px);
    border-color: rgba(98, 249, 98, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.proof-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #62F962;
    margin-bottom: 0.5rem;
}

.proof-label {
    color: #cccccc;
    font-size: 1rem;
    font-weight: 500;
}

.proof-logos {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.logo-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #999;
    transition: color 0.3s ease;
}

.logo-item:hover {
    color: #62F962;
}

.logo-item i {
    font-size: 2rem;
}

.logo-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mobile Responsiveness for Social Proof */
@media (max-width: 768px) {
    .social-proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .proof-item {
        padding: 1.5rem;
    }

    .proof-number {
        font-size: 2rem;
    }

    .proof-logos {
        gap: 2rem;
    }

    .logo-item i {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .social-proof-grid {
        grid-template-columns: 1fr;
    }

    .proof-logos {
        gap: 1.5rem;
    }
}





/* Support Section Styles */
.support-section {
    padding: 100px 0;
    background: #0f0f0f;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    z-index: 2;
}

.support-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.contact-option {
    background: linear-gradient(135deg, #60f961, #4cd84d);
    color: #000000;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.contact-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(96, 249, 97, 0.3);
    text-decoration: none;
    color: #000000;
}

.contact-option.secondary {
    background: transparent;
    color: #60f961;
    border: 2px solid #60f961;
}

.contact-option.secondary:hover {
    background: rgba(96, 249, 97, 0.1);
    color: #60f961;
    border: 2px solid #60f961;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(96, 249, 97, 0.2);
}

/* Mobile Responsiveness for Support */
@media (max-width: 768px) {
    .support-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .contact-option {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* Roadmap Section Styles */
.roadmap-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    z-index: 11;
}

.roadmap-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(98, 249, 98, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.roadmap-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative;
}

.roadmap-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, #62F962, #28a745);
    transform: translateX(-50%);
}

.roadmap-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.roadmap-item:nth-child(even) {
    flex-direction: row-reverse;
}

.roadmap-phase {
    background: linear-gradient(135deg, #62F962, #28a745);
    color: #000000;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
    z-index: 2;
    position: relative;
}

.roadmap-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    margin: 0 2rem;
    flex: 1;
    max-width: 400px;
    transition: all 0.3s ease;
}

.roadmap-content:hover {
    transform: translateY(-5px);
    border-color: rgba(98, 249, 98, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.roadmap-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.roadmap-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.roadmap-status {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.roadmap-status.completed {
    background: linear-gradient(135deg, #62F962, #28a745);
    color: #000000;
}

.roadmap-status.in-progress {
    background: linear-gradient(135deg, #ffd700, #ffa500);
    color: #000000;
}

.roadmap-status.planned {
    background: rgba(255, 255, 255, 0.1);
    color: #cccccc;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Mobile Responsiveness for Roadmap */
@media (max-width: 768px) {
    .roadmap-timeline::before {
        left: 2rem;
    }

    .roadmap-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 2rem;
    }

    .roadmap-phase {
        margin-bottom: 1rem;
    }

    .roadmap-content {
        margin: 0;
        max-width: none;
        width: 100%;
    }
}

/* Community Section Styles */
.community-section {
    padding: 100px 0;
    background: #0f0f0f;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    z-index: 9;
}

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

.community-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.community-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #62F962, #28a745);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.community-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.community-icon {
    font-size: 3rem;
    color: #62F962;
    margin-bottom: 1.5rem;
}

.community-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.community-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.community-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.stat {
    background: rgba(98, 249, 98, 0.1);
    color: #62F962;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.community-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #62F962, #28a745);
    color: #000000;
    text-decoration: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.community-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(98, 249, 98, 0.3);
    color: #000000;
}

/* Mobile Responsiveness for Community */
@media (max-width: 768px) {
    .community-grid {
        grid-template-columns: 1fr;
    }

    .community-card {
        padding: 1.5rem;
    }

    .community-stats {
        flex-direction: column;
        align-items: center;
    }
}

/* Partners Section Styles */
.partners-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    z-index: 10;
}

.partners-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(98, 249, 98, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

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

.partner-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.partner-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #62F962, #28a745);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.partner-icon {
    font-size: 2.5rem;
    color: #62F962;
    margin-bottom: 1.5rem;
}

.partner-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.partner-description {
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

/* Mobile Responsiveness for Partners */
@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .partner-card {
        padding: 1.5rem;
    }
}

/* Final CTA Section Styles */
.final-cta-section {
    padding: 80px 0 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    position: relative;
    text-align: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(98, 249, 98, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.final-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.final-cta-subtitle {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.final-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
    justify-content: center;
}

.final-cta-button.primary {
    background: #62F962;
    color: #000000;
}

.final-cta-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(98, 249, 98, 0.4);
}

.final-cta-button.secondary {
    background: transparent;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.3);
}

.final-cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

.final-cta-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #62F962;
    font-weight: 500;
    font-size: 1rem;
}

.feature-item i {
    font-size: 1.1rem;
}

/* Mobile Responsiveness for Final CTA */
@media (max-width: 768px) {
    .final-cta-title {
        font-size: 1.8rem;
    }

    .final-cta-subtitle {
        font-size: 1rem;
    }

    .final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .final-cta-button {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .final-cta-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}

/* Kartları ortala - Grid container'lar için */
.features-grid,
.steps-grid,
.trust-grid,
.updates-grid,
.integration-grid,
.community-grid,
.partners-grid,
.testimonials-grid,
.stats-grid,
.social-proof-grid {
    justify-items: center;
}

/* Özel kart ortalama stilleri */
.floating-card {
    text-align: center;
}

.faq-item {
    text-align: left;
}

.faq-question {
    text-align: left;
}

.faq-answer {
    text-align: left;
}



.testimonial-card {
    text-align: left;
}

.testimonial-author {
    justify-content: flex-start;
}



.integration-card {
    text-align: left;
}

.integration-status {
    justify-content: flex-end;
}

.trust-card {
    text-align: left;
}

.update-card {
    text-align: left;
}

.feature-card {
    text-align: left;
}

.step-card {
    text-align: center;
}

.stat-card {
    text-align: center;
}

.proof-item {
    text-align: center;
}

.partner-card {
    text-align: center;
}

.community-card {
    text-align: center;
}

.comparison-table {
    margin: 3rem auto;
}

.comparison-header,
.comparison-row {
    text-align: center;
}

.comparison-feature {
    text-align: left;
}

/* Enhanced Section Elevation and Shadows */
.section-elevation {
    position: relative;
    transition: all 0.3s ease;
}

.section-elevation:hover {
    transform: translateY(-2px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

/* Section Divider Enhancement */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(98, 249, 98, 0.3), transparent);
    margin: 0;
    border: none;
    opacity: 0.6;
}

/* Enhanced Card Shadows */
.feature-card,
.step-card,
.pricing-card,
.testimonial-card,
.trust-card,
.update-card,
.integration-card,
.comparison-table,
.proof-item,
.community-card,
.partner-card {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover,
.step-card:hover,
.pricing-card:hover,
.testimonial-card:hover,
.trust-card:hover,
.update-card:hover,
.integration-card:hover,
.comparison-table:hover,
.proof-item:hover,
.use-case-card:hover,
.community-card:hover,
.partner-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

@media (max-width: 480px) {
    .final-cta-title {
        font-size: 1.8rem;
    }

    .final-cta-subtitle {
        font-size: 1rem;
    }
}

/* Modern Footer Styles */
.modern-footer {
    background: #1a1a1a;
    position: relative;
    margin-top: 0;
    overflow: hidden;
    padding-top: 20px;
    box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.6);
    z-index: 12;
}



.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0 60px;
    position: relative;
    z-index: 2;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 5rem;
    margin-bottom: 4rem;
    align-items: start;
}

.footer-brand {
    max-width: 400px;
    padding-left: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: nowrap;
}

.footer-logo img {
    width: auto;
    height: 50px;
    margin-right: 4px;
}

.footer-logo span {
    font-size: 26px;
    font-weight: 700;
    color: #62F962;
    line-height: 50px;
    padding-top: 3px;
    font-family: 'Inter', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif !important;
    letter-spacing: -0.5px;
}

.footer-tagline {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.footer-brand .copyright {
    color: #999;
    font-size: 0.9rem;
    margin-top: 1.5rem;
    line-height: 1.4;
    text-align: center;
}

.footer-social {
    margin-top: 2rem;
}

.social-label {
    display: block;
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #cccccc;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-1px);
}

.social-link i {
    font-size: 1.2rem;
    z-index: 1;
    position: relative;
}

.social-link {
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    line-height: 45px;
    vertical-align: middle;
}

/* Connect section specific styles */
.footer-section .footer-social {
    margin-top: 0;
    width: 100%;
}

.footer-section .footer-social .social-links {
    margin-bottom: 1.5rem;
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    justify-content: flex-start;
}

.footer-section .copyright {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    justify-items: start;
    padding: 0 2rem;
}



.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #62F962, #28a745);
    border-radius: 1px;
}

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
    overflow: visible;
}

.footer-list li {
    margin-bottom: 0.8rem;
}

.footer-list a {
    color: #cccccc;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 0;
    display: inline-block;
    backface-visibility: hidden;
}

.footer-list a::before {
    content: '';
    position: absolute;
    left: -15px;
    /* Çizgiyi dışarıda başlat */
    top: 50%;
    width: 0;
    height: 1px;
    background: #62F962;
    transition: all 0.3s ease;
    transform: translateY(-50%);
    opacity: 0;
    /* Başlangıçta görünmez */
}

.footer-list a:hover {
    color: #62F962;
    padding-left: 15px;
}

.footer-list a:hover::before {
    width: 10px;
    opacity: 1;
    left: 0;
}

.footer-newsletter {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.footer-newsletter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #62F962, #28a745);
}

.newsletter-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.newsletter-description {
    color: #cccccc;
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.6;
}

.newsletter-form {
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.newsletter-input-group:focus-within {
    border-color: #62F962;
    box-shadow: 0 0 0 3px rgba(98, 249, 98, 0.1);
}

.newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    color: #ffffff;
    padding: 0.8rem 1.2rem;
    font-size: 1rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: #999;
}

.newsletter-submit {
    background: linear-gradient(135deg, #62F962, #28a745);
    color: #000000;
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(98, 249, 98, 0.3);
}

.newsletter-submit i {
    font-size: 1rem;
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    margin-top: 2rem;
}

.footer-bottom-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.copyright {
    color: #999;
    font-size: 0.9rem;
    margin: 0;
    text-align: center;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legal-links a {
    color: #999;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.legal-links a:hover {
    color: #62F962;
}

.separator {
    color: #666;
    font-size: 0.8rem;
}

.footer-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-stats .stat-item {
    text-align: center;
}

.footer-stats .stat-number {
    display: block;
    color: #62F962;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.footer-stats .stat-label {
    color: #999;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* Tablet Responsiveness for Modern Footer */
@media (max-width: 1086px) {
    .footer-main {
        display: flex;
        flex-direction: column;
        gap: 3rem;
        margin-bottom: 3rem;
    }

    .footer-brand {
        order: 2;
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0;
        margin: 1rem auto 0 auto;
        text-align: center;
    }

    .footer-logo {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.5rem;
        width: auto;
    }

    .footer-logo img {
        /* margin-right: 0; kaldırıldı, web stili geçerli */
        display: block;
    }

    .footer-brand .copyright {
        text-align: center;
        width: 100%;
        margin-top: 0.5rem;
        display: block;
    }

    .footer-links {
        order: 1;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
        justify-items: center;
    }

    .footer-section {
        width: fit-content;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

    .footer-title {
        text-align: left;
        width: 100%;
    }

    .footer-title::after {
        left: 0;
        transform: none;
    }
}

/* Mobile Responsiveness for Modern Footer */

@media (max-width: 768px) {
    .footer-links {
        display: grid;
        grid-template-columns: 1fr auto 1fr auto 1fr;
        grid-template-rows: auto auto;
        gap: 2rem 0;
        text-align: left;
        justify-content: center;
        align-items: start;
        justify-items: start;
        padding: 0 16px;
        margin: 0 auto;
        width: 100%;
        max-width: 100%;
    }

    .footer-links .footer-section:nth-child(1) {
        grid-column: 2;
        grid-row: 1;
    }

    .footer-links .footer-section:nth-child(2) {
        grid-column: 4;
        grid-row: 1;
    }

    .footer-links .footer-section:nth-child(3) {
        grid-column: 2;
        grid-row: 2;
    }

    .footer-links .footer-section:nth-child(4) {
        grid-column: 4;
        grid-row: 2;
    }

    .footer-title::after {
        left: 0;
        transform: none;
    }

    .footer-list a:hover {
        color: #62F962;
        transform: translateX(15px);
        padding-left: 0;
    }

    .footer-list a:hover::before {
        width: 10px;
        opacity: 1;
    }

    .footer-section {
        min-width: 120px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
    }

    /* Connect section - sosyal medya ikonlarının başlık altında kalmasını sağla */
    .footer-section .footer-social {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-section .footer-social .social-links {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 0.8rem;
        margin: 0;
    }

    .footer-list {
        width: 100%;
        text-align: left;
        padding: 0;
        margin: 0;
    }

}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    z-index: 3;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(98, 249, 98, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(98, 249, 98, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.faq-grid {
    display: grid;
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.faq-item:hover {
    border-color: rgba(98, 249, 98, 0.3);
    box-shadow: 0 12px 40px rgba(98, 249, 98, 0.2);
    transform: translateY(-2px);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
    background-color: rgba(255, 255, 255, 0.03);
}

.faq-question:hover {
    background-color: rgba(98, 249, 98, 0.08);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    padding-right: 20px;
}

.faq-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #62F962;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.faq-icon i {
    font-size: 14px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: rgba(98, 249, 98, 0.05);
}

.faq-answer p {
    margin: 0;
    padding: 20px 28px 24px 28px;
    color: #cccccc;
    line-height: 1.6;
    font-size: 1rem;
}

/* FAQ Item Active States */
.faq-item.active {
    border-color: rgba(98, 249, 98, 0.3);
    box-shadow: 0 12px 40px rgba(98, 249, 98, 0.3);
}

.faq-item.active .faq-question {
    background-color: rgba(98, 249, 98, 0.1);
    border-bottom-color: rgba(98, 249, 98, 0.2);
}

.faq-item.active .faq-icon i {
    transform: rotate(45deg);
    color: #62F962;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    background-color: rgba(98, 249, 98, 0.08);
}

/* FAQ Responsive Design */
@media (max-width: 768px) {
    .faq-section {
        padding: 50px 0;
    }

    .faq-grid {
        margin: 0 auto;
        padding: 0 1rem;
        gap: 15px;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-question h3 {
        font-size: 0.95rem;
        padding-right: 12px;
        line-height: 1.3;
    }

    .faq-answer p {
        padding: 14px 20px 18px 20px;
        font-size: 0.9rem;
        line-height: 1.5;
    }

    .faq-icon {
        width: 18px;
        height: 18px;
    }

    .faq-icon i {
        font-size: 11px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .faq-grid {
        padding: 0 0.5rem;
    }

    .faq-question {
        padding: 18px 20px;
    }

    .faq-answer p {
        padding: 14px 20px 18px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 18px;
    font-weight: 600;
    color: #6c757d;
}

.amount {
    font-size: 48px;
    font-weight: 800;
    color: #62F962;
    line-height: 1;
}

.period {
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 30px;
}

/* POPUP STİLLERİ - TEMİZ VE TEK EKRAN */

/* Body scroll kontrolü */
body.notification-open {
    overflow: hidden !important;
    position: fixed !important;
    width: 100% !important;
}

/* Popup overlay - tam ekran kapla ve ortala */
.notification-overlay {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.7) !important;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
    box-sizing: border-box !important;
}

/* TEK POPUP KUTUSU */
.notification-popup {
    background: #262626 !important;
    border-radius: 20px !important;
    padding: 30px !important;
    max-width: 400px !important;
    width: 90% !important;
    text-align: center !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5) !important;
    position: relative !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    animation: slideIn 0.3s ease !important;
}

/* İkon stilleri */
.notification-icon {
    font-size: 2.5rem !important;
    margin-bottom: 15px !important;
    display: block !important;
}

/* Popup türlerine göre icon renkleri */
.notification-popup .notification-icon {
    color: #dc3545 !important;
    /* Default kırmızı */
}

.notification-popup.success .notification-icon {
    color: #60f961 !important;
}

.notification-popup.success {
    border-left: none !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.notification-popup.error .notification-icon {
    color: #ffc107 !important;
}

.notification-popup.error {
    border-left: none !important;
}

/* Başlık stilleri */
.notification-title {
    color: #ffffff !important;
    font-size: 1.3rem !important;
    font-weight: 600 !important;
    margin-bottom: 10px !important;
}

/* Mesaj stilleri */
.notification-message {
    color: #cccccc !important;
    font-size: 1rem !important;
    line-height: 1.4 !important;
    margin-bottom: 20px !important;
}

/* Yönlendirme mesajı */
.notification-redirect {
    color: #60f961 !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    margin-top: 15px !important;
}

/* OK butonu */
.notification-close-btn {
    background: #60f961 !important;
    color: #000000 !important;
    border: none !important;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    font-size: 1rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    min-width: 80px !important;
}

.notification-close-btn:hover {
    background: #4cd84d !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 12px rgba(96, 249, 97, 0.3) !important;
}

/* Save butonuna hover efekti - close butonuyla aynı ama transform yok */
#confirm-edit-btn:hover {
    background: #4cd84d !important;
    box-shadow: 0 4px 12px rgba(96, 249, 97, 0.3) !important;
}

/* Cancel butonuna hover efekti - change password sayfasındaki cancel butonu gibi */
#cancel-edit-btn:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}

/* Animasyonlar */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-50px) scale(0.9);
        opacity: 0;
    }

    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Verification screen specific styles */
.verification-container {
    text-align: center;
    margin-bottom: 25px;
    color: #ffffff;
}

.verification-container p {
    margin: 5px 0;
    color: #FFFFFF !important;
}

.verification-container p:first-child {
    font-size: 1rem;
}

.verification-container p:last-child {
    font-weight: 600;
    color: #4CD84D !important;
    font-size: 1.1rem;
}

.verification-resend-section {
    text-align: center;
    margin-top: 20px;
}

.verification-resend-section p {
    color: #FFFFFF !important;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

#resend-code-btn {
    background: transparent;
    color: #60f961;
    border: 1px solid #60f961;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

#resend-code-btn:hover {
    background: #60f961;
    color: #000000;
    transform: translateY(-1px);
}

#resend-code-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

#resend-code-btn.disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* ESKİ KURALLAR TEMİZLENDİ */

/* How It Works Responsive Adjustments */
@media (max-width: 907px) {
    .steps-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem;
        max-width: 100%;
    }

    .step-card {
        padding: 1.6rem;
        min-height: 220px;
    }

    .step-card:nth-child(3) {
        grid-column: 1 / -1;
        justify-self: center;
        max-width: 420px;
    }
}

@media (max-width: 768px) {
    .steps-wrapper {
        gap: 1rem;
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }

    .step-card {
        padding: 1rem;
        min-height: 170px;
    }

    .step-card:nth-child(3) {
        max-width: calc(50% - 0.5rem);
    }

    .step-icon {
        font-size: 1.6rem;
        margin-bottom: 0.6rem;
    }

    .step-title {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }

    .step-description {
        font-size: 0.8rem;
        line-height: 1.4;
        min-height: auto;
    }

    .step-number {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
        top: 12px;
        right: 12px;
    }
}

@media (max-width: 480px) {
    .steps-wrapper {
        grid-template-columns: repeat(2, minmax(120px, 1fr));
        gap: 0.8rem;
    }

    .step-card {
        padding: 0.85rem;
        min-height: 150px;
    }

    .step-card:nth-child(3) {
        max-width: calc(50% - 0.4rem);
    }

    .step-icon {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }

    .step-title {
        font-size: 0.9rem;
    }

    .step-description {
        font-size: 0.78rem;
    }

    .step-number {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
        top: 10px;
        right: 10px;
    }
}

/* Mobile Spacing Optimizations */
@media (max-width: 768px) {
    .how-it-works-section {
        padding: 40px 0 50px 0;
    }

    .trust-security-section {
        padding: 60px 0;
    }

    .latest-updates-section {
        padding: 60px 0;
    }

    .newsletter-section {
        padding: 40px 0;
    }

    .integration-section {
        padding: 60px 0;
    }

    .comparison-section {
        padding: 60px 0;
    }

    .social-proof-section {
        padding: 60px 0;
    }

    .support-section {
        padding: 60px 0;
    }

    .roadmap-section {
        padding: 60px 0;
    }

    .community-section {
        padding: 60px 0;
    }

    .partners-section {
        padding: 60px 0;
    }

    .final-cta-section {
        padding: 50px 0 60px 0;
    }

    .modern-footer {
        padding-top: 15px;
    }

    .footer-content {
        padding: 30px 0 40px;
    }

    .footer-main {
        gap: 2rem;
        margin-bottom: 2.5rem;
    }

    .footer-brand {
        padding-left: 0;
        text-align: center;
    }

    .footer-links {
        padding-right: 0;
        gap: 1.5rem;
    }

    .footer-section {
        text-align: center;
    }

    .footer-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .footer-list li {
        margin-bottom: 0.6rem;
    }

    .footer-list a {
        font-size: 0.9rem;
    }
}