:root {
    --racing-blue: #0066FF;
    --victory-red: #FF3366;
    --track-gray: #2A2A2A;
    --asphalt: #404040;
    --chrome-silver: #E8E8E8;
    --premium-gold: #FFD700;
    --success-green: #22CC88;
    --error-red: #FF4444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--track-gray);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

/* ====== LAYOUT & CONTAINERS ====== */
.container {
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

/* Mobile-first approach */
@media (min-width: 576px) {
    .container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
}

/* ====== NAVIGATION ====== */
.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 85px; /* Reduced from 120px for mobile */
}

.nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    padding: 1rem 0;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    z-index: 50;
}

.nav-links.active {
    display: flex;
}

.nav-links a {
    color: var(--track-gray);
    text-decoration: none;
    padding: 0.75rem 2rem;
    font-weight: 500;
}

.nav-links a.active,
.nav-links a:hover {
    color: var(--racing-blue);
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

@media (min-width: 768px) {
    .logo-image {
        height: 120px; /* Restore larger logo size */
    }
    
    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        width: auto;
        background: none;
        padding: 0;
        box-shadow: none;
    }
    
    .nav-links a {
        margin-left: 2rem;
        padding: 0;
    }
    
    .mobile-menu-btn {
        display: none;
    }
}

/* ====== HERO SECTION ====== */
.hero {
    padding: 6rem 0; /* Reduced padding for mobile */
    text-align: center;
    background-color: var(--chrome-silver);
    background-size: cover;
    background-position: center;
    position: relative;
    color: white;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-family: 'Russo One', sans-serif;
    font-size: 2rem; /* Smaller for mobile */
    margin-bottom: 1rem;
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hero p {
    font-size: 1rem; /* Smaller for mobile */
    margin-bottom: 2rem;
    color: white;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (min-width: 768px) {
    .hero {
        padding: 10rem 0; /* Restore original padding */
    }
    
    .hero h1 {
        font-size: 3rem; /* Restore original size */
    }
    
    .hero p {
        font-size: 1.25rem; /* Restore original size */
    }
}

/* ====== BUTTONS ====== */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    margin: 0.5rem;
    text-align: center;
}

.button.primary {
    background-color: var(--racing-blue);
    color: white;
}

.button.secondary {
    border: 2px solid var(--racing-blue);
    color: var(--racing-blue);
}

.button i {
    margin-right: 0.5rem;
}

/* Make buttons full width on mobile */
.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.cta-buttons .button {
    width: 100%;
    max-width: 280px;
}

@media (min-width: 576px) {
    .button {
        padding: 1rem 2rem; /* Larger padding on larger screens */
    }
}

@media (min-width: 768px) {
    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .cta-buttons .button {
        width: auto;
        max-width: none;
    }
}

/* ====== FEATURES SECTION ====== */
.features, 
.community,
.premium,
.download,
.why-download,
.testimonials,
.faq,
.tier-comparison,
.value-props,
.social-proof,
.app-gallery,
.final-cta,
.key-features,
.achievement-section {
    padding: 3rem 0; /* Reduced padding for mobile */
}

@media (min-width: 768px) {
    .features, 
    .community,
    .premium,
    .download,
    .why-download,
    .testimonials,
    .faq,
    .tier-comparison,
    .value-props,
    .social-proof,
    .app-gallery,
    .final-cta,
    .key-features,
    .achievement-section {
        padding: 4rem 0; /* Restore original padding */
    }
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--asphalt);
}

@media (min-width: 768px) {
    .section-header {
        margin-bottom: 3rem;
    }
    
    .section-header h2 {
        font-size: 2.25rem;
    }
}

/* Feature Grid */
.feature-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 576px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .feature-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.feature-card {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    padding: 1rem;
}

.feature-icon img,
.feature-icon i {
    width: 32px;
    height: 32px;
    color: var(--racing-blue);
}

