/* ========================================
   SBANCA LANDING - BIANCO E VERDE
   Modern / Clean / High Converting
   ======================================== */

/* Custom Font - Brunson */
@font-face {
    font-family: 'Brunson';
    src: url('brunson/Brunson.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Brunson Rough';
    src: url('brunson/Brunson Rough.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

/* Reset & Variables */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors - Verde e Bianco */
    --primary: #00C853;
    --primary-dark: #00A844;
    --primary-light: #69F0AE;
    --primary-gradient: linear-gradient(135deg, #00C853 0%, #00E676 50%, #00C853 100%);
    
    --white: #FFFFFF;
    --off-white: #F8FAF9;
    --black: #0D1117;
    --gray-900: #1A1F26;
    --gray-800: #2D333B;
    --gray-700: #444C56;
    --gray-600: #636E7B;
    --gray-500: #8B949E;
    --gray-400: #ADBAC7;
    --gray-300: #CDD9E5;
    --gray-200: #E6EDF3;
    --gray-100: #F0F6FC;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --shadow-green: 0 10px 40px rgba(0, 200, 83, 0.3);
    
    /* Typography */
    --font-display: 'Oswald', sans-serif;
    --font-brunson: 'Brunson', sans-serif;
    --font-brunson-rough: 'Brunson Rough', sans-serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --header-height: 70px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--gray-800);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ========================================
   SVG ICONS
   ======================================== */
.warning-icon,
.fire-icon,
.ball-icon,
.lock-icon {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 4px;
    flex-shrink: 0;
}

.badge-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

.specialita-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--primary);
}

.section-tag .fire-icon {
    width: 14px;
    height: 14px;
}

.popup-label .fire-icon,
.popup-info-text .fire-icon,
.popup-matches-label .ball-icon,
.champions-card-info .fire-icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.cta-note .lock-icon {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.legal-warning .warning-icon {
    width: 16px;
    height: 16px;
    fill: #f59e0b;
}

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    height: var(--header-height);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo img {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-logo span {
    font-family: var(--font-brunson);
    font-size: 26px;
    font-weight: 400;
    color: var(--gray-900);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 8px;
    margin: 0 auto;
}

.nav-menu a {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 10px;
    transition: all 0.3s;
}

.nav-menu a svg {
    width: 16px;
    height: 16px;
    opacity: 0.7;
    transition: all 0.3s;
}

.nav-menu a:hover {
    color: var(--primary);
    background: rgba(0, 200, 83, 0.08);
}

.nav-menu a:hover svg {
    opacity: 1;
    stroke: var(--primary);
}

/* Nav Right - Spots + CTA */
.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.nav-spots-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(255, 59, 48, 0.12) 0%, rgba(255, 82, 82, 0.08) 100%);
    border: 2px solid rgba(255, 59, 48, 0.25);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 13px;
    color: #E53935;
    position: relative;
    overflow: hidden;
    animation: spotsBadgePulse 2s ease-in-out infinite;
}

@keyframes spotsBadgePulse {
    0%, 100% { border-color: rgba(255, 59, 48, 0.25); }
    50% { border-color: rgba(255, 59, 48, 0.5); }
}

.spots-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 59, 48, 0.1), transparent);
    animation: spotsGlow 2s ease-in-out infinite;
}

@keyframes spotsGlow {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.spots-dot {
    width: 10px;
    height: 10px;
    background: #FF3B30;
    border-radius: 50%;
    animation: spotsDot 1.5s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.4);
    position: relative;
    z-index: 1;
}

@keyframes spotsDot {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.4);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 0 6px rgba(255, 59, 48, 0);
    }
}

.spots-text {
    position: relative;
    z-index: 1;
    font-weight: 500;
}

.spots-text strong {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, #00E676 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.35);
    position: relative;
    overflow: hidden;
}

.nav-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.5s;
}

.nav-cta:hover::before {
    transform: translateX(100%);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 200, 83, 0.45);
}

.nav-cta .tg-icon {
    width: 18px;
    height: 18px;
}

.nav-cta .arrow-right {
    width: 16px;
    height: 16px;
    transition: transform 0.3s;
}

