:root {
    /* Primary brand color */
    --primary: #FF4132;
    
    /* Light backgrounds */
    --surface-white: #FFFFFF;
    --surface-light: #F8F8F8;
    --surface-lighter: #F3F3F3;
    
    /* Dark text on light backgrounds */
    --text-dark: #1A1A1A;
    --text-dark-secondary: #404040;
    --text-dark-tertiary: #666666;
    
    /* Light text on dark/primary backgrounds */
    --text-light: #FFFFFF;
    --text-light-secondary: rgba(255, 255, 255, 0.9);
    --text-light-tertiary: rgba(255, 255, 255, 0.7);
    
    /* Elevation */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 12px rgba(0, 0, 0, 0.18);

    /* Updated color variables */
    --primary-soft: #FFF1F0;
    --primary-lighter: #FFE5E2;
    --primary-lightest: #FFF8F7;
    --primary-shadow: rgba(255, 65, 50, 0.06);
    --primary-bg: #FFF6F5;        /* Lightest - Section background */
    --primary-card: #FFF1F0;      /* Light - Card background */
    --primary-header: #FFE8E6;    /* Slightly darker - Card header */
    --primary-border: rgba(255, 65, 50, 0.08);
}

/* Typography */
.heading-1 {
    font-size: 3.5rem;
    line-height: 1.2;
    font-weight: 700;
}

.heading-2 {
    font-size: 2.5rem;
    line-height: 1.3;
    font-weight: 600;
}

.heading-3 {
    font-size: 1.75rem;
    line-height: 1.4;
    font-weight: 600;
}

/* Components */
.card {
    background: var(--surface-white);
    border-radius: 1rem;
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

/* Section styles */
.primary-bg {
    background-color: var(--primary);
}

.light-bg {
    background-color: var(--surface-light);
}

.white-bg {
    background-color: var(--surface-white);
}

.smartphone {
    width: 70%;
}

.features-bg {
    background-color: #FFF1F0; /* Light shade of primary color */
}

.feature-app-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(255, 65, 50, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 65, 50, 0.1);
    overflow: hidden;
}

.feature-app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(255, 65, 50, 0.12);
}

.feature-header {
    background: linear-gradient(45deg, #FF4132, #FF5B4D);
    padding: 1.5rem;
    color: white;
    position: relative;
}

.feature-icon {
    background: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF4132;
    margin-bottom: 1rem;
}

.feature-content {
    padding: 1.5rem;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    display: inline-block;
    margin-bottom: 0.5rem;
}

.destination-section {
    background: linear-gradient(135deg, #FFFFFF, #FAFAFA);
    position: relative;
    overflow: hidden;
}

.destination-card {
    background: white;
    border-radius: 0 0 24px 24px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 65, 50, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    max-width: 400px;
}

.destination-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), #FF7065);
    border-radius: 4px 4px 0 0;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 65, 50, 0.1);
    border-color: rgba(255, 65, 50, 0.15);
}

.destination-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 65, 50, 0.85);
    border-radius: 20px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.destination-card:hover .destination-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.destination-features {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.feature-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #FFF5F4;
    color: var(--primary);
    border-radius: 12px;
    margin: 0.25rem;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.destination-card:hover .feature-tag {
    background: var(--primary);
    color: white;
}

.features-soft-section {
    background-color: var(--primary-soft);
    padding: 5rem 0;
    position: relative;
}

.feature-soft-card {
    background: var(--primary-lightest);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.feature-soft-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px var(--primary-shadow);
}

.feature-soft-header {
    background: linear-gradient(45deg, var(--primary-lighter), var(--primary-soft));
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 65, 50, 0.1);
}

.feature-soft-icon {
    background: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-soft-card:hover .feature-soft-icon {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.feature-soft-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: white;
    color: var(--primary);
    border-radius: 1rem;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.feature-soft-content {
    padding: 1.5rem;
}

.features-subtle-section {
    background-color: var(--primary-bg);
    padding: 5rem 0;
    position: relative;
}

.feature-subtle-card {
    background: var(--primary-card);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-border);
}

.feature-subtle-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--primary-shadow);
}

.feature-subtle-header {
    background: var(--primary-header);
    padding: 1.5rem;
    border-bottom: 1px solid var(--primary-border);
}

.feature-subtle-icon {
    background: white;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--primary);
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px var(--primary-shadow);
}

.feature-subtle-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: white;
    color: var(--primary);
    border-radius: 1rem;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.feature-subtle-content {
    padding: 1.5rem;
}

.steps-section {
    background: linear-gradient(135deg, #FFFFFF, #FCFCFC);
    position: relative;
    overflow: hidden;
}

.steps-container {
    position: relative;
    padding: 2rem 0;
}

.step-connector {
    display: none;
}

@media (min-width: 768px) {
    .step-connector {
        display: block;
        position: absolute;
        top: 40px;
        left: 0;
        right: 0;
        height: 2px;
        background: var(--primary);
        opacity: 0.2;
        z-index: 1;
    }
}

.step-item {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.step-item.active {
    opacity: 1;
    transform: translateY(0);
}

.step-number {
    width: 80px;
    height: 80px;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 65, 50, 0.1);
}

.step-number::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary), transparent);
    opacity: 0;
    transition: all 0.3s ease;
}