.feature-card h3 {
    color: var(--racing-blue);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

@media (min-width: 768px) {
    .feature-card {
        padding: 2rem;
    }
    
    .feature-card h3 {
        font-size: 1.25rem;
    }
}

/* ====== COMMUNITY SECTION ====== */
.community-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.community-text {
    order: 2;
}

.community-image {
    order: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    max-width: 100%;
}

.community-image img {
    width: 100%;
    display: block;
}

.community-features-list {
    margin-bottom: 2rem;
}

.community-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    gap: 1rem;
}

.community-feature-item i {
    color: var(--racing-blue);
    background-color: rgba(0, 102, 255, 0.1);
    padding: 0.75rem;
    border-radius: 50%;
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
}

.community-feature-item h3 {
    margin-bottom: 0.25rem;
    color: var(--track-gray);
    font-size: 1.1rem;
}

.community-feature-item p {
    color: var(--asphalt);
}

@media (min-width: 992px) {
    .community-content {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
    
    .community-text {
        order: 1;
        flex: 1;
    }
    
    .community-image {
        order: 2;
        flex: 1;
        max-width: 450px;
    }
    
    .community-feature-item i {
        padding: 1rem;
    }
    
    .community-feature-item h3 {
        font-size: 1.25rem;
    }
}

/* ====== PREMIUM PLANS ====== */
.plans {
    display: flex;
    overflow-x: auto;
    padding-bottom: 1rem;
    gap: 1.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    margin: 2rem -20px 0;
    padding: 0 20px 1rem;
    scrollbar-width: none; /* Firefox */
}

.plans::-webkit-scrollbar {
    display: none; /* Chrome, Safari and Opera */
}

.plan-card {
    flex: 0 0 85%;
    min-width: 250px;
    scroll-snap-align: center;
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
    border: 1px solid var(--chrome-silver);
    margin-bottom: 1rem;
}

.plan-card:hover {
    transform: translateY(-5px);
}

.plan-card.popular {
    margin-top: 15px;
}

.navbar .nav-links a {
    color: var(--track-gray);
}

.navbar .nav-links a.active {
    color: var(--racing-blue);
}

.value-props .container {
    overflow-x: hidden;
}

.testimonials .container {
    overflow-x: hidden;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 100%;
}


.popular-tag {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--premium-gold);
    color: white;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    white-space: nowrap;
    z-index: 5;
}

.plan-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.plan-icon {
    width: 54px;
    height: 54px;
    background-color: rgba(0, 102, 255, 0.1);
    color: var(--racing-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.plan-icon i {
    width: 24px;
    height: 24px;
}

.plan-price {
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--track-gray);
    margin-top: 0.5rem;
}

.plan-price span {
    font-size: 1rem;
    color: var(--asphalt);
}

.plan-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    gap: 0.5rem;
}

.plan-features i {
    color: var(--racing-blue);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.plans-container {
    position: relative;
}

.plan-nav {
    display: flex;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.9);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    border: none;
}

.plan-prev {
    left: 5px;
}

.plan-next {
    right: 5px;
}

.scroll-indicator {
    display: block;
    text-align: center;
    margin-top: 1rem;
    color: var(--asphalt);
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .plans {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        overflow-x: visible;
        scroll-snap-type: none;
        margin: 2rem 0 0;
        padding: 0;
    }

    .testimonial-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .plan-card {
        flex: none;
        width: 100%;
    }
    
    .plan-nav, .scroll-indicator {
        display: none;
    }
}

