/* ============================================
   1. VARIABLES & RESET
   ============================================ */
:root {
    /* Colors */
    --color-bg: #050505;
    --color-bg-secondary: #0a0a0a;
    --color-primary: #f88714;
    --color-primary-dark: #e07812;
    --color-primary-glow: rgba(248, 135, 20, 0.3);

    --color-text-main: #ffffff;
    --color-text-muted: #a0a0a0;
    --color-text-dark: #121212;

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-highlight: 1px solid rgba(244, 126, 59, 0.3);
    --glass-blur: blur(12px);

    /* Spacing & Layout */
    --container-width: 1200px;
    --header-height: 80px;
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
    --radius-full: 9999px;

    /* Typography */
    --font-main: 'Tajawal', sans-serif;

    /* Transitions */
    --ease-out: cubic-bezier(0.215, 0.61, 0.355, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: none;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text-main);
    font-family: var(--font-main);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s var(--ease-out);
}

ul {
    list-style: none;
}

/* ============================================
   2. UTILITIES & LAYOUT
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

.grid-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background:
        radial-gradient(circle at 10% 20%, rgba(244, 126, 59, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(244, 126, 59, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

/* ============================================
   3. NAVIGATION
   ============================================ */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1100px;
    height: 70px;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    border: var(--glass-border);
    border-radius: var(--radius-full);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-image {
    height: 42px;
    width: auto;
}

.logo-text {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--color-text-main);
}

.beta-badge {
    background: var(--color-primary);
    color: var(--color-text-dark);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 6px;
    margin-right: 5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.nav-link:hover {
    color: var(--color-primary);
}

.nav-btn {
    background: var(--color-primary);
    color: var(--color-text-dark);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
}

.nav-btn:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(244, 126, 59, 0.3);
}

/* ============================================
   4. HERO SECTION
   ============================================ */
.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--color-primary);
    display: block;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-text-dark);
    border: none;
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(244, 126, 59, 0.25);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--color-text-main);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-text-main);
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--color-text-main);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.hero-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    perspective: 1600px;
    /* عمق واقعي أكثر */
}

.image-card {
    background: #000;
    border-radius: 40px;
    border: 12px solid #1a1a1a;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.55);

    /* ميلان خفيف وأنيق */
    transform: rotateY(-3deg) rotateX(2deg) translateZ(0);

    /* حركة ناعمة جداً */
    transition: transform 0.8s cubic-bezier(.22, .61, .36, 1);
    transform-origin: center;
}

.image-card:hover {
    /* حركة واقعية: تقلل الميلان وتكبر بشكل خفيف */
    transform: rotateY(0deg) rotateX(0deg) scale(1.03) translateZ(20px);
}

/* Stacked Phones Layout */
.stacked-phones {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 500px;
    margin: 0 auto;
}

.stacked-phones .image-card {
    position: absolute;
    width: 220px;
    max-width: 60%;
}

.stacked-phones .phone-back {
    top: 0;
    right: 0;
    transform: rotate(3deg);
    z-index: 1;
}

.stacked-phones .phone-front {
    bottom: 0;
    left: 0;
    transform: rotate(-3deg);
    z-index: 2;
}

.stacked-phones .phone-back:hover,
.stacked-phones .phone-front:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 10;
}

/* Privacy Toggle */
.privacy-toggle {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-toggle-btn {
    width: 100%;
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: var(--color-text-main);
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-main);
    transition: all 0.3s ease;
}

.privacy-toggle-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
}

.privacy-toggle-btn i {
    color: var(--color-primary);
    margin-left: 10px;
}

.privacy-toggle-icon {
    transition: transform 0.3s ease;
}

.privacy-toggle-btn.active .privacy-toggle-icon {
    transform: rotate(180deg);
}

.privacy-hidden {
    display: none;
}

.privacy-content.privacy-visible {
    display: block;
    margin-top: 1.5rem;
}

.privacy-acceptance {
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(244, 126, 59, 0.1);
    border: 1px solid rgba(244, 126, 59, 0.3);
    border-radius: var(--radius-sm);
    font-weight: 600;
    color: var(--color-primary);
}

