/* ==========================================
   LUNARA LANDING PAGE - STYLES
   ========================================== */

/* CSS Custom Properties */
:root {
    /* Background Colors */
    --bg-deep-blue: #0E0D49;
    --bg-dark-violet: #3E1E97;

    /* Accent Colors */
    --accent-light-purple: #B57EFF;
    --accent-cyan: #55D7E5;
    --accent-pink: #F84FC0;
    --accent-yellow: #F5C75B;

    /* Text Colors */
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.5);

    /* Glass Effect */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-bg-hover: rgba(255, 255, 255, 0.12);

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 24px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(180deg, var(--bg-deep-blue) 0%, var(--bg-dark-violet) 50%, var(--bg-deep-blue) 100%);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    max-width: 100vw;
}

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

/* Stars Background */
.stars-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    animation: twinkle var(--duration) ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes twinkle {

    0%,
    100% {
        opacity: var(--opacity);
        transform: scale(1);
    }

    50% {
        opacity: 0.2;
        transform: scale(0.8);
    }
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    background: rgba(14, 13, 73, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-normal);
    max-width: 100vw;
    overflow-x: hidden;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-sizing: border-box;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 1.5rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition-fast);
}

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

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    color: var(--text-primary) !important;
}

.nav-cta:hover {
    background: var(--glass-bg-hover);
}

.nav-cta svg {
    width: 18px;
    height: 18px;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    justify-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    justify-self: start;
    max-width: 550px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    color: var(--accent-cyan);
    margin-bottom: 24px;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-light-purple) 0%, var(--accent-cyan) 50%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-cta {
    margin-bottom: 48px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-normal);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-light-purple) 0%, var(--accent-pink) 100%);
    color: white;
    box-shadow: 0 8px 32px rgba(181, 126, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(181, 126, 255, 0.4);
}

.btn-secondary {
    background: var(--glass-bg);
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    box-shadow: none;
    cursor: default;
    opacity: 0.7;
}

.btn-secondary:hover {
    transform: none;
    box-shadow: none;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.store-icon,
.play-store-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-small {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
}

.btn-big {
    font-size: 1rem;
    font-weight: 700;
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 32px;
}

.stat {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.stat svg {
    width: 18px;
    height: 18px;
    color: var(--accent-cyan);
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    position: relative;
    width: 280px;
    border-radius: 44px;
    overflow: visible;
    background: #1a1a1a;
    padding: 12px;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform-style: preserve-3d;
}

/* Phone Frame inner border highlight */
.phone-mockup::before {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 43px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
    z-index: 10;
}

/* Dynamic Island */
.phone-mockup::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90px;
    height: 28px;
    background: #000;
    border-radius: 20px;
    z-index: 20;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

/* Screen container */
.phone-screen {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    background: #000;
    transform: translateZ(1px);
}

/* 3D Phone Back (depth) */
.phone-back {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 50%, #0d0d0d 100%);
    border-radius: 44px;
    transform: translateZ(-8px);
}

/* 3D Phone Side (left edge) */
.phone-side-left {
    position: absolute;
    left: 0;
    top: 10px;
    bottom: 10px;
    width: 8px;
    background: linear-gradient(to left, #1a1a1a, #0d0d0d);
    transform: rotateY(-90deg) translateZ(4px);
    transform-origin: left center;
    border-radius: 2px 0 0 2px;
}

/* 3D Phone Side (right edge) */
.phone-side-right {
    position: absolute;
    right: 0;
    top: 10px;
    bottom: 10px;
    width: 8px;
    background: linear-gradient(to right, #1a1a1a, #0d0d0d);
    transform: rotateY(90deg) translateZ(4px);
    transform-origin: right center;
    border-radius: 0 2px 2px 0;
}

/* 3D Phone Side (top edge) */
.phone-side-top {
    position: absolute;
    top: 0;
    left: 10px;
    right: 10px;
    height: 8px;
    background: linear-gradient(to top, #1a1a1a, #0d0d0d);
    transform: rotateX(90deg) translateZ(4px);
    transform-origin: top center;
    border-radius: 2px 2px 0 0;
}

/* 3D Phone Side (bottom edge) */
.phone-side-bottom {
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    height: 8px;
    background: linear-gradient(to bottom, #1a1a1a, #0d0d0d);
    transform: rotateX(-90deg) translateZ(4px);
    transform-origin: bottom center;
    border-radius: 0 0 2px 2px;
}

/* Power button (right side) */
.phone-mockup .power-button {
    position: absolute;
    right: -3px;
    top: 120px;
    width: 4px;
    height: 60px;
    background: linear-gradient(to right, #2a2a2a, #1a1a1a);
    border-radius: 0 3px 3px 0;
    box-shadow: 2px 0 4px rgba(0, 0, 0, 0.3);
}

/* Volume buttons (left side) */
.phone-mockup .volume-up {
    position: absolute;
    left: -3px;
    top: 100px;
    width: 4px;
    height: 35px;
    background: linear-gradient(to left, #2a2a2a, #1a1a1a);
    border-radius: 3px 0 0 3px;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.3);
}

.phone-mockup .volume-down {
    position: absolute;
    left: -3px;
    top: 145px;
    width: 4px;
    height: 35px;
    background: linear-gradient(to left, #2a2a2a, #1a1a1a);
    border-radius: 3px 0 0 3px;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.3);
}

/* Silent switch (left side, small) */
.phone-mockup .silent-switch {
    position: absolute;
    left: -3px;
    top: 70px;
    width: 4px;
    height: 20px;
    background: linear-gradient(to left, #2a2a2a, #1a1a1a);
    border-radius: 3px 0 0 3px;
    box-shadow: -2px 0 4px rgba(0, 0, 0, 0.3);
}

.app-screenshot {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 32px;
}

/* 3D Tilt Effect Styles */
.phone-mockup {
    transform-style: preserve-3d;
    will-change: transform;
}

.hero-glow {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-light-purple) 0%, transparent 70%);
    opacity: 0.3;
    filter: blur(60px);
    z-index: -1;
}

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

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

/* ==========================================
   SECTION STYLES
   ========================================== */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    color: var(--accent-light-purple);
    font-weight: 500;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 16px;
}

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

/* ==========================================
   FEATURES SECTION
   ========================================== */
.features {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(85, 215, 229, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-light-purple) 0%, transparent 100%);
    opacity: 0.9;
    transition: all var(--transition-normal);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--text-primary);
    transition: all var(--transition-normal);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(181, 126, 255, 0.6);
}

.feature-card:hover .feature-icon svg {
    filter: drop-shadow(0 0 8px rgba(181, 126, 255, 0.8));
}

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

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

/* ==========================================
   SCREENSHOTS SECTION
   ========================================== */
.screenshots {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.screenshots-carousel {
    overflow: hidden;
    margin: 0 -24px;
    padding: 20px 0;
}

.screenshots-track {
    display: flex;
    gap: 24px;
    padding: 0 24px;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-300px * 7 - 24px * 7));
    }
}

.screenshots-track:hover {
    animation-play-state: paused;
}

.screenshot-item {
    flex-shrink: 0;
    width: 240px;
    position: relative;
}

.screenshot-item img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition-normal);
}

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

