:root {
    --bg-color: #FFF8E1;
    --text-color: #3E3E3E;
    --button-color: #FFB74D;
    --primary-color: #FFC107;
    --card-bg: #FFE0B2;
    --border-color: #FFD54F;
    --secondary-text: #8D6E63;
    --success-color: #4CAF50;
    --warning-color: #FF9800;
    --error-color: #F44336;
    --font-family: 'Inter', sans-serif;
}

/* Theme Variations */
:root[data-theme="light"] {
    --bg-color: #F5F5F5;
    --text-color: #000000;
    --button-color: black;
    --primary-color: black;
    --card-bg: #FFFFFF;
    --border-color: #E5E7EB;
    --secondary-text: #6B7280;
    --success-color: #059669;
    --warning-color: #D97706;
    --error-color: #DC2626;
    --font-family: 'Verdana', sans-serif;
}

:root[data-theme="dark"] {
    --bg-color: #0F1419;
    --text-color: #E5E7EB;
    --button-color: #374151;
    --primary-color: #60A5FA;
    --card-bg: #1F2937;
    --border-color: #374151;
    --secondary-text: #9CA3AF;
    --success-color: #10B981;
    --warning-color: #F59E0B;
    --error-color: #EF4444;
    --font-family: 'Verdana', sans-serif;
}

:root[data-theme="fruitful"] {
    --bg-color: #FFF8E1;
    --text-color: #3E3E3E;
    --button-color: #FFB74D;
    --primary-color: #FFC107;
    --card-bg: #FFE0B2;
    --border-color: #FFD54F;
    --secondary-text: #8D6E63;
    --success-color: #4CAF50;
    --warning-color: #FF9800;
    --error-color: #F44336;
    --font-family: 'Inter', sans-serif;
}

:root[data-theme="zen"] {
    --bg-color: #cedecf;
    --text-color: #2C3E50;
    --button-color: #cedecf;
    --primary-color: green;
    --card-bg: #F5F5DC;
    --border-color: #B0C4B1;
    --secondary-text: #546E7A;
    --success-color: #4CAF50;
    --warning-color: #FF9800;
    --error-color: #F44336;
    --font-family: 'Georgia', serif;
}

:root[data-theme="that_girl"] {
    --bg-color: #FCCDE2;
    --text-color: #8B0000;
    --button-color: #FCCDE2;
    --primary-color: #89CFF0;
    --card-bg: #FFEBF2;
    --border-color: #F8BBD9;
    --secondary-text: #B71C1C;
    --success-color: #4CAF50;
    --warning-color: #FF9800;
    --error-color: #F44336;
    --font-family: 'Courier New', monospace;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    transition: all 0.5s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 248, 225, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

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

.nav-brand {
    display: flex;
    align-items: center;
}

.brand-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-brand .logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.nav-brand h2 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.5rem;
    margin: 0;
    transition: all 0.3s ease;
}

.brand-link:hover .logo {
    transform: scale(1.05);
}

.brand-link:hover h2 {
    color: var(--button-color);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-color) 0%, #FFF3C4 100%);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 193, 7, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 183, 77, 0.1) 0%, transparent 50%);
    animation: float 6s ease-in-out infinite;
}

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

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    opacity: 0;
    animation: slideUp 1s ease 0.5s forwards;
}

.highlight {
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--secondary-text);
    margin-bottom: 30px;
    opacity: 0;
    animation: slideUp 1s ease 0.7s forwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    animation: slideUp 1s ease 0.9s forwards;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: var(--button-color);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 183, 77, 0.3);
}

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 183, 77, 0.4);
}

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

.btn-secondary:hover {
    background: var(--border-color);
    transform: translateY(-2px);
}

.hero-phone {
    display: flex;
    justify-content: center;
    opacity: 0;
    animation: slideUp 1s ease 1.1s forwards;
    padding-top: 40px;
    padding-bottom: 40px;
}

.phone-mockup {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1f1f23, #0c0c0e);
    border-radius: 40px;
    padding: 8px;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 2px rgba(255, 255, 255, 0.1),
        inset 0 -1px 2px rgba(0, 0, 0, 0.5);
    position: relative;
    transform: perspective(1000px) rotateY(-15deg);
    animation: phoneFloat 3s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.phone-mockup::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #333;
    border-radius: 3px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.5);
}

.phone-mockup::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: #1a1a1a;
    border-radius: 2px;
    border: 1px solid #333;
}