.nav-cta:hover .arrow-right {
    transform: translateX(3px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: 0.3s;
}

/* ========================================
   HERO
   ======================================== */
.hero {
    min-height: 100vh;
    padding-top: var(--header-height);
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg-gradient {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(0, 200, 83, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: calc(100vh - var(--header-height));
}

.hero-content {
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.3);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 16px;
}

.hero h1 {
    font-family: var(--font-brunson);
    font-size: clamp(40px, 5vw, 68px);
    font-weight: 400;
    color: var(--gray-900);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.hero h1 span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 32px;
    max-width: 500px;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 20px 24px;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 11px;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.stat-divider {
    display: none;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--shadow-green);
    border: none;
    cursor: pointer;
}

.cta-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 200, 83, 0.4);
}

.cta-btn .tg-icon {
    width: 20px;
    height: 20px;
}

.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-phone {
    max-width: 100%;
    max-height: 550px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}

/* ========================================
   HERO CHAMPIONS CARD
   ======================================== */
.hero-champions-card {
    background: linear-gradient(145deg, #1a1a2e 0%, #0d0d1a 100%);
    border: none;
    border-radius: 24px;
    padding: 28px;
    max-width: 420px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.hero-champions-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, #00E676 50%, var(--primary) 100%);
}

.champions-card-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.champions-card-logo {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.champions-card-logo.serie-a-logo {
    filter: none;
}

.champions-card-title {
    display: flex;
    flex-direction: column;
}

.champions-card-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.champions-card-name {
    font-family: var(--font-brunson);
    font-size: 22px;
    color: var(--white);
}

/* Champions Date Group */
.champions-date-group {
    margin-bottom: 16px;
}

.champions-date-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.champions-date-header .date-badge {
    background: linear-gradient(135deg, var(--primary) 0%, #00E676 100%);
    color: var(--white);
    font-size: 9px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 1px;
}

.champions-date-header .date-text {
    font-size: 12px;
    color: var(--gray-400);
    font-weight: 600;
}

/* Champions Match Row */
.champions-match {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.champions-match:hover {
    background: rgba(0, 200, 83, 0.1);
    border-color: rgba(0, 200, 83, 0.3);
    transform: translateX(6px);
}

.champions-match .match-team {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
}

.champions-match .match-team.away {
    justify-content: flex-end;
    text-align: right;
}

.champions-match .match-team img {
    width: 26px;
    height: 26px;
    object-fit: contain;
    flex-shrink: 0;
}

.champions-match .match-team img.juve-logo {
    background: #000;
    border-radius: 4px;
    padding: 2px;
}

.champions-match .match-team span {
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.champions-match .match-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 0 12px;
    flex-shrink: 0;
}

.champions-match .match-time {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--primary);
    font-weight: 700;
}

.champions-match .match-vs {
    font-size: 9px;
    color: var(--gray-500);
    font-weight: 700;
}

/* Champions Card Info & CTA */
.champions-card-info {
    text-align: center;
    color: var(--gray-400);
    font-size: 13px;
    margin: 12px 0;
}

.champions-card-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.3);
}

.champions-card-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 200, 83, 0.4);
}

.champions-card-cta .tg-icon {
    width: 20px;
    height: 20px;
}

/* ========================================
   SECTIONS GENERAL
   ======================================== */
.section {
    padding: 80px 0;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-tag {
    display: inline-block;
    background: rgba(0, 200, 83, 0.1);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 48px);
    color: var(--gray-900);
    line-height: 1.2;
}

.section-header h2 span {
    color: var(--primary);
}

.section-subtitle {
    color: var(--gray-600);
    font-size: 16px;
    margin-top: 12px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-dark {
    background: var(--gray-900);
}

.section-dark .section-tag {
    background: rgba(0, 200, 83, 0.2);
    color: var(--primary-light);
}

.section-dark .section-header h2 {
    color: var(--white);
}

.section-dark .section-subtitle {
    color: var(--gray-400);
}

.section-light {
    background: var(--off-white);
}

.section-green {
    background: var(--primary);
}

/* ========================================
   SPECIALITA
   ======================================== */
.section-specialita {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
}

.specialita-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.specialita-card {
    background: var(--white);
    border: none;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.specialita-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform 0.4s;
}

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

.specialita-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 200, 83, 0.15);
}