.screenshot-label {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 500;
    white-space: nowrap;
}

/* ==========================================
   USP SECTION
   ========================================== */
.usp {
    padding: var(--section-padding);
    position: relative;
    z-index: 1;
}

.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.usp-card {
    text-align: center;
    padding: 48px 32px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.usp-card:hover {
    transform: translateY(-8px);
    border-color: rgba(85, 215, 229, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.usp-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--accent-light-purple) 0%, var(--accent-cyan) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-normal);
}

.usp-icon svg {
    width: 36px;
    height: 36px;
    color: white;
    transition: all var(--transition-normal);
}

.usp-card:hover .usp-icon {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(181, 126, 255, 0.5), 0 0 30px rgba(85, 215, 229, 0.5);
}

.usp-card:hover .usp-icon svg {
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.9));
}

.usp-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.usp-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
    padding: 120px 24px;
    position: relative;
    z-index: 1;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 64px;
    background: linear-gradient(135deg, rgba(181, 126, 255, 0.15) 0%, rgba(85, 215, 229, 0.15) 100%);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    position: relative;
    overflow: hidden;
}

.cta-text h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.cta-text p {
    color: var(--text-secondary);
    font-size: 1.125rem;
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.cta-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-pink) 0%, transparent 70%);
    opacity: 0.2;
    filter: blur(80px);
    top: -100px;
    right: -100px;
    z-index: -1;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    padding: 48px 24px;
    border-top: 1px solid var(--glass-border);
    position: relative;
    z-index: 1;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
}

.footer-name {
    font-size: 1.25rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-primary);
}

.footer-credit {
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.heart {
    display: inline-block;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

/* Tablet */
@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
        padding: 0 16px;
    }

    .hero-text {
        order: 1;
        justify-self: center;
        max-width: 100%;
    }

    .hero-image {
        order: 0;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
        max-width: 90%;
    }

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

    .hero-cta {
        display: flex;
        justify-content: center;
    }

    .phone-mockup {
        width: 240px;
        padding: 10px;
        border-radius: 38px;
    }

    .phone-mockup::after {
        width: 70px;
        height: 22px;
        top: 16px;
    }

    .phone-screen {
        border-radius: 28px;
    }

    .app-screenshot {
        border-radius: 28px;
    }
}