.step-item:hover .step-number::before {
    opacity: 0.2;
    transform: scale(1.1);
}

.step-item:hover .step-number {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 65, 50, 0.2);
}

.step-item:hover .step-number span {
    display: none;
}

.step-icon {
    position: absolute;
    opacity: 0;
    transform: scale(0.5);
    transition: all 0.3s ease;
}

.step-item:hover .step-icon {
    opacity: 1;
    transform: scale(1);
}

.step-content {
    text-align: center;
    max-width: 280px;
    margin: 0 auto;
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 16px;
    background: white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.step-item:hover .step-content {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(255, 65, 50, 0.08);
}

.progress-indicator {
    position: absolute;
    top: 40px;
    left: 0;
    height: 2px;
    background: var(--primary);
    width: 0;
    transition: width 0.5s ease;
    z-index: 1;
}

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

.step-item.active .step-number {
    animation: pulse 2s infinite;
}

.cta-section {
    background: linear-gradient(135deg, #FF4132, #A61B10);
    position: relative;
    overflow: hidden;
}

.cta-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.1) 1%, transparent 1%),
                     radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 1%, transparent 1%);
    background-size: 40px 40px;
    opacity: 0.4;
}

.cta-container {
    position: relative;
    z-index: 2;
}

.cta-app-icon {
    width: 120px;
    height: 120px;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(800px) rotateX(10deg);
    transition: all 0.5s ease;
    margin: 0 auto;
}

.cta-app-icon:hover {
    transform: perspective(800px) rotateX(0deg) translateY(-10px);
    box-shadow: 0 30px 50px rgba(0, 0, 0, 0.4);
}

.feature-pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border-radius: 20px;
    padding: 0.75rem 1.5rem;
    color: white;
    display: inline-flex;
    align-items: center;
    margin: 0.5rem;
    transform: translateY(20px);
    opacity: 0;
    animation: pillAppear 0.5s ease forwards;
}

.feature-pill svg {
    width: 20px;
    height: 20px;
    margin-right: 8px;
}

@keyframes pillAppear {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cta-button {
    background: white;
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.download-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
    color: white;
    opacity: 0;
    transform: translateY(20px);
    animation: statAppear 0.5s ease forwards;
}

@keyframes statAppear {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

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

.cta-dark-section {
    background: linear-gradient(135deg, #8B0D00, #660A00);
    position: relative;
    overflow: hidden;
}

.cta-dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 65, 50, 0.1) 0%,
        rgba(166, 27, 16, 0.1) 100%);
    mask-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.15;
}

.cta-dark-content {
    position: relative;
    z-index: 2;
}

.cta-dark-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 768px) {
    .cta-dark-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.app-preview {
    position: relative;
    padding: 2rem;
}

.app-icon-large {
    width: 180px;
    height: 180px;
    border-radius: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    margin: 0 auto;
    transform: translateY(0);
    animation: floatIcon 3s ease-in-out infinite;
}

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

.feature-tag {
    background: rgba(255, 65, 50, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: white;
    display: inline-block;
    margin: 0.25rem;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: rgba(255, 65, 50, 0.25);
    transform: translateY(-2px);
}

.app-icon-glow {
    position: relative;
}

.app-icon-glow::after {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle at center, 
        rgba(255, 65, 50, 0.2) 0%,
        transparent 70%);
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

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

.cta-warm-section {
    background: linear-gradient(135deg, #FF6B5F, #FF8578);
    position: relative;
    overflow: hidden;
}

.cta-warm-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 133, 120, 0.1) 100%);
    opacity: 0.4;
}

.cta-warm-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.warm-feature-tag {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 12px;
    color: white;
    display: inline-block;
    margin: 0.25rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.warm-feature-tag:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.warm-download-btn {
    background: white;
    color: #FF4132;
    padding: 1rem 2rem;
    border-radius: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.warm-download-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.app-icon-warm {
    position: relative;
    transition: all 0.3s ease;
}

.app-icon-warm::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: radial-gradient(circle at center, 
        rgba(255, 255, 255, 0.4) 0%,
        transparent 70%);
    z-index: -1;
    animation: warmGlow 3s ease-in-out infinite;
}

@keyframes warmGlow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.1); }
}

.stat-card {
    background: rgba(255, 255, 255, 0.15);
    padding: 1rem;
    border-radius: 16px;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-modern-section {
    background: linear-gradient(135deg, #FF4132, #FF6B5F);
    position: relative;
    overflow: hidden;
}

.cta-modern-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    opacity: 0.6;
}

.cta-modern-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 30px;
    box-shadow: 
        0 20px 40px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 65, 50, 0.1);
    padding: 3rem;
}

