/* ===================================
   AstroMinder - Main Stylesheet
   =================================== */

/* Animated Background */
.animated-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #050510 0%, #0a0a1a 50%, #0f0f25 100%);
    overflow: hidden;
}

.stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 40px 70px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 90px 40px, #ffffff, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 130px 80px, #ffffff, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 300px 300px;
    animation: twinkle 4s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 0.5; }
}

.nebula {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(120, 50, 204, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(245, 158, 11, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(159, 90, 255, 0.1) 0%, transparent 60%);
    animation: nebulaMove 20s ease-in-out infinite alternate;
}

@keyframes nebulaMove {
    0% { transform: translateX(0) translateY(0); }
    100% { transform: translateX(30px) translateY(-30px); }
}

.galaxy-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 800px;
    height: 800px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 2px solid rgba(120, 50, 204, 0.1);
    animation: rotateGalaxy 60s linear infinite, moveRing 30s ease-in-out infinite alternate;
}

.galaxy-ring::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(159, 90, 255, 0.15);
    animation: rotateGalaxy 45s linear infinite reverse, moveRing 25s ease-in-out infinite alternate;
}

.galaxy-ring::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    border: 1px solid rgba(245, 158, 11, 0.1);
    animation: rotateGalaxy 30s linear infinite, moveRing 20s ease-in-out infinite alternate;
}

@keyframes rotateGalaxy {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes moveRing {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-45%, -55%) rotate(0deg); }
}

.shooting-stars {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shooting-stars::before,
.shooting-stars::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, rgba(255,255,255,0.8), transparent);
    animation: shoot 3s linear infinite;
}

.shooting-stars::before {
    top: 20%;
    left: 0;
    animation-delay: 0s;
}

.shooting-stars::after {
    top: 60%;
    left: 0;
    animation-delay: 1.5s;
}

@keyframes shoot {
    0% { transform: translateX(-100px) translateY(0); opacity: 0; }
    10% { opacity: 1; }
    30% { transform: translateX(100vw) translateY(100px); opacity: 0; }
    100% { transform: translateX(100vw) translateY(100px); opacity: 0; }
}

.orbiting-body {
    position: absolute;
    border-radius: 50%;
    animation: orbitBody linear infinite;
}

.central-star {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.6) 25%, rgba(200, 200, 255, 0.2) 50%, transparent 70%);
    box-shadow: 0 0 60px rgba(255, 255, 255, 0.8), 0 0 100px rgba(200, 200, 255, 0.4);
    top: 50%;
    left: 50%;
    margin-top: -25px;
    margin-left: -25px;
    z-index: 1;
}

.orbiting-body--sun {
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, #ff6b35 0%, #f7931e 50%, #cc4400 70%, transparent 85%);
    box-shadow: 0 0 40px rgba(255, 107, 53, 0.6), 0 0 80px rgba(247, 147, 30, 0.4);
    top: 50%;
    left: 50%;
    margin-top: -20px;
    margin-left: -20px;
    animation-duration: 60s;
    z-index: 2;
}

.orbiting-body--moon {
    width: 12px;
    height: 12px;
    background: radial-gradient(circle, #e0e0e0 0%, #a0a0a0 50%, transparent 70%);
    box-shadow: 0 0 15px rgba(224, 224, 224, 0.5);
    top: 50%;
    left: 50%;
    margin-top: -6px;
    margin-left: -6px;
    animation-duration: 45s;
    animation-delay: -15s;
    z-index: 2;
}

.orbiting-body--earth {
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, #4a90d9 0%, #2d5a87 50%, #1a3a5c 100%);
    box-shadow: 0 0 20px rgba(74, 144, 217, 0.5);
    top: 50%;
    left: 50%;
    margin-top: -8px;
    margin-left: -8px;
    animation-duration: 50s;
    animation-delay: -25s;
    z-index: 2;
}

@keyframes orbitBody {
    0% {
        transform: rotate(0deg) translateX(350px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(350px) rotate(-360deg);
    }
}

.orbiting-body--moon {
    animation-name: orbitBodyMoon;
}

@keyframes orbitBodyMoon {
    0% {
        transform: rotate(0deg) translateX(250px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(250px) rotate(-360deg);
    }
}

.orbiting-body--earth {
    animation-name: orbitBodyEarth;
}

@keyframes orbitBodyEarth {
    0% {
        transform: rotate(0deg) translateX(300px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(300px) rotate(-360deg);
    }
}

/* CSS Variables */
:root {
    --color-bg-primary: #050510;
    --color-bg-secondary: #0a0a1a;
    --color-bg-card: #0f0f25;
    --color-primary: #7832cc;
    --color-primary-light: #9f5aff;
    --color-accent: #f59e0b;
    --color-accent-gold: #ffd700;
    --color-text-white: #ffffff;
    --color-text-muted: rgba(255, 255, 255, 0.7);
    --color-text-dim: rgba(255, 255, 255, 0.5);
    --color-border: rgba(255, 255, 255, 0.1);
    --color-border-purple: rgba(120, 50, 204, 0.3);
    
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Outfit', sans-serif;
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    --border-radius-sm: 0.5rem;
    --border-radius-md: 0.75rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    --border-radius-full: 9999px;
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(120, 50, 204, 0.3);
    --shadow-glow-gold: 0 0 40px rgba(255, 215, 0, 0.2);
    
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text-white);
    background-color: transparent;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* Container */
.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(5, 5, 16, 0.7);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--color-border-purple);
    z-index: 1000;
    padding: 0;
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 var(--spacing-xl);
    max-width: 1440px;
    margin: 0 auto;
}

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

.nav__logo {
    width: 24px;
    height: 24px;
}

.nav__logo-img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.nav__brand-text {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text-white);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.nav__link {
    font-size: 14px;
    font-weight: 400;
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.nav__link:hover {
    color: var(--color-text-white);
}

.nav__btn-download {
    padding: 12px 18px;
    border: 1px solid var(--color-text-white);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-white);
    background: transparent;
    transition: all var(--transition-fast);
}

.nav__btn-download:hover {
    background-color: var(--color-text-white);
    color: var(--color-bg-primary);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-text-white);
    border-radius: 2px;
    transition: var(--transition-fast);
}

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

.hero__background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.hero__nebula {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at 30% 50%, rgba(120, 50, 204, 0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 30%, rgba(120, 50, 204, 0.1) 0%, transparent 40%);
}

.hero__orbit-line {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid rgba(120, 50, 204, 0.1);
    border-radius: 50%;
    animation: orbit 20s linear infinite;
}

@keyframes orbit {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero__stars {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.8), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255, 255, 255, 0.6), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(255, 255, 255, 0.9), transparent),
        radial-gradient(2px 2px at 130px 80px, rgba(255, 255, 255, 0.7), transparent),
        radial-gradient(1px 1px at 160px 120px, rgba(255, 255, 255, 0.8), transparent);
    background-repeat: repeat;
    background-size: 200px 200px;
}

