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

/* ============================================
   AEZRON - Design System
   Fashion & Textile Creative Platform
   Palette: Olive Green + Warm Cream + Gold
   ============================================ */

:root {
    --primary: #88976D;
    --primary-light: #9CAB84;
    --primary-dark: #6B7A54;
    --secondary: #C9A96E;
    --accent: #E5D5B3;

    --bg-light: #F5EFD6;
    --bg-dark: #0D0E0C;
    --surface: #FAF8F0;
    --white: #FFFFFF;
    --black: #111209;
    --grey-text: #4A4D42;
    --border: #DDD8C4;

    --success: #4CAF50;
    --error: #EF4444;
    --warning: #FFB800;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 100px;
    --container-width: 1200px;
    --header-height: 90px;

    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 25px 50px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --glow: 0 0 40px rgba(136, 151, 109, 0.25);

    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   Reset & Base
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

/* ============================================
   BACKGROUND — Stylish Animated Mesh Aurora
   Soft Olive + Cream + Gold (No patterns)
   ============================================ */
body {
    font-family: var(--font-body);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-light);
    position: relative;
    min-height: 100vh;
}

/* Animated Aurora Glassmorphism Background */
body::before {
    content: "";
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    z-index: -2;
    background:
        radial-gradient(circle at 50% 50%, rgba(136, 151, 109, 0.5), transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(201, 169, 110, 0.4), transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(156, 171, 132, 0.4), transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(245, 239, 214, 0.6), transparent 50%);
    filter: blur(80px);
    animation: auroraMove 25s linear infinite;
    pointer-events: none;
}

@keyframes auroraMove {
    0% {
        transform: rotate(0deg) translate(0, 0);
    }

    33% {
        transform: rotate(120deg) translate(-2%, 3%);
    }

    66% {
        transform: rotate(240deg) translate(2%, -3%);
    }

    100% {
        transform: rotate(360deg) translate(0, 0);
    }
}

body::after {
    /* No patterns, just pure clean style */
    content: none;
}

/* ============================================
   Scroll Reveal Animation (class-based)
   ============================================ */
.reveal-init {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-init.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   Typography
   ============================================ */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ============================================
   Utilities
   ============================================ */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 80px 0;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    gap: 8px;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(136, 151, 109, 0.35);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(136, 151, 109, 0.45);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--white);
}

.glass-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-lg);
}

/* ============================================
   Navigation
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(245, 239, 214, 0.88);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    height: 70px;
    border-bottom: 1px solid rgba(136, 151, 109, 0.15);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    font-family: var(--font-heading);
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links li a {
    font-weight: 500;
    font-size: 0.95rem;
    opacity: 0.75;
}

.nav-links li a:hover {
    color: var(--primary);
    opacity: 1;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    padding: 80px 0 60px;
    display: flex;
    align-items: center;
    min-height: 100vh;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    width: 100%;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(136, 151, 109, 0.12);
    color: var(--primary-dark);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(136, 151, 109, 0.25);
}

.hero-title {
    font-size: 3.6rem;
    margin-bottom: 24px;
    color: var(--black);
    line-height: 1.1;
}

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

.hero-text {
    font-size: 1.1rem;
    color: var(--grey-text);
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
}

.hero-img-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phone-img {
    width: 100%;
    max-width: 220px;
    height: auto;
    object-fit: contain;
    border-radius: 28px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.18);
    transition: transform 0.8s ease;
    position: relative;
    z-index: 1;
}

.hero-phone-img:hover {
    transform: translateY(-8px);
}

/* Floating Info Badges */
.floating-badge {
    position: absolute;
    background: var(--white);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float 4s ease-in-out infinite;
    font-size: 0.82rem;
    white-space: nowrap;
    z-index: 2;
    max-width: 180px;
}

.fb-1 {
    bottom: 30px;
    left: -10px;
    animation-delay: 0s;
}