.specialita-card.featured {
    background: linear-gradient(135deg, var(--primary) 0%, #00E676 100%);
    color: var(--white);
}

.specialita-card.featured::before {
    display: none;
}

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

.specialita-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.specialita-card.featured .specialita-icon svg {
    fill: var(--white);
}

.specialita-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 200, 83, 0.1);
    border-radius: 16px;
}

.specialita-card.featured .specialita-icon {
    background: rgba(255, 255, 255, 0.2);
}

.specialita-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    color: var(--gray-900);
    margin-bottom: 12px;
}

.specialita-card p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
}

/* ========================================
   RESULTS GALLERY
   ======================================== */
.results-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 24px;
    margin-bottom: 50px;
}

.result-card {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.result-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 70px rgba(0, 200, 83, 0.25);
}

.result-card img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s;
    border-radius: 20px;
}

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

.result-overlay {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0;
    background: none;
    display: flex;
    justify-content: center;
    z-index: 2;
}

.result-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--primary) 0%, #00E676 100%);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4);
}

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

.results-cta p {
    color: var(--gray-400);
    margin-bottom: 20px;
}

/* ========================================
   CANALE TELEGRAM PREVIEW
   ======================================== */
.section-canale {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.05), rgba(0, 200, 83, 0.02));
}

.canale-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
}

.canale-image {
    flex-shrink: 0;
}

.canale-image img {
    width: 280px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.canale-content {
    text-align: left;
}

.canale-content h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 700;
}

.canale-content p {
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
}

.canale-content .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.canale-content .tg-icon {
    width: 20px;
    height: 20px;
}

@media (max-width: 768px) {
    .canale-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 32px;
    }

    .canale-content {
        text-align: center;
    }

    .canale-image img {
        width: 220px;
    }

    .canale-content h3 {
        font-size: 1.6rem;
    }
}

/* ========================================
   STEPS
   ======================================== */
.steps-horizontal {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.step-card {
    background: var(--white);
    border: none;
    border-radius: 24px;
    padding: 40px 32px 32px;
    text-align: center;
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 200, 83, 0.15);
}

.step-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, #00E676 100%);
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    box-shadow: 0 8px 24px rgba(0, 200, 83, 0.3);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1) 0%, rgba(0, 230, 118, 0.05) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-icon svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--gray-900);
    margin-bottom: 10px;
}

.step-card p {
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
}

.step-arrow {
    font-size: 32px;
    color: var(--primary);
    font-weight: 700;
    opacity: 0.5;
}

/* ========================================
   PERCHE SBANCA
   ======================================== */
.section-green {
    padding: 80px 0;
}

.perche-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.perche-text .section-tag {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.perche-text h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 4vw, 44px);
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.perche-text h2 span {
    color: var(--gray-900);
}

.perche-text > p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.perche-list {
    list-style: none;
    margin-bottom: 32px;
}

.perche-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--white);
    font-size: 15px;
    margin-bottom: 12px;
}

.check-icon {
    background: var(--white);
    color: var(--primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.cta-btn-dark {
    background: var(--gray-900);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cta-btn-dark:hover {
    background: var(--black);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.perche-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

/* ========================================
   REVIEWS
   ======================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--white);
    border: none;
    border-radius: 20px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
    position: relative;
}

.review-card::before {
    content: '"';
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 60px;
    font-family: Georgia, serif;
    color: var(--primary);
    opacity: 0.15;
    line-height: 1;
}

.review-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 200, 83, 0.12);
}

.review-stars {
    color: #FFD700;
    font-size: 16px;
    margin-bottom: 16px;
    letter-spacing: 2px;
}

.review-text {
    color: var(--gray-700);
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
}

.author-avatar {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, #00E676 100%);
    color: var(--white);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}

.author-info strong {
    display: block;
    color: var(--gray-900);
    font-size: 14px;
}

.author-info span {
    color: var(--gray-500);
    font-size: 12px;
}

/* ========================================
   FAQ
   ======================================== */
.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border: none;
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s;
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.faq-item:hover {
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--white);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
}

.faq-question svg {
    width: 20px;
    height: 20px;
    color: var(--primary);
    transition: transform 0.3s;
    flex-shrink: 0;
}

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

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

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

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--gray-600);
    font-size: 14px;
    line-height: 1.7;
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--black) 100%);
    padding: 100px 0;
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 24px;
}

