/* Sticky Navbar Styles */
.navbar {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.sticky {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 9998;
}

.navbar.sticky .link-block-navbar,
.navbar.sticky .brand {
    color: var(--color--font);
}

.navbar.sticky .brand img {
    filter: brightness(0);
}

/* Top Banner Styles */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #000000;
    color: white;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.top-banner-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    width: 100%;
}

.top-banner-text {
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    color: white;
}

.top-banner-text i {
    font-size: 16px;
    color: white;
}

.top-banner-cta {
    background: white;
    color: #000000;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.top-banner-cta:hover {
    background: #f0f0f0;
}

.top-banner-cta i {
    transition: transform 0.3s ease;
}

.top-banner-cta:hover i {
    transform: translateX(4px);
}

.top-banner-close {
    position: absolute;
    right: 20px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.top-banner-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.top-banner.hidden {
    display: none;
}

/* Always add padding to body to prevent content overlap */
body {
    padding-top: 50px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .top-banner {
        padding: 10px 15px;
    }

    .top-banner-content {
        gap: 12px;
        flex-direction: column;
    }

    .top-banner-text {
        font-size: 12px;
        text-align: center;
        line-height: 1.4;
    }

    .top-banner-text i {
        font-size: 14px;
    }

    .top-banner-cta {
        font-size: 13px;
        padding: 7px 18px;
    }

    .top-banner-close {
        right: 10px;
        top: 10px;
        width: 24px;
        height: 24px;
        font-size: 12px;
    }

    body {
        padding-top: 90px;
    }
}

@media (max-width: 480px) {
    .top-banner-text {
        font-size: 11px;
    }
}

/* ===== CLUBS PARALLAX SECTION ===== */
.clubs-parallax-section {
    position: relative;
    overflow: hidden;
    background: var(--color--backgroung);
}

.parallax-background {
    display: none;
}

.parallax-layer {
    display: none;
}

.parallax-overlay {
    display: none;
}

.clubs-content {
    position: relative;
    z-index: 2;
    padding: 6rem 0;
}

.clubs-grid-parallax {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    perspective: 1000px;
}

.club-card-parallax {
    position: relative;
    aspect-ratio: 4/5;
    border-radius: 1rem;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.5s ease;
    display: block;
    text-decoration: none;
    background: var(--color--card);
}

.club-card-parallax:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.club-card-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    transition: opacity 0.4s ease, transform 0.6s ease;
}

.club-card-parallax:hover .club-card-video {
    transform: scale(1.05);
}

.club-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.club-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 2;
    text-align: center;
}

.club-logo-img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-bottom: 0.75rem;
    filter: brightness(0) invert(1);
    transition: transform 0.3s ease;
}

.club-card-parallax:hover .club-logo-img {
    transform: scale(1.1);
}

.club-name-text {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
    margin: 0;
}

@media screen and (max-width: 991px) {
    .clubs-grid-parallax {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media screen and (max-width: 767px) {
    .clubs-parallax-section {
        min-height: auto;
    }

    .clubs-content {
        padding: 4rem 0;
    }

    .clubs-grid-parallax {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .club-card-parallax {
        aspect-ratio: 16/10;
    }

    .parallax-layer {
        background-attachment: scroll;
    }
}

.video-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.video-popup-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
    animation: slideUp 0.4s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

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

.video-popup-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.video-popup-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.video-popup-social {
    display: flex;
    gap: 10px;
}

.video-social-icon {
    background: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.video-social-icon i {
    font-size: 20px;
}

.video-social-icon.whatsapp i {
    color: #25D366;
}

.video-social-icon.instagram i {
    color: #E4405F;
}

.video-social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.video-popup-close {
    background: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.video-popup-close:hover {
    background: #f0f0f0;
    transform: rotate(90deg);
}

.video-popup-close i {
    font-size: 18px;
    color: #000;
}

@media (max-width: 768px) {
    .video-popup-content {
        width: 95%;
    }

    .video-popup-social {
        gap: 8px;
    }

    .video-social-icon {
        width: 35px;
        height: 35px;
    }

    .video-social-icon i {
        font-size: 18px;
    }

    .video-popup-close {
        width: 35px;
        height: 35px;
    }

    .video-popup-close i {
        font-size: 16px;
    }
}

.features-light {
    background: var(--color--card);
    padding: 4rem 0;
}

.features-header-light {
    text-align: center;
    margin-bottom: 2rem;
}

.features-badge-light {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--color--backgroung);
    border: 1px solid rgba(21, 21, 21, 0.1);
    border-radius: 999px;
    padding: 0.4rem 0.8rem;
    font-size: 0.7rem;
    color: var(--color--font);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.features-grid-compact {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.feature-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color--backgroung);
    border: 1px solid rgba(21, 21, 21, 0.08);
    border-radius: 999px;
    padding: 0.7rem 1.35rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color--font);
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
}

.feature-chip i {
    font-size: 0.85rem;
    opacity: 0.6;
}

.feature-chip:hover {
    background: var(--color--font);
    color: var(--color--card);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.feature-chip:hover i {
    opacity: 1;
}

/* Feature Modal Styles */
.feature-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.feature-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.feature-modal {
    background: var(--color--card);
    border-radius: 1.25rem;
    padding: 2.5rem;
    max-width: 420px;
    width: 90%;
    text-align: center;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    transition: all 0.3s ease;
    position: relative;
    display: none;
}

.feature-modal.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    display: block;
}

.feature-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--color--backgroung);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--color--font);
    transition: all 0.2s ease;
}