.fb-2 {
    top: 30px;
    right: -10px;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* ============================================
   Placeholder Utility
   ============================================ */
.placeholder {
    background: linear-gradient(135deg, #e8e4d9, #f0ece0);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 0.85rem;
    font-weight: 500;
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    border: 2px dashed rgba(136, 151, 109, 0.3);
}

.placeholder::after {
    content: "IMAGE PLACEHOLDER";
}

.placeholder-hero {
    aspect-ratio: 4/3;
}

.placeholder-square {
    aspect-ratio: 1/1;
}

/* ============================================
   Marquee
   ============================================ */
.marquee {
    background: var(--bg-dark);
    margin: 0;
    color: var(--primary-light);
    padding: 20px 0;
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.marquee-content {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    margin: 0 40px;
    letter-spacing: 3px;
}

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* ============================================
   Features Grid
   ============================================ */
.features {
    background: var(--surface);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -5%;
    width: 35%;
    height: 50%;
    background: radial-gradient(circle, rgba(136, 151, 109, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.section-head {
    max-width: 700px;
    margin: 0 auto 60px;
    text-align: center;
}

.section-head h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-head p {
    color: var(--grey-text);
    font-size: 1.05rem;
}

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.feat-card {
    padding: 36px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    transition: var(--transition);
    border: 1px solid rgba(221, 216, 196, 0.6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.feat-card:nth-child(2) {
    transition-delay: 0.08s;
}

.feat-card:nth-child(3) {
    transition-delay: 0.16s;
}

.feat-card:nth-child(4) {
    transition-delay: 0.24s;
}

.feat-card:nth-child(5) {
    transition-delay: 0.32s;
}

.feat-card:nth-child(6) {
    transition-delay: 0.40s;
}

.feat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.07);
    border-color: var(--primary-light);
}

.feat-icon {
    width: 56px;
    height: 56px;
    background: rgba(136, 151, 109, 0.12);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feat-card h3 {
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.feat-card p {
    color: var(--grey-text);
    font-size: 0.93rem;
    line-height: 1.65;
}

/* ============================================
   Dual Column Sections
   ============================================ */
.dual-section {
    padding: 80px 0;
    overflow: hidden;
}

.dual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Remove direction:rtl trick — use order instead */
.dual-grid.reverse .dual-phone {
    order: 2;
}
.dual-grid.reverse .dual-content {
    order: 1;
}

.dual-phone {
    display: flex;
    justify-content: center;
    align-items: center;
}

.dual-phone .hero-img-wrapper {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.dual-phone .hero-phone-img {
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.14);
    display: block;
}

.dual-content h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
}

.dual-content p {
    margin-bottom: 28px;
    color: var(--grey-text);
    font-size: 1.05rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-weight: 500;
    font-size: 0.95rem;
}

.feature-list li i {
    color: var(--primary);
    flex-shrink: 0;
}

/* ============================================
   App Showcase
   ============================================ */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    margin-top: 60px;
}

.showcase-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
}

.showcase-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.showcase-img {
    width: 100%;
    background: var(--bg-light);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 28px 28px 0;
    min-height: 320px;
}

.showcase-img img {
    width: auto;
    max-width: 55%;
    height: auto;
    max-height: 380px;
    object-fit: contain;
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.10);
    display: block;
}

.showcase-info {
    padding: 24px 28px 28px;
    flex: 1;
}

.showcase-info h4 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.showcase-info p {
    color: var(--grey-text);
    font-size: 0.92rem;
    line-height: 1.65;
}

/* ============================================
   Testimonials — Wall of Love
   ============================================ */
.testimonials {
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: "";
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 45%;
    height: 60%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.test-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.test-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.test-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
}

.test-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    flex-shrink: 0;
    object-fit: cover;
    border: 2px solid var(--border);
}

.test-user h5 {
    font-size: 1rem;
}

.test-user span {
    font-size: 0.82rem;
    color: var(--grey-text);
}

.test-content {
    font-size: 0.93rem;
    font-style: italic;
    color: var(--grey-text);
    line-height: 1.7;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: var(--white);
    padding: 40px 0 40px;
    position: relative;
}

.footer-cta {
    background: var(--primary);
    padding: 48px;
    border-radius: var(--radius-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    box-shadow: var(--glow);
    gap: 32px;
}

.footer-cta h2 {
    font-size: 2.4rem;
    margin: 0;
    line-height: 1.2;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 0;
}

.footer-brand .logo {
    font-size: 2.2rem;
    margin-bottom: 20px;
    display: block;
}

.footer-brand p {
    opacity: 0.55;
    font-size: 1rem;
    line-height: 1.8;
}

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.social-link {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-4px);
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 28px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 28px;
    height: 2px;
    background: var(--primary);
}

.footer-links a {
    display: block;
    margin-bottom: 14px;
    font-size: 0.95rem;
    opacity: 0.5;
    transition: var(--transition);
}

.footer-links a:hover {
    opacity: 1;
    color: var(--primary-light);
    transform: translateX(6px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    opacity: 0.4;
}

/* ============================================
   Legal Pages
   ============================================ */
.legal-header {
    background: var(--bg-dark);
    color: var(--white);
    padding: 120px 0 60px;
    text-align: center;
}

.legal-content {
    background: var(--white);
    max-width: 900px;
    margin: -40px auto 100px;
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.05);
}

.legal-content h3 {
    margin: 36px 0 16px;
    color: var(--primary);
}

.legal-content p,
.legal-content li {
    margin-bottom: 18px;
    color: var(--grey-text);
    line-height: 1.75;
}

.legal-content ul {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 28px;
}

#download h2 {
    font-size: 2.8rem;
}

/* ============================================
   Hamburger Menu
   ============================================ */
.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--black);
    padding: 4px 8px;
    line-height: 1;
}