@media (min-width: 992px) {
    .plans {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1200px) {
    .plans {
        grid-template-columns: repeat(5, 1fr);
        gap: 1rem;
    }
}

/* ====== COMPARISON TABLE ====== */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-top: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.comparison-table {
    width: 100%;
    min-width: 800px; /* Ensures table doesn't get too squished */
    border-collapse: collapse;
    background-color: white;
}

.comparison-table th,
.comparison-table td {
    padding: 0.75rem;
    text-align: center;
    border-bottom: 1px solid var(--chrome-silver);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    padding-left: 1.5rem;
}

.comparison-table th {
    background-color: var(--racing-blue);
    color: white;
    font-family: 'Russo One', sans-serif;
    font-weight: normal;
    position: sticky;
    top: 0;
    z-index: 10;
}

.comparison-table tr:nth-child(even) {
    background-color: rgba(0,0,0,0.02);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.feature-yes {
    color: var(--success-green);
}

.feature-no {
    color: var(--asphalt);
}

@media (min-width: 768px) {
    .comparison-table th,
    .comparison-table td {
        padding: 1rem;
    }
}

/* ====== APP GALLERY ====== */
.gallery-container {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.gallery-slide {
    display: none;
    text-align: center;
}

.gallery-slide.active {
    display: block;
}

.gallery-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255,255,255,0.7);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    border: none;
}

.gallery-prev {
    left: 5px;
}

.gallery-next {
    right: 5px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.gallery-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
}

.gallery-dot.active {
    background-color: var(--racing-blue);
}

@media (min-width: 768px) {
    .gallery-nav {
        width: 40px;
        height: 40px;
    }
    
    .gallery-prev {
        left: 10px;
    }
    
    .gallery-next {
        right: 10px;
    }
    
    .gallery-dots {
        margin-top: 20px;
    }
    
    .gallery-dot {
        width: 10px;
        height: 10px;
    }
}

/* ====== WHY DOWNLOAD SECTION ====== */
.reasons-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem 0;
}

