/* ============================================
   NAQSH Landing Page - Modern Styles
   ============================================ */

/* CSS Variables */
:root {
    --primary: #00A19C;
    --primary-dark: #007A77;
    --primary-light: #00D4CE;
    --accent: #00FFE7;
    --dark: #0A1628;
    --dark-lighter: #1a2940;
    --gray: #8892B0;
    --light-gray: #CCD6F6;
    --lighter-gray: #f8f9fa;
    --white: #FFFFFF;
    --gradient-primary: linear-gradient(135deg, #00A19C 0%, #00FFE7 100%);
    --gradient-dark: linear-gradient(135deg, #0A1628 0%, #1e3c72 100%);
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.16);
    --shadow-glow: 0 0 40px rgba(0, 161, 156, 0.3);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Tajawal', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--dark);
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* LTR Support */
html[dir="ltr"] body {
    direction: ltr;
    text-align: left;
}

/* ============================================
   Preloader
   ============================================ */
.preloader {
    position: fixed;
    inset: 0;
    background: var(--dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s var(--transition-smooth);
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 48px;
    height: 48px;
    border: 3px solid var(--primary-light);
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================
   Navigation
   ============================================ */
nav {
    background: rgba(10, 22, 40, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    transition: all var(--transition-smooth);
    border-bottom: 1px solid var(--glass-border);
}

nav.scrolled {
    padding: 0.6rem 0;
    background: rgba(10, 22, 40, 0.98);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: transform var(--transition-bounce);
}

.logo:hover {
    transform: scale(1.05);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 25px;
    padding: 0.6rem 1.5rem;
    color: var(--light-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background var(--transition-fast);
}

.lang-switcher:hover {
    background: rgba(255, 255, 255, 0.15);
}

.lang-switcher svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--light-gray);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
    font-size: 1rem;
    padding: 0.5rem 0;
    outline: none;
}

.nav-links a:focus {
    outline: none;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-smooth);
    border-radius: 2px;
}

html[dir="ltr"] .nav-links a::after {
    right: auto;
    left: 0;
}

.nav-links a:hover {
    color: var(--accent);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--dark);
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 161, 156, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 126, 234, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 0%, rgba(0, 255, 231, 0.05) 0%, transparent 40%);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInRight 0.8s var(--transition-smooth);
}

html[dir="ltr"] .hero-content {
    animation: slideInLeft 0.8s var(--transition-smooth);
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-content h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    animation: fadeIn 0.8s var(--transition-smooth) 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeIn 0.8s var(--transition-smooth) 0.3s both;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0, 161, 156, 0.35);
    min-height: 52px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 161, 156, 0.45);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--primary-light);
    transition: all var(--transition-smooth);
    min-height: 52px;
}

.btn-secondary:hover {
    background: rgba(0, 161, 156, 0.15);
    border-color: var(--accent);
    transform: translateY(-3px);
}

/* Phone Mockup */
.hero-visual {
    position: relative;
    animation: floatUp 0.8s var(--transition-smooth) 0.2s both;
}

.phone-mockup {
    width: 280px;
    height: 580px;
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    border-radius: 40px;
    box-shadow:
        var(--shadow-lg),
        0 0 60px rgba(0, 161, 156, 0.15),
        inset 0 0 0 2px rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 24px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
}

.phone-screen {
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    background: var(--primary);
    margin: 5px;
    border-radius: 36px;
    overflow: hidden;
}

.phone-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================
   Sections Common
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1rem;
}

.section-desc {
    color: var(--gray);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   Features Section
   ============================================ */
.features {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--lighter-gray) 0%, var(--white) 100%);
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient-primary);
    opacity: 0.05;
    border-radius: 50%;
    transform: translate(-30%, -30%);
    transition: all var(--transition-smooth);
}

html[dir="ltr"] .feature-card::before {
    left: auto;
    right: 0;
    transform: translate(30%, -30%);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-card:hover::before {
    transform: translate(-20%, -20%) scale(1.5);
    opacity: 0.1;
}

html[dir="ltr"] .feature-card:hover::before {
    transform: translate(20%, -20%) scale(1.5);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(0, 161, 156, 0.1) 0%, rgba(0, 255, 231, 0.05) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.8;
}

/* ============================================
   Products Section
   ============================================ */
.products {
    padding: 6rem 0;
    background: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.product-card {
    background: var(--lighter-gray);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    height: 280px;
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-smooth);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.product-info p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.product-features {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.product-features span {
    background: rgba(0, 161, 156, 0.1);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.product-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-smooth);
}

.product-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 161, 156, 0.35);
}

/* ============================================
   Stats Section
   ============================================ */
.stats {
    padding: 4rem 0;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    color: var(--white);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    display: block;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    font-weight: 500;
}

/* ============================================
   Process Section
   ============================================ */
.process {
    padding: 6rem 0;
    background: var(--dark);
    color: var(--white);
}

.process .section-title {
    color: var(--white);
}

.process .section-subtitle {
    color: var(--accent);
}

.process .section-desc {
    color: var(--gray);
}

.timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    padding: 0 1.5rem;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    position: relative;
    padding-right: 3.5rem;
}

html[dir="ltr"] .timeline-item {
    padding-right: 0;
    padding-left: 3.5rem;
}