.cta-content h2 {
    font-family: var(--font-brunson);
    font-size: clamp(36px, 4vw, 56px);
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.cta-content h2 span {
    color: var(--primary);
}

.cta-content > p {
    color: var(--gray-400);
    font-size: 18px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-btn-big {
    padding: 20px 48px;
    font-size: 18px;
}

.cta-note {
    color: var(--gray-500);
    font-size: 14px;
    margin-top: 20px;
}

/* ========================================
   LEGAL POPUP - Fullscreen
   ======================================== */
.legal-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.legal-popup.hidden {
    display: none;
}

.legal-popup-content {
    text-align: center;
    max-width: 420px;
    background: linear-gradient(145deg, rgba(20, 40, 30, 0.98) 0%, rgba(10, 25, 18, 0.98) 100%);
    border-radius: 20px;
    padding: 32px 28px;
    border: 1px solid rgba(0, 200, 83, 0.3);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5), 0 0 50px rgba(0, 200, 83, 0.15);
    position: relative;
    animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.legal-logo img {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 10px 40px rgba(0, 200, 83, 0.3);
}

.legal-age-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FF5252, #D32F2F);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 10px 40px rgba(255, 82, 82, 0.4);
}

.legal-age-circle span {
    font-family: var(--font-display);
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
}

.legal-popup-content h2 {
    font-family: var(--font-display);
    font-size: 26px;
    color: var(--white);
    margin-bottom: 10px;
}

.legal-popup-content > p {
    color: var(--gray-300);
    font-size: 15px;
    margin-bottom: 14px;
    line-height: 1.5;
}

.legal-terms {
    color: var(--gray-400);
    font-size: 12px;
    margin-bottom: 20px;
}

.legal-terms a {
    color: var(--primary);
    text-decoration: none;
}

.legal-accept-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, #00E676 100%);
    color: var(--white);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 30px rgba(0, 200, 83, 0.4);
    margin-bottom: 16px;
    width: 100%;
    justify-content: center;
}

.legal-accept-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    transform: scale(1.02);
    box-shadow: 0 10px 40px rgba(0, 200, 83, 0.5);
}

.legal-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: var(--gray-500);
    font-size: 11px;
}

.legal-warning .warning-icon {
    width: 14px;
    height: 14px;
    color: #FFC107;
}

/* ========================================
   CHAMPIONS POPUP
   ======================================== */
.champions-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.champions-popup.hidden {
    display: none;
}

.champions-popup .popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
}

.champions-popup .popup-content {
    position: relative;
    z-index: 1;
    background: linear-gradient(145deg, #1a1a2e 0%, #0d0d1a 100%);
    border: 2px solid var(--primary);
    border-radius: 20px;
    padding: 24px;
    max-width: 440px;
    width: 100%;
    box-shadow: 0 25px 80px rgba(0, 200, 83, 0.3);
    animation: popupSlideIn 0.4s ease-out;
}

@keyframes popupSlideIn {
    from { opacity: 0; transform: translateY(-30px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.champions-popup .popup-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.champions-popup .popup-close svg {
    width: 18px;
    height: 18px;
    color: var(--white);
}

.champions-popup .popup-close:hover {
    background: var(--primary);
}

.champions-popup .popup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.champions-popup .popup-logo {
    width: 50px;
    height: 50px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.champions-popup .popup-title-wrapper {
    flex: 1;
}

.champions-popup .popup-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
}

.champions-popup .popup-title {
    font-family: var(--font-brunson);
    font-size: 20px;
    color: var(--white);
}

/* Popup Urgency Bar */
.popup-urgency-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 200, 83, 0.1);
    border: 1px solid rgba(0, 200, 83, 0.3);
    border-radius: 10px;
    padding: 10px 14px;
    margin-bottom: 16px;
}

.popup-countdown-mini {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-size: 12px;
}

.popup-countdown-mini svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

.popup-spots {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--white);
    font-size: 12px;
}

.popup-spots-dot {
    width: 8px;
    height: 8px;
    background: #FF5252;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

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

/* Popup Description */
.popup-description {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 14px 16px;
    margin-bottom: 16px;
    text-align: center;
}

.popup-description p {
    color: var(--gray-300);
    font-size: 14px;
    margin: 0;
}

.popup-description strong {
    color: var(--primary);
}

/* Popup Win Card */
.popup-win-card {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.2), rgba(0, 200, 83, 0.05));
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 16px;
}