@keyframes phoneFloat {
    0%, 100% { transform: perspective(1000px) rotateY(-15deg) translateY(20px); }
    50% { transform: perspective(1000px) rotateY(-15deg) translateY(10px); }
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.screen-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--card-bg) 0%, var(--bg-color) 100%);
}

.app-preview {
    color: var(--secondary-text);
    font-size: 1.1rem;
    text-align: center;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(45deg);
    animation: bounce 2s infinite;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: rotate(45deg) translateY(0);
    }
    40% {
        transform: rotate(45deg) translateY(-10px);
    }
    60% {
        transform: rotate(45deg) translateY(-5px);
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--card-bg);
    position: relative;
    transition: all 0.5s ease;
}

/* Themes Section */
.themes {
    padding: 100px 0;
    background: var(--bg-color);
    transition: all 0.5s ease;
}

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

.theme-card {
    background: var(--card-bg);
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    cursor: pointer;
    border: 2px solid transparent;
}

.theme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.theme-card.active {
    border: 2px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(255, 193, 7, 0.3);
}

.theme-preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
}

.light-theme {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%) !important;
    border: 2px solid #e9ecef !important;
}

.dark-theme {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%) !important;
}

.fruitful-theme {
    background: linear-gradient(135deg, #FFC107 0%, #FFB74D 100%) !important;
}

.zen-theme {
    background: linear-gradient(135deg, #4CAF50 0%, #2E7D32 100%) !important;
}

.girl-theme {
    background: linear-gradient(135deg, #f8bbd9 0%, #e1bee7 100%) !important;
}

.more-coming {
    background: linear-gradient(135deg, #ddd 0%, #bbb 100%) !important;
    position: relative;
    overflow: hidden;
}

.more-coming::before {
    content: '🚀';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

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

.theme-card.coming-soon {
    border: 2px dashed var(--border-color) !important;
    position: relative;
}

.theme-card.coming-soon:hover {
    border-color: var(--primary-color) !important;
}

.theme-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-color);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

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

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

.feature-card {
    background: var(--card-bg);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 193, 7, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-color);
}

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

/* User Experience Section */
.user-experience {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, #FFF3C4 100%);
    position: relative;
}

.ux-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
    margin-bottom: 60px;
}

.central-phone {
    z-index: 2;
}

.phone-mockup-ux {
    width: 280px;
    height: 560px;
    background: linear-gradient(145deg, #1f1f23, #0c0c0e);
    border-radius: 40px;
    padding: 8px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.5),
        0 8px 16px rgba(0, 0, 0, 0.3),
        inset 0 1px 2px rgba(255, 255, 255, 0.15),
        inset 0 -1px 2px rgba(0, 0, 0, 0.6);
    animation: float 4s ease-in-out infinite;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.phone-mockup-ux::before {
    content: '';
    position: absolute;
    top: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 5px;
    background: #2a2a2a;
    border-radius: 3px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.7);
}

.phone-mockup-ux::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 45px;
    height: 3px;
    background: #1a1a1a;
    border-radius: 2px;
    border: 1px solid #333;
}

.phone-screen-ux {
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    border-radius: 30px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screen-content-ux {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.app-preview-ux {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

.ux-features {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.ux-feature-card {
    position: absolute;
    background: var(--card-bg);
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    width: 180px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.ux-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.ux-feature-card.top-left {
    top: 20px;
    left: 10%;
}

.ux-feature-card.top-right {
    top: 20px;
    right: 10%;
}

.ux-feature-card.bottom-left {
    bottom: 20px;
    left: 10%;
}

.ux-feature-card.bottom-right {
    bottom: 20px;
    right: 10%;
}

.ux-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.ux-feature-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-color);
}

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

.ux-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(30px);
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--card-bg);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--secondary-text);
    font-weight: 500;
}

/* Download Section */
.download {
    padding: 100px 0;
    background: var(--text-color);
    color: var(--bg-color);
}

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

.download-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--bg-color);
}

.download-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--bg-color);
    opacity: 0.9;
}

.app-store-button {
    display: inline-block;
    transition: transform 0.3s ease;
}

.app-store-button:hover {
    transform: scale(1.05);
}

.download-features {
    margin: 20px 0 30px;
}

