:root {
    --primary: #263238;
    /* Anthracite */
    --primary-dark: #1e282c;
    --accent: #FF6F00;
    /* Orange */
    --accent-hover: #ff8f00;
    --text: #374151;
    --text-light: #6B7280;
    --bg: #F3F4F6;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

/* Hero */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #fff 0%, #f3f4f6 100%);
    overflow: hidden;
    min-height: 100vh;
    /* Ensure full height */
    display: flex;
    align-items: center;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    /* Increased gap */
    width: 100%;
}

.hero-text {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    /* Ensure text is above if overlapping */
}

/* Phone Mockup */
.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    /* Ensure it doesn't shrink to 0 */
    min-width: 320px;
}

.badge {
    background: rgba(255, 111, 0, 0.1);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 800;
}

.highlight {
    color: var(--accent);
}

.hero-text .hero-subheader {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 25px;
    max-width: 500px;
}

.platform-icons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
}

.platform {
    display: flex;
    align-items: center;
    gap: 5px;
    background: white;
    padding: 8px 16px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: var(--primary);
    border: 1px solid #e5e7eb;
}

.platform .material-icons {
    font-size: 1.2rem;
    color: var(--accent);
}

.section-tag {
    display: block;
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
}

/* Updated Mockup UI */
.mini-progress {
    margin-top: 15px;
}

.mini-progress span {
    font-size: 0.7rem;
    opacity: 0.8;
}

.mini-progress .bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 2px;
    margin-top: 4px;
}

.mini-progress .fill {
    height: 100%;
    background: white;
    border-radius: 2px;
}

.stat-item small {
    display: block;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--text);
    margin-top: 3px;
}

.list-title {
    font-size: 0.8rem;
    color: #9CA3AF;
    margin-bottom: 10px;
    font-weight: 600;
}

.amount.stock-in {
    color: #10B981;
}


/* Features */
.features {
    padding: 100px 0;
    background: white;
}

.features-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.features-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    padding: 30px;
    border-radius: 20px;
    background: white;
    border: 1px solid #f3f4f6;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.05);
    border-color: transparent;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(38, 50, 56, 0.05);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}

.feature-card h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Download/Badges */
.download-preview {
    text-align: center;
    padding: 80px 0;
    background: var(--primary);
    color: white;
}

.download-preview h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.store-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 10px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: default;
}

.store-badge .material-icons {
    font-size: 2rem;
}

.store-badge .text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.store-badge small {
    font-size: 0.7rem;
    opacity: 0.7;
    text-transform: uppercase;
}

.store-badge span {
    font-weight: 600;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid #f3f4f6;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
    .hero {
        padding-top: 120px;
        height: auto;
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 60px;
    }

    .hero-text {
        margin-bottom: 0;
        max-width: 100%;
    }

    .hero-text p,
    .hero-text .hero-subheader {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-group {
        justify-content: center;
    }

    .platform-icons {
        justify-content: center;
    }

    .hero-image {
        width: 100%;
        min-width: unset;
        transform: scale(0.9);
        /* Scale down slightly on tablets */
    }
}

@media (max-width: 480px) {
    .phone-mockup {
        width: 280px;
        height: 550px;
        border-width: 6px;
    }

    h1 {
        font-size: 2.2rem;
    }
}