.popup-win-card .win-badge {
    background: var(--primary);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 12px;
}

.popup-win-card .win-match {
    text-align: center;
}

.popup-win-card .win-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.popup-win-card .win-teams img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.popup-win-card .win-teams span {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
}

.popup-win-card .win-result {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.popup-win-card .win-score {
    font-family: var(--font-display);
    font-size: 28px;
    color: var(--primary);
}

.popup-win-card .win-scorer {
    color: var(--gray-300);
    font-size: 13px;
}

/* Popup Matches Grid */
.popup-matches-label {
    color: var(--gray-400);
    font-size: 12px;
    margin-bottom: 10px;
}

.popup-matches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}

.popup-match-mini {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-decoration: none;
    transition: all 0.3s;
}

.popup-match-mini:hover {
    background: rgba(0, 200, 83, 0.1);
    border-color: var(--primary);
}

.popup-match-mini img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.popup-match-mini img.juve-logo {
    background: #000;
    border-radius: 4px;
    padding: 2px;
}

.popup-match-mini span {
    color: var(--gray-500);
    font-size: 10px;
}

/* Popup Main Match (Inter vs Arsenal) */
.popup-main-match {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.15), rgba(0, 200, 83, 0.05));
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 16px;
}

.popup-main-teams {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.popup-main-team {
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-main-team img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.popup-main-team span {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.popup-main-vs {
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--gray-500);
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.popup-prediction-hidden {
    text-align: center;
}

.popup-prediction-hidden .prediction-label {
    font-size: 11px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.popup-prediction-hidden .prediction-reveal {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 83, 0.2);
    border: 2px dashed var(--primary);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s;
    animation: pulse-border 2s infinite;
}

.popup-prediction-hidden .prediction-reveal:hover {
    background: var(--primary);
    border-style: solid;
}

.popup-prediction-hidden .prediction-reveal .tg-icon {
    width: 20px;
    height: 20px;
}

@keyframes pulse-border {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(0, 200, 83, 0); }
}

/* Popup Other Matches */
.popup-other-matches {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
}

.popup-other-match {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 14px;
}

.popup-other-match img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.popup-other-match img.juve-logo {
    background: #000;
    border-radius: 4px;
    padding: 2px;
}

.popup-other-match span {
    color: var(--gray-300);
    font-size: 13px;
    font-weight: 600;
}

.popup-info-text {
    text-align: center;
    color: var(--gray-400);
    font-size: 12px;
    margin-bottom: 12px;
}

/* Popup CTA */
.popup-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 14px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.popup-cta:hover {
    background: var(--primary-dark);
}

.popup-cta .tg-icon {
    width: 20px;
    height: 20px;
}

/* ========================================
   COUNTDOWN
   ======================================== */
.countdown-wrapper {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.15), rgba(0, 200, 83, 0.05));
    border: 2px solid rgba(0, 200, 83, 0.4);
    border-radius: 20px;
    padding: 20px 32px;
    margin-bottom: 32px;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.countdown-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.countdown-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--primary-dark);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.countdown-pulse {
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
    box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 200, 83, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 200, 83, 0);
    }
}

.countdown-icon {
    width: 18px;
    height: 18px;
}

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

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

.countdown-value {
    background: var(--white);
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
    min-width: 70px;
}