.google-play-button {
    background: #FF4132;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(255, 65, 50, 0.3);
    font-size: 1.125rem;
    position: relative;
    overflow: hidden;
}

.google-play-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.google-play-button:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(255, 65, 50, 0.4);
}

.google-play-button:hover::before {
    transform: translateX(100%);
}

.google-play-icon {
    width: 24px;
    height: 24px;
}

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

.google-play-text small {
    font-size: 0.75rem;
    opacity: 0.9;
}

.stat-modern-card {
    background: rgba(255, 65, 50, 0.05);
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-modern-card:hover {
    background: rgba(255, 65, 50, 0.1);
    transform: translateY(-2px);
}

.cta-md3-section {
    background: #2B0D0A;  /* Dark shade of primary color */
    position: relative;
    overflow: hidden;
}

.cta-md3-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(circle at 50% 50%, 
        rgba(255, 65, 50, 0.08) 0%, 
        transparent 50%);
}

.store-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    border-radius: 16px;
    transition: all 0.2s ease;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.store-button.primary {
    background: #FF4132;
    color: white;
}

.store-button.secondary {
    background: rgba(255, 255, 255, 0.08);
    color: white;
}

.store-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.store-icon {
    width: 24px;
    height: 24px;
}

.stats-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
}

.stats-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.elevation-1 {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.cta-material-section {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    position: relative;
    overflow: hidden;
}

.material-surface {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 28px;
    padding: 2rem;
}

.download-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.download-button.primary {
    background: white;
    color: var(--primary);
}

.download-button.secondary {
    background: rgba(255, 255, 255, 0.15);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.download-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.store-icon {
    width: 24px;
    height: 24px;
}

.stat-box {
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
}

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

.button-text small {
    font-size: 0.75rem;
    opacity: 0.9;
}

.cta-final-section {
    background: #FF4132;
    position: relative;
    overflow: hidden;
}

.cta-final-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(0, 0, 0, 0.05) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(0, 0, 0, 0.05) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(0, 0, 0, 0.05) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
}

.cta-final-content {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.store-btn.primary {
    background: #FF4132;
    color: white;
    box-shadow: 0 8px 16px rgba(255, 65, 50, 0.25);
}

.store-btn.secondary {
    background: #F5F5F5;
    color: #333333;
    border: 1px solid #E0E0E0;
}

.store-btn:hover {
    transform: translateY(-4px);
}

.store-btn.primary:hover {
    box-shadow: 0 12px 20px rgba(255, 65, 50, 0.3);
}

.store-btn.secondary:hover {
    background: #FFFFFF;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.stats-box {
    background: #F8F8F8;
    border-radius: 16px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    border: 1px solid #EEEEEE;
}

.stats-box:hover {
    background: #FFFFFF;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

.store-icon {
    width: 24px;
    height: 24px;
}

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

.store-text small {
    font-size: 0.75rem;
    opacity: 0.8;
}

/* Update store button styles for 4 buttons */
@media (min-width: 768px) {
    .store-btn {
        min-width: 180px;
    }
}

/* Responsive adjustments for multiple buttons */
@media (max-width: 767px) {
    .store-btn {
        width: 100%;
        justify-content: center;
    }
}

/* Hover effects for store buttons */
.store-btn.secondary:hover {
    background: #FFFFFF;
    border-color: #FF4132;
    color: #FF4132;
}

/* Icon styles for different stores */
.store-btn .store-icon {
    flex-shrink: 0;
}

/* Navigation Styles */
.navbar {
    background-color: white;
    transition: all 0.3s ease;
    position: relative;
}

/* Container adjustments */
.container {
    width: 100%;
    margin: 0 auto;
    max-width: 1200px;
}

/* App Logo */
.app-logo {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    object-fit: cover;
}

/* Navigation Links */
.nav-link {
    color: var(--text-dark-secondary);
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    padding: 0.5rem 0.75rem;
    border-radius: 0.5rem;
}

.nav-link:hover {
    color: var(--primary);
    background-color: rgba(255, 65, 50, 0.1);
}

/* Download Button */
.download-btn {
    color: var(--text-light);
    background-color: var(--primary);
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(255, 65, 50, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
}

.download-btn:hover {
    background-color:#fff;
    color: rgba(255, 65, 50, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(255, 65, 50, 0.3);
}

/* Mobile Menu Button */
.mobile-menu-button {
    padding: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.3s ease;
}

.mobile-menu-button:hover {
    background-color: rgba(255, 65, 50, 0.1);
}

/* Mobile Menu */
.mobile-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    z-index: 50;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.mobile-menu.show {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile Navigation Links */
.mobile-nav-link {
    display: block;
    padding: 0.75rem 1rem;
    text-align: right;
    transition: all 0.3s ease;
}

.mobile-nav-link:hover {
    background-color: rgba(255, 65, 50, 0.1);
}

/* Mobile Download Button */
.mobile-download-btn {
    display: block;
    text-align: center;
    margin: 0.5rem 0;
    padding: 0.75rem 1.5rem;
}

/* Responsive Design */
@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}