/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Gradient colors from app */
    --gradient-start: #0a0a0a;
    --gradient-end: #1a1a2e;
    --accent-blue: #0072ff;
    --accent-purple: #6c5ce7;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-lighter: #94a3b8;
    --background: #ffffff;
    --background-alt: #f8fafc;
    --border: #e2e8f0;
    --shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
    --shadow-hover: 0 30px 50px -20px rgba(0,114,255,0.3);
    --gradient: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Arabic font support */
[lang="ar"] body,
body.arabic {
    font-family: 'Cairo', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.5rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.section-header.left {
    text-align: left;
    margin-left: 0;
}

.section-header.light h2 {
    -webkit-text-fill-color: white;
    color: white;
}

.section-header.light p {
    color: rgba(255,255,255,0.8);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 20px -8px rgba(0,114,255,0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 30px -10px rgba(0,114,255,0.6);
}

.btn-secondary {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border);
}

.btn-secondary:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255,255,255,0.1);
}

.btn-link {
    color: var(--text-dark);
    background: transparent;
    padding: 0.5rem 0;
}

.btn-link i {
    transition: transform 0.3s ease;
}

.btn-link:hover i {
    transform: translateX(5px);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.2rem;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.logo-tagline {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-blue);
}

/* Language Switcher */
.language-selector {
    position: relative;
}

.lang-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--background-alt);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    border-color: var(--accent-blue);
}

.lang-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    min-width: 180px;
    display: none;
    z-index: 100;
}

.lang-dropdown.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

.lang-dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.lang-dropdown a:hover {
    background: var(--background-alt);
}

.lang-dropdown a.active {
    background: var(--gradient);
    color: white;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 160px 0 80px;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,114,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    color: var(--accent-blue);
    margin-bottom: 2rem;
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: var(--accent-blue);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(0,114,255,0.7); }
    70% { box-shadow: 0 0 0 10px rgba(0,114,255,0); }
    100% { box-shadow: 0 0 0 0 rgba(0,114,255,0); }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Phone Mockup */
.phone-mockup {
    position: relative;
    max-width: 300px;
    margin: 0 auto;
}

.phone-frame {
    position: relative;
    background: var(--gradient);
    border-radius: 40px;
    padding: 15px;
    box-shadow: var(--shadow);
    z-index: 2;
}

.phone-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 25px;
    background: #1a1a2e;
    border-radius: 0 0 20px 20px;
    z-index: 3;
}

.phone-screenshot {
    width: 100%;
    height: auto;
    border-radius: 30px;
    display: block;
    transition: opacity 0.5s ease;
}

.phone-shadow {
    position: absolute;
    bottom: -20px;
    left: 10%;
    right: 10%;
    height: 40px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0.2) 0%, transparent 70%);
    filter: blur(10px);
    z-index: 1;
}

/* ===== PRIVACY BANNER ===== */
.privacy-banner {
    background: var(--gradient);
    color: white;
    padding: 2rem 0;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.banner-icon {
    font-size: 3rem;
    color: rgba(255,255,255,0.3);
}

.banner-text {
    flex: 1;
}

.banner-text h3 {
    margin-bottom: 0.5rem;
}

.banner-text p {
    color: rgba(255,255,255,0.8);
    margin: 0;
}

.banner-badge {
    display: flex;
    gap: 1rem;
}

.banner-badge span {
    background: rgba(255,255,255,0.2);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ===== FEATURES SECTION ===== */
.features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-blue);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.gradient-bg {
    background: var(--gradient);
}

.feature-card h3 {
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.feature-preview {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--background-alt);
}

.feature-preview img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.feature-card:hover .feature-preview img {
    transform: scale(1.05);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: 80px 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-blue), transparent);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: var(--accent-blue);
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 6rem;
    color: var(--accent-blue);
    opacity: 0.1;
    font-family: serif;
    line-height: 1;
}

/* RTL support for Arabic */
[dir="rtl"] .testimonial-card::after {
    right: auto;
    left: 20px;
    transform: scaleX(-1);
}

.testimonial-rating {
    color: #ffc107;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.testimonial-rating i {
    margin-right: 0.2rem;
}

[dir="rtl"] .testimonial-rating i {
    margin-right: 0;
    margin-left: 0.2rem;
}

.testimonial-quote {
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
}

[dir="rtl"] .testimonial-author {
    flex-direction: row-reverse;
}

.author-avatar i {
    font-size: 2.5rem;
    color: var(--accent-blue);
    opacity: 0.5;
}

.author-info h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.author-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonials-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0,114,255,0.05) 0%, rgba(108,92,231,0.05) 100%);
    border-radius: 50px;
}

.testimonials-stats .stat-item {
    text-align: center;
}

.testimonials-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.testimonials-stats .stat-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Dark variant for the languages section background */
.light + .testimonials-stats {
    background: rgba(255,255,255,0.1);
}