.countdown-value span {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1;
    background: linear-gradient(180deg, var(--gray-900) 0%, var(--gray-700) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.countdown-item small {
    display: block;
    font-size: 11px;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
    margin-top: 8px;
}

.countdown-sep {
    font-family: var(--font-display);
    font-size: 32px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 20px;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0.3; }
}

/* ========================================
   MOBILE HEADER CTA - Enhanced
   ======================================== */
.mobile-header-cta {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 20, 10, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 200, 83, 0.3);
    padding: 14px 16px;
    z-index: 1000;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.mobile-spots {
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.spots-pulse-ring {
    position: absolute;
    left: 0;
    width: 14px;
    height: 14px;
    background: transparent;
    border: 2px solid rgba(255, 59, 48, 0.3);
    border-radius: 50%;
    animation: pulseRing 1.5s ease-out infinite;
}

@keyframes pulseRing {
    0% { 
        transform: scale(1);
        opacity: 1;
    }
    100% { 
        transform: scale(2);
        opacity: 0;
    }
}

.spots-pulse {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, #FF3B30 0%, #FF5252 100%);
    border-radius: 50%;
    animation: spotsPulseMobile 1.5s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(255, 59, 48, 0.4);
}

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

.mobile-spots-count {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: #FF5252;
    line-height: 1;
    text-shadow: 0 0 10px rgba(255, 82, 82, 0.5);
}

.mobile-spots-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.mobile-header-cta .mobile-cta-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary) 0%, #00E676 100%);
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4);
    animation: ctaGlow 2s ease-in-out infinite;
}

@keyframes ctaGlow {
    0%, 100% { box-shadow: 0 4px 15px rgba(0, 200, 83, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(0, 200, 83, 0.6); }
}

.mobile-header-cta .mobile-cta-btn .tg-icon {
    width: 18px;
    height: 18px;
}

/* ========================================
   BOTTOM FIXED BAR
   ======================================== */
.bottom-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 999;
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
}

.fixed-urgency {
    display: flex;
    align-items: center;
    gap: 10px;
}

.urgency-pulse {
    width: 12px;
    height: 12px;
    background: #FF5252;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

.urgency-number {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: #FF5252;
}

.urgency-text {
    color: var(--gray-600);
    font-size: 14px;
}

.fixed-btn {
    padding: 14px 32px;
}

.arrow-icon {
    width: 18px;
    height: 18px;
}

/* ========================================
   MOBILE FIXED CTA
   ======================================== */
.mobile-fixed-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: var(--white);
    border-top: 1px solid var(--gray-200);
    z-index: 999;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.mobile-fixed-cta .mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 16px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
}

.mobile-fixed-cta .tg-icon {
    width: 20px;
    height: 20px;
}

/* ========================================
   MOBILE TAB BAR
   ======================================== */
.mobile-tab-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    z-index: 1000;
    border-top: 1px solid var(--gray-200);
    grid-template-columns: repeat(5, 1fr);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
}

.tab-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: var(--gray-500);
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 6px 0;
    transition: color 0.3s;
}

.tab-item svg {
    width: 20px;
    height: 20px;
}

.tab-item:hover,
.tab-item.active {
    color: var(--primary);
}

.tab-cta {
    color: var(--white);
}

.tab-cta-btn {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -22px;
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.5);
}

.tab-cta-btn svg {
    width: 22px;
    height: 22px;
    color: var(--white);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--gray-900);
    padding: 40px 0 100px 0;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.footer-logo span {
    font-family: var(--font-brunson);
    font-size: 22px;
    color: var(--white);
    font-weight: 400;
}

.footer-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.age-badge {
    background: #FF5252;
    color: var(--white);
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
}

.footer-warning p {
    color: var(--gray-400);
    font-size: 13px;
}

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.footer-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-links span {
    color: var(--gray-600);
}

.footer-copy {
    color: var(--gray-600);
    font-size: 12px;
}

/* ========================================
   FOOTER DISCLAIMER ADM
   ======================================== */
.footer-disclaimer {
    background: var(--gray-900);
    padding: 48px 0 120px 0;
    text-align: center;
}

