/* =========================================
   DEPOSAY - OPTİMİZE EDİLMİŞ CSS
   ========================================= */

/* 1. CSS DEĞİŞKENLERİ */
:root {
    --primary: #204277;
    --primary-light: #3a62a0;
    --secondary: #e63946;
    --dark: #111827;
    --bg-light: #f8faff;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: 0.3s ease;
}

/* 2. GENEL SIFIRLAMA */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background-color: var(--bg-light);
    background-image:
        linear-gradient(rgba(32, 66, 119, 0.03) 2px, transparent 2px),
        linear-gradient(90deg, rgba(32, 66, 119, 0.03) 2px, transparent 2px);
    background-size: 50px 50px;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 3. NAVBAR */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.4rem;
    color: var(--primary);
    letter-spacing: -0.5px;
    white-space: nowrap;
    cursor: pointer;
    user-select: none;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
}

.nav-links a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary);
    transition: var(--transition);
}

.nav-links a:not(.btn-nav):hover::after {
    width: 100%;
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: #fff !important;
    padding: 10px 30px;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(32, 66, 119, 0.2);
    display: inline-block;
    min-width: 100px;
    text-align: center;
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(32, 66, 119, 0.3);
}

.lang-btn {
    background: #fff;
    border: 1px solid #e5e7eb;
    padding: 8px 0;
    width: 90px;
    text-align: center;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
    transition: var(--transition);
}