/* ============================================
   5. SECTIONS COMMON
   ============================================ */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 4rem;
    color: var(--color-text-main);
}

/* ============================================
   6. FEATURES
   ============================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 × 2 */
    gap: 2rem;
    max-width: 750px;
    /* ضبط عرض الشبكة */
    margin: 0 auto;
    /* توسيطها بالكامل */
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
        /* للجوال */
    }
}

.feature-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--color-text-muted);
    font-size: 1rem;
}

/* ============================================
   7. PREMIUM / ADVANCED
   ============================================ */
.premium-card {
    background: linear-gradient(145deg, rgba(244, 126, 59, 0.05), rgba(0, 0, 0, 0));
    border: 1px solid rgba(244, 126, 59, 0.2);
    border-radius: var(--radius-lg);
    padding: 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.premium-badge {
    background: rgba(244, 126, 59, 0.15);
    color: var(--color-primary);
    padding: 6px 16px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    display: inline-block;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(244, 126, 59, 0.3);
}

.premium-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.premium-description {
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.premium-features {
    display: grid;
    gap: 1.2rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: right;
}

.premium-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.1rem;
    color: var(--color-text-main);
}

.check-icon {
    color: var(--color-primary);
    background: rgba(244, 126, 59, 0.1);
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

/* ============================================
   8. HOW IT WORKS
   ============================================ */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.step-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-md);
    position: relative;
    text-align: center;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-primary);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--color-primary);
    color: var(--color-text-dark);
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.2rem;
    box-shadow: 0 5px 15px rgba(244, 126, 59, 0.3);
}

.step-icon {
    font-size: 2rem;
    color: var(--color-text-main);
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.step-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-main);
}

.step-description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.steps-cta {
    text-align: center;
    margin-top: 4rem;
}

/* ============================================
   9. TESTIMONIALS
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    padding: 2rem;
    border-radius: var(--radius-md);
}

.testimonial-header {
    margin-bottom: 1.5rem;
}

.testimonial-name {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 1.1rem;
}

.testimonial-role {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text-main);
    line-height: 1.6;
}

/* ============================================
   10. FAQ
   ============================================ */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.1rem;
}

.faq-icon {
    color: var(--color-primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text-muted);
}

/* ============================================
   11. PRIVACY POLICY
   ============================================ */
.privacy-section {
    padding-top: 150px;
}

.privacy-content {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.privacy-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
}

.privacy-updated {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 3rem;
}

.privacy-heading {
    color: var(--color-primary);
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
}

.privacy-section-content p {
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.privacy-list {
    list-style: disc inside;
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    padding-right: 1rem;
}

.privacy-list li {
    margin-bottom: 0.5rem;
}

.privacy-footer {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-style: italic;
    color: var(--color-text-muted);
}

/* ============================================
   12. FOOTER
   ============================================ */
.footer {
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--color-text-main);
}

.footer-description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.footer-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--color-text-main);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.footer-link:hover {
    color: var(--color-primary);
}

.footer-social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
    font-weight: 600;
}

