/* ===================================
   RESET & BASE STYLES
   =================================== */

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

:root {
    /* Colors */
    --primary: #000000;
    --primary-light: #1a1a1a;
    --accent-gold: #ffffff;
    --accent-blue: #333333;
    --text-dark: #ffffff;
    --text-light: #a0a0a0;
    --text-white: #ffffff;
    --bg-light: #0a0a0a;
    --bg-white: #000000;
    
    /* Glassmorphism */
    --glass-bg: rgba(20, 20, 20, 0.8);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    --gradient-gold: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    --gradient-blue: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 120px;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-white);
    background: #000000;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===================================
   NAVIGATION
   =================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    border-bottom: none;
    box-shadow: none;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 20px 24px 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white);
    letter-spacing: -0.02em;
}

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

.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

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

.nav-links a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--text-white);
    transition: width 0.3s ease;
}

.nav-links a:not(.btn-primary):hover::after {
    width: 100%;
}


/* ===================================
   BUTTONS
   =================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--text-white);
    color: #000000;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
    background: #f0f0f0;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: var(--text-white);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-large {
    padding: 16px 36px;
    font-size: 18px;
    border-radius: 16px;
}

/* ===================================
   HERO SECTION
   =================================== */

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

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    background: #000000;
    background-image: url('mockapP/background.jpg');
    background-size: cover;
    background-position: center;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

@media (max-width: 768px) {
    .hero-bg {
        background-image: url('mockapP/moblogo.jpg');
    }
    
    .hero-bg::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 70%;
        background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.6) 40%, rgba(0,0,0,0.9) 100%);
        z-index: 1;
    }
}



.liquid-shape {
    display: none;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    z-index: 1;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
}

.glass-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--glass-shadow);
    color: var(--text-white);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: pulse 2s infinite;
}

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

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 30px rgba(0,0,0,0.9), 0 2px 15px rgba(0,0,0,0.8);
}

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

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: #ffffff;
    margin-bottom: 40px;
    max-width: 540px;
    font-weight: 500;
    text-shadow: 
        0 2px 4px rgba(0,0,0,1),
        0 4px 8px rgba(0,0,0,0.95),
        0 6px 12px rgba(0,0,0,0.9),
        0 8px 20px rgba(0,0,0,0.85),
        0 12px 30px rgba(0,0,0,0.8);
}

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

.hero-cta .btn-large {
    min-width: 200px;
    justify-content: center;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    text-align: left;
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

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

.phone-mockup {
    position: relative;
    animation: floatPhone 6s infinite ease-in-out;
}

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

.phone-frame {
    position: relative;
    width: 280px;
    height: auto;
    border-radius: 0;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.phone-screen {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 0;
}

.phone-glow {
    display: none;
}

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

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--text-white);
    border-radius: 20px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--text-white);
    border-radius: 50%;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% {
        top: 10px;
        opacity: 1;
    }
    100% {
        top: 30px;
        opacity: 0;
    }
}

/* ===================================
   SECTION STYLES
   =================================== */

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

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

.section-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* ===================================
   PROBLEM SECTION
   =================================== */

.problem-section {
    padding: var(--section-padding) 0;
    background: #000000;
}

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

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


.problem-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.glass-card {
    padding: 40px;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ===================================
   SOLUTION SECTION
   =================================== */

.solution-section {
    padding: var(--section-padding) 0;
    background: #0a0a0a;
    color: var(--text-white);
}

.solution-section .section-title,
.solution-section .gradient-text {
    color: var(--text-white);
}

.solution-section .section-subtitle {
    color: var(--text-light);
}

.solution-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 60px;
}

.solution-mockup {
    width: 100%;
    display: flex;
    justify-content: center;
}

.solution-mockup .phone-mockup-small {
    max-width: 380px;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* ===================================
   FEATURES SECTION
   =================================== */

.features-section {
    padding: var(--section-padding) 0;
    background: #000000;
}

.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row.reverse {
    direction: rtl;
}

.feature-row.reverse > * {
    direction: ltr;
}

.feature-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: none;
}

.feature-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white);
}

.feature-title {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.2;
}

.feature-description {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 32px;
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
}

.feature-list svg {
    flex-shrink: 0;
    stroke: #10b981;
}