.lang-btn:hover {
    background: #f3f4f6;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* 4. HERO SECTION */
.hero {
    padding: 180px 0 100px;
    background-image: radial-gradient(#204277 0.5px, transparent 0.5px);
    background-size: 20px 20px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-text h1 {
    font-size: 3.8rem;
    line-height: 1.1;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 800;
}

.highlight {
    color: var(--primary);
    background: linear-gradient(120deg, rgba(32, 66, 119, 0.1) 0%, rgba(32, 66, 119, 0.1) 100%);
    background-repeat: no-repeat;
    background-size: 100% 40%;
    background-position: 0 90%;
}

.hero-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn {
    padding: 15px 35px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    min-width: 200px;
}

.btn-windows {
    background: linear-gradient(135deg, #0078D7, #005a9e);
    color: white;
    box-shadow: 0 5px 15px rgba(0, 120, 215, 0.3);
}

.btn-android {
    background: linear-gradient(135deg, #3DDC84, #35c776);
    color: #fff;
    box-shadow: 0 5px 15px rgba(61, 220, 132, 0.3);
}

.btn-ios {
    background: linear-gradient(135deg, #5e5ce6, #3634a3);
    color: #fff;
    box-shadow: 0 5px 15px rgba(94, 92, 230, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
}

.demo-box {
    margin-top: 20px;
    background: rgba(32, 66, 119, 0.05);
    padding: 15px;
    border-radius: 10px;
    border: 1px dashed var(--primary);
    display: inline-block;
    text-align: center;
}

.demo-box p {
    margin-bottom: 5px;
    color: var(--primary);
    font-size: 0.9rem;
}

.credentials {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    font-family: monospace;
    font-size: 1rem;
    color: var(--dark);
    font-weight: bold;
}

.credentials span i {
    color: #888;
    margin-right: 5px;
}

/* 5. SECTIONS */
.features,
.pricing,
.testimonials,
.contact,
.faq,
.gallery {
    padding: 100px 0;
}

.pricing,
.faq {
    background-color: #fff;
    border-top: 1px solid #edf2f7;
    border-bottom: 1px solid #edf2f7;
}

h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: var(--dark);
    font-weight: 700;
}

.feature-grid,
.pricing-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.feature-card,
.price-card,
.testi-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: var(--transition);
    border: 1px solid #f0f0f0;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.feature-card i {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 25px;
}

/* 6. GALLERY */
.gallery {
    background: #fff;
    overflow: hidden;
}

.subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 30px;
}

.gallery-label {
    text-align: center;
    font-size: 1.3rem;
    color: var(--primary);
    margin: 50px 0 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.gallery-marquee {
    display: flex;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 15px 0;
}

.gallery-marquee:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-content {
    display: flex;
    gap: 40px;
    animation: scroll 40s linear infinite;
}

.reverse-scroll {
    animation: scroll-reverse 40s linear infinite;
}

.gallery-item {
    flex: 0 0 auto;
    background: #fff;
    border-radius: 15px;
    padding: 10px;
    padding-bottom: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: zoom-in;
    transition: transform var(--transition);
}

.desktop-item {
    width: 450px;
    height: 320px;
}

.mobile-item {
    width: 240px;
    height: 500px;
}

.gallery-item img {
    border-radius: 10px;
    width: 100%;
    height: 85%;
    object-fit: contain;
}

.gallery-item span {
    font-weight: 700;
    color: var(--dark);
    font-size: 1rem;
    display: block;
    margin-top: 10px;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-reverse {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* 7. PRICING */
.price-card.popular {
    border: 2px solid var(--primary);
    position: relative;
    transform: scale(1.05);
}

.price-card.popular:hover {
    transform: scale(1.08) translateY(-10px);
}

.badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin: 20px 0;
}

.price span {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

.price-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.price-card li {
    margin-bottom: 15px;
    color: #555;
}

.price-card li i {
    color: #3DDC84;
    margin-right: 10px;
}

/* 8. FAQ */
.faq-item details {
    background: #fff;
    padding: 30px;
    margin-bottom: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    border: 1px solid #f0f0f0;
    cursor: pointer;
    transition: var(--transition);
}

.faq-item details[open] {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faq-item summary {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark);
    list-style: none;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    font-size: 1.5rem;
    color: var(--primary);
}

.faq-item details[open] summary::after {
    content: '-';
}

.faq-item p {
    margin-top: 15px;
    color: #666;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* 9. CONTACT */
.contact-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.input-group {
    display: flex;
    gap: 25px;
}

input,
textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    background-color: #fff;
    min-height: 55px;
}

textarea {
    min-height: 180px;
    resize: vertical;
}

input:focus,
textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(32, 66, 119, 0.1);
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 5px 15px rgba(32, 66, 119, 0.3);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* 10. FOOTER */
footer {
    background: var(--dark);
    color: #9ca3af;
    padding: 60px 0;
    text-align: center;
}

footer a {
    color: #fff;
    text-decoration: none;
}

/* 11. HOW IT WORKS */
.how-it-works {
    background-color: #f9fafb;
    padding: 80px 0;
    text-align: center;
}

.how-it-works h2 {
    color: var(--primary);
    margin-bottom: 50px;
    font-size: 2rem;
}

.process-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    min-height: 180px;
    /* Sabit yükseklik ile kaymayı önle */
}

.process-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    font-size: 2rem;
    color: var(--primary);
    transition: transform var(--transition);
}

.process-step:hover .icon-circle {
    transform: translateY(-10px) scale(1.1);
    background: var(--primary);
    color: #fff;
}

.arrow-connector i {
    font-size: 2rem;
    color: #d1d5db;
}

/* 12. DARK MODE */
[data-theme="dark"] {
    --primary: #4a90e2;
    --primary-light: #6aaaff;
    --bg-color: #111827;
    --card-bg: #1f2937;
    --text-color: #f3f4f6;
    --text-muted: #9ca3af;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

[data-theme="dark"] body {
    background-color: var(--bg-color);
    color: var(--text-color);
    background-image: radial-gradient(#4a90e2 0.5px, transparent 0.5px);
}

[data-theme="dark"] .navbar {
    background: rgba(17, 24, 39, 0.95);
    border-bottom: 1px solid #374151;
}

[data-theme="dark"] .nav-links a {
    color: var(--text-color);
}

[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] .faq-item summary,
[data-theme="dark"] .gallery-label {
    color: #fff !important;
}

[data-theme="dark"] p,
[data-theme="dark"] li,
[data-theme="dark"] .subtitle,
[data-theme="dark"] .gallery-item span {
    color: #d1d5db !important;
}

[data-theme="dark"] .gallery,
[data-theme="dark"] .features,
[data-theme="dark"] .pricing,
[data-theme="dark"] .testimonials,
[data-theme="dark"] .faq,
[data-theme="dark"] .contact {
    background-color: var(--bg-color) !important;
    border-color: #374151;
}

[data-theme="dark"] .feature-card,
[data-theme="dark"] .price-card,
[data-theme="dark"] .testi-card,
[data-theme="dark"] .gallery-item,
[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] .faq-item details {
    background: var(--card-bg);
    border-color: #374151;
    color: var(--text-color);
}

[data-theme="dark"] .logo {
    color: #fff;
}

[data-theme="dark"] .demo-box {
    border-color: #4a90e2;
    background: rgba(74, 144, 226, 0.1);
}

[data-theme="dark"] .credentials {
    color: #fff;
}

[data-theme="dark"] .lang-btn,
[data-theme="dark"] .version-btn {
    background: var(--card-bg);
    border-color: #374151;
    color: var(--text-color);
}

[data-theme="dark"] .how-it-works {
    background-color: var(--bg-color);
}

[data-theme="dark"] .icon-circle {
    background-color: var(--card-bg);
    color: var(--primary-light);
}

[data-theme="dark"] .cookie-banner {
    background: #1f2937;
    color: #fff;
}

[data-theme="dark"] .cookie-banner a {
    color: #6aaaff;
}

[data-theme="dark"] .modal-content {
    background: var(--card-bg);
    border: 1px solid #444;
}

[data-theme="dark"] .modal-footer {
    border-color: #444;
}

[data-theme="dark"] .modal-header h3 {
    color: #fff !important;
}

/* 13. LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
    animation: zoom 0.3s;
    object-fit: contain;
}

@keyframes zoom {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: var(--transition);
    cursor: pointer;
    z-index: 2001;
}

.close-lightbox:hover {
    color: var(--primary);
}

/* 14. COOKIE BANNER */
.cookie-banner {
    position: fixed;
    bottom: -150px;
    left: 20px;
    right: 20px;
    background: #fff;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 9999;
    transition: bottom 0.5s ease-in-out;
    border-left: 5px solid var(--primary);
}

.cookie-banner.show {
    bottom: 20px;
}

.btn-cookie {
    background: var(--primary);
    color: #fff;
    border: none;
    padding: 8px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

/* 15. INSTAGRAM LINK */
.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
    transition: var(--transition);
}

.instagram-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.5);
}

/* 16. HERO IMAGE ANIMATION */
.hero-image-container {
    position: relative;
    display: inline-block;
    padding: 0;
    overflow: hidden;
    border-radius: 20px;
}

.scan-line {
    position: absolute;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, transparent, #e63946, transparent);
    box-shadow: 0 0 15px rgba(230, 57, 70, 0.8);
    top: 0;
    left: 0;
    z-index: 10;
    animation: scanning 3.5s ease-in-out infinite;
    opacity: 0.8;
}

@keyframes scanning {
    0% {
        top: 0%;
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        top: 100%;
        opacity: 0;
    }
}

.hero-img-element {
    color: transparent;
}

/* 17. VERSION BUTTON */
.version-wrapper {
    margin-top: 25px;
}

.version-btn {
    background: rgba(32, 66, 119, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.version-btn:hover {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}

.version-btn i {
    color: inherit;
}

[data-theme="dark"] .version-btn {
    border-color: #4a90e2;
    color: #4a90e2;
    background: rgba(74, 144, 226, 0.1);
}

[data-theme="dark"] .version-btn:hover {
    background: #4a90e2;
    color: #111;
}

/* 18. MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: #fff;
    width: 90%;
    max-width: 500px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.3s ease-out;
    overflow: hidden;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: var(--primary);
    color: #fff;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.2rem;
    color: #fff;
}

.close-modal {
    font-size: 24px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.2s;
}

.close-modal:hover {
    color: #ccc;
}

.modal-body {
    padding: 20px;
    max-height: 400px;
    overflow-y: auto;
}

.update-item {
    border-left: 3px solid #ddd;
    padding-left: 15px;
    margin-bottom: 20px;
    position: relative;
}

.update-date {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 5px;
}

.update-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: bold;
    margin-bottom: 5px;
    color: #fff;
}

.update-badge.new {
    background: #3DDC84;
}

.update-badge.fix {
    background: #e63946;
}

.update-badge.feature {
    background: #4a90e2;
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #eee;
}

/* 19. LOGO SCAN EFFECT */
.logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 3px;
    height: 100%;
    background: #e63946;
    box-shadow: 0 0 10px #e63946;
    opacity: 0;
    transform: skewX(-20deg);
    z-index: 2;
}

.logo.scanning::after {
    opacity: 1;
    animation: scanLogo 1s ease-in-out forwards;
}

@keyframes scanLogo {
    0% {
        left: 0%;
    }

    100% {
        left: 120%;
    }
}

/* 20. MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav-links a {
        font-size: 0.9rem;
    }

    .btn-nav {
        display: none;
    }

    .lang-btn {
        font-size: 0.8rem;
        padding: 6px 12px;
    }

    .hero {
        padding-top: 150px;
        text-align: center;
        background-image: none;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
        margin: 0 auto;
        width: 85%;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-text h1 {
        font-size: 2.5rem;
    }

    .desktop-item {
        width: 85vw;
        height: auto;
        min-height: 250px;
    }

    .mobile-item {
        width: 60vw;
        height: auto;
        min-height: 400px;
    }

    .gallery-item img {
        height: auto;
        object-fit: cover;
    }

    .price-card.popular {
        transform: scale(1);
    }

    .input-group {
        flex-direction: column;
    }

    .feature-grid,
    .pricing-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .contact-wrapper {
        padding: 0 10px;
    }

    /* Mobile Menu Styles */
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 30px 20px;
        gap: 20px;
        transition: right 0.3s ease;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links a,
    .nav-links .btn-nav {
        display: block;
        width: 100%;
        text-align: left;
        padding: 12px 15px;
    }

    .nav-links .lang-btn {
        width: 100%;
        text-align: center;
    }

    /* Dark mode mobile menu */
    [data-theme="dark"] .nav-links {
        background: rgba(17, 24, 39, 0.98);
        border-left: 1px solid #374151;
    }

    .credentials {
        gap: 5px;
        flex-direction: column;
    }

    .cookie-banner {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .process-wrapper {
        flex-direction: column;
    }

    .arrow-connector i {
        transform: rotate(90deg);
    }
}

/* 21. PERFORMANCE OPTIMIZATIONS */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}