.feature-modal-close:hover {
    background: var(--color--font);
    color: var(--color--card);
}

.feature-modal-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color--primary), #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    font-size: 1.5rem;
    color: white;
}

.feature-modal h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: var(--color--font);
}

.feature-modal p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(21, 21, 21, 0.7);
    margin: 0 0 1.5rem;
}

.feature-modal-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color--font);
    color: var(--color--card);
    padding: 0.75rem 1.5rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

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


/* Customization Section Light */
.custom-light {
    background: var(--color--backgroung);
    padding: 3rem 0;
}

.custom-header-light {
    text-align: center;
    margin-bottom: 3rem;
}

.custom-badge-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color--card);
    border: 1px solid rgba(21, 21, 21, 0.1);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    color: var(--color--font);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.custom-badge-light i {
    color: var(--color--primary);
}

.custom-grid-light {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.custom-card-light {
    background: var(--color--card);
    border: 1px solid rgba(21, 21, 21, 0.08);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.custom-card-light:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.custom-card-main {
    grid-column: span 4;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--color--font);
    color: var(--color--card);
}

.custom-card-main:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.custom-card-main h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: var(--color--card);
}

.custom-card-main p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0 0 1.5rem;
    line-height: 1.6;
}

.theme-selector {
    display: flex;
    gap: 0.75rem;
}

.theme-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.theme-btn[data-color="#612695"] {
    background: #612695;
}

.theme-btn[data-color="#0ea5e9"] {
    background: #0ea5e9;
}

.theme-btn[data-color="#10b981"] {
    background: #10b981;
}

.theme-btn:hover {
    transform: scale(1.1);
}

.theme-btn.active {
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.custom-preview {
    display: flex;
    align-items: center;
    justify-content: center;
}

.preview-card {
    background: white;
    border-radius: 1rem;
    padding: 1.5rem;
    width: 100%;
    max-width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.1);
}

.preview-brand {
    font-weight: 600;
    color: var(--preview-color, #612695);
    font-size: 0.875rem;
}

.preview-status {
    font-size: 0.625rem;
    color: #10b981;
}

.preview-event {
    font-weight: 600;
    color: #151515;
    margin-bottom: 0.5rem;
}

.preview-details {
    display: flex;
    justify-content: space-between;
    font-size: 0.8125rem;
    color: rgba(21, 21, 21, 0.6);
    margin-bottom: 1rem;
}

.preview-cta {
    background: var(--preview-color, #612695);
    color: white;
    text-align: center;
    padding: 0.75rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    transition: background 0.4s ease;
}

.custom-icon-light {
    width: 44px;
    height: 44px;
    background: var(--color--backgroung);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    color: var(--color--font);
    margin-bottom: 1rem;
}

.custom-card-light h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color--font);
    margin: 0 0 0.5rem;
}

.custom-card-light>p {
    font-size: 0.875rem;
    color: rgba(21, 21, 21, 0.6);
    margin: 0;
    line-height: 1.5;
}