/* ===== LANGUAGES SECTION ===== */
.languages {
    padding: 80px 0;
    background: var(--gradient);
    color: white;
}

.language-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.language-item {
    background: rgba(255,255,255,0.1);
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.language-item:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.2);
}

.language-item span {
    font-size: 1.5rem;
    margin-right: 0.5rem;
    display: inline-block;
}

[dir="rtl"] .language-item span {
    margin-right: 0;
    margin-left: 0.5rem;
}

.language-item.arabic {
    font-family: 'Cairo', sans-serif;
}

.language-note {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: rgba(255,255,255,0.8);
}

.language-note i {
    font-size: 1.5rem;
}

/* ===== PRIVACY DEEP DIVE ===== */
.privacy-deep {
    padding: 80px 0;
    background: var(--background-alt);
}

.privacy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.privacy-points {
    margin: 2rem 0;
}

.privacy-point {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

[dir="rtl"] .privacy-point {
    flex-direction: row-reverse;
}

.point-icon {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-blue);
    box-shadow: var(--shadow);
}

.point-text h4 {
    margin-bottom: 0.5rem;
}

.point-text p {
    color: var(--text-light);
    margin: 0;
}

.privacy-card {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
}

.privacy-card i {
    font-size: 3rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.privacy-card ul {
    list-style: none;
    margin-top: 1.5rem;
}

.privacy-card li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.1rem;
}

.privacy-card li:last-child {
    border-bottom: none;
}

/* ===== GALLERY SECTION ===== */
.gallery {
    padding: 80px 0;
    background: white;
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery-tab {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--border);
    background: white;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.gallery-tab:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.gallery-tab.active {
    background: var(--gradient);
    color: white;
    border-color: transparent;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-hover);
}

.gallery-item.hidden {
    display: none;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-note {
    text-align: center;
    color: var(--text-light);
}

.gallery-note i {
    margin-right: 0.5rem;
    color: var(--accent-blue);
}

[dir="rtl"] .gallery-note i {
    margin-right: 0;
    margin-left: 0.5rem;
}

/* ===== FAQ SECTION ===== */
.faq {
    padding: 80px 0;
    background: var(--background-alt);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid var(--border);
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: var(--background-alt);
}

.faq-question h3 {
    margin: 0;
    font-size: 1.2rem;
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--text-light);
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 80px 0;
    background: var(--gradient);
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-features {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[dir="rtl"] .cta-features span {
    flex-direction: row-reverse;
}

.cta-features i {
    color: #10b981;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .footer-logo {
    margin-bottom: 1rem;
}

.footer-brand p {
    color: var(--text-lighter);
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: var(--text-lighter);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: white;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-lighter);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-languages a {
    display: inline-block;
    padding: 0.25rem 0;
}

.more-languages {
    margin-top: 0.5rem;
    font-style: italic;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: var(--text-lighter);
}

[dir="rtl"] .footer-bottom {
    flex-direction: row-reverse;
}

.footer-badges {
    display: flex;
    gap: 1.5rem;
}

.footer-badges span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

[dir="rtl"] .footer-badges span {
    flex-direction: row-reverse;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    h2 {
        font-size: 2rem;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .privacy-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: white;
        padding: 2rem;
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    [dir="rtl"] .nav-menu {
        transform: translateX(-100%);
    }
    
    .nav-menu.active {
        transform: translateX(0);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 2rem;
    }

    /* Fix for mobile menu scrolling and centering */
    .nav-menu.active .language-selector {
        width: 100%;
        margin-bottom: 1rem;
    }

    .nav-menu.active .lang-dropdown {
        position: relative;
        width: 100%;
        margin-top: 0.5rem;
        box-shadow: none;
        border: 1px solid var(--border);
        max-height: 300px;
        overflow-y: auto;
    }

    .nav-menu.active .lang-dropdown.show {
        display: block;
    }

    .nav-menu.active .lang-btn {
        width: 100%;
        justify-content: space-between;
    }

    .nav-menu.active .nav-links {
        width: 100%;
    }

    .nav-menu.active .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-menu.active .nav-links a {
        display: block;
        padding: 0.75rem 0;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 6px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(8px, -6px);
    }
    
    [dir="rtl"] .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-8px, 6px);
    }
    
    [dir="rtl"] .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-8px, -6px);
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .phone-mockup {
        max-width: 250px;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-badge {
        justify-content: center;
    }
    
    .privacy-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-stats {
        flex-direction: column;
        gap: 2rem;
        border-radius: 30px;
        padding: 2rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .testimonials-stats .stat-number {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .language-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-badges {
        justify-content: center;
    }
}

/* ===== PRINT STYLES ===== */
@media print {
    .navbar,
    .hero-cta,
    .cta,
    .footer {
        display: none;
    }
}