/* Modern Landing Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --gradient-primary: linear-gradient(135deg, var(--base-1) 0%, var(--base-2) 100%);
    --gradient-secondary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-hero: linear-gradient(135deg, rgba(var(--base-rgb), 0.1) 0%, rgba(var(--base-rgb-2), 0.05) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 64px rgba(0, 0, 0, 0.2);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Modern Hero Section - Simplified */
.banner-section {
    background: #ffffff;
    padding: 140px 0 100px;
    position: relative;
    overflow: hidden;
}

/* Subtle background accent - menos intrusivo */
.banner-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--base-rgb), 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.banner-content .title {
    font-size: clamp(40px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--title-clr);
    animation: fadeInUp 0.6s ease-out;
    letter-spacing: -0.01em;
}

.banner-content img {
    max-width: 100px;
    height: auto;
    margin: 24px auto;
    display: block;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

.banner-content .text {
    font-size: 18px;
    line-height: 1.7;
    color: #64748b;
    max-width: 650px;
    margin: 20px auto 0;
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
    font-weight: 400;
}

.banner-cta-group {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

/* Hero Counter Section */
.hero-counter-wrapper {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #e2e8f0;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-counter-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 16px;
}

.hero-counter-wrapper .counter-item {
    text-align: center;
    min-width: 120px;
}

.hero-counter-wrapper .counter-item .icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--base-rgb), 0.08);
    border-radius: 12px;
}

.hero-counter-wrapper .counter-item .icon svg {
    width: 32px;
    height: 32px;
}

.hero-counter-wrapper .counter-item .title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    color: var(--base-1);
    line-height: 1.2;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.hero-counter-wrapper .counter-item .title span {
    display: inline-block;
}

.hero-counter-wrapper .counter-item .text {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    margin-top: 4px;
}

.hero-counter-footer {
    font-size: 14px;
    color: #64748b;
    font-weight: 500;
    margin-top: 12px;
}

.hero-counter-footer img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .hero-counter-items {
        gap: 24px;
    }
    
    .hero-counter-wrapper .counter-item {
        min-width: 100px;
    }
    
    .hero-counter-wrapper .counter-item .icon {
        width: 40px;
        height: 40px;
    }
    
    .hero-counter-wrapper .counter-item .icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Counter Section Modern (Still Increasing) */
.counter-section-modern {
    background: linear-gradient(135deg, #fff5f0 0%, #fef3ed 50%, #f0fdf4 100%);
    padding: 80px 0;
}

.counter-modern-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.counter-modern-items {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    background: white;
    border-radius: 50px;
    padding: 40px 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.counter-item-modern {
    text-align: center;
    flex: 1;
    min-width: 150px;
    max-width: 220px;
}

.counter-item-modern .icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    transition: var(--transition);
}

.counter-item-modern .icon:hover {
    transform: translateY(-2px);
}

.counter-item-modern .icon svg {
    width: 40px;
    height: 40px;
}

.counter-item-modern-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-item-modern .title {
    font-size: clamp(28px, 3vw, 36px);
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.counter-item-modern .title span {
    display: inline-block;
}

.counter-item-modern .text {
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
    text-transform: none;
    letter-spacing: 0;
    margin: 0;
}

/* Still Increasing Button Style */
.counter-item-modern .counter-modern-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: linear-gradient(135deg, #ffedd5 0%, #fed7aa 100%);
    border: 1px solid #fdba74;
    border-radius: 30px;
    font-size: 13px;
    color: #ea580c;
    font-weight: 700;
    margin: 0;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.15);
    transition: var(--transition);
}

.counter-item-modern .counter-modern-footer:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.2);
}

.counter-item-modern .counter-modern-footer img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.counter-item-modern .counter-modern-footer span {
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .counter-section-modern {
        padding: 60px 0;
    }
    
    .counter-modern-items {
        gap: 20px;
        padding: 32px 24px;
        border-radius: 30px;
    }
    
    .counter-item-modern {
        min-width: 120px;
        max-width: 150px;
    }
    
    .counter-item-modern .icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
    
    .counter-item-modern .icon svg {
        width: 32px;
        height: 32px;
    }
    
    .counter-item-modern .title {
        font-size: clamp(22px, 4vw, 28px);
    }
    
    .counter-item-modern .counter-modern-footer {
        padding: 10px 16px;
        font-size: 12px;
    }
    
    .counter-item-modern .counter-modern-footer img {
        width: 16px;
        height: 16px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header .title {
    font-size: clamp(32px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--title-clr);
    letter-spacing: -0.01em;
}

.section-header p {
    font-size: 17px;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Modern Cards - Simplified */
.modern-card {
    background: white;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
    height: 100%;
    border: 1px solid #e2e8f0;
}

.modern-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    border-color: var(--base-1);
}

.modern-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(var(--base-rgb), 0.2);
}

.modern-card-icon img {
    width: 36px;
    height: 36px;
    filter: brightness(0) invert(1);
}

.modern-card h5 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--title-clr);
}