@media screen and (max-width: 991px) {
    .custom-grid-light {
        grid-template-columns: 1fr 1fr;
    }

    .custom-card-main {
        grid-column: span 2;
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 767px) {
    .custom-grid-light {
        grid-template-columns: 1fr;
    }

    .custom-card-main {
        grid-column: span 1;
    }

    .custom-card-light {
        padding: 1.25rem;
    }
}



.video-metrics-section {
    text-align: center;
}

.video-wrapper-simple {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.video-wrapper-simple iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-wrapper-simple:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
    .video-metrics-section {
        margin-top: 3rem !important;
    }

    /* Mobile: formato verticale per gli shorts */
    .video-wrapper-simple {
        padding-bottom: 177.78%;
        /* 9:16 aspect ratio per shorts */
        max-width: 400px;
        margin: 0 auto;
    }
}

/* AI Section Light Theme */
.ai-section-light {
    background: var(--color--card);
    padding: 6rem 0 3rem 0;
}

.ai-header-light {
    text-align: center;
    margin-bottom: 4rem;
}

.ai-badge-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color--backgroung);
    border: 1px solid rgba(21, 21, 21, 0.1);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    color: var(--color--font);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.ai-badge-light i {
    color: var(--color--primary);
}

.ai-grid-light {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.ai-card-light {
    background: var(--color--backgroung);
    border: 1px solid rgba(21, 21, 21, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.ai-card-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(21, 21, 21, 0.15);
}

.ai-card-featured {
    background: var(--color--font);
    color: var(--color--card);
    border-color: transparent;
}

.ai-card-featured:hover {
    border-color: transparent;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.ai-card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.3;
    font-family: 'Inter', monospace;
}

.ai-card-icon-light {
    width: 50px;
    height: 50px;
    background: var(--color--card);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color--font);
    margin-bottom: 1.5rem;
}

.ai-card-featured .ai-card-icon-light {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color--card);
}

.ai-card-light h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.75rem;
    color: var(--color--font);
}

.ai-card-featured h3 {
    color: var(--color--card);
}

.ai-card-light>p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: rgba(21, 21, 21, 0.6);
    margin: 0 0 1.5rem;
}

.ai-card-featured>p {
    color: rgba(255, 255, 255, 0.7);
}

.ai-list-light {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.ai-list-light li {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: rgba(21, 21, 21, 0.7);
}

.ai-card-featured .ai-list-light li {
    color: rgba(255, 255, 255, 0.8);
}

.ai-list-light li i {
    color: #10b981;
    font-size: 0.75rem;
}

@media screen and (max-width: 991px) {
    .ai-grid-light {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}







/* Why ClubR Section - Light Theme */
.why-clubr-section {
    background: var(--color--card);
    padding: 3rem 0 6rem 0;
    overflow: hidden;
    margin-top: -1px;
}

.why-clubr-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-clubr-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color--backgroung);
    border: 1px solid rgba(21, 21, 21, 0.1);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    color: var(--color--font);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.why-clubr-badge i {
    color: var(--color--primary);
}

.why-clubr-header h2 {
    color: var(--color--font);
}

.why-clubr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.why-clubr-card {
    background: var(--color--backgroung);
    border-radius: 1.25rem;
    padding: 0;
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(21, 21, 21, 0.08);
}

/* Top accent bar */
.why-clubr-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--card-accent, #612695) 0%, var(--card-accent-end, #9333ea) 100%);
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

/* Background pattern */
.why-clubr-card::after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--card-accent, rgba(97, 38, 149, 0.08)) 0%, transparent 70%);
    opacity: 0.5;
    transition: all 0.4s ease;
    pointer-events: none;
}

.why-clubr-card:hover {
    transform: translateY(-8px);
    border-color: rgba(21, 21, 21, 0.15);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.1);
}

.why-clubr-card:hover::before {
    opacity: 1;
}

.why-clubr-card:hover::after {
    opacity: 0.8;
    transform: scale(1.2);
}

/* Card inner content wrapper */
.why-clubr-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

/* Card number badge */
.why-clubr-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(21, 21, 21, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(21, 21, 21, 0.3);
    z-index: 3;
}

.why-clubr-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color--font);
    margin: 0 0 1rem;
    position: relative;
    z-index: 2;
    padding-right: 40px;
}

.why-clubr-card p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(21, 21, 21, 0.65);
    margin: 0;
    position: relative;
    z-index: 2;
    flex: 1;
}

.why-clubr-icon {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    z-index: 2;
    animation: iconFloat 3s ease-in-out infinite;
}

