/* Template Shopify Additional Styles */

/* Hero Badges */
.hero-badges {
    margin-bottom: 1.5rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255,193,7,0.9) 0%, rgba(255,193,7,0.7) 100%);
    color: #000;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(255,193,7,0.3);
    animation: badgeGlow 2s ease-in-out infinite alternate;
}

.hero-badge i {
    animation: starTwinkle 1.5s ease-in-out infinite;
}

@keyframes badgeGlow {
    0% { transform: scale(1); box-shadow: 0 4px 15px rgba(255,193,7,0.3); }
    100% { transform: scale(1.02); box-shadow: 0 6px 20px rgba(255,193,7,0.4); }
}

@keyframes starTwinkle {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* Hero Titles */
.hero-subtitle-main {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(150,191,60,0.5);
    animation: subtitleSlide 1s ease-out 0.3s both;
}

@keyframes subtitleSlide {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Visual - Fix allineamento verticale desktop */
@media (min-width: 992px) {
    .hero-releasit {
        min-height: 100vh !important;
        display: flex !important;
        align-items: center !important;
    }

    .hero-releasit .row {
        min-height: calc(100vh - 90px) !important;
        align-items: center !important;
    }

    .hero-releasit .col-lg-6 {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
    }

    .hero-visual {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100% !important;
    }
}

/* Template Showcase */
.template-showcase {
    position: relative;
    text-align: center;
    width: 100%;
}

.main-mockup {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    animation: mockupFloat 6s ease-in-out infinite;
}

@keyframes mockupFloat {
    0%, 100% { transform: translateY(0px) rotateY(0deg); }
    50% { transform: translateY(-15px) rotateY(2deg); }
}

.features-overlay {
    position: absolute;
    top: -20px;
    right: -20px;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    z-index: 10;
}

.feature-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.95);
    color: var(--primary);
    padding: 0.6rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(150,191,60,0.3);
    animation: tagBounce 2s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

.feature-tag:nth-child(1) { --delay: 0s; }
.feature-tag:nth-child(2) { --delay: 0.5s; }
.feature-tag:nth-child(3) { --delay: 1s; }

@keyframes tagBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-5px) scale(1.05); }
}

.feature-tag i {
    color: var(--success);
    font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .features-overlay {
        position: static;
        margin-top: 2rem;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 575px) {
    .hero-subtitle-main {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Hero Features Fix - Testo pulito senza rettangoli */
.hero-releasit .about-features .feature-item {
    background: transparent !important;
    border: none !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
}

.hero-releasit .about-features .feature-item:hover {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    transform: translateX(5px) !important;
}

.hero-releasit .about-features .feature-item h4 {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0,0,0,0.7) !important;
    font-weight: 700 !important;
}

.hero-releasit .about-features .feature-item p {
    color: rgba(255,255,255,0.95) !important;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5) !important;
}

.hero-releasit .about-features .feature-item i {
    color: var(--primary) !important;
    text-shadow: 0 0 15px rgba(150,191,60,0.8) !important;
}

/* AI Tools Section - Stile corrieri */
/* Usa ai-logistics-card dall'index principale per il box bianco */

.ai-logistics-card .ai-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(150,191,60,0.3);
    animation: iconPulse 2s ease-in-out infinite;
}

.ai-logistics-card .ai-icon i {
    font-size: 2.5rem;
    color: white;
}

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