.modern-card .text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--body-clr);
}

/* Feature Section Modern Style */
.learn-feature-section {
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    padding: 100px 0;
    position: relative;
}

.learn-feature-item {
    background: white;
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.learn-feature-item:hover {
    border-left-color: var(--base-1);
    transform: translateX(8px);
    box-shadow: var(--shadow-md);
}

.learn-feature-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.learn-feature-icon img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(1);
}

/* Module Carousel Modern Style */
.nav--tabs-wrapper {
    margin-bottom: 40px;
}

.nav--tabs .item {
    text-align: center;
    padding: 20px;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition);
    background: white;
    border: 2px solid transparent;
    margin: 0 8px;
}

.nav--tabs .item:hover,
.nav--tabs .item.synced {
    border-color: var(--base-1);
    background: rgba(var(--base-rgb), 0.05);
    transform: translateY(-4px);
    box-shadow: var(--shadow-sm);
}

.nav--tabs .item img {
    width: 60px;
    height: 60px;
    margin-bottom: 12px;
    filter: drop-shadow(var(--shadow-sm));
}

/* Promotional Banner Cards */
.category-slide-item {
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.category-slide-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.category-slide-item > div {
    position: relative;
    z-index: 2;
    color: white;
}

.category-slide-item h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.category-slide-item .text {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
}

/* Zone Section Modern Style */
.delivery-area-section {
    padding: 80px 0;
    background: white;
}

.zone-list-container {
    margin-top: 32px;
}

.zone-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.zone-list .item {
    padding: 12px 24px;
    background: white;
    border: 2px solid rgba(var(--base-rgb), 0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--title-clr);
    transition: var(--transition);
    cursor: pointer;
}

.zone-list .item:hover {
    border-color: var(--base-1);
    background: rgba(var(--base-rgb), 0.05);
    color: var(--base-1);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

/* Refer Section Modern Style */
.refer-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(var(--base-rgb), 0.05) 0%, rgba(var(--base-rgb-2), 0.02) 100%);
}

/* Button Styles */
.modern-btn {
    display: inline-block;
    padding: 16px 36px;
    background: var(--base-1);
    color: white;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(var(--base-rgb), 0.2);
    border: none;
    cursor: pointer;
}

.modern-btn:hover {
    background: var(--base-2);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(var(--base-rgb), 0.3);
    color: white;
    text-decoration: none;
}

.modern-btn-primary {
    padding: 18px 48px;
    font-size: 17px;
    box-shadow: 0 4px 16px rgba(var(--base-rgb), 0.25);
}

.modern-btn-primary:hover {
    box-shadow: 0 6px 20px rgba(var(--base-rgb), 0.35);
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-slide-left {
    animation: slideInLeft 0.8s ease-out;
}

.animate-slide-right {
    animation: slideInRight 0.8s ease-out;
}

/* Responsive Improvements */
@media (max-width: 768px) {
    .banner-section {
        padding: 80px 0 60px;
    }
    
    .modern-card {
        padding: 24px;
        margin-bottom: 20px;
    }
    
    .category-slide-item {
        min-height: 300px;
        padding: 40px 24px;
    }
    
    .zone-list .item {
        font-size: 12px;
        padding: 10px 20px;
    }
}

/* B2B Professional Styles - Simplified */

/* Professional Card Styles */
.modern-card {
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Removed duplicate hover style */

.modern-card h5 {
    font-weight: 600;
    font-size: 20px;
    color: var(--title-clr);
}

.modern-card .text.small {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
}

/* Removed duplicate section header styles */

/* Button styles already defined above - no duplicates */

/* Removed duplicate trust-indicators styling */

/* Business Section - Clean */
.business-benefits-section {
    position: relative;
}

/* Icon styling simplified */
.modern-card-icon svg {
    width: 24px;
    height: 24px;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.loading {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

