/* ===========================
   ZOUL MARKET LANDING PAGE
   Design System & Global Styles
   =========================== */

:root {
    /* Brand Colors */
    --primary: #E8751A;
    --primary-light: #F5952E;
    --primary-dark: #C75F0E;
    --accent: #D4A843;
    --accent-light: #F0D080;
    --gold: #C8A84E;
    --gold-light: #E8D494;
    
    /* UI Colors */
    --bg-primary: #0F0F14;
    --bg-secondary: #16161E;
    --bg-card: #1C1C28;
    --bg-card-hover: #222232;
    --bg-hero: #0A0A10;
    
    /* Text Colors */
    --text-primary: #F5F5F7;
    --text-secondary: #A0A0B0;
    --text-muted: #6A6A80;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #E8751A, #D4A843);
    --gradient-hero: linear-gradient(160deg, #0A0A10 0%, #1A1020 50%, #0F0F14 100%);
    --gradient-card: linear-gradient(145deg, rgba(232,117,26,0.08), rgba(212,168,67,0.04));
    --gradient-glow: radial-gradient(circle, rgba(232,117,26,0.15) 0%, transparent 70%);
    
    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1200px;
    
    /* Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    /* Shadows */
    --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
    --shadow-glow: 0 0 60px rgba(232,117,26,0.15);
    --shadow-btn: 0 4px 20px rgba(232,117,26,0.4);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* ===========================
   Navbar
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-base);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(30px) saturate(1.4);
    -webkit-backdrop-filter: blur(30px) saturate(1.4);
    padding: 10px 0;
    border-bottom: 1px solid rgba(232,117,26,0.12);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary);
}

.nav-logo-img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(232,117,26,0.3);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width var(--transition-base);
    border-radius: 2px;
}

.nav-links a:hover {
    color: var(--primary-light);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-download-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--gradient-primary);
    color: white;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-btn);
}

.nav-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(232,117,26,0.5);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: rgba(10,10,16,0.98);
    backdrop-filter: blur(20px);
    padding-top: 100px;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-base);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

.mobile-menu a {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    transition: color var(--transition-fast);
}

.mobile-menu a:hover {
    color: var(--primary-light);
}

.mobile-download-btn {
    display: inline-block;
    background: var(--gradient-primary) !important;
    color: white !important;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 1.1rem !important;
    box-shadow: var(--shadow-btn);
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Tajawal', sans-serif;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(232,117,26,0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid rgba(232,117,26,0.4);
}

.btn-outline:hover {
    border-color: var(--primary);
    background: rgba(232,117,26,0.08);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-badge {
    background: rgba(255,255,255,0.2);
    padding: 2px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
}

.btn-glow {
    animation: btnGlow 2s ease-in-out infinite;
}

@keyframes btnGlow {
    0%, 100% { box-shadow: 0 4px 20px rgba(232,117,26,0.4); }
    50% { box-shadow: 0 4px 40px rgba(232,117,26,0.6), 0 0 80px rgba(232,117,26,0.2); }
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--gradient-hero);
    padding-top: 80px;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(232,117,26,0.06) 0%, transparent 50%),
        radial-gradient(circle at 80% 30%, rgba(212,168,67,0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--primary-light);
    opacity: 0;
    animation: particleFloat 6s ease-in-out infinite;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(0) scale(0); }
    20% { opacity: 0.6; transform: translateY(-20px) scale(1); }
    80% { opacity: 0.3; transform: translateY(-100px) scale(0.5); }
    100% { opacity: 0; transform: translateY(-140px) scale(0); }
}

.hero-particles .particle-icon {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    object-fit: contain;
    z-index: 0;
    filter: drop-shadow(0 0 6px rgba(232,117,26,0.3));
    animation: iconFloat 8s ease-in-out infinite;
}

@keyframes iconFloat {
    0% {
        opacity: 0;
        transform: translateY(0) scale(0) rotate(0deg);
    }
    15% {
        opacity: 0.55;
        transform: translateY(-30px) scale(1) rotate(var(--icon-rotate, 10deg));
    }
    70% {
        opacity: 0.2;
        transform: translateY(-160px) scale(0.6) rotate(calc(var(--icon-rotate, 10deg) * -1));
    }
    100% {
        opacity: 0;
        transform: translateY(-220px) scale(0) rotate(var(--icon-rotate, 10deg));
    }
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(232,117,26,0.1);
    border: 1px solid rgba(232,117,26,0.25);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-light);
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary-light);
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 20px;
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero-title-highlight {
    display: block;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: fadeInUp 0.6s ease 0.4s both;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-light);
}