.hero__container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.hero__content {
    max-width: 600px;
}

.hero__title {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    color: var(--color-text-white);
}

.hero__subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-xl);
}

.hero__badges {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.store-badge {
    display: inline-block;
    transition: transform var(--transition-fast);
}

.store-badge:hover {
    transform: translateY(-2px);
}

.store-badge img {
    height: 50px;
}

.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 8%;
}

.hero__glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(120, 50, 204, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero__phone {
    position: relative;
    z-index: 1;
    max-width: 300px;
}

.hero__phone-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: var(--shadow-glow);
}

.hero__floating-label {
    position: absolute;
    top: 75%;
    right: 10%;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
    padding: 8px 16px;
    background: rgba(15, 15, 37, 0.9);
    border: 1px solid var(--color-border-purple);
    border-radius: var(--border-radius-full);
    backdrop-filter: blur(10px);
    animation: float 3s ease-in-out infinite;
}

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

.floating-label__dot {
    width: 8px;
    height: 8px;
    background: var(--color-accent-gold);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.floating-label__text {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-white);
}

.hero__phone-logo-wrapper {
    position: absolute;
    top: 10px;
    left: -46px;
    z-index: 3;
}

.hero__phone-logo {
    width: 90px;
    height: 90px;
    border-radius: 16px;
}

/* Section Styles */
section {
    padding: var(--spacing-3xl) 0;
}

.section__header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.section__title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-white);
}

.section__subtitle {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Section */
.features {
    background-color: transparent;
}

.features__carousel {
    position: relative;
}

.features__scroll-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.features__scroll-container::-webkit-scrollbar {
    display: none;
}

.features__track {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-sm) 0;
}

.feature-card {
    flex: 0 0 auto;
    width: 350px;
    background-color: var(--color-bg-card);
    padding: var(--spacing-xl);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border);
    transition: all var(--transition-normal);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-border-purple);
    box-shadow: var(--shadow-glow);
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    margin-bottom: var(--spacing-md);
}

.feature-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-white);
}

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

.features__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.features__arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.features__arrow:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.features__arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.features__dots {
    display: flex;
    gap: var(--spacing-sm);
}

.features__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-border);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.features__dot--active {
    background-color: var(--color-primary);
    width: 30px;
    border-radius: var(--border-radius-full);
}

/* How It Works Section */
.how-it-works {
    background-color: transparent;
}

.how-it-works__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
}

.how-it-works__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.how-it-works__img {
    position: relative;
    width: 80%;
    z-index: 2;
    transform: translateX(-30px);
}

.how-it-works__cards {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 220px;
    position: absolute;
    right: 0%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

.how-it-works__card {
    width: 100%;
    border-radius: 0;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal);
}

.how-it-works__card:hover {
    transform: translateY(-5px);
}

.how-it-works__text {
    max-width: 500px;
}

.how-it-works__label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-primary-light);
    letter-spacing: 2px;
    margin-bottom: var(--spacing-md);
}

.how-it-works__title {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xl);
    color: var(--color-text-white);
    line-height: 1.3;
}