/* Mobile */
@media (max-width: 768px) {

    /* Navbar Mobile Fixes */
    .navbar {
        width: 100vw;
        max-width: 100vw;
        padding: 12px 0;
    }

    .nav-container {
        padding: 0 16px;
        width: 100%;
        max-width: 100vw;
    }

    .nav-logo {
        font-size: 1.2rem;
        gap: 8px;
    }

    .logo-icon {
        width: 32px;
        height: 32px;
    }

    .nav-links {
        gap: 8px;
    }

    .nav-links a:not(.nav-cta) {
        display: none;
    }

    .nav-cta {
        padding: 8px 14px;
        font-size: 0.85rem;
    }

    .nav-cta svg {
        width: 16px;
        height: 16px;
    }

    /* Hero Mobile Fixes */
    .hero {
        padding: 90px 4vw 50px;
        min-height: auto;
        width: 100vw;
        max-width: 100vw;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .hero-content {
        gap: 25px;
        padding: 0;
        width: 100%;
        max-width: none;
        text-align: center;
        justify-items: center;
        box-sizing: border-box;
    }

    .hero-text {
        justify-self: center;
        width: 90vw;
        max-width: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        box-sizing: border-box;
    }

    .hero-badge {
        align-self: center;
    }

    .hero-title {
        width: 100%;
        text-align: center;
        font-size: clamp(1.8rem, 8vw, 3rem);
    }

    .hero-subtitle {
        width: 100%;
        max-width: none;
        text-align: center;
        font-size: clamp(1rem, 4vw, 1.25rem);
        padding: 0 2vw;
    }

    .hero-cta {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        width: 100%;
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .phone-mockup {
        width: clamp(200px, 65vw, 300px);
        padding: 10px;
        border-radius: 36px;
    }

    .hero-badge {
        font-size: 0.9rem;
        padding: 10px 18px;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 35px;
        padding: 0 10px;
    }

    .btn {
        padding: 16px 28px;
        gap: 14px;
        width: auto;
        max-width: 100%;
    }

    .btn-text .btn-small {
        font-size: 0.75rem;
    }

    .btn-text .btn-big {
        font-size: 1rem;
    }

    .play-store-icon {
        width: 30px;
        height: 30px;
    }

    .hero-stats {
        gap: 24px;
        margin-top: 10px;
    }

    .stat {
        font-size: 0.95rem;
    }

    .stat svg {
        width: 20px;
        height: 20px;
    }

    .phone-mockup {
        width: 260px;
        padding: 10px;
        border-radius: 36px;
    }

    .phone-mockup::after {
        width: 70px;
        height: 22px;
        top: 14px;
        border-radius: 16px;
    }

    .phone-screen {
        border-radius: 24px;
    }

    .app-screenshot {
        border-radius: 24px;
    }

    /* Power and volume buttons - hide on mobile */
    .phone-mockup .power-button,
    .phone-mockup .volume-up,
    .phone-mockup .volume-down,
    .phone-mockup .silent-switch {
        display: none;
    }

    .section-header {
        margin-bottom: 40px;
    }

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

    .section-subtitle {
        font-size: 0.95rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .feature-card {
        padding: 20px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.875rem;
    }

    .usp-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .usp-card {
        padding: 32px 24px;
    }

    .cta-section {
        padding: 80px 16px;
    }

    .cta-content {
        padding: 32px 20px;
    }

    .cta-text h2 {
        font-size: 1.4rem;
    }

    .cta-text p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .footer-content {
        gap: 20px;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px 20px;
    }

    .footer-links a {
        font-size: 0.8rem;
    }

    /* Screenshots carousel */
    .screenshots-carousel {
        margin: 0 -16px;
    }

    .screenshot-item {
        width: 160px;
    }

    .screenshot-label {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero {
        padding: 90px 12px 50px;
    }

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

    .hero-subtitle {
        font-size: 0.875rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 12px;
    }

    .phone-mockup {
        width: 180px;
        padding: 6px;
        border-radius: 28px;
    }

    .phone-mockup::after {
        width: 45px;
        height: 14px;
        top: 10px;
        border-radius: 12px;
    }

    .phone-screen {
        border-radius: 22px;
    }

    .app-screenshot {
        border-radius: 22px;
    }

    .screenshot-item {
        width: 140px;
    }

    .btn {
        padding: 10px 16px;
    }

    .section-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Focus States */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--accent-cyan);
    outline-offset: 4px;
}