.stat-unit {
    font-size: 1rem;
    font-weight: 700;
    color: var(--accent);
    margin-right: 4px;
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.1);
}

/* Phone Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.phone-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 350px;
    height: 350px;
    background: var(--gradient-glow);
    border-radius: 50%;
    filter: blur(40px);
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.15); }
}

.phone-img {
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    transition: transform var(--transition-slow);
}

.phone-main {
    position: relative;
    z-index: 2;
    width: 70%;
    animation: phoneFloat 6s ease-in-out infinite;
}

.phone-secondary {
    position: absolute;
    bottom: 5%;
    left: 5%;
    width: 55%;
    z-index: 1;
    opacity: 0.9;
    transform: rotate(-5deg);
    animation: phoneFloat 6s ease-in-out infinite 1s;
}

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

.phone-secondary {
    animation-name: phoneFloat2;
}

@keyframes phoneFloat2 {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-10px) rotate(-5deg); }
}

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ===========================
   Section Headers
   =========================== */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    background: rgba(232,117,26,0.1);
    border: 1px solid rgba(232,117,26,0.2);
    color: var(--primary-light);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 900;
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ===========================
   Features Section
   =========================== */
.features {
    padding: var(--section-padding);
    position: relative;
}

.scroll-container {
    position: relative;
}

.scroll-container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 60px;
    height: calc(100% - 26px);
    background: linear-gradient(to right, transparent, rgba(15,15,20,0.0));
    pointer-events: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s;
}

.scroll-container::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: calc(100% - 26px);
    background: linear-gradient(to left, var(--bg-primary), transparent);
    pointer-events: none;
    z-index: 2;
}

.screenshots .scroll-container::before {
    background: linear-gradient(to left, var(--bg-secondary), transparent);
}

.scroll-hint {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-top: 12px;
    animation: hintPulse 2s ease-in-out infinite;
}

.scroll-hint svg {
    animation: hintSlide 1.5s ease-in-out infinite;
}

@keyframes hintPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes hintSlide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-8px); }
}

.features-grid {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255,255,255,0.05);
}

.features-grid::-webkit-scrollbar {
    height: 6px;
}

.features-grid::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.features-grid::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

.feature-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    min-width: 280px;
    max-width: 320px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(232,117,26,0.08) 0%, transparent 70%);
    border-radius: 0 0 0 100%;
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232,117,26,0.2);
    box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
    width: 200px;
    height: 200px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(232,117,26,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-light);
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-primary);
    color: white;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ===========================
   Screenshots Section
   =========================== */
.screenshots {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
}

.screenshots-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) rgba(255,255,255,0.05);
}

.screenshots-carousel::-webkit-scrollbar {
    height: 6px;
}

.screenshots-carousel::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
}

.screenshots-carousel::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 10px;
}

.screenshot-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.06);
    transition: all var(--transition-base);
    cursor: pointer;
    min-width: 280px;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.screenshot-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-glow);
    border-color: rgba(232,117,26,0.3);
}

.screenshot-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    object-position: top;
    transition: transform var(--transition-slow);
}

.screenshot-card:hover img {
    transform: scale(1.05);
}

.screenshot-label {
    padding: 14px 18px;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
    background: var(--bg-card);
}

/* ===========================
   Install Guide Section
   =========================== */
.install-guide {
    padding: var(--section-padding);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.step-card {
    background: var(--gradient-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 280px;
    transition: all var(--transition-base);
}

.step-card:hover {
    transform: translateY(-4px);
    border-color: rgba(232,117,26,0.2);
    box-shadow: var(--shadow-glow);
}

.step-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: white;
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-btn);
}