.reason-card {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.reason-icon {
    width: 54px;
    height: 54px;
    background-color: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.reason-icon i {
    color: var(--racing-blue);
    width: 24px;
    height: 24px;
}

.reason-card h3 {
    margin-bottom: 0.75rem;
    color: var(--track-gray);
    font-size: 1.25rem;
}

.reason-card p {
    color: var(--asphalt);
    line-height: 1.6;
    font-size: 0.9375rem;
}

@media (min-width: 576px) {
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .reasons-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .reason-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 1.5rem;
    }
    
    .reason-icon i {
        width: 32px;
        height: 32px;
    }
    
    .reason-card h3 {
        margin-bottom: 1rem;
    }
    
    .reason-card p {
        font-size: 1rem;
    }
}

/* ====== TESTIMONIALS ====== */
.testimonials {
    margin: 3rem 0;
    position: relative;
    padding: 1rem 0;
}

.testimonial-carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-slide {
    display: none;
    margin: 0 1rem;
}

.testimonial-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.testimonial-content {
    background-color: white;
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.quote-mark {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 3rem;
    line-height: 1;
    color: rgba(0, 102, 255, 0.1);
    font-family: 'Georgia', serif;
}

.testimonial-text {
    font-style: italic;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: var(--track-gray);
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 1rem;
    border: 3px solid var(--racing-blue);
}

.author-info {
    flex: 1;
}

.author-name {
    font-weight: bold;
    color: var(--track-gray);
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--asphalt);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
}

.star-filled {
    color: #FFD700;
    width: 16px;
    height: 16px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 6px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background-color: var(--racing-blue);
    transform: scale(1.3);
}

@media (min-width: 768px) {
    .testimonials {
        margin: 4rem 0;
    }
    
    .testimonial-content {
        padding: 2.5rem;
    }
    
    .quote-mark {
        font-size: 4rem;
    }
    
    .testimonial-text {
        font-size: 1.1rem;
    }
    
    .author-image {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-dots {
        margin-top: 2rem;
    }
    
    .testimonial-dot {
        width: 12px;
        height: 12px;
    }
}

/* ====== STATS BANNER ====== */
.stats-banner {
    background-color: var(--racing-blue);
    border-radius: 12px;
    padding: 2rem 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
    box-shadow: 0 8px 30px rgba(0, 102, 255, 0.2);
    text-align: center;
    color: white;
}

.stat-item {
    padding: 0.5rem;
}

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: 'Russo One', sans-serif;
    display: inline-block;
}

.stat-symbol {
    font-size: 1rem;
    font-weight: bold;
    display: inline-block;
    line-height: 1;
    margin-left: 0.25rem;
    font-family: 'Russo One', sans-serif;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .stats-banner {
        grid-template-columns: repeat(4, 1fr);
        padding: 3rem;
        gap: 2rem;
        margin: 3rem 0;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-symbol {
        font-size: 1.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

/* ====== COMMUNITY FEATURES ====== */
.hero-community {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('assets/images/community-banner.jpg');
    background-size: cover;
    background-position: right;
    padding: 80px 0;
    color: white;
}

.feature-highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.feature-highlight-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;
    gap: 40px;
}

.feature-highlight-text {
    text-align: center;
}

.feature-highlight-image {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    max-width: 100%;
}

.feature-highlight-image img {
    width: 100%;
    height: auto;
    display: block;
}

.feature-highlight-text h3 {
    font-family: 'Russo One', sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--racing-blue);
}

.feature-highlight-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: var(--track-gray);
}

@media (min-width: 992px) {
    .hero-community {
        padding: 120px 0;
    }
    
    .feature-highlight-content {
        flex-direction: row;
        text-align: left;
        gap: 80px;
    }

    .feature-highlight-reverse {
        flex-direction: row-reverse;
    }

    .feature-highlight-text {
        flex: 1;
        text-align: left;
    }
}

/* ====== ACHIEVEMENT SECTION ====== */
.community-stats {
    background-color: var(--chrome-silver);
    padding: 40px 0;
    text-align: center;
 }
 
 .community-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 40px auto 0;
    max-width: 1000px;
    padding: 0 20px;
 }
 
 .community-stat-item {
    padding: 20px;
    min-width: 150px;
 }
 
 .community-stat-number {
    font-family: 'Russo One', sans-serif;
    font-size: 36px;
    color: var(--racing-blue);
    margin-bottom: 8px;
 }
 
 .community-stat-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--track-gray);
 }
 
 .achievement-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
 }
 
 .achievement-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto 0;
 }
 
 .achievement-card {
    background-color: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
 }
 
 .achievement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
 }
 
 .achievement-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 102, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
 }
 
 .achievement-icon i {
    color: var(--racing-blue);
    width: 32px;
    height: 32px;
 }
 
 .achievement-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--track-gray);
 }
 
 .achievement-description {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
 }
 
 .badge-showcase {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 50px auto;
    max-width: 1000px;
 }
 
 .badge-item {
    background-color: white;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
 }
 
 .badge-premium {
    background: linear-gradient(45deg, #FFD700, #FFA500);
 }
 
 .badge-rare {
    background: linear-gradient(45deg, #9C27B0, #673AB7);
 }
 
 .badge-special {
    background: linear-gradient(45deg, #F44336, #E91E63);
 }
 
 .badge-achievement {
    background: linear-gradient(45deg, #2196F3, #00BCD4);
 }
 
 .badge-early {
    background: linear-gradient(45deg, #4CAF50, #8BC34A);
 }
 
 .badge-item i {
    font-size: 32px;
    color: white;
 }

 section {
    overflow-x: hidden;
}
 
 .badge-tooltip {
    position: absolute;
    background-color: rgba(0,0,0,0.8);
    color: white;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 12px;
    bottom: -40px;
    opacity: 0;
    transition: opacity 0.3s, bottom 0.3s;
    pointer-events: none;
    white-space: nowrap;
    width: max-content;
    left: 50%;
    transform: translateX(-50%);
 }
 
 .badge-item:hover .badge-tooltip {
    opacity: 1;
    bottom: -30px;
 }
 
 @media (min-width: 576px) {
    .achievement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .badge-item {
        width: 90px;
        height: 90px;
    }
    
    .badge-item i {
        font-size: 36px;
    }
 }
 
 @media (min-width: 768px) {
    .community-stats {
        padding: 60px 0;
    }
    
    .community-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .community-stat-number {
        font-size: 48px;
    }
    
    .community-stat-label {
        font-size: 18px;
    }
    
    .achievement-section {
        padding: 80px 20px;
    }
    
    .achievement-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .achievement-card {
        padding: 30px;
    }
    
    .achievement-icon {
        width: 80px;
        height: 80px;
    }
    
    .badge-item {
        width: 100px;
        height: 100px;
    }
    
    .badge-item i {
        font-size: 40px;
    }
 }
 
 @media (min-width: 992px) {
    .achievement-grid {
        grid-template-columns: repeat(4, 1fr);
    }
 }
 
 /* ====== DOWNLOAD PAGE STYLES ====== */
 .hero-download {
    background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)), url('assets/images/download-banner.jpg');
    background-position: center;
    background-size: cover;
 }
 
 .download-section {
    padding: 3rem 0;
    text-align: center;
 }
 
 .download-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin: 2rem auto;
    max-width: 900px;
    padding: 0 20px;
 }
 
 .download-card {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    width: 100%;
    max-width: 350px;
 }
 
 .download-card:hover {
    transform: translateY(-10px);
 }
 
 .download-icon {
    width: 70px;
    height: 70px;
    background-color: var(--chrome-silver);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
 }
 
 .download-icon i {
    color: var(--racing-blue);
    width: 35px;
    height: 35px;
 }
 
 .download-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--track-gray);
 }
 
 .requirements {
    text-align: left;
    margin-bottom: 1.5rem;
    background-color: var(--chrome-silver);
    padding: 1rem;
    border-radius: 8px;
 }
 
 .requirements h4 {
    margin-bottom: 0.5rem;
    color: var(--track-gray);
    font-size: 1rem;
 }
 
 .requirements ul {
    list-style: none;
    padding: 0;
    margin: 0;
 }
 
 .requirements li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--asphalt);
 }
 
 .requirements li i {
    color: var(--racing-blue);
    margin-right: 0.5rem;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
 }
 
 .download-cta {
    margin-top: 1.5rem;
 }
 
 .store-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--racing-blue);
    color: white;
    border-radius: 8px;
    padding: 0.75rem 1.25rem;
    font-weight: 500;
    margin-bottom: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
 }
 
 .store-button:hover {
    background-color: #0052cc;
 }
 
 .store-button i {
    margin-right: 0.5rem;
 }
 
 .version-info {
    font-size: 0.8rem;
    color: var(--asphalt);
    margin-top: 0.5rem;
 }
 
 @media (min-width: 768px) {
    .download-section {
        padding: 4rem 0;
    }
    
    .download-cards {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
        margin: 3rem auto;
    }
    
    .download-card {
        flex: 1;
    }
    
    .download-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }
    
    .download-icon i {
        width: 40px;
        height: 40px;
    }
    
    .store-button {
        padding: 1rem 1.5rem;
    }
 }
 
 /* ====== VALUE PROPS SECTION ====== */
 .value-props {
    padding: 3rem 0;
    background-color: var(--chrome-silver);
 }
 
 .value-grid {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}
 
 .value-card {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    text-align: center;
 }
 
 .value-card:hover {
    transform: translateY(-10px);
 }
 
 .value-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--racing-blue), var(--victory-red));
    color: white;
 }
 
 .value-icon i {
    width: 24px;
    height: 24px;
 }
 
 .value-card h3 {
    margin-bottom: 0.75rem;
    color: var(--track-gray);
    font-size: 1.2rem;
 }
 
 .value-card p {
    color: var(--asphalt);
    font-size: 0.9375rem;
 }
 
 @media (min-width: 576px) {
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }
 }
 
 @media (min-width: 992px) {
    .value-props {
        padding: 4rem 0;
    }
    
    .value-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .value-icon i {
        width: 30px;
        height: 30px;
    }
    
    .value-card h3 {
        font-size: 1.3rem;
    }
    
    .value-card p {
        font-size: 1rem;
    }
 }
 
 /* ====== PREMIUM BANNER ====== */
 .premium-banner {
    background-image: linear-gradient(to right, var(--racing-blue), var(--victory-red));
    color: white;
    text-align: center;
    padding: 40px 20px;
    margin: 40px 0;
 }
 
 .premium-banner h2 {
    font-family: 'Russo One', sans-serif;
    font-size: 28px;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
 }
 
 .premium-banner p {
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 20px;
    line-height: 1.6;
 }
 
 @media (min-width: 768px) {
    .premium-banner {
        padding: 60px 20px;
        margin: 60px 0;
    }
    
    .premium-banner h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .premium-banner p {
        font-size: 18px;
        margin-bottom: 30px;
    }
 }
 
 /* ====== FAQ SECTION ====== */
 .faq {
    padding: 3rem 0;
    background-color: var(--chrome-silver);
 }
 
 .faq-item {
    background-color: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
 }
 
 .faq-question {
    padding: 1.25rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: 1rem;
 }
 
 .faq-answer {
    padding: 0 1.25rem 1.25rem;
    display: none;
    font-size: 0.9375rem;
 }
 
 .faq-item.active .faq-answer {
    display: block;
 }
 
 @media (min-width: 768px) {
    .faq {
        padding: 4rem 0;
    }
    
    .faq-question {
        padding: 1.5rem;
        font-size: 1.1rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem 1.5rem;
        font-size: 1rem;
    }
 }
 
 /* ====== SOCIAL PROOF SECTION ====== */
 .social-proof {
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--racing-blue), var(--victory-red));
    color: white;
    text-align: center;
 }
 
 .stats-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    padding: 0 20px;
 }
 
 .stat-item {
    text-align: center;
 }
 
 .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Russo One', sans-serif;
 }
 
 .stat-label {
    font-size: 0.9375rem;
 }
 
 @media (min-width: 768px) {
    .social-proof {
        padding: 4rem 0;
    }
    
    .stats-container {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
 }
 
 /* ====== FINAL CTA ====== */
 .final-cta {
    padding: 3rem 0;
    text-align: center;
 }
 
 .cta-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 20px;
 }
 
 .cta-content h2 {
    margin-bottom: 1.25rem;
    font-family: 'Russo One', sans-serif;
    font-size: 2rem;
    color: var(--track-gray);
 }
 
 .cta-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: var(--asphalt);
 }
 
 .download-now-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
 }
 
 .download-now-buttons .button {
    min-width: 200px;
 }
 
 @media (min-width: 768px) {
    .final-cta {
        padding: 5rem 0;
    }
    
    .cta-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1.2rem;
        margin-bottom: 2rem;
    }
    
    .download-now-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        margin-top: 2rem;
    }
 }
 
 /* ====== KEY FEATURES ====== */
 .key-features {
    background-color: var(--chrome-silver);
    padding: 3rem 0;
 }
 
 .features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
    padding: 0 20px;
 }
 
 .feature-item {
    background-color: white;
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
 }

 .logo-container {
    display: flex;
    align-items: center;
}