.timeline-dot {
    position: absolute;
    right: 0;
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--white);
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 161, 156, 0.4);
}

html[dir="ltr"] .timeline-dot {
    right: auto;
    left: 0;
}

.timeline-content {
    flex: 1;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--glass-border);
    transition: all var(--transition-smooth);
}

.timeline-content:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(-5px);
}

html[dir="ltr"] .timeline-content:hover {
    transform: translateX(5px);
}

.timeline-content h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--gray);
    font-size: 1rem;
}

/* ============================================
   Download Section
   ============================================ */
.download {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--lighter-gray) 0%, var(--white) 100%);
}

.download-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 1.5rem;
    text-align: center;
}

.download-container h2 {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1rem;
}

.download-container p {
    color: var(--gray);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

.download-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.store-btn {
    background: var(--dark);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-md);
    min-width: 200px;
}

.store-btn:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.store-icon {
    width: 44px;
    height: 44px;
}

.store-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.store-info {
    text-align: right;
}

html[dir="ltr"] .store-info {
    text-align: left;
}

.store-info small {
    font-size: 0.8rem;
    opacity: 0.8;
    display: block;
}

.store-info strong {
    font-size: 1.1rem;
    display: block;
}

/* ============================================
   Footer
   ============================================ */
footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0 2rem;
    text-align: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    font-size: 1rem;
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-divider {
    color: var(--gray);
    opacity: 0.5;
}

.footer-text {
    color: var(--gray);
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.footer-text .heart-icon {
    color: #ff6b6b;
    display: inline-flex;
}

.footer-text .heart-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* ============================================
   Simple Policy Pages
   ============================================ */
.policy-page {
    min-height: 100vh;
    background: var(--lighter-gray);
    padding-top: 100px;
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

.policy-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
}

.policy-box h1 {
    font-size: 2rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.policy-box .policy-content {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    padding: 2rem 0;
}

.policy-box .back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-fast);
    margin-top: 2rem;
}

.policy-box .back-btn:hover {
    color: var(--primary-dark);
}

/* ============================================
   Animations
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .phone-mockup {
        width: 240px;
        height: 500px;
    }
}

@media (max-width: 768px) {

    /* Navigation */
    .mobile-menu-btn {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        transition: right var(--transition-smooth);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
    }

    html[dir="ltr"] .nav-links {
        right: auto;
        left: -100%;
    }

    .nav-links.active {
        right: 0;
    }

    html[dir="ltr"] .nav-links.active {
        right: auto;
        left: 0;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .lang-switcher {
        margin-top: 1rem;
        justify-content: center;
    }

    /* Hero */
    .hero {
        padding-top: 70px;
    }

    .hero-content h1 {
        font-size: 2.25rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .phone-mockup {
        width: 220px;
        height: 460px;
    }

    /* Sections */
    .features,
    .products,
    .process,
    .download {
        padding: 4rem 0;
    }

    .features-grid,
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem;
    }

    /* Timeline */
    .timeline-item {
        padding-right: 3rem;
    }

    html[dir="ltr"] .timeline-item {
        padding-left: 3rem;
    }

    .timeline-dot {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    /* Download */
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }

    .store-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Stats */
    .stats-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Policy */
    .policy-box {
        padding: 2rem;
    }

    .policy-box h1 {
        font-size: 1.75rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .phone-mockup {
        width: 180px;
        height: 380px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .feature-card,
    .product-info {
        padding: 1.5rem;
    }
}

/* ============================================
   Policy Pages
   ============================================ */
.policy-page {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 4rem;
    background: linear-gradient(180deg, var(--lighter-gray) 0%, var(--white) 100%);
}

.policy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.policy-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 3rem;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.policy-box.policy-full {
    max-width: 100%;
}

.policy-box h1 {
    font-size: 2.25rem;
    font-weight: 900;
    color: var(--dark);
    margin-bottom: 0.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-date {
    color: var(--gray);
    font-size: 0.95rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    line-height: 1.8;
}

.policy-content {
    color: var(--dark);
    line-height: 1.9;
}

.policy-content h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary);
}

.policy-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin: 2rem 0 0.75rem;
}

.policy-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    margin: 1.5rem 0 0.5rem;
}

.policy-content p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.policy-content ul {
    margin: 1rem 0 1.5rem;
    padding-inline-start: 1.5rem;
}

.policy-content li {
    margin-bottom: 0.75rem;
    color: #4a5568;
    position: relative;
}

.policy-content li::marker {
    color: var(--primary);
}

.policy-content strong {
    color: var(--dark);
    font-weight: 600;
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2.5rem;
    padding: 0.8rem 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all var(--transition-smooth);
}

.back-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 161, 156, 0.35);
}

html[dir="rtl"] .back-btn svg {
    transform: scaleX(-1);
}

/* ============================================
   Performance & Accessibility
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

a:focus,
button:focus {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Lazy loading */
.lazy-img {
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.lazy-img.loaded {
    opacity: 1;
}

/* Policy page responsive */
@media (max-width: 768px) {
    .policy-box {
        padding: 2rem 1.5rem;
    }

    .policy-box h1 {
        font-size: 1.75rem;
    }

    .policy-content h2 {
        font-size: 1.3rem;
    }

    .policy-content h3 {
        font-size: 1.15rem;
    }
}