.step-content h3 {
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.step-connector {
    flex-shrink: 0;
    transform: scaleX(-1);
}

/* ===========================
   CTA Section
   =========================== */
.cta-section {
    padding: 80px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(232,117,26,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-content h2 {
    font-size: 2.6rem;
    font-weight: 900;
    margin-bottom: 16px;
}

.cta-content > p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.cta-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ===========================
   Feedback Section
   =========================== */
.feedback-section {
    padding: var(--section-padding);
}

.feedback-form {
    max-width: 640px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 28px;
}

.form-group label {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.form-group input[type="text"],
.form-group textarea {
    width: 100%;
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md);
    padding: 14px 18px;
    color: var(--text-primary);
    font-family: 'Tajawal', sans-serif;
    font-size: 1rem;
    transition: all var(--transition-base);
    resize: vertical;
}

.form-group input[type="text"]:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(232,117,26,0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

/* Star Rating */
.star-rating {
    display: flex;
    gap: 8px;
    direction: ltr;
}

.star {
    font-size: 2rem;
    color: var(--text-muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
    padding: 4px;
}

.star:hover,
.star.active {
    color: var(--accent);
    transform: scale(1.2);
    text-shadow: 0 0 20px rgba(212,168,67,0.5);
}

/* Radio Cards */
.radio-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.radio-card {
    flex: 1;
    min-width: 100px;
    cursor: pointer;
}

.radio-card input {
    display: none;
}

.radio-content {
    display: block;
    text-align: center;
    padding: 16px 12px;
    background: var(--bg-card);
    border: 2px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition-base);
    line-height: 1.5;
}

.radio-card input:checked + .radio-content {
    border-color: var(--primary);
    background: rgba(232,117,26,0.1);
    box-shadow: 0 0 20px rgba(232,117,26,0.15);
}

.radio-card:hover .radio-content {
    border-color: rgba(232,117,26,0.3);
}

/* Feedback Success */
.feedback-success {
    text-align: center;
    padding: 60px 20px;
    animation: fadeInUp 0.5s ease;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: bounceIn 0.6s ease;
}

.feedback-success h3 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 12px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feedback-success p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--bg-hero);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 12px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--primary-light);
}

.footer-links a,
.footer-contact a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
    transition: color var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--primary-light);
}

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

/* ===========================
   Download Toast
   =========================== */
.download-toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    z-index: 9999;
    background: var(--bg-card);
    border: 1px solid rgba(232,117,26,0.3);
    border-radius: var(--radius-lg);
    padding: 16px 28px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.5);
    opacity: 0;
    transition: all var(--transition-slow);
}

.download-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-icon {
    font-size: 1.5rem;
}

.toast-text strong {
    display: block;
    font-size: 0.95rem;
}

.toast-text span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounceIn {
    0% { transform: scale(0); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Scroll reveal animation */
.feature-card,
.step-card,
.screenshot-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.feature-card.visible,
.step-card.visible,
.screenshot-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.feature-card:nth-child(2) { transition-delay: 0.1s; }
.feature-card:nth-child(3) { transition-delay: 0.2s; }
.feature-card:nth-child(4) { transition-delay: 0.3s; }
.feature-card:nth-child(5) { transition-delay: 0.1s; }
.feature-card:nth-child(6) { transition-delay: 0.2s; }
.feature-card:nth-child(7) { transition-delay: 0.3s; }
.feature-card:nth-child(8) { transition-delay: 0.4s; }

.screenshot-card:nth-child(2) { transition-delay: 0.1s; }
.screenshot-card:nth-child(3) { transition-delay: 0.2s; }
.screenshot-card:nth-child(4) { transition-delay: 0.3s; }

/* ===========================
   Responsive Design
   =========================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .phone-wrapper {
        max-width: 350px;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-download-btn {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu {
        display: block;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .feature-card {
        min-width: 260px;
    }
    
    .screenshot-card {
        min-width: 260px;
    }
    
    .steps-grid {
        flex-direction: column;
    }
    
    .step-connector {
        transform: rotate(90deg) scaleX(-1);
    }
    
    .step-card {
        max-width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links a,
    .footer-contact a {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-stats {
        gap: 16px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .screenshots-carousel {
        grid-template-columns: 1fr;
    }
    
    .radio-group {
        grid-template-columns: repeat(2, 1fr);
        display: grid;
    }
    
    .phone-wrapper {
        max-width: 280px;
    }
}
