/* ===== App Download Banner ===== */
.app-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #2B1F35;
    color: white;
    z-index: 1000;
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(43, 31, 53, 0.3);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.app-banner.show {
    transform: translateY(0);
}

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

.banner-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.banner-logo {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.banner-text h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.banner-text p {
    margin: 0;
    font-size: 13px;
    opacity: 0.9;
    font-weight: 500;
}

.banner-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.banner-btn {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.banner-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.banner-close {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 4px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.banner-close:hover {
    opacity: 1;
}

/* Adjust body padding when banner is shown */
body.banner-shown {
    padding-top: 70px;
}

/* Mobile responsive for banner */
@media (max-width: 768px) {
    .banner-content {
        padding: 0 15px;
    }

    .banner-text h4 {
        font-size: 14px;
    }

    .banner-text p {
        font-size: 11px;
    }

    .banner-btn {
        padding: 6px 12px;
        font-size: 12px;
    }

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

    body.banner-shown {
        padding-top: 60px;
    }
}

/* ===== Base Styles ===== */
:root {
    /* Primary Colors - Unified Purple Theme */
    --primary: #7c3aed;
    --primary-dark: #5b21b6;
    --primary-light: #a855f7;
    --primary-ultra-light: #c4b5fd;

    /* Secondary Colors - Warm Accent */
    --secondary: #f59e0b;
    --secondary-dark: #d97706;
    --secondary-light: #fbbf24;
    --secondary-ultra-light: #fef3c7;

    /* Neutral Colors - Modern and Clean */
    --dark: #1e1b4b;
    --gray-dark: #374151;
    --gray: #6b7280;
    --gray-light: #d1d5db;
    --light: #f9fafb;
    --white: #ffffff;

    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, var(--primary-light), var(--primary), var(--primary-dark));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-light), var(--secondary));
    --gradient-soft: linear-gradient(135deg, #faf5ff, #f3e8ff);

    /* Status Colors */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;

    /* Typography */
    --font-primary: 'Poppins', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-round: 50%;

    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--primary-dark);
}

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