.ai-logistics-card h3 {
    color: var(--gray-800);
    font-weight: 700;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.ai-logistics-card p {
    color: var(--gray-600);
    font-size: 1.1rem;
    line-height: 1.7;
}

.ai-logistics-card .ai-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.ai-logistics-card .ai-benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(150,191,60,0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.ai-logistics-card .ai-benefit-item:hover {
    background: rgba(150,191,60,0.1);
    transform: translateX(5px);
}

.ai-logistics-card .ai-benefit-item i {
    color: var(--success);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.ai-logistics-card .ai-benefit-item span {
    color: var(--gray-700);
    font-weight: 500;
}

/* GPT Tools Grid */
.gpt-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.gpt-tool-card {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    border: 2px solid rgba(150,191,60,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.gpt-tool-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.gpt-tool-card:hover::before {
    transform: scaleX(1);
}

.gpt-tool-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.gpt-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(150,191,60,0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.gpt-tool-card:hover .gpt-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    transform: scale(1.1);
}

.gpt-icon i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.gpt-tool-card:hover .gpt-icon i {
    color: white;
}

.gpt-tool-card span {
    color: var(--gray-800);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Bonus GPT Highlight */
.bonus-gpt-highlight {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(150,191,60,0.1) 100%);
    border-radius: 20px;
    padding: 1.5rem;
    border: 2px solid rgba(150,191,60,0.2);
}

.bonus-gpt-card {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bonus-gpt-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--warning) 0%, #fd7e14 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: giftPulse 2s ease-in-out infinite;
}

.bonus-gpt-icon i {
    font-size: 1.5rem;
    color: white;
}

@keyframes giftPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.bonus-gpt-content h4 {
    color: var(--gray-800);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.bonus-gpt-content p {
    margin-bottom: 0.2rem;
    color: var(--gray-700);
    font-size: 0.95rem;
}

.bonus-gpt-content .small-text {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin: 0;
}

/* Responsive GPT Tools */
@media (max-width: 991px) {
    .gpt-tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .bonus-gpt-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 575px) {
    .gpt-tools-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gpt-tool-card {
        padding: 1.2rem;
    }
    
    .bonus-gpt-highlight {
        padding: 1.2rem;
    }
    
    .ai-logistics-card .ai-icon {
        width: 60px;
        height: 60px;
    }
    
    .ai-logistics-card .ai-icon i {
        font-size: 2rem;
    }
}

/* Fix hero mobile - rimuovi altezza fissa su mobile */
@media (max-width: 991px) {
    .hero-releasit {
        min-height: auto !important;
        align-items: flex-start !important;
    }
    
    .hero-releasit .row {
        min-height: auto !important;
        align-items: flex-start !important;
    }
    
    .hero-releasit .col-lg-6 {
        display: block !important;
    }
    
    .hero-visual {
        display: block !important;
        margin-top: 2rem;
    }
}

/* Landing Showcase Section - Ottimizzata */
.showcase-content-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid rgba(150,191,60,0.1);
    position: relative;
    overflow: hidden;
}

.showcase-content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

.showcase-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: showcaseIconPulse 3s ease-in-out infinite;
}

.showcase-icon i {
    font-size: 2rem;
    color: white;
}

@keyframes showcaseIconPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.showcase-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(150,191,60,0.03);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: rgba(150,191,60,0.08);
    transform: translateX(8px);
}

.benefit-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.benefit-item h5 {
    color: var(--gray-800);
    font-weight: 700;
    font-size: 1rem;
}

.perfect-for-section h4 {
    color: var(--gray-800);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
}

.use-case-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1rem;
    background: linear-gradient(135deg, rgba(150,191,60,0.1) 0%, rgba(150,191,60,0.05) 100%);
    border-radius: 25px;
    border: 1px solid rgba(150,191,60,0.2);
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.use-case-tag:hover {
    background: linear-gradient(135deg, rgba(150,191,60,0.15) 0%, rgba(150,191,60,0.08) 100%);
    border-color: var(--primary);
    transform: scale(1.02);
}

.use-case-tag i {
    color: var(--success);
    font-size: 1rem;
}

.showcase-cta .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(150,191,60,0.3);
    transition: all 0.3s ease;
}

.showcase-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(150,191,60,0.4);
}

.cta-guarantee {
    text-align: center;
}

/* Showcase Visual Enhanced */
.showcase-visual-enhanced {
    position: relative;
}

.mockup-container {
    position: relative;
    text-align: center;
}

.performance-badges {
    position: absolute;
    top: -10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.perf-badge {
    background: white;
    padding: 0.8rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: badgeFloat 3s ease-in-out infinite;
    border: 2px solid rgba(150,191,60,0.2);
}

.perf-badge:nth-child(2) {
    animation-delay: 1.5s;
}

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

.perf-badge i {
    color: var(--primary);
    font-size: 1.2rem;
}

.perf-badge strong {
    color: var(--gray-800);
    font-size: 1rem;
    display: block;
}

.perf-badge small {
    color: var(--gray-600);
    font-size: 0.75rem;
}

/* Feature Callouts */
.feature-callouts {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.callout-item {
    position: absolute;
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    border: 2px solid rgba(150,191,60,0.3);
    animation: calloutPulse 4s ease-in-out infinite;
}

.callout-item.top-left {
    top: 20%;
    left: -10px;
}

.callout-item.top-right {
    top: 30%;
    right: -15px;
    animation-delay: 1s;
}

.callout-item.bottom-center {
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

@keyframes calloutPulse {
    0%, 100% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.05); opacity: 1; }
}

.callout-item i {
    color: var(--primary);
}

/* Responsive Showcase */
@media (max-width: 991px) {
    .showcase-content-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
    
    .performance-badges {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 1rem;
    }
    
    .feature-callouts {
        display: none;
    }
}

@media (max-width: 575px) {
    .showcase-content-card {
        padding: 1.5rem;
    }
    
    .showcase-benefits {
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 0.8rem;
    }
    
    .showcase-cta .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}

/* Footer Background */
.footer-releasit {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 25%, #1a1a1a 50%, #2d2d2d 75%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
    margin-top: 3rem;
}

.footer-releasit::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(150,191,60,0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(150,191,60,0.02) 0%, transparent 50%);
    pointer-events: none;
}