.footer-disclaimer .footer-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-adm {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.adm-logo {
    height: 50px;
    width: auto;
    filter: grayscale(100%) brightness(1.5);
    opacity: 0.8;
}

.footer-18 .age-badge {
    font-size: 18px;
    padding: 8px 16px;
    border-radius: 8px;
}

.footer-text {
    margin-bottom: 24px;
}

.footer-brand-text {
    color: var(--white);
    font-size: 16px;
    margin-bottom: 16px;
}

.footer-brand-text strong {
    color: var(--primary);
}

.footer-warning {
    color: var(--gray-400);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.footer-help {
    color: var(--gray-400);
    font-size: 13px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: inline-block;
}

.footer-help strong {
    color: var(--primary);
}

.footer-disclaimer .footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-disclaimer .footer-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}

.footer-disclaimer .footer-links a:hover {
    color: var(--primary);
}

.footer-disclaimer .footer-links span {
    color: var(--gray-600);
}

.footer-disclaimer .footer-copy {
    color: var(--gray-600);
    font-size: 12px;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    /* Header adjustments for tablet */
    .nav-menu {
        gap: 4px;
    }
    
    .nav-menu a {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .nav-spots-badge .spots-text {
        display: none;
    }
    
    .nav-spots-badge {
        padding: 8px 12px;
    }
    
    .nav-cta {
        padding: 10px 18px;
        font-size: 13px;
    }
    
    .nav-cta .arrow-right {
        display: none;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-image {
        order: 2;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-phone {
        max-height: 400px;
    }
    
    .hero-champions-card {
        max-width: 100%;
    }
    
    .specialita-grid {
        grid-template-columns: 1fr;
    }
    
    .results-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .perche-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .perche-image {
        order: -1;
    }
    
    .perche-list {
        display: inline-block;
        text-align: left;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 0px;
    }
    
    .header {
        display: none;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-right {
        display: none;
    }
    
    .menu-toggle {
        display: none;
    }
    
    .mobile-header-cta {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 1000;
        padding: 12px 16px;
        background: rgba(0, 20, 10, 0.95);
        backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(0, 200, 83, 0.2);
        justify-content: space-between;
        align-items: center;
        gap: 12px;
    }
    
    .mobile-tab-bar {
        display: grid;
    }
    
    .hero {
        min-height: auto;
        padding-top: 90px;
    }
    
    .hero-container {
        padding: 40px 20px;
    }
    
    .hero-stats {
        flex-direction: row;
        gap: 0;
    }
    
    .stat-item {
        padding: 16px 12px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .stat-label {
        font-size: 9px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .countdown-wrapper {
        display: block;
        width: 100%;
        padding: 16px 20px;
    }
    
    .countdown {
        justify-content: center;
        gap: 8px;
    }
    
    .countdown-value {
        padding: 12px 14px;
        min-width: auto;
    }
    
    .countdown-value span {
        font-size: 26px;
    }
    
    .countdown-item small {
        font-size: 9px;
        margin-top: 6px;
    }
    
    .countdown-sep {
        font-size: 24px;
        margin-bottom: 16px;
    }
    
    .countdown-label {
        font-size: 11px;
        margin-bottom: 12px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .steps-horizontal {
        flex-direction: column;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .step-card {
        max-width: 100%;
    }
    
    .results-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .result-overlay {
        display: none;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .bottom-fixed {
        display: none;
    }
    
    .mobile-fixed-cta {
        display: none;
    }
    
    .footer {
        padding-bottom: 120px;
    }
    
    /* Popup responsive */
    .popup-matches-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .popup-win-card .win-teams img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-phone {
        max-height: 300px;
    }
    
    .hero-champions-card {
        padding: 16px;
    }
    
    .champions-card-name {
        font-size: 15px;
    }
    
    .champions-match .match-team span {
        font-size: 11px;
    }
    
    .champions-match .match-team img {
        width: 22px;
        height: 22px;
    }
    
    .champions-match .match-center {
        padding: 0 8px;
    }
    
    .champions-match .match-time {
        font-size: 12px;
    }
}