.download-feature {
    color: var(--bg-color);
    opacity: 0.9;
    font-size: 1rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.floating-phone {
    display: flex;
    justify-content: center;
    animation: floatPhone 4s ease-in-out infinite;
}

@keyframes floatPhone {
    0%, 100% { transform: translateY(0px) rotate(2deg); }
    50% { transform: translateY(-15px) rotate(-2deg); }
}

.phone-mockup-large {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1f1f23, #0c0c0e);
    border-radius: 40px;
    padding: 8px;
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.6),
        0 15px 25px rgba(0, 0, 0, 0.4),
        inset 0 1px 3px rgba(255, 255, 255, 0.12),
        inset 0 -2px 3px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
}

.phone-mockup-large::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 6px;
    background: #2a2a2a;
    border-radius: 3px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.8);
}

.phone-mockup-large::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: #1a1a1a;
    border-radius: 2px;
    border: 1px solid #333;
}

.phone-screen-large {
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    border-radius: 30px;
    overflow: hidden;
}

.screen-content-large {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--button-color) 100%);
}

.app-preview-large {
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

/* Footer */
.footer {
    background: var(--text-color);
    color: var(--bg-color);
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
    margin-bottom: 30px;
}

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

.footer-brand .footer-logo {
    height: 35px;
    width: auto;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.footer-brand h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin: 0;
}

.footer-brand-combo:hover .footer-logo {
    opacity: 1;
    transform: scale(1.05);
}

/* Theme-specific logo filters */
:root[data-theme="dark"] .footer-brand .footer-logo {
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.3)) brightness(1.1);
}

:root[data-theme="light"] .footer-brand .footer-logo {
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.2)) brightness(0.9);
}

.footer-brand p {
    color: var(--bg-color);
    opacity: 0.7;
}

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

.footer-link {
    color: var(--bg-color);
    opacity: 0.7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link:hover {
    color: var(--primary-color);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--bg-color);
    border-opacity: 0.1;
    color: var(--bg-color);
    opacity: 0.5;
}

/* Animation Classes */
.animate-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

.slide-in-left {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

.slide-in-right {
    opacity: 1 !important;
    transform: translateX(0) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .navbar {
        padding: 12px 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-links {
        display: none;
    }
    
    .nav-brand .logo {
        height: 35px;
    }
    
    .nav-brand h2 {
        font-size: 1.3rem;
    }
    
    /* Hero Section */
    .hero {
        padding: 80px 15px 0;
        min-height: 90vh;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
        padding: 0 10px;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .phone-mockup {
        width: 220px;
        height: 440px;
    }
    
    .hero-phone {
        padding-top: 20px;
        padding-bottom: 20px;
    }
    
    /* Sections */
    .container {
        padding: 0 15px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Features */
    .features {
        padding: 60px 0;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .feature-card {
        padding: 30px 20px;
    }
    
    /* Themes */
    .themes {
        padding: 60px 0;
    }
    
    .themes-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .theme-card {
        padding: 25px 15px;
    }
    
    .theme-preview {
        width: 60px;
        height: 60px;
    }
    
    /* UX Section */
    .user-experience {
        padding: 60px 0;
    }
    
    .ux-showcase {
        min-height: 300px;
        margin-bottom: 30px;
        padding: 20px 0;
    }
    
    .phone-mockup-ux {
        width: 200px;
        height: 400px;
    }
    
    .ux-feature-card {
        position: static;
        width: 100%;
        margin-bottom: 15px;
        padding: 20px 15px;
    }
    
    .ux-features {
        position: static;
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 30px;
    }
    
    .ux-icon {
        font-size: 1.5rem;
    }
    
    .ux-feature-card h4 {
        font-size: 1rem;
    }
    
    .ux-feature-card p {
        font-size: 0.85rem;
    }
    
    .ux-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .stat-item {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    /* Download */
    .download {
        padding: 60px 0;
    }
    
    .download-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .download-text h2 {
        font-size: 2rem;
    }
    
    .download-text p {
        font-size: 1.1rem;
    }
    
    .download-features {
        margin: 15px 0 25px;
    }
    
    .phone-mockup-large {
        width: 220px;
        height: 440px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 20px;
    }
    
    .footer-brand-combo {
        justify-content: center;
    }
    
    .footer-brand .footer-logo {
        height: 30px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .themes-grid {
        grid-template-columns: 1fr;
    }
    
    .ux-stats {
        grid-template-columns: 1fr;
    }
    
    .btn-primary, .btn-secondary {
        max-width: 200px;
    }
    
    .phone-mockup {
        width: 180px;
        height: 360px;
    }
    
    .phone-mockup-ux {
        width: 160px;
        height: 320px;
    }
    
    .phone-mockup-large {
        width: 180px;
        height: 360px;
    }
}