.footer-releasit::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2396bf3c' fill-opacity='0.015'%3E%3Ccircle cx='40' cy='40' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.4;
}

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

.footer-releasit .footer-brand {
    display: flex;
    align-items: center;
}

.footer-releasit .footer-brand span {
    color: white;
    font-size: 1.2rem;
}

.footer-releasit .footer-links a {
    color: rgba(255,255,255,0.8);
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.footer-releasit .footer-links a:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.footer-releasit .footer-social a {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.footer-releasit .footer-social a:hover {
    color: var(--primary);
    transform: scale(1.1);
}

.footer-releasit .footer-copyright {
    color: rgba(255,255,255,0.6);
    font-size: 0.85rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Footer Responsive */
@media (max-width: 767px) {
    .footer-releasit .footer-brand {
        justify-content: center;
        margin-bottom: 1rem;
    }
    
    .footer-releasit .footer-links {
        text-align: center !important;
    }
    
    .footer-releasit .footer-links a {
        display: block;
        margin: 0.3rem 0;
    }
}

/* CodFacile Logistics Section */
.codfacile-logistics {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.codfacile-logistics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: 
        radial-gradient(circle at 15% 20%, rgba(150,191,60,0.05) 0%, transparent 50%),
        radial-gradient(circle at 85% 80%, rgba(150,191,60,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.logistics-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--warning) 0%, #fd7e14 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: 0 8px 25px rgba(253,126,20,0.3);
    animation: logisticsBadgePulse 3s ease-in-out infinite;
}

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

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

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

.stat-item strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.stat-item small {
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Logistics Hero Card */
.logistics-hero-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    border: 1px solid rgba(150,191,60,0.1);
    position: relative;
    overflow: hidden;
}

.logistics-hero-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.85rem;
}

.logistics-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(150,191,60,0.03);
    border-radius: 15px;
    border-left: 5px solid var(--primary);
    transition: all 0.3s ease;
}

.benefit-highlight:hover {
    background: rgba(150,191,60,0.08);
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.3rem;
    color: white;
}

.benefit-highlight h5 {
    color: var(--gray-800);
    font-weight: 700;
    font-size: 1.1rem;
}

.logistics-cta .btn {
    padding: 1rem 2.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(150,191,60,0.3);
    transition: all 0.3s ease;
}

.logistics-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(150,191,60,0.4);
}

.cta-note {
    text-align: center;
}

/* Features Grid */
.logistics-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 2px solid rgba(150,191,60,0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    border-color: var(--primary);
}

.feature-card.special {
    border-color: var(--warning);
    background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
}

.feature-card.special:hover {
    border-color: var(--warning);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(150,191,60,0.1) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    transform: scale(1.1);
}

.feature-card.special .feature-icon {
    background: linear-gradient(135deg, var(--warning) 0%, #fd7e14 100%);
}

.feature-icon i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    color: white;
}

.feature-card.special .feature-icon i {
    color: white;
}

.feature-card h5 {
    color: var(--gray-800);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    margin: 0;
}

.special-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--warning);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.7rem;
    font-weight: 700;
    animation: specialBadgePulse 2s ease-in-out infinite;
}

@keyframes specialBadgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Trust Indicators */
.trust-indicators {
    background: linear-gradient(135deg, rgba(34,197,94,0.05) 0%, rgba(34,197,94,0.02) 100%);
    border-radius: 20px;
    padding: 1.5rem;
    border: 2px solid rgba(34,197,94,0.15);
}

.trust-header h5 {
    color: var(--gray-800);
    font-size: 1.1rem;
}

.trust-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem;
    background: rgba(255,255,255,0.7);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.trust-item:hover {
    background: rgba(255,255,255,0.9);
    transform: translateX(5px);
}

.trust-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(34,197,94,0.1) 0%, rgba(34,197,94,0.05) 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon i {
    font-size: 1.2rem;
    color: var(--success);
}

.trust-content strong {
    display: block;
    color: var(--gray-800);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.trust-content small {
    color: var(--gray-600);
    font-size: 0.8rem;
    line-height: 1.3;
}

.company-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(34,197,94,0.1);
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255,255,255,0.8);
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    transition: all 0.3s ease;
}

.badge-item:hover {
    background: rgba(255,255,255,1);
    transform: scale(1.05);
}

.badge-item i {
    font-size: 1rem;
}

/* Responsive Logistics */
@media (max-width: 991px) {
    .logistics-hero-card {
        padding: 2rem;
        margin-bottom: 2rem;
    }
    
    .logistics-features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stats-preview {
        gap: 2rem;
    }
    
    .company-badges {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 575px) {
    .logistics-hero-card {
        padding: 1.5rem;
    }
    
    .logistics-benefits {
        gap: 1rem;
    }
    
    .benefit-highlight {
        padding: 1rem;
    }
    
    .stats-preview {
        flex-direction: column;
        gap: 1rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .logistics-cta .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}