/* ===== Header Styles ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #2B1F35;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background: #2B1F35;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    text-decoration: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--white);
    transition: var(--transition);
}

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

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

.download-btn {
    padding: 0.625rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 500;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-decoration: none;
    transition: var(--transition);
}

.download-btn:hover {
    background-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--primary);
    cursor: pointer;
}

/* ===== Hero Section ===== */
.hero {
    padding: 3rem 0 2rem;
    position: relative;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(168, 85, 247, 0.4) 0%, transparent 60%),
                radial-gradient(circle at 70% 80%, rgba(245, 158, 11, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-wrapper {
    display: flex;
    align-items: center;
    min-height: 40vh;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 500px;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.hero-cta {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.hero-image {
    flex-shrink: 0;
}

.app-logo {
    width: 120px;
    height: 120px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

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

.btn-demo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-demo:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.hero-badge {
    display: inline-block;
    padding: 0.375rem 1.25rem;
    background-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-xl);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 2rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.feature-item:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.feature-item i {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
}

.feature-item span {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: var(--light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.hero-image {
    flex: 0.8;
    display: flex;
    justify-content: center;
    position: relative;
    padding: 1.5rem;
}

.app-image {
    width: 150px;
    height: 150px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    border-radius: var(--radius-xl);
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.2));
    animation: float 6s ease-in-out infinite;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 10px;
}

.hero-image-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-round);
    filter: blur(40px);
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* ===== Video Section ===== */
.video-section {
    padding: 4rem 0;
    background: var(--white);
}

.video-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.video-content {
    text-align: left;
}

.video-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.video-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    line-height: 1.6;
}

.video-container {
    position: relative;
}

.video-frame {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 2;
}

.video-play-button:hover {
    background: var(--white);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-play-button i {
    font-size: 2rem;
    color: var(--primary);
    margin-left: 4px;
}

.video-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

.video-overlay h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.video-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* ===== Features Section ===== */
.features {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.features-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.features-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: #ffffff;
    position: relative;
}

.feature-icon.master-alarm {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.feature-icon.smart-schedule {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
}

.feature-icon.notifications {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.feature-icon.pdf-export {
    background: linear-gradient(135deg, #10b981, #059669);
}

.feature-icon.vacation {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.feature-icon.multilang {
    background: linear-gradient(135deg, #06b6d4, #0891b2);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-description {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Features Hero Section */
.features-hero {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.features-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #2B1F35, #4c1d95);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(43, 31, 53, 0.3);
}

.features-badge i {
    color: #fbbf24;
}

.features-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #2B1F35, #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.features-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    line-height: 1.6;
    font-weight: 400;
}

/* Features Stats */
.features-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2B1F35;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

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

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

/* Features Showcase */
.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.feature-card.premium {
    background: var(--white);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card.premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #2B1F35, #7c3aed, #fbbf24);
}

.feature-card.premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
}

.feature-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.feature-icon.master {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.feature-icon.smart {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.feature-icon.reliable {
    background: linear-gradient(135deg, #10b981, #059669);
}

.feature-icon.elegant {
    background: linear-gradient(135deg, #f59e0b, #d97706);
}

.feature-badge {
    background: linear-gradient(135deg, #2B1F35, #4c1d95);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.feature-text {
    color: var(--gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.feature-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.benefit-tag {
    background: rgba(43, 31, 53, 0.1);
    color: #2B1F35;
    padding: 0.375rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Features CTA */
.features-cta {
    text-align: center;
    background: linear-gradient(135deg, #2B1F35, #4c1d95);
    border-radius: 32px;
    padding: 3rem 2rem;
    position: relative;
    overflow: hidden;
}

.features-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(245, 158, 11, 0.2) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 500px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.cta-button i:last-child {
    transition: transform 0.3s ease;
}

.cta-button:hover i:last-child {
    transform: translateX(4px);
}

.feature-card {
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.1);
    transition: var(--transition);
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(124, 58, 237, 0.08);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to bottom, var(--primary-light), transparent);
    opacity: 0.05;
    transition: var(--transition);
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.15);
}

.feature-card:hover::before {
    height: 100%;
}

.feature-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 2;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-text {
    color: var(--gray);
}

.feature-list {
    margin-top: 1.25rem;
    text-align: left;
    list-style: none;
}

.feature-list li {
    margin-bottom: 0.75rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.feature-list li i {
    color: var(--success);
    font-size: 1rem;
}

.coming-soon-tag {
    display: inline-block;
    margin-left: 0.5rem;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--white);
    background-color: var(--secondary);
    border-radius: var(--radius-xl);
    vertical-align: middle;
}

/* ===== How It Works Section ===== */
.how-it-works {
    padding: 4rem 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--light) 100%);
    position: relative;
    overflow: hidden;
}

.how-it-works-bg {
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-light) 0%, transparent 70%);
    opacity: 0.1;
    border-radius: var(--radius-round);
    z-index: 0;
}

.steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.step {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-number {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: 1.75rem;
    font-weight: 700;
    border-radius: var(--radius-round);
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.3);
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.step-text {
    color: var(--gray);
}

/* ===== Download Section ===== */
.download {
    padding: 5rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.download-content {
    max-width: 600px;
    margin: 0 auto;
}

.download-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.download-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.download-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.download-note {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

/* App Store Buttons - Black Elegant Style */
.app-store-btn, .google-play-btn, .btn-app-store-hero {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    min-width: 160px;
}

.app-store-btn, .btn-app-store-hero {
    background: #000000;
    color: #ffffff;
    border-color: #000000;
}

.app-store-btn:hover, .btn-app-store-hero:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.google-play-btn {
    background: #01875f;
    color: #ffffff;
    border-color: #01875f;
}

.google-play-btn:hover {
    background: #016a4a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(1, 135, 95, 0.3);
}

.google-play-btn.disabled {
    background: #6b7280;
    border-color: #6b7280;
    cursor: not-allowed;
    opacity: 0.7;
}

.google-play-btn.disabled:hover {
    transform: none;
    box-shadow: none;
    background: #6b7280;
}

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

.btn-text span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.btn-text strong {
    font-size: 1rem;
    font-weight: 600;
}

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

.download-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.download-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.download-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.btn-download:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.btn-download i {
    font-size: 1.25rem;
}

.download-note {
    font-size: 0.875rem;
    opacity: 0.8;
    margin: 0;
}

.download-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    margin-top: 3rem;
}

.app-preview {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.app-image-large {
    width: 250px;
    height: 250px;
    object-fit: contain;
    border-radius: var(--radius-xl);
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(10px);
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.download-content {
    flex: 1;
    max-width: 500px;
}

.download-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.store-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.store-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background-color: var(--dark);
    color: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.store-button.app-store {
    background-color: #000;
}

.store-button.play-store {
    background-color: #4285F4;
}

.store-button.disabled {
    background-color: var(--gray);
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

.store-button:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.store-button.disabled:hover {
    transform: none;
    box-shadow: none;
}

.store-button i {
    font-size: 2rem;
}

.button-text {
    display: flex;
    flex-direction: column;
}

.button-text span {
    font-size: 0.75rem;
    opacity: 0.8;
}

.button-text strong {
    font-size: 1.125rem;
    font-weight: 600;
}

.download-badge {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: var(--gradient-secondary);
    border-radius: var(--radius-xl);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* ===== FAQ Section ===== */
.faq {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.faq-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.6;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.faq-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-answer {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== Contact Section ===== */
.contact {
    padding: 4rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.contact-content {
    max-width: 500px;
    margin: 0 auto;
}

.contact-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.contact-subtitle {
    font-size: 1.125rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.contact-email:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ===== Footer ===== */
.footer {
    padding: 5rem 0 2rem;
    background-color: #2B1F35;
    color: var(--white);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.logo-img-small {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.footer-logo span {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-column {
    min-width: 160px;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-link {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--gray-light);
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.copyright {
    color: var(--gray-light);
    font-size: 0.875rem;
}

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

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}

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

.pulse {
    animation: pulse 2s infinite;
}

/* ===== Responsive Styles ===== */
@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-features {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 0.75rem;
    }

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

    .download-container {
        flex-direction: column;
        text-align: center;
    }

    .download-content {
        max-width: 100%;
    }

    .store-buttons {
        justify-content: center;
    }

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

    .app-image {
        width: 130px;
        height: 130px;
    }

    .hero-image-bg {
        width: 200px;
        height: 200px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        padding: 2rem;
        background-color: var(--white);
        box-shadow: var(--shadow-md);
        flex-direction: column;
    }

    .nav-menu.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

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

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        flex-direction: column;
        align-items: center;
    }

    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }

    /* Video Section Responsive */
    .video-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .video-frame {
        height: 250px;
    }

    .video-title {
        font-size: 2rem;
    }

    .download-title {
        font-size: 2rem;
    }

    /* Features Section Responsive */
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-title {
        font-size: 2rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    /* Download Section Responsive */
    .download-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .download-title {
        font-size: 2rem;
    }

    .app-store-btn, .google-play-btn, .btn-app-store-hero {
        width: 100%;
        max-width: 250px;
        justify-content: center;
    }

    /* FAQ Section Responsive */
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .faq-title {
        font-size: 2rem;
    }

    .faq-item {
        padding: 1.5rem;
    }

    /* Hero Section Responsive */
    .hero {
        padding: 2rem 0 1.5rem;
    }

    .hero-wrapper {
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .hero-text {
        max-width: 100%;
    }

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

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .app-logo {
        width: 100px;
        height: 100px;
    }

    .btn-app-store-hero, .btn-demo {
        width: 100%;
        max-width: 220px;
        justify-content: center;
        padding: 0.75rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 5rem 0 2.5rem;
    }

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

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

    .hero-features {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .feature-item {
        padding: 0.5rem 0.75rem;
    }

    .feature-item span {
        font-size: 0.8rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }

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

    .feature-card {
        padding: 1.5rem;
    }

    .store-button {
        width: 100%;
    }

    .app-image {
        width: 120px;
        height: 120px;
    }

    .hero-image-bg {
        width: 180px;
        height: 180px;
    }
}

/* ===== Logo Showcase Styles ===== */
.logo-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.logo-variant-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.1);
    overflow: hidden;
    border: 1px solid rgba(124, 58, 237, 0.08);
    transition: var(--transition);
}

.logo-variant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(124, 58, 237, 0.15);
}

.variant-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--gradient-soft);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.variant-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0;
}

.variant-badge {
    padding: 0.375rem 1rem;
    border-radius: var(--radius-xl);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.variant-badge.primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.variant-badge.secondary {
    background: var(--gradient-secondary);
    color: var(--white);
}

.logo-preview {
    padding: 3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    position: relative;
}

.logo-preview.light-bg {
    background: linear-gradient(135deg, #ffffff, #f8fafc);
}

.logo-preview.dark-bg {
    background: linear-gradient(135deg, var(--dark), #2d1b69);
}

.logo-display {
    width: 180px;
    height: 180px;
    object-fit: contain;
    border-radius: var(--radius-lg);
    filter: drop-shadow(0 10px 25px rgba(0, 0, 0, 0.1));
    transition: var(--transition);
}

.logo-variant-card:hover .logo-display {
    transform: scale(1.05);
}

.variant-info {
    padding: 2rem;
    background: var(--white);
}

.variant-description {
    font-size: 1rem;
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.variant-specs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.spec-item {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gray-dark);
    font-weight: 500;
}

.spec-item::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    margin-right: 0.75rem;
}

/* ===== Logo Guidelines Styles ===== */
.logo-guidelines {
    margin-top: 4rem;
    padding: 3rem;
    background: var(--gradient-soft);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.guidelines-header {
    text-align: center;
    margin-bottom: 3rem;
}

.guidelines-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.guidelines-subtitle {
    font-size: 1rem;
    color: var(--gray);
    margin: 0;
}

.guidelines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.guideline-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.1);
    transition: var(--transition);
}

.guideline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.12);
}

.guideline-card.do {
    border-left: 4px solid var(--success);
}

.guideline-card.dont {
    border-left: 4px solid var(--error);
}

.guideline-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.guideline-card.do .guideline-icon {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.guideline-card.dont .guideline-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

.guideline-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--dark);
}

.guideline-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.guideline-list li {
    padding: 0.5rem 0;
    color: var(--gray-dark);
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

.guideline-card.do .guideline-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1rem;
}

.guideline-card.dont .guideline-list li::before {
    content: '✗';
    color: var(--error);
    font-weight: bold;
    margin-right: 0.75rem;
    font-size: 1rem;
}

.logo-specs {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.08);
    border: 1px solid rgba(124, 58, 237, 0.1);
}

.specs-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.specs-grid .spec-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: var(--light);
    border-radius: var(--radius-md);
    border: 1px solid rgba(124, 58, 237, 0.08);
}

.spec-label {
    font-weight: 600;
    color: var(--gray-dark);
    font-size: 0.875rem;
}

.spec-value {
    font-weight: 500;
    color: var(--primary);
    font-size: 0.875rem;
}

/* ===== Responsive Logo Showcase ===== */
@media (max-width: 768px) {
    .logo-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .variant-header {
        padding: 1rem 1.5rem;
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }

    .logo-preview {
        padding: 2rem;
        min-height: 200px;
    }

    .logo-display {
        width: 150px;
        height: 150px;
    }

    .variant-info {
        padding: 1.5rem;
    }

    .logo-guidelines {
        padding: 2rem;
        margin-top: 3rem;
    }

    .guidelines-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }

    .guideline-card {
        padding: 1.5rem;
    }

    .logo-specs {
        padding: 1.5rem;
    }

    .specs-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ===== Dark Mode ===== */
@media (prefers-color-scheme: dark) {
    :root {
        --white: #1a1c2a;
        --light: #252a41;
        --dark: #f5f6fa;
        --gray-dark: #c7c9d9;
        --gray: #8c8fa3;
        --gray-light: #474a5c;
    }

    .header {
        background-color: rgba(26, 28, 42, 0.98);
    }

    .feature-card {
        background-color: #232534;
    }

    .feature-card::before {
        background: linear-gradient(to bottom, var(--primary), transparent);
    }

    .download-badge {
        background-color: #232534;
    }

    .footer {
        background-color: #15161f;
    }

    .logo-variant-card {
        background-color: #232534;
    }

    .variant-info {
        background-color: #232534;
    }
}