.social-link:hover {
    color: var(--color-primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* ============================================
   13. RESPONSIVE
   ============================================ */

/* Tablet and smaller laptops */
@media (max-width: 992px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

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

    .premium-title {
        font-size: 2rem;
    }

    .stacked-phones {
        height: 400px;
        max-width: 350px;
    }
}

/* Tablets */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .navbar {
        padding: 0 1rem;
        height: 60px;
        width: calc(100% - 24px);
        top: 12px;
    }

    .nav-links {
        display: none;
    }

    .nav-btn {
        padding: 8px 18px;
        font-size: 0.85rem;
    }

    .logo-text {
        font-size: 0.95rem;
    }

    .logo-image {
        height: 36px;
    }

    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1rem;
        margin: 0 auto 2rem;
        padding: 0 0.5rem;
    }

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 14px 24px;
    }

    .hero-stats {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .image-card {
        transform: none;
        margin: 0 auto;
        border-radius: 30px;
        border-width: 8px;
    }

    .stacked-phones {
        height: 320px;
        max-width: 280px;
    }

    .stacked-phones .image-card {
        width: 150px;
    }

    section {
        padding: 60px 0;
    }

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

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

    .feature-card {
        padding: 2rem 1.5rem;
    }

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

    .feature-title {
        font-size: 1.2rem;
    }

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

    .step-card {
        padding: 2rem 1.5rem;
    }

    .premium-card {
        padding: 2rem 1.5rem;
        border-radius: var(--radius-md);
    }

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

    .premium-description {
        font-size: 1rem;
    }

    .premium-features {
        text-align: center;
    }

    .premium-feature {
        justify-content: center;
        font-size: 1rem;
    }

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

    .faq-question {
        font-size: 1rem;
        padding: 1.2rem;
    }

    .faq-answer p {
        padding: 0 1.2rem 1.2rem;
    }

    .privacy-toggle-btn {
        font-size: 1rem;
        padding: 1rem 1.2rem;
    }

    .privacy-content {
        padding: 2rem 1.5rem;
    }

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

    .privacy-heading {
        font-size: 1.2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .footer-links {
        align-items: center;
    }

    .footer-social {
        align-items: center;
    }

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

/* Small phones */
@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 1rem;
    }

    .navbar {
        width: calc(100% - 16px);
        top: 8px;
        height: 56px;
        padding: 0 0.8rem;
    }

    .logo-text {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    .logo-image {
        height: 32px;
    }

    .beta-badge {
        font-size: 0.55rem;
        padding: 2px 6px;
    }

    .nav-btn {
        padding: 8px 14px;
        font-size: 0.8rem;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 40px;
    }

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

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .btn-primary,
    .btn-secondary {
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .hero-stats {
        gap: 1rem;
        padding-top: 1.5rem;
    }

    .stat-item {
        min-width: 80px;
    }

    .stat-number {
        font-size: 1.3rem;
    }

    .stacked-phones {
        height: 280px;
        max-width: 240px;
    }

    .stacked-phones .image-card {
        width: 130px;
        border-width: 6px;
        border-radius: 24px;
    }

    section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .feature-card {
        padding: 1.5rem 1.2rem;
    }

    .feature-icon {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .feature-title {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }

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

    .step-card {
        padding: 1.5rem 1.2rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

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

    .step-title {
        font-size: 1.1rem;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .premium-card {
        padding: 1.5rem 1rem;
    }

    .premium-badge {
        font-size: 0.8rem;
        padding: 5px 12px;
    }

    .premium-title {
        font-size: 1.5rem;
    }

    .premium-description {
        font-size: 0.9rem;
        margin-bottom: 2rem;
    }

    .premium-feature {
        font-size: 0.95rem;
        gap: 0.8rem;
    }

    .check-icon {
        width: 24px;
        height: 24px;
        font-size: 0.8rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-name {
        font-size: 1rem;
    }

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

    .faq-question {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .faq-answer p {
        font-size: 0.9rem;
        padding: 0 1rem 1rem;
    }

    .privacy-toggle-btn {
        font-size: 0.9rem;
        padding: 1rem;
    }

    .privacy-section {
        padding-top: 100px;
    }

    .privacy-content {
        padding: 1.5rem 1rem;
        border-radius: var(--radius-md);
    }

    .privacy-title {
        font-size: 1.5rem;
    }

    .privacy-heading {
        font-size: 1.1rem;
        margin: 1.5rem 0 0.8rem;
    }

    .privacy-section-content p {
        font-size: 0.9rem;
    }

    .privacy-list {
        font-size: 0.9rem;
        padding-right: 0.5rem;
    }

    .footer {
        padding: 3rem 0 1.5rem;
        margin-top: 2rem;
    }

    .footer-logo {
        font-size: 1.3rem;
    }

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

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

    .footer-link {
        font-size: 0.85rem;
    }

    .footer-bottom {
        font-size: 0.8rem;
        padding-top: 1.5rem;
    }
}

/* Extra small phones */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .stacked-phones {
        height: 240px;
        max-width: 200px;
    }

    .stacked-phones .image-card {
        width: 110px;
    }

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

    .premium-title {
        font-size: 1.3rem;
    }
}