.app-name {
    font-family: 'Russo One', sans-serif;
    color: #E00500;
    margin-left: 15px;
    font-size: 1.5rem;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
}
 
 .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
 
 .feature-icon i {
    color: var(--racing-blue);
    width: 20px;
    height: 20px;
 }
 
 .feature-info h4 {
    margin: 0 0 0.5rem;
    color: var(--track-gray);
    font-size: 1.1rem;
 }
 
 .feature-info p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--asphalt);
 }
 
 @media (min-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
 }
 
 @media (min-width: 992px) {
    .key-features {
        padding: 4rem 0;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
        margin-top: 3rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .feature-icon {
        width: 50px;
        height: 50px;
    }
    
    .feature-icon i {
        width: 24px;
        height: 24px;
    }
    
    .feature-info h4 {
        font-size: 1.2rem;
    }
    
    .feature-info p {
        font-size: 0.95rem;
    }
 }
 
 /* ====== FOOTER ====== */
 footer {
    background-color: var(--track-gray);
    color: white;
    padding: 3rem 0 1.5rem;
 }
 
 .footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
 }
 
 .footer-section h4 {
    margin-bottom: 1rem;
    font-family: 'Russo One', sans-serif;
    font-size: 1.1rem;
 }
 
 .footer-section a {
    display: block;
    color: var(--chrome-silver);
    text-decoration: none;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
 }
 
 .footer-section a:hover {
    color: white;
 }
 
 .footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--asphalt);
    font-size: 0.875rem;
    color: var(--chrome-silver);
 }
 
 .newsletter {
    background-color: var(--track-gray);
    color: white;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-radius: 8px;
 }
 
 .newsletter h4 {
    margin-bottom: 0.5rem;
    font-family: 'Russo One', sans-serif;
 }
 
 .newsletter p {
    color: var(--chrome-silver);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
 }
 
 .newsletter-form {
    display: flex;
    margin-top: 1rem;
 }
 
 .newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255,255,255,0.2);
    background-color: rgba(255,255,255,0.1);
    color: white;
    border-radius: 8px 0 0 8px;
    font-family: 'Inter', sans-serif;
 }
 
 .newsletter-form input::placeholder {
    color: rgba(255,255,255,0.6);
 }
 
 .newsletter-form button {
    border-radius: 0 8px 8px 0;
    padding: 0.75rem;
    background-color: var(--racing-blue);
    color: white;
    border: none;
    cursor: pointer;
 }
 
 .social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.25rem;
 }
 
 .social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    transition: all 0.3s ease;
    margin-bottom: 0;
 }
 
 .social-icons a:hover {
    background-color: var(--racing-blue);
 }
 
 @media (min-width: 576px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
 }
 
 @media (min-width: 768px) {

    .app-name {
        font-size: 2rem;
    }

    footer {
        padding: 4rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-bottom: 3rem;
    }
    
    .newsletter {
        padding: 2rem;
    }
 }
 
 /* ====== UTILITY CLASSES ====== */
 .text-center {
    text-align: center;
 }
 
 .mb-1 {
    margin-bottom: 0.5rem;
 }
 
 .mb-2 {
    margin-bottom: 1rem;
 }
 
 .mb-3 {
    margin-bottom: 1.5rem;
 }
 
 .mb-4 {
    margin-bottom: 2rem;
 }
 
 .mt-1 {
    margin-top: 0.5rem;
 }
 
 .mt-2 {
    margin-top: 1rem;
 }
 
 .mt-3 {
    margin-top: 1.5rem;
 }
 
 .mt-4 {
    margin-top: 2rem;
 }
 
 .p-0 {
    padding: 0;
 }
 
 .p-1 {
    padding: 0.5rem;
 }
 
 .p-2 {
    padding: 1rem;
 }
 
 .p-3 {
    padding: 1.5rem;
 }
 
 .p-4 {
    padding: 2rem;
 }
 
 .d-none {
    display: none;
 }
 
 .d-block {
    display: block;
 }
 
 .d-flex {
    display: flex;
 }
 
 .d-inline-flex {
    display: inline-flex;
 }
 
 .align-items-center {
    align-items: center;
 }
 
 .justify-content-center {
    justify-content: center;
 }
 
 .justify-content-between {
    justify-content: space-between;
 }
 
 .flex-column {
    flex-direction: column;
 }
 
 .gap-1 {
    gap: 0.5rem;
 }
 
 .gap-2 {
    gap: 1rem;
 }
 
 .gap-3 {
    gap: 1.5rem;
 }
 
 .gap-4 {
    gap: 2rem;
 }
 
 .w-100 {
    width: 100%;
 }
 
 .h-100 {
    height: 100%;
 }
 
 .overflow-hidden {
    overflow: hidden;
 }
 
 .position-relative {
    position: relative;
 }
 
 .position-absolute {
    position: absolute;
 }
 
 .rounded {
    border-radius: 8px;
 }
 
 .rounded-circle {
    border-radius: 50%;
 }
 
 .shadow-sm {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
 }
 
 .shadow {
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
 }
 
 .shadow-lg {
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
 }
 
 /* ====== ANIMATIONS ====== */
 @keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
 }
 
 @keyframes slideInUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
 }
 
 @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
 }
 
 .fade-in {
    animation: fadeIn 0.5s ease-in-out;
 }
 
 .slide-in-up {
    animation: slideInUp 0.5s ease-in-out;
 }
 
 .pulse {
    animation: pulse 2s infinite;
 }