/* Card accent colors */
.why-clubr-card:nth-child(1) { --card-accent: #612695; --card-accent-end: #9333ea; }
.why-clubr-card:nth-child(2) { --card-accent: #6b7280; --card-accent-end: #4b5563; }
.why-clubr-card:nth-child(3) { --card-accent: #10b981; --card-accent-end: #059669; }
.why-clubr-card:nth-child(4) { --card-accent: #612695; --card-accent-end: #7c3aed; }
.why-clubr-card:nth-child(5) { --card-accent: #f59e0b; --card-accent-end: #d97706; }
.why-clubr-card:nth-child(6) { --card-accent: #ec4899; --card-accent-end: #be185d; }

/* Card 1 - Incassa subito - Energetico */
.why-clubr-icon-1 {
    background: linear-gradient(135deg, #612695 0%, #9333ea 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(97, 38, 149, 0.3);
    animation-delay: 0s;
}

/* Card 2 - Nessun costo - Neutro */
.why-clubr-icon-2 {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 25px rgba(107, 114, 128, 0.3);
    animation-delay: 0.5s;
}

.why-clubr-icon-2 .icon-slash {
    position: absolute;
    width: 2px;
    height: 28px;
    background: #ef4444;
    transform: rotate(-45deg);
    border-radius: 2px;
}

/* Card 3 - SIAE - Pulito */
.why-clubr-icon-3 {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    animation-delay: 1s;
}

/* Card 4 - App - Primary */
.why-clubr-icon-4 {
    background: linear-gradient(135deg, #612695 0%, #7c3aed 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(97, 38, 149, 0.3);
    animation-delay: 1.5s;
}

/* Card 5 - Centro - Premium */
.why-clubr-icon-5 {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.3);
    animation-delay: 2s;
}

/* Card 6 - Marketing - Vivace */
.why-clubr-icon-6 {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: #fff;
    box-shadow: 0 8px 25px rgba(236, 72, 153, 0.3);
    animation-delay: 2.5s;
}

@keyframes iconFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(5deg);
    }
}

/* Hover animations per icone specifiche */
.why-clubr-card:hover .why-clubr-icon-1 {
    animation: iconPulse 0.6s ease-in-out infinite;
}

.why-clubr-card:hover .why-clubr-icon-6 {
    animation: iconShake 0.5s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 25px rgba(97, 38, 149, 0.3);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 12px 35px rgba(97, 38, 149, 0.5);
    }
}

@keyframes iconShake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px) rotate(-5deg);
    }

    75% {
        transform: translateX(3px) rotate(5deg);
    }
}

@media screen and (max-width: 1200px) {
    .why-clubr-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 991px) {
    .why-clubr-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-clubr-card {
        min-height: 250px;
    }
    
    .why-clubr-card-content {
        padding: 1.5rem;
    }
}

@media screen and (max-width: 767px) {
    .why-clubr-section {
        padding: 4rem 0;
    }

    .why-clubr-header {
        text-align: center;
    }

    .why-clubr-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .why-clubr-card {
        min-height: auto;
    }
    
    .why-clubr-card-content {
        padding: 1.5rem 1.5rem 5rem 1.5rem;
    }
    
    .why-clubr-number {
        display: none;
    }

    .why-clubr-card {
        min-height: 200px;
        padding: 1.5rem;
    }

    .why-clubr-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}





/* FAQ Section Styles */
.faq-section {
    background: var(--color--backgroung);
    padding: 6rem 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 4rem;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color--card);
    border: 1px solid rgba(21, 21, 21, 0.1);
    border-radius: 999px;
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
    color: var(--color--font);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.faq-badge i {
    color: var(--color--primary);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 2.5rem;
}

.faq-category:last-child {
    margin-bottom: 0;
}

.faq-category-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color--font);
    margin-bottom: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid rgba(21, 21, 21, 0.1);
}

.faq-category-title i {
    color: var(--color--primary);
    font-size: 1.125rem;
}

.faq-item {
    background: var(--color--card);
    border: 1px solid rgba(21, 21, 21, 0.08);
    border-radius: 0.75rem;
    margin-bottom: 0.75rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(21, 21, 21, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color--font);
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(21, 21, 21, 0.02);
}

.faq-question span {
    flex: 1;
    padding-right: 1rem;
}

.faq-icon {
    font-size: 0.75rem;
    color: rgba(21, 21, 21, 0.4);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-item.active .faq-question {
    background: rgba(21, 21, 21, 0.02);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0.75rem 1.5rem 1.5rem;
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(21, 21, 21, 0.7);
}

@media screen and (max-width: 767px) {
    .faq-section {
        padding: 4rem 0;
    }

    .faq-header {
        margin-bottom: 3rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        font-size: 0.875rem;
    }

    .faq-answer p {
        padding: 0 1.25rem 1.25rem;
        font-size: 0.875rem;
    }

    .faq-category-title {
        font-size: 0.9375rem;
    }
}