.mobile-menu {
    flex-direction: column;
    background: rgba(245, 239, 214, 0.98);
    backdrop-filter: blur(16px);
    padding: 0 24px;
    border-top: 1px solid rgba(136,151,109,0.15);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: max-height 0.35s cubic-bezier(0.16,1,0.3,1),
                opacity 0.3s ease,
                transform 0.35s cubic-bezier(0.16,1,0.3,1),
                padding 0.3s ease;
    display: flex;
}

.mobile-menu.open {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
    padding: 12px 24px 20px;
}

.mobile-menu a {
    padding: 12px 0;
    font-weight: 500;
    font-size: 1rem;
    border-bottom: 1px solid rgba(136,151,109,0.12);
    color: var(--black);
}

.mobile-menu a:last-child {
    border-bottom: none;
    margin-top: 8px;
    background: var(--primary);
    color: white;
    text-align: center;
    border-radius: var(--radius-md);
    padding: 12px;
}

/* ============================================
   Responsive — iPad Pro / Large Tablet (1024px)
   ============================================ */
@media (max-width: 1024px) {
    .section-padding { padding: 60px 0; }
    .dual-section { padding: 60px 0; }
    .section-head { margin-bottom: 40px; }

    .hero { padding: 90px 0 40px; min-height: auto; }
    .hero-title { font-size: 2.6rem; }
    .hero-text { font-size: 1rem; margin-bottom: 28px; }
    .hero-grid { gap: 32px; }
    .hero-visual { padding: 20px 10px; }
    .hero-phone-img { max-width: 190px; }

    .fb-1 { left: 0; bottom: 16px; font-size: 0.75rem; padding: 10px 12px; }
    .fb-2 { right: 0; top: 16px; font-size: 0.75rem; padding: 10px 12px; }

    .feat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .feat-card { padding: 24px; }

    .testimonial-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .test-card { padding: 22px; }

    .showcase-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    .showcase-img { min-height: 220px; padding: 20px 20px 0; }
    .showcase-img img { max-width: 50%; max-height: 260px; }
    .showcase-info { padding: 18px 20px 22px; }

    .dual-grid { gap: 32px; }
    .dual-content h2 { font-size: 2rem; }
    .dual-content p { font-size: 0.97rem; margin-bottom: 20px; }
    .dual-phone .hero-img-wrapper { max-width: 200px; }
    .dual-phone .hero-phone-img { max-height: 460px; }

    .footer-cta { padding: 36px 32px; flex-direction: column; text-align: center; margin-bottom: 48px; }
    .footer-cta h2 { font-size: 1.8rem; }
    .footer-main { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-brand .logo { font-size: 1.8rem; }

    #download h2 { font-size: 2.2rem !important; }
    .footer { padding: 32px 0 32px; }
}

/* ============================================
   Responsive — Mobile (≤767px)
   ============================================ */
@media (max-width: 767px) {
    .container { padding: 0 16px; }
    .section-padding { padding: 56px 0; }
    .dual-section { padding: 56px 0; }

    /* Nav */
    .nav-links,
    .nav-actions { display: none; }
    .hamburger { display: block; }
    .nav { position: fixed; }

    /* Hero */
    .hero {
        padding: 72px 0 40px;
        min-height: auto;
    }
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 0;
    }
    .hero-content { margin: 0 auto; }
    .hero-actions { justify-content: center; }
    .hero-title { font-size: 2.2rem; }
    .hero-text { font-size: 1rem; margin-bottom: 28px; }
    .hero-visual { display: none; }

    /* Section heads */
    .section-head h2,
    .dual-content h2 { font-size: 1.9rem; }
    .section-head { margin-bottom: 40px; }

    /* Showcase */
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .showcase-img {
        min-height: 280px;
        padding: 24px 24px 0;
    }
    .showcase-img img {
        max-width: 60%;
        max-height: 340px;
    }

    /* Testimonials */
    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* Dual sections — stack, no RTL */
    .dual-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
        direction: ltr !important;
    }
    .dual-grid.reverse .dual-phone,
    .dual-grid.reverse .dual-content {
        order: unset;
    }
    .dual-phone { display: flex; }
    .dual-phone .hero-img-wrapper { max-width: 200px; }
    .dual-phone .hero-phone-img { max-height: 400px; }
    .feature-list li { justify-content: center; }
    .dual-content .btn { margin-top: 16px !important; }

    /* Download CTA */
    #download h2 { font-size: 2rem !important; }
    #download .hero-actions { flex-direction: column; align-items: center; }
    #download .btn { width: 100%; max-width: 280px; }

    /* Footer */
    .footer-cta {
        padding: 32px 20px;
        flex-direction: column;
        text-align: center;
        margin-bottom: 48px;
        border-radius: var(--radius-lg);
    }
    .footer-cta h2 { font-size: 1.6rem; }
    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    /* Legal */
    .legal-header { padding: 80px 0 32px; }
    .legal-content { padding: 20px; margin: 0 auto 48px; }

    /* Footer */
    .footer { padding: 28px 0 28px; }
}