.phone-mockup-small {
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

.phone-mockup-small img {
    width: 100%;
    height: auto;
    border-radius: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.mockup-glow {
    display: none;
}

/* ===================================
   GALLERY SECTION
   =================================== */

.gallery-section {
    padding: var(--section-padding) 0;
    background: #000000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.gallery-item {
    padding: 0;
    overflow: hidden;
    aspect-ratio: 9/19.5;
    background: transparent;
    border: none;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
    filter: brightness(0.95);
}

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

/* ===================================
   DOWNLOAD SECTION
   =================================== */

.download-section {
    padding: var(--section-padding) 0;
    background: #000000;
}

.download-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.download-btn-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.download-btn-wrapper .btn-large {
    justify-content: center;
}

/* ===================================
   COMMUNITY SECTION
   =================================== */

.community-section {
    padding: var(--section-padding) 0;
    background: #0a0a0a;
}

.glass-card-large {
    padding: 80px;
    background-image: url('mockapP/back.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: none;
    border-radius: 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.glass-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 0;
    border-radius: 32px;
}

.glass-card-large > * {
    position: relative;
    z-index: 1;
}

.community-text-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.community-text-center .section-title {
    color: #ffffff;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 4px 8px rgba(0, 0, 0, 0.8),
        0 6px 12px rgba(0, 0, 0, 0.7);
}

.community-text-center .section-subtitle {
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.9),
        0 4px 8px rgba(0, 0, 0, 0.8),
        0 6px 12px rgba(0, 0, 0, 0.7);
    font-weight: 500;
}

.community-text-center .btn-large {
    margin-top: 40px;
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.3);
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 16px;
    will-change: transform;
}

.community-text-center .btn-large:hover {
    background: rgba(0, 0, 0, 0.45);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px 0 rgba(0, 0, 0, 0.4);
}

.community-text-center .btn-large svg {
    width: 20px;
    height: 20px;
}

.community-stats {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
}

.community-stat {
    display: flex;
    align-items: center;
    gap: 16px;
}


.community-visual {
    position: relative;
    height: 400px;
}

.floating-card {
    position: absolute;
    padding: 20px;
    background: rgba(30, 30, 30, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    animation: floatCard 6s infinite ease-in-out;
}

.card-1 {
    top: 20px;
    left: 20px;
    animation-delay: 0s;
}

.card-2 {
    top: 150px;
    right: 20px;
    animation-delay: 2s;
}

.card-3 {
    bottom: 20px;
    left: 60px;
    animation-delay: 4s;
}

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

.card-content {
    display: flex;
    gap: 12px;
}


.card-name {
    font-weight: 700;
    margin-bottom: 4px;
}

.card-message {
    font-size: 14px;
    color: var(--text-light);
}

/* ===================================
   CTA SECTION
   =================================== */

.cta-section {
    padding: var(--section-padding) 0;
    background: #000000;
    color: var(--text-white);
}

.cta-section .section-title {
    color: var(--text-white);
}

.cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

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

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 48px 0 32px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 32px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
}

.download-btn-ios {
    min-width: 280px;
    justify-content: center;
}

.download-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.3);
}

.download-text {
    text-align: left;
}

.download-label {
    font-size: 12px;
    opacity: 0.8;
    margin-bottom: 4px;
}

.download-store {
    font-size: 18px;
    font-weight: 700;
}

.cta-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ===================================
   FOOTER
   =================================== */

.footer {
    background: #000000;
    color: var(--text-white);
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo .logo-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    max-width: 400px;
    margin: 0 auto;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.footer-developer {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
}

.footer-developer span {
    color: rgba(255, 255, 255, 0.6);
}

.footer-developer a {
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-developer a:hover {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
}

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

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .hero-content {
        gap: 40px;
    }
    
    .feature-row {
        gap: 60px;
        margin-bottom: 80px;
    }
    
    .glass-card-large {
        padding: 60px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-links {
        display: none !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding-top: 40px;
    }
    
    .hero-phone {
        display: none;
    }
    
    .hero {
        min-height: 85vh;
        position: relative;
    }
    
    .hero-text {
        position: relative;
        z-index: 1;
    }
    
    .hero-title {
        font-size: 36px;
        line-height: 1.2;
        text-shadow: 0 4px 30px rgba(0,0,0,1), 0 2px 15px rgba(0,0,0,0.9), 0 0 40px rgba(0,0,0,0.8);
    }
    
    .hero-subtitle {
        font-size: 16px;
        color: #ffffff;
        font-weight: 500;
        text-shadow: 
            0 2px 4px rgba(0,0,0,1),
            0 4px 8px rgba(0,0,0,1),
            0 6px 12px rgba(0,0,0,0.95),
            0 8px 20px rgba(0,0,0,0.9),
            0 12px 35px rgba(0,0,0,0.85);
    }
    
    .glass-badge {
        background: rgba(0, 0, 0, 0.85);
        border-color: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(15px);
    }
    
    .btn-primary {
        background: #ffffff;
        color: #000000;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    }
    
    .btn-secondary {
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(15px);
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .community-text-center .btn-large {
        width: auto;
        padding: 12px 28px;
        font-size: 15px;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .community-text-center .btn-large:hover {
        background: rgba(0, 0, 0, 0.45);
    }
    
    .community-text-center .btn-large svg {
        width: 18px;
        height: 18px;
    }
    
    .hero-stats {
        gap: 32px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .glass-card {
        padding: 30px;
    }
    
    .feature-row,
    .feature-row.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }
    
    .phone-mockup-small {
        max-width: 280px;
    }
    
    .solution-mockup .phone-mockup-small {
        max-width: 280px;
    }
    
    .solution-content {
        gap: 40px;
    }
    
    .feature-title {
        font-size: 28px;
    }
    
    .section-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .glass-card-large {
        padding: 40px 24px;
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .community-visual {
        display: none;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }
    
    .download-btn-ios {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 15px;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .section-subtitle {
        font-size: 15px;
    }
    
    .community-text-center .btn-large {
        padding: 11px 24px;
        font-size: 14px;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(255, 255, 255, 0.2);
    }
    
    .community-text-center .btn-large:hover {
        background: rgba(0, 0, 0, 0.45);
    }
    
    .community-text-center .btn-large svg {
        width: 16px;
        height: 16px;
    }
    
    .glass-card {
        padding: 20px;
    }
    
    .glass-card-large {
        padding: 30px 20px;
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }
    
    .lead-text {
        font-size: 16px;
    }
    
    .solution-content {
        gap: 30px;
    }
    
    .feature-title {
        font-size: 24px;
    }
    
    .feature-description {
        font-size: 15px;
    }
    
    .problem-card h3 {
        font-size: 20px;
    }
    
    .logo-text {
        font-size: 20px;
    }
}