.how-it-works__steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.step {
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.step__dot {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 4px;
}

.step__dot-svg {
    width: 100%;
    height: 100%;
}

.step__dot-circle {
    fill: var(--color-primary-light);
}

.step__dot-path {
    fill: none;
    stroke: var(--color-primary-light);
    stroke-width: 2;
    stroke-dasharray: 63;
    stroke-dashoffset: 63;
    animation: drawPath 2s ease-in-out infinite;
}

@keyframes drawPath {
    0% {
        stroke-dashoffset: 63;
    }
    50% {
        stroke-dashoffset: 0;
    }
    100% {
        stroke-dashoffset: -63;
    }
}

.step__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-white);
    margin-bottom: 4px;
}

.step__description {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Gallery Section */
.gallery {
    background-color: transparent;
}

.gallery__carousel {
    position: relative;
}

.gallery__intro {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.gallery__title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-white);
}

.gallery__subtitle {
    color: var(--color-text-muted);
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.gallery__scroll-container {
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.gallery__scroll-container::-webkit-scrollbar {
    display: none;
}

.gallery__track {
    display: flex;
    gap: var(--spacing-lg);
    padding: var(--spacing-sm) 0;
}

.gallery-item {
    flex: 0 0 auto;
    width: auto;
    max-width: 400px;
    height: 550px;
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: transform var(--transition-normal);
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.gallery-item__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--spacing-lg);
    background: linear-gradient(to top, rgba(5, 5, 16, 0.95) 0%, transparent 100%);
    transform: translateY(100%);
    transition: transform var(--transition-normal);
}

.gallery-item:hover .gallery-item__overlay {
    transform: translateY(0);
}

.gallery-item__title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-white);
    margin-bottom: 4px;
}

.gallery-item__subtitle {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.gallery__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-md);
}

.gallery__arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-bg-card);
    border: 1px solid var(--color-border);
    color: var(--color-text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.gallery__arrow:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.gallery__arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.gallery__dots {
    display: flex;
    gap: var(--spacing-sm);
}

.gallery__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-border);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.gallery__dot--active {
    background-color: var(--color-primary);
    width: 30px;
    border-radius: var(--border-radius-full);
}

/* Download CTA Section */
.download-cta {
    background: linear-gradient(135deg, rgba(120, 50, 204, 0.3) 0%, rgba(120, 50, 204, 0.1) 100%);
    text-align: center;
    padding: var(--spacing-3xl) 0;
}

.download-cta__content {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
}

.download-cta__logo {
    margin-bottom: var(--spacing-md);
}

.download-cta__logo-img {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    box-shadow: var(--shadow-glow);
}

.download-cta__title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--color-text-white);
    line-height: 1.3;
}

.download-cta__subtitle {
    color: var(--color-text-muted);
    font-size: 1.125rem;
}

.download-cta__badges {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
}

.download-cta__pricing {
    color: var(--color-text-dim);
    font-size: 0.875rem;
}

/* Footer */
.footer {
    background-color: rgba(10, 10, 26, 0.8);
    color: var(--color-text-white);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    border-top: 1px solid var(--color-border);
}

.footer__content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    width: 24px;
    height: 24px;
    margin-bottom: var(--spacing-md);
}

.footer__logo-img {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

.footer__tagline {
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer__links-title {
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--color-text-white);
    font-size: 1rem;
}

.footer__links-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer__links-list a {
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
    font-size: 0.95rem;
}

.footer__links-list a:hover {
    color: var(--color-text-white);
}

.footer__bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.footer__copyright {
    color: var(--color-text-dim);
    font-size: 0.875rem;
}

.footer__status {
    color: var(--color-text-dim);
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero__content {
        margin: 0 auto;
    }
    
    .hero__badges {
        justify-content: center;
    }
    
    .hero__visual {
        margin-top: var(--spacing-2xl);
    }
    
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .how-it-works__content {
        grid-template-columns: 1fr;
    }
    
    .how-it-works__visual {
        flex-direction: column;
        align-items: center;
    }
    
    .how-it-works__img {
        width: 100%;
        max-width: 400px;
    }
    
    .how-it-works__cards {
        width: 100%;
        max-width: 400px;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .how-it-works__card {
        width: calc(50% - var(--spacing-sm));
    }
    
    .footer__content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }
    
    .nav__btn-download {
        display: none;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero__title {
        font-size: 2.5rem;
    }
    
    .hero__subtitle {
        font-size: 1rem;
    }
    
    .features__grid {
        grid-template-columns: 1fr;
    }
    
    .gallery__grid {
        grid-template-columns: 1fr;
    }
    
    .section__title {
        font-size: 2rem;
    }
    
    .how-it-works__title {
        font-size: 1.5rem;
    }
    
    .download-cta__title {
        font-size: 2rem;
    }
    
    .footer__content {
        grid-template-columns: 1fr;
    }
    
    .footer__bottom {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .nav {
        padding: 0 var(--spacing-md);
    }
    
    .hero__title {
        font-size: 2rem;
    }
    
    .section__title {
        font-size: 1.75rem;
    }
    
    .section__subtitle {
        font-size: 1rem;
    }
    
    .feature-card {
        padding: var(--spacing-lg);
    }
    
    .step {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .step__number {
        font-size: 1.25rem;
    }
    
    .store-badge img {
        height: 40px;
    }
}
