/**
 * AWTU Template - Home Page Styles
 * Estilos específicos para la página de inicio
 */

/* CSS Variables for consistent colors */
:root {
    --primary: #14b08e;
    --primary-foreground: #ffffff;
}

/* ========================================
   HERO SECTION - EXACT FIGMA BACKGROUND
   ======================================== */
.awtu-hero {
    background: #f8fbfb !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 0 4rem 0;
    margin-top: 0;
    z-index: 1;
}

.awtu-hero::before {
    display: none;
}

/* Hero Section Feature Icons */
.awtu-hero .feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 3px solid rgba(255, 255, 255, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.awtu-hero .feature-icon:hover {
    background: rgba(255, 255, 255, 1) !important;
    border-color: rgba(255, 255, 255, 1);
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.awtu-hero .feature-icon i {
    font-size: 1.5rem;
    color: #dc3545 !important;
    text-shadow: none;
    font-weight: bold;
}

.awtu-hero .feature-icon i.text-white-50 {
    color: #dc3545 !important;
    opacity: 0.7;
}

/* ========================================
   HERO CONTENT - DARK TEXT
   ======================================== */
.hero-content {
    position: relative;
    z-index: 2;
}

/* ========================================
   AVAILABILITY BADGE - EXACT FIGMA DESIGN
   ======================================== */

/* App Availability Button - Exact Figma Design */
.app-availability-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: color-mix(in oklab, var(--primary, #14b08e) 10%, transparent) !important; /* Light gradient background like Figma */
    color: var(--primary, #14b08e) !important; /* Primary color for text */
    border: 1px solid color-mix(in oklab, var(--primary, #14b08e) 20%, transparent) !important; /* Subtle border */
    padding: 0.5rem 1rem;
    border-radius: 0.375rem; /* Rounded corners like in Figma */
    font-size: 0.875rem; /* text-sm */
    font-weight: 500; /* font-medium */
    margin-bottom: 3.5rem; /* Aumentado de 1rem a 2rem */
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    white-space: nowrap;
    width: fit-content;
    flex-shrink: 0;
}

.app-availability-button:hover {
    background: color-mix(in oklab, var(--primary, #14b08e) 15%, transparent) !important;
    border-color: color-mix(in oklab, var(--primary, #14b08e) 30%, transparent) !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.app-availability-button span {
    font-size: 1rem;
    margin-right: 0.5rem;
    color: var(--primary, #14b08e) !important;
}
.awtu-availability-badge {
    display: inline-flex;
    align-items: center;
    background: #e0f7f4 !important; /* Teal claro exacto como en Figma */
    color: #14b08e !important; /* Teal más oscuro para el texto */
    padding: 0.6rem 1.2rem;
    border-radius: 1.5rem;
    font-size: 0.85rem;
    font-weight: 500;
    border: none;
    box-shadow: 0 1px 3px rgba(20, 176, 142, 0.1);
    transition: all 0.3s ease;
    letter-spacing: 0.02em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.awtu-availability-badge:hover {
    background: #d1f2eb !important;
    transform: translateY(-1px);
    box-shadow: 0 2px 6px rgba(20, 176, 142, 0.15);
}

.awtu-availability-badge i {
    color: #8e44ad !important; /* Morado para el icono de cuadrícula */
    font-size: 0.9rem;
    margin-right: 0.5rem;
}

.hero-content .badge {
    background: #14b08e !important;
    color: white !important;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    border: none;
}

.hero-content h1 {
    font-size: 3.9rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 3.5rem;
    color: #030303;
    max-width: 600px;
}

.hero-content h1 .text-warning {
    color: #14b08e !important;
}

.hero-content .lead {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #6b7280;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* ========================================
   FEATURE CARDS - DARK STYLES
   ======================================== */
.hero-content .feature-icon {
    background: #f1f5f9 !important;
    border: 2px solid #e2e8f0;
    width: 60px;
    height: 60px;
}

.hero-content .feature-icon i {
    font-size: 1.5rem;
    color: #14b08e;
}

.hero-content .feature-icon + div h6 {
    color: #1e293b !important;
}

/* ========================================
   DOWNLOAD BUTTONS - UPDATED STYLES
   ======================================== */
.hero-content .btn-dark {
    background: linear-gradient(135deg, #1f2937, #111827) !important;
    border: none !important;
    color: white !important;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-content .btn-dark:hover {
    background: linear-gradient(135deg, #374151, #1f2937) !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
    color: white !important;
}

.hero-content .btn-light {
    background: #f8fafc !important;
    border: 2px solid #e2e8f0 !important;
    color: #1f2937 !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-content .btn-light:hover {
    background: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    color: #1f2937 !important;
}

/* ========================================
   STATS SECTION - DARK STYLES
   ======================================== */
.hero-stats .stat-item h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #14b08e;
    text-shadow: none;
}

.hero-stats .stat-item p {
    color: #64748b;
    font-size: 0.875rem;
    font-weight: 500;
}

/* ========================================
   PHONE MOCKUP - ENHANCED SHADOWS
   ======================================== */
.phone-frame {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    border-radius: 2.5rem;
    padding: 0.8rem;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transform: rotate(0deg) translateX(6.5rem);
    transition: all 0.4s ease;
    position: relative;
}

.phone-frame:hover {
    transform: translateX(4rem) scale(1.05);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.2);
}

/* ========================================
   FLOATING ICONS - ENHANCED
   ======================================== */
.floating-icon {
    position: absolute;
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #ffffff, #f8fafc);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5);
    animation: float 4s ease-in-out infinite;
    border: 2px solid rgba(32, 201, 151, 0.2);
}

.floating-icon i {
    font-size: 1.2rem;
    color: #14b08e;
}

/* Posicionamiento específico del icono home */
.home-icon {
    bottom: -1rem;
    left: 13rem;
}

.download-icon i {
    color: #ffffff !important;
}

.download-icon {
    top: 0rem;
    right: 0rem;
    background: #14b08e !important;
}

/* ========================================
   SCROLL INDICATOR - DARK STYLE
   ======================================== */
.scroll-indicator a {
    color: #64748b !important;
}

.scroll-indicator a:hover {
    color: #14b08e !important;
}

/* ========================================
   APP EXPLORATION SECTION
   ======================================== */
.app-exploration-section {
    background: #f8fbfb !important;
    padding: 6rem 0;
}

/* Large Phone Mockup Carousel */
.phone-mockup-carousel {
    max-width: 300px;
    position: relative;
}

/* Mockup Screens */
.mockup-screen {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0 !important;
    transition: opacity 0.5s ease-in-out !important;
    z-index: 1 !important;
    pointer-events: none !important;
    display: block !important;
    visibility: hidden !important;
}

.mockup-screen.active {
    opacity: 1 !important;
    z-index: 2 !important;
    pointer-events: auto !important;
    visibility: visible !important;
}

.phone-frame-large {
    background: #1a1a1a;
    border-radius: 30px;
    padding: 8px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-frame-large::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #333;
    border-radius: 2px;
}

.phone-screen-large {
    background: #ffffff;
    border-radius: 22px;
    height: 600px;
    overflow: hidden;
    position: relative;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.phone-screen-large::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* App Content Styles */
.app-content {
    height: 100%;
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.app-content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.vehicle-header h5 {
    color: #1a1a1a;
    font-size: 1.1rem;
}

.reminder-card {
    background: #e8f5e8 !important;
    border: 1px solid #d4edda;
}

.reminder-card h6 {
    color: #155724;
}

.stat-card {
    background: #f8f9fa !important;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.bottom-nav .nav-item {
    transition: all 0.3s ease;
    border-radius: 8px;
}

.bottom-nav .nav-item:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

/* Carousel Navigation */
.carousel-navigation {
    max-width: 200px;
    margin: 0 auto;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.carousel-btn {
    /* Estilos exactos del Figma */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    pointer-events: auto;
    opacity: 1;
    outline: none;
    border: 1px solid #14b08e;
    background: #ffffff;
    color: #374151;
    gap: 6px;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.carousel-btn:hover {
    background: #ffffff;
    color: #374151;
    border-color: #14b08e;
    box-shadow: 0 4px 8px rgba(32, 201, 151, 0.2);
    transform: translateY(-1px);
}

.carousel-btn:focus-visible {
    border-color: #14b08e;
    box-shadow: 0 0 0 3px rgba(32, 201, 151, 0.3);
}

.carousel-btn:active {
    transform: scale(0.95);
}



/* Carousel Indicators - Estilos finales */
.carousel-navigation .carousel-indicators {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 12px !important;
    width: auto !important;
    height: auto !important;
    min-width: 60px !important;
    min-height: 20px !important;
    background: transparent !important;
    border: none !important;
    padding: 0 !important;
    position: relative !important;
    z-index: 10 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.carousel-navigation .carousel-indicators .indicator {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background-color: #e9ecef !important;
    border: none !important;
    cursor: pointer !important;
    display: inline-block !important;
    margin: 0 !important;
    padding: 0 !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    z-index: 10 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.carousel-navigation .carousel-indicators .indicator:hover {
    background-color: #14b08e !important;
    transform: scale(1.1) !important;
}

.carousel-navigation .carousel-indicators .indicator.active {
    background-color: #14b08e !important;
    transform: scale(1.2) !important;
    box-shadow: 0 0 0 2px rgba(32, 201, 151, 0.3) !important;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works-section {
    background: #ffffff !important;
    padding: 6rem 0;
}

.step-card {
    background: #ffffff;
    border: 1px solid color-mix(in oklab, var(--primary, #14b08e) 10%, transparent);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-card:hover {
    border-color: color-mix(in oklab, var(--primary, #14b08e) 10%, transparent);
    box-shadow: 0 8px 25px rgba(32, 201, 151, 0.15);
    transform: translateY(-2px);
}

.step-card:hover h4 {
    color: #14b08e;
}

.step-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 4rem;
    font-weight: 700;
    color: #e9ecef;
    line-height: 1;
    z-index: 1;
    opacity: 0.6;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #14b08e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

.step-icon i {
    font-size: 2rem;
    color: #ffffff;
}

.step-features {
    text-align: left;
}

.step-features li {
    color: #374151;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
}

.step-features i {
    color: #14b08e;
    background: #14b08e;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    margin-right: 0.5rem;
    font-size: 0;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: #e9f2f0 !important;
    padding: 6rem 0;
}

.cta-card {
    background: #ffffff !important;
    border: 2px solid #e9ecef;
    border-radius: 16px;
    padding: 3rem;
    max-width: 1300px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cta-card:hover {
    border-color: #14b08e;
    box-shadow: 0 8px 25px rgba(32, 201, 151, 0.15);
    transform: translateY(-2px);
}

.cta-content {
    text-align: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ========================================
   READY TO START SECTION
   ======================================== */
.ready-to-start-section {
    background: #ffffff !important;
    padding: 6rem 0;
}

.ready-card {
    background: linear-gradient(90deg, 
        color-mix(in oklab, var(--primary, #14b08e) 5%, transparent) 0%, 
        color-mix(in oklab, var(--primary, #14b08e) 10%, transparent) 50%, 
        color-mix(in oklab, var(--primary, #14b08e) 5%, transparent) 100%) !important;
    border: 1px solid color-mix(in oklab, var(--primary, #14b08e) 10%, transparent);
    border-radius: 24px;
    padding: 3rem;
    max-width: 1300px;
    margin: 0 auto;
    box-shadow: none !important;
}

.ready-card:hover {
    transform: none;
    box-shadow: none;
}

.ready-content {
    text-align: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
    margin-top: -1rem;
    width: 100%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #14b08e;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.stat-number i {
    color: #ffffff;
    margin-right: 0.5rem;
}

.stat-label {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.stat-label i {
    color: #fbbf24;
    margin-right: 0.25rem;
}

/* Estilo especial para "Free" */
.stat-item:last-child .stat-number {
    background: #14b08e;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    box-shadow: 0 2px 8px rgba(32, 201, 151, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.stat-item:last-child .stat-number:hover {
    background: #1a9f7a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(32, 201, 151, 0.4);
}

.stat-item:last-child .stat-number i {
    color: #ffffff;
    font-size: 1rem;
}

/* ========================================
   FEATURED CARS SECTION
   ======================================== */
.featured-section {
    background: #ffffff !important;
    padding: 6rem 0;
}

/* Navigation Buttons */
.navigation-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: flex-end;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border: 1px solid #e9ecef;
    background: #ffffff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-btn:hover {
    border-color: #14b08e;
    color: #14b08e;
    background: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(32, 201, 151, 0.15);
}

.nav-btn i {
    font-size: 14px;
    font-weight: 600;
}

/* Filter Buttons */
.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    color: #6c757d;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.filter-btn:hover,
.filter-btn.active {
    background: #14b08e;
    border-color: #14b08e;
    color: #ffffff;
}

.filter-btn .count {
    background: #e9ecef;
    color: #6c757d;
    border-radius: 10px;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
}

.filter-btn.active .count,
.filter-btn:hover .count {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

/* Cars Grid */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

/* Car Cards */
.car-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.car-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #14b08e;
}

.car-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.car-card:hover .car-image img {
    transform: scale(1.05);
}

.car-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
}

.car-tag.new {
    background: #14b08e;
}

.car-tag.used {
    background: #007bff;
}

.car-tag.featured {
    background: #28a745;
}

.favorite-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    transition: all 0.3s ease;
    cursor: pointer;
}

.favorite-btn:hover {
    background: #ffffff;
    color: #dc3545;
    transform: scale(1.1);
}

.car-info {
    padding: 1.5rem;
}

.car-model {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.car-specs {
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.car-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #14b08e;
    margin-bottom: 1rem;
}

.view-btn {
    background: transparent;
    border: 2px solid #14b08e;
    color: #14b08e;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
}

.view-btn:hover {
    background: #14b08e;
    color: #ffffff;
}

/* View All Button */
.view-all-btn {
    background: transparent;
    border: 2px solid #14b08e;
    color: #14b08e;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}

.view-all-btn:hover {
    background: #14b08e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
}

/* ========================================
   TIPS AND NEWS SECTION
   ======================================== */
.tips-news-section {
    background: #ffffff !important;
    padding: 6rem 0;
}

/* Articles Grid */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    justify-items: center;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .articles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .articles-grid {
        grid-template-columns: 1fr;
    }
}

/* Article Cards */
.article-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: #14b08e;
}

.article-card:hover .article-title {
    color: #14b08e;
}

.article-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-card:hover .article-image img {
    transform: scale(1.05);
}

.article-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
}

.article-tag.maintenance {
    background: #14b08e;
}

.article-tag.innovation {
    background: #007bff;
}

.article-tag.guides {
    background: #6f42c1;
}

.article-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #6c757d;
}

.article-meta span {
    position: relative;
}

.article-meta span:not(:last-child)::after {
    content: "•";
    position: absolute;
    right: -0.5rem;
    color: #dee2e6;
}

.article-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.article-description {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-article-btn {
    color: #14b08e;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding: 12px 16px;
    border-radius: 8px;
    margin-top: auto;
}

.read-article-btn:hover {
    color: #1a9f7a;
    text-decoration: none;
}

.article-card:hover .read-article-btn {
    background: #14b08e;
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 8px;
    text-decoration: none;
    width: 100%;
    justify-content: space-between;
}

.article-card:hover .read-article-btn i {
    color: #ffffff;
}

.read-article-btn i {
    transition: transform 0.3s ease;
}

.read-article-btn:hover i {
    transform: translateX(3px);
}

/* ========================================
   KNOW MORE SECTION
   ======================================== */
.know-more-section {
    background: #ffffff !important;
    padding: 6rem 0 8rem 0;
}

.know-more-card {
    background: linear-gradient(90deg, 
        color-mix(in oklab, var(--primary, #14b08e) 5%, transparent) 0%, 
        color-mix(in oklab, var(--primary, #14b08e) 10%, transparent) 50%, 
        color-mix(in oklab, var(--primary, #14b08e) 5%, transparent) 100%) !important;
    border: 1px solid color-mix(in oklab, var(--primary, #14b08e) 10%, transparent);
    border-radius: 24px;
    padding: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: none !important;
}

.know-more-card:hover {
    transform: none;
    box-shadow: none !important;
}

.know-more-content {
    text-align: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.know-more-content h2 {
    color: #000000;
}

.know-more-content p {
    color: #6c757d;
}

.blog-btn {
    background: #14b08e;
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: none;
    cursor: pointer;
}

.blog-btn:hover {
    background: #1a9f7a;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
}

.blog-btn i {
    transition: transform 0.3s ease;
}

.blog-btn:hover i {
    transform: translateX(3px);
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq-section {
    background: #f8fbfb !important;
    padding: 10rem 0 6rem 0;
    margin-top: 4rem;
}

/* FAQ Card */
.faq-card {
    background: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 16px;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
}

/* FAQ Items */
.faq-item {
    border-bottom: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: none;
    margin: 0;
    padding: 1.5rem 0;
    border-radius: 0;
}

.faq-question:hover .question-text {
    color: #14b08e;
}

.question-text {
    font-size: 1.1rem;
    font-weight: 500;
    color: #2c3e50;
    flex: 1;
    transition: color 0.3s ease;
}

.faq-item.active .question-text {
    color: #14b08e;
}

.faq-icon {
    color: #6c757d;
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.faq-question:hover .faq-icon {
    color: #14b08e;
    transform: rotate(180deg);
}

/* FAQ Answers */
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background: none;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 1.5rem 0;
}

.faq-item.active .faq-question .faq-icon {
    color: #14b08e;
    transform: rotate(180deg);
}

.faq-answer p {
    color: #6c757d;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Support Card */
.support-card {
    background: linear-gradient(90deg, 
        color-mix(in oklab, var(--primary, #14b08e) 5%, transparent) 0%, 
        color-mix(in oklab, var(--primary, #14b08e) 10%, transparent) 50%, 
        color-mix(in oklab, var(--primary, #14b08e) 5%, transparent) 100%) !important;
    border: 1px solid color-mix(in oklab, var(--primary, #14b08e) 10%, transparent);
    border-radius: 24px;
    padding: 3rem;
    max-width: 800px;
    margin: 0 auto;
    box-shadow: none !important;
}

.support-card:hover {
    transform: none;
    box-shadow: none !important;
}

.support-content {
    text-align: center;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.support-content h3 {
    color: #2c3e50;
}

.support-content p {
    color: #6c757d;
}

/* Support Buttons */
.support-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.support-btn {
    padding: 0.75rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    border: none;
    cursor: pointer;
    min-width: 160px;
    justify-content: center;
}

.email-btn {
    background: #14b08e;
    color: #ffffff;
}

.email-btn:hover {
    background: #1a9f7a;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
}

.whatsapp-btn {
    background: linear-gradient(90deg, 
        color-mix(in oklab, var(--primary, #14b08e) 5%, transparent) 0%, 
        color-mix(in oklab, var(--primary, #14b08e) 10%, transparent) 50%, 
        color-mix(in oklab, var(--primary, #14b08e) 5%, transparent) 100%);
    color: #14b08e;
    border: 1px solid #14b08e;
}

.whatsapp-btn:hover {
    background: #14b08e;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
}

.support-btn i {
    font-size: 1.1rem;
}

/* ========================================
   DOWNLOAD APP NEW SECTION
   ======================================== */
.download-app-new-section {
    background: #ffffff !important;
    padding: 6rem 0;
}

.download-app-new-card {
    background: #f8fbfb;
    border: none;
    border-radius: 24px;
    padding: 5rem;
    max-width: 1300px;
    margin: 0 auto;
    box-shadow: none;
    position: relative;
    overflow: hidden;
}

.download-app-new-card::before {
    display: none;
}

@keyframes shimmer-new {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.download-app-new-card:hover {
    transform: none;
    box-shadow: none;
}

/* Download Badge */
.download-app-new-badge {
    display: inline-block;
    background: rgba(32, 201, 151, 0.1);
    color: #14b08e;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    
}

/* Main Title */
.download-app-new-title {
    font-size: 3rem;
    font-weight: 700;
    color: #050505;
    line-height: 1.2;
}

.download-app-new-title .text-primary {
    color: #14b08e !important;
}

/* Description */
.download-app-new-description {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Social Proof */
.download-app-new-proof {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.proof-row-new {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
}

.proof-single-new {
    justify-content: flex-start;
}

.proof-item-new {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #6c757d;
}

.proof-item-new i {
    font-size: 1.1rem;
    color: #14b08e;
}

/* App Store Buttons */
.download-app-new-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.app-store-new-btn,
.google-play-new-btn {
    display: flex;
    align-items: center;
    padding: 2.25rem 2rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    min-width: 200px;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.google-play-new-btn {
    border: 2px solid #000000;
}

.app-store-new-btn {
    background: #000000;
    color: #ffffff;
}

.app-store-new-btn:hover {
    background: #333333;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.google-play-new-btn {
    background: #ffffff;
    color: #000000;
    border-color: #000000;
    min-width: 250px;
}

.google-play-new-btn:hover {
    background: #000000 !important;
    color: #ffffff !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 3px solid #000000 !important;
}

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

.btn-text-new small {
    font-size: 0.7rem;
    opacity: 0.8;
}

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

/* Download Stats */
.download-app-new-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.stat-number-new {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin-bottom: 0.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-item-new:last-child .stat-number-new {
    color: #14b08e;
}

.stat-label-new {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 500;
}

.stat-number-new i {
    color: #facc15 !important;
    margin-right: 0.25rem;
}

/* Phone Mockup */
.download-app-new-phone-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 600px;
}

.phone-mockup-new {
    width: 300px;
    height: 600px;
    background: linear-gradient(145deg, #1a1a1a, #2d2d2d);
    border-radius: 40px;
    padding: 12px;
    position: relative;
    transform: rotate(8deg);
    box-shadow: none;
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
    transition: all 0.3s ease;
}

.download-app-new-phone-container:hover .phone-mockup-new {
    transform: rotate(8deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.download-app-new-phone-container:hover .rating-bubble-outside-new {
    transform: translateX(10px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.download-app-new-phone-container:hover .users-badge-outside-new {
    transform: translateX(10px) scale(1.1);
    box-shadow: 0 6px 20px rgba(32, 201, 151, 0.5);
}

.phone-screen-new {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #14b08e 0%, #1a9f7a 100%);
    border-radius: 27px;
    padding: 1.5rem 1rem;
    position: relative;
    overflow: hidden;
}

/* App Header */
.app-header-new {
    margin-bottom: 1rem;
}

.app-title-new {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* Car Icon Before Welcome */
.car-icon-welcome-new {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.car-icon-welcome-new i {
    font-size: 2rem;
    color: #dc3545;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

/* Rating Bubble Outside */
.rating-bubble-outside-new {
    position: absolute;
    top: 2rem;
    left: -1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 1.2rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: 2px solid rgba(255, 255, 255, 0.8);
    z-index: 10;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.rating-bubble-outside-new i {
    color: #fbbf24;
    font-size: 1rem;
}

/* App Content */
.app-content-new {
    color: #ffffff;
    position: relative;
    z-index: 5;
}

.welcome-title-new {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.welcome-subtitle-new {
    font-size: 0.9rem;
    opacity: 0.95;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Features Grid */
.features-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.7rem;
}

.feature-item-new {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.8rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.feature-item-new:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.feature-item-new i {
    font-size: 1rem;
    color: #ffffff;
    width: 16px;
    text-align: center;
}

.feature-item-new span {
    font-size: 0.8rem;
    font-weight: 500;
    color: #ffffff;
}

/* Users Badge Outside */
.users-badge-outside-new {
    position: absolute;
    bottom: 2rem;
    right: -1rem;
    background: linear-gradient(135deg, #14b08e, #1a9f7a);
    color: #ffffff;
    padding: 1rem 1.5rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    z-index: 10;
    animation: pulse-new 2s ease-in-out infinite;
    text-align: center;
    min-width: 80px;
    transition: all 0.3s ease;
}

.users-number-new {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.2rem;
}

.users-label-new {
    font-size: 0.7rem;
    font-weight: 600;
    opacity: 0.9;
    line-height: 1;
}

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

/* Download Buttons */
.download-buttons .btn {
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
}

.download-buttons .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.download-buttons .btn-dark {
    background: #1a1a1a;
    border-color: #1a1a1a;
}

.download-buttons .btn-outline-dark {
    border-color: #1a1a1a;
    color: #1a1a1a;
}

.download-buttons .btn-outline-dark:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    color: white;
}

/* Mockup Specific Styles */
.service-bullet {
    width: 8px;
    height: 8px;
    flex-shrink: 0;
}

.service-price {
    font-size: 0.9rem;
    flex-shrink: 0;
}

.form-field {
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.form-field:hover {
    border-color: #14b08e;
    box-shadow: 0 2px 4px rgba(32, 201, 151, 0.1);
}

.vehicle-card {
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.vehicle-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* ========================================
   SECTION BACKGROUNDS - HOME PAGE
   ======================================== */


/* Features Section - Green Background */
.features-section {
    background: #ffffff !important;
    padding: 6rem 0;
}

/* Call to Action Section - Green Background */
.cta-section {
    background: #ffffff !important;
}

/* Default Section Background */
.awtu-section {
    background: #f8fbfa !important;
}

/* ========================================
   CALL TO ACTION SECTION STYLES
   ======================================== */
.cta-card {
    background: linear-gradient(90deg, 
        color-mix(in oklab, var(--primary, #14b08e) 5%, transparent) 0%, 
        color-mix(in oklab, var(--primary, #14b08e) 10%, transparent) 50%, 
        color-mix(in oklab, var(--primary, #14b08e) 5%, transparent) 100%) !important;
    border: 1px solid color-mix(in oklab, var(--primary, #14b08e) 10%, transparent);
    border-radius: 24px;
    box-shadow: none !important;
    transition: all 0.3s ease;
}

.cta-card:hover {
    transform: none;
    box-shadow: none !important;
    border-color: color-mix(in oklab, var(--primary, #14b08e) 10%, transparent);
}

.cta-card h3 {
    color: #1e293b;
    font-size: 2rem;
}

.cta-card p {
    color: #64748b;
    font-size: 1.1rem;
    line-height: 1.6;
}

.cta-card .btn {
    background: #14b08e !important;
    border: none !important;
    color: white !important;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(32, 201, 151, 0.3);
    border-radius: 15px !important;
    padding: 0.5rem 2rem !important;
}

.cta-card .btn:hover {
    background: #1a9f7a !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(32, 201, 151, 0.4);
    color: white !important;
}

.cta-card .btn i {
    transition: transform 0.3s ease;
}

.cta-card .btn:hover i {
    transform: translateX(3px);
}

/* ========================================
   FEATURES SECTION STYLES
   ======================================== */
.feature-card {
    transition: all 0.3s ease;
    background: white;
    border: 1px solid #e2e8f0 !important;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1) !important;
    border-color: #14b08e !important;
}

.feature-card .icon-wrapper {
    transition: all 0.3s ease;
    background: #14b08e !important;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-card:hover .icon-wrapper {
    background: #1a9f7a !important;
    transform: scale(1.1);
}

.feature-card .icon-wrapper i {
    color: white !important;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */
@media (max-width: 768px) {
    /* How It Works Responsive */
    .step-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .step-number {
        font-size: 2.5rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
    }
    
    .step-icon i {
        font-size: 1.5rem;
    }
    
    /* CTA Responsive */
    .cta-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .cta-content {
        text-align: center;
        max-width: 100%;
        align-items: center;
    }
    
    /* Ready to Start Responsive */
    .ready-card {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .ready-content {
        text-align: center;
        max-width: 100%;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
        max-width: 100%;
    }
    
    .stat-item {
        align-items: center;
        justify-content: center;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .stat-item:last-child .stat-number {
        font-size: 1.1rem;
        padding: 0.6rem 1.2rem;
    }
    
    /* Featured Cars Responsive */
    .navigation-buttons {
        justify-content: center;
        margin-top: 1rem;
    }
    
    .nav-btn {
        width: 40px;
        height: 40px;
    }
    
    .cars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .filter-buttons {
        gap: 0.5rem;
    }
    
    /* Tips and News Responsive */
    .know-more-card {
        padding: 2rem;
    }
    
    /* FAQ Responsive */
    .faq-card {
        padding: 1.5rem;
    }
    
    .support-card {
        padding: 2rem;
    }
    
    .support-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .support-btn {
        width: 100%;
        max-width: 250px;
    }
    
    /* Download App New Responsive */
    .download-app-new-card {
        padding: 2rem;
    }
    
    .download-app-new-title {
        font-size: 2rem;
    }
    
    .phone-mockup-new {
        width: 240px;
        height: 480px;
        transform: rotate(0deg);
    }
    
    .download-app-new-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .app-store-new-btn,
    .google-play-new-btn {
        width: 100%;
        max-width: 250px;
    }
    
    .download-app-new-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .download-app-new-proof {
        gap: 0.5rem;
    }
    
    .filter-btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .car-image {
        height: 180px;
    }
    
    .car-info {
        padding: 1rem;
    }
    
    .car-model {
        font-size: 1rem;
    }
    
    .car-price {
        font-size: 1.3rem;
    }
    
    .view-all-btn {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    /* General Responsive */
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content .lead {
        font-size: 1.1rem;
    }
    
    .phone-frame {
        max-width: 250px;
    }
    
    .feature-card {
        margin-bottom: 2rem;
    }
    
    .feature-card h4 {
        font-size: 1.2rem;
    }
    
    .cta-card {
        padding: 2rem;
    }
    
    .cta-card h3 {
        font-size: 1.8rem;
    }
    
    .cta-card p {
        font-size: 1rem;
    }
    
    .cta-card .btn {
        font-size: 1rem;
        padding: 0.75rem 1.5rem;
    }
}

.feature-card h4 {
    color: #1e293b;
    transition: color 0.3s ease;
}

.feature-card:hover h4 {
    color: #14b08e;
}

.feature-card ul li {
    color: #64748b;
    transition: color 0.3s ease;
}

.feature-card:hover ul li {
    color: #1e293b;
}

/* ========================================
   FIGMA DESIGN STYLES - EXACT MATCH
   ======================================== */

/* Botones de Descarga del Figma */
.figma-app-store-btn,
.figma-google-play-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    padding: 16px 24px !important;
    border-radius: 16px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    min-height: 60px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    border: none !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.figma-app-store-btn {
    background: #000000 !important;
    color: #ffffff !important;
}

.figma-app-store-btn:hover {
    background: #333333 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2) !important;
    text-decoration: none !important;
}

.figma-google-play-btn {
    background: #ffffff !important;
    color: #000000 !important;
    border: 1px solid #e5e7eb !important;
}

.figma-google-play-btn:hover {
    background: #000000 !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
    text-decoration: none !important;
    border-color: #000000 !important;
}

.figma-app-store-btn i,
.figma-google-play-btn i {
    font-size: 24px !important;
    width: 24px !important;
    height: 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

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

.figma-btn-text small {
    font-size: 12px !important;
    font-weight: 400 !important;
    opacity: 0.8 !important;
    line-height: 1 !important;
    margin-bottom: 2px !important;
}

.figma-btn-text strong {
    font-size: 16px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
}

/* Iconos de Características del Figma */
.figma-feature-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 48px !important;
    height: 48px !important;
    background: color-mix(in oklab, var(--primary, #14b08e) 10%, transparent) !important;
    border: 1px solid color-mix(in oklab, var(--primary, #14b08e) 20%, transparent) !important;
    border-radius: 12px !important;
    margin-right: 12px !important;
    flex-shrink: 0 !important;
    transition: all 0.3s ease !important;
    padding: 12px !important;
}

.figma-feature-icon:hover {
    background: color-mix(in oklab, var(--primary, #14b08e) 15%, transparent) !important;
    border-color: color-mix(in oklab, var(--primary, #14b08e) 30%, transparent) !important;
    transform: scale(1.05) !important;
}

.figma-feature-icon i {
    font-size: 20px !important;
    color: var(--primary, #14b08e) !important;
}

.figma-feature-text {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #14b08e !important;
    line-height: 1.4 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.figma-feature-text-disabled {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #9ca3af !important;
    line-height: 1.4 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Estadísticas Rápidas del Figma */
.figma-quick-stats {
    margin-top: 24px !important;
}

.figma-stat-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    padding: 16px 8px !important;
    border-radius: 12px !important;
    background: #ffffff !important;
    border: none !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05) !important;
}

.figma-stat-item:hover {
    background: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}

.figma-stat-number {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: var(--primary, #14b08e) !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.figma-stat-number i {
    font-size: 16px !important;
    color: #facc15 !important;
}

.figma-stat-label {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #374151 !important;
    line-height: 1 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* ========================================
   RESPONSIVE ADJUSTMENTS
   ======================================== */
@media (max-width: 768px) {
    .awtu-hero {
        padding: 5rem 0 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-content .lead {
        font-size: 1rem;
    }
    
    .app-availability-button {
        margin-bottom: 1.5rem;
    }
    
    .phone-frame {
        transform: translateX(3rem) scale(0.9);
    }
    
    /* Floating icons responsive for tablet */
    .floating-icon {
        width: 45px;
        height: 45px;
    }
    
    .home-icon {
        bottom: -0.5rem;
        left: 8rem;
    }
    
    .download-icon {
        top: 1.5rem;
        right: 1rem;
    }
    
    .feature-card {
        margin-bottom: 1.5rem;
    }
    
    /* Figma responsive adjustments */
    .figma-app-store-btn,
    .figma-google-play-btn {
        padding: 12px 20px !important;
        min-height: 56px !important;
    }
    
    .figma-btn-text strong {
        font-size: 14px !important;
    }
    
    .figma-feature-icon {
        width: 40px !important;
        height: 40px !important;
    }
    
    .figma-feature-icon i {
        font-size: 18px !important;
    }
    
    .figma-feature-text,
    .figma-feature-text-disabled {
        font-size: 13px !important;
    }
    
    .figma-stat-number {
        font-size: 18px !important;
    }
    
    .figma-stat-label {
        font-size: 11px !important;
    }
}

@media (max-width: 576px) {
    .awtu-hero {
        padding: 4rem 0 2rem 0;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .app-availability-button {
        margin-bottom: 1rem;
    }
    
    .hero-stats .stat-item h3 {
        font-size: 1.5rem;
    }
    
    .phone-frame {
        transform: translateX(2rem) scale(0.8);
    }
    
    /* Floating icons responsive for mobile */
    .floating-icon {
        width: 40px;
        height: 40px;
    }
    
    .home-icon {
        bottom: -0.5rem;
        left: 3rem;
    }
    
    .download-icon {
        top: 1rem;
        right: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem !important;
    }
    
    .feature-card h4 {
        font-size: 1.25rem;
    }
    
    .cta-card {
        padding: 2rem !important;
    }
    
    .cta-card h3 {
        font-size: 1.5rem;
    }
    
    .cta-card p {
        font-size: 1rem;
    }
    
    .cta-card .btn {
        padding: 0.75rem 2rem !important;
        font-size: 1rem;
    }
    
    /* Figma mobile adjustments */
    .figma-app-store-btn,
    .figma-google-play-btn {
        padding: 10px 16px !important;
        min-height: 52px !important;
        gap: 8px !important;
    }
    
    .figma-app-store-btn i,
    .figma-google-play-btn i {
        font-size: 20px !important;
        width: 20px !important;
        height: 20px !important;
    }
    
    .figma-btn-text small {
        font-size: 11px !important;
    }
    
    .figma-btn-text strong {
        font-size: 13px !important;
    }
    
    .figma-feature-icon {
        width: 36px !important;
        height: 36px !important;
        margin-right: 8px !important;
    }
    
    .figma-feature-icon i {
        font-size: 16px !important;
    }
    
    .figma-feature-text,
    .figma-feature-text-disabled {
        font-size: 12px !important;
    }
    
    .figma-stat-item {
        padding: 12px 6px !important;
    }
    
    .figma-stat-number {
        font-size: 16px !important;
    }
    
    .figma-stat-number i {
        font-size: 14px !important;
    }
    
    .figma-stat-label {
        font-size: 10px !important;
    }
}

/* ========================================
   FEATURE BUTTONS - EXACT FIGMA DESIGN
   ======================================== */
.figma-feature-buttons-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
}

.figma-feature-buttons-row {
    display: flex !important;
    gap: 12px !important;
    align-items: center !important;
}

.figma-feature-buttons-single {
    justify-content: center !important;
}

.figma-feature-button {
    display: flex !important;
    align-items: center !important;
    gap: 13px !important;
    background-color: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 9999px !important; /* rounded-full */
    padding: 13px 16px !important; /* px-4 py-2 */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; /* shadow-sm */
    transition: all 0.3s ease !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

.figma-feature-button:hover {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

.figma-feature-button.disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
}

.figma-feature-button.disabled:hover {
    transform: none !important;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}

.figma-feature-button i {
    font-size: 16px !important;
    color: #14b08e !important; /* Teal exacto para iconos activos */
}

.figma-feature-button span {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #0b0c0c !important; /* Teal exacto para texto activo */
    line-height: 1.4 !important;
}

.figma-feature-button.disabled i {
    color: #9ca3af !important; /* Gris exacto para icono deshabilitado */
}

.figma-feature-button.disabled span {
    color: #9ca3af !important; /* Gris exacto para texto deshabilitado */
}

/* CSS Variables para compatibilidad */
:root {
    --card: #ffffff;
    --border: #e5e7eb;
    --primary: #14b08e;
}

/* Estilos específicos para evitar conflictos */
.figma-feature-buttons-container * {
    box-sizing: border-box !important;
}

.figma-feature-button,
.figma-feature-button * {
    all: unset !important;
    display: flex !important;
    align-items: center !important;
}

.figma-feature-button {
    gap: 8px !important;
    background-color: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 9999px !important;
    padding: 8px 16px !important;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
}

.figma-feature-button i {
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900 !important;
    font-size: 16px !important;
    color: #14b08e !important;
    line-height: 1 !important;
}

.figma-feature-button span {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #0d0e0d !important;
    line-height: 2.4 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.figma-feature-button.disabled {
    opacity: 0.6 !important;
    cursor: not-allowed !important;
}

.figma-feature-button.disabled i {
    color: #9ca3af !important;
}

.figma-feature-button.disabled span {
    color: #9ca3af !important;
}

.figma-feature-button:hover:not(.disabled) {
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
}

/* Responsive para feature buttons */
@media (max-width: 768px) {
    .figma-feature-buttons-container {
        gap: 8px !important;
    }
    
    .figma-feature-buttons-row {
        gap: 8px !important;
    }
    
    .figma-feature-button {
        padding: 6px 12px !important;
        gap: 6px !important;
    }
    
    .figma-feature-button i {
        font-size: 14px !important;
    }
    
    .figma-feature-button span {
        font-size: 13px !important;
    }
}

@media (max-width: 576px) {
    .figma-feature-buttons-container {
        gap: 6px !important;
    }
    
    .figma-feature-buttons-row {
        gap: 6px !important;
    }
    
    .figma-feature-button {
        padding: 5px 10px !important;
        gap: 5px !important;
    }
    
    .figma-feature-button i {
        font-size: 12px !important;
    }
    
    .figma-feature-button span {
        font-size: 12px !important;
    }
}

/* ========================================
   AWTU FEATURE BUTTONS - NUEVOS ESTILOS CON BOTONES
   ======================================== */
.awtu-features-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 12px !important;
    margin-bottom: 1.5rem !important;
}

.awtu-features-row {
    display: flex !important;
    gap: 12px !important;
    justify-content: flex-start !important;
    align-items: center !important;
}

.awtu-features-single {
    justify-content: flex-start !important;
}

.awtu-feature-item {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    background-color: #ffffff !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 9999px !important;
    padding: 13px 16px !important;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    cursor: default !important;
}

.awtu-feature-item:hover {
    transform: none !important;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}

.awtu-feature-item span {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #080808 !important;
    line-height: 1.4 !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

.awtu-feature-disabled {
    opacity: 0.6 !important;
    cursor: default !important;
}

.awtu-feature-disabled span {
    color: #9ca3af !important; /* Gris para elementos deshabilitados */
}

/* Responsive para awtu features */
@media (max-width: 768px) {
    .awtu-features-container {
        gap: 8px !important;
    }
    
    .awtu-features-row {
        gap: 8px !important;
    }
    
    .awtu-feature-item {
        padding: 10px 12px !important;
        gap: 6px !important;
    }
    
    .awtu-feature-item span {
        font-size: 13px !important;
    }
}

@media (max-width: 576px) {
    .awtu-features-container {
        gap: 6px !important;
    }
    
    .awtu-features-row {
        gap: 6px !important;
    }
    
    .awtu-feature-item {
        padding: 8px 10px !important;
        gap: 5px !important;
    }
    
    .awtu-feature-item span {
        font-size: 12px !important;
    }
}
