* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(180deg, #f8faff 0%, #e8f0ff 40%, #d0e0ff 100%);
    min-height: 100vh;
    color: #1a1a1a;
}

/* Navbar - Liquid Glass Effect */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 60px);
    max-width: 1400px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 4px 30px rgba(0, 0, 0, 0.08),
        inset 0 1px 1px rgba(255, 255, 255, 0.8);
    z-index: 1000;
}

.nav-container {
    padding: 0 32px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: visible;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-shrink: 0;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
    flex-shrink: 0;
    white-space: nowrap;
    align-items: center;
    position: relative;
}

.nav-indicator {
    position: absolute;
    height: 40px;
    background: rgba(74, 108, 247, 0.1);
    border-radius: 50px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.nav-menu li {
    display: flex;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    padding: 10px 16px;
    border-radius: 50px;
    background: transparent;
}

.nav-link:hover {
    color: #4a6cf7;
    background: rgba(74, 108, 247, 0.05);
}

.nav-link-active {
    background: transparent;
    padding: 10px 20px;
    border-radius: 50px;
    color: #4a6cf7;
    margin: 0;
}

.nav-link-active .nav-icon {
    color: #4a6cf7;
}

.nav-icon {
    width: 18px;
    height: 18px;
    color: #4a6cf7;
}

.nav-icon-img {
    width: 22px;
    height: 22px;
    object-fit: contain;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.login {
    font-weight: 500;
}

.btn-register {
    text-decoration: none;
    background: #e8f0ff;
    color: #4a6cf7;
    padding: 12px 32px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-register:hover {
    background: #d4e4ff;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    overflow: visible;
}

.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    overflow: visible;
}

.hero-content {
    text-align: left;
    max-width: 600px;
    flex-shrink: 0;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #4a6cf7;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 17px;
    font-weight: 400;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #4a6cf7;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(74, 108, 247, 0.3);
}

.btn-hero-primary:hover {
    background: #3b5bdb;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(74, 108, 247, 0.4);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.8);
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.btn-hero-secondary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
}

.stat-label {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(0, 0, 0, 0.1);
}

.hero-image {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    overflow: visible;
    padding: 20px;
    margin-left: auto;
    padding-right: 0;
}

.hero-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.1));
    object-fit: contain;
}

.hero-image img.hero-logo {
    max-width: 600px;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

    50% {
        transform: translateY(-15px);
    }
}

/* Linguaggio Section */
.linguaggio {
    background: #ffffff;
    padding: 120px 0 100px;
}

.linguaggio-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.linguaggio-title {
    font-size: 42px;
    font-weight: 600;
    font-style: italic;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 80px;
    letter-spacing: -1px;
    white-space: nowrap;
}

/* Timeline */
.timeline {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.timeline-item {
    display: flex;
    gap: 32px;
    width: 100%;
    padding: 40px 0;
}

.timeline-marker {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 6px;
    position: relative;
}

.oggi-marker {
    background: #94a3b8;
    box-shadow: 0 0 0 4px rgba(148, 163, 184, 0.2);
}

.domani-marker {
    background: #4a6cf7;
    box-shadow: 0 0 0 4px rgba(74, 108, 247, 0.2);
}

.timeline-content {
    flex: 1;
}

.timeline-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    color: #6b7280;
}

.domani-item .timeline-label {
    color: #4a6cf7;
}

.timeline-headline {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.timeline-text {
    font-size: 17px;
    color: #4b5563;
    line-height: 1.7;
}

/* Timeline Arrow */
.timeline-arrow {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    margin: 8px 0;
}

.timeline-arrow svg {
    width: 32px;
    height: 32px;
}

/* Partner Bar */
.partner-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid #e5e7eb;
}

.partner-text {
    font-size: 14px;
    color: #9ca3af;
}

.cofip-img {
    height: 36px;
    width: auto;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.cofip-img {
    height: 60px;
    width: auto;
}

.partner-label {
    font-size: 16px;
    font-weight: 400;
    color: #666;
}

/* Banche Section */
.banche {
    background: #000000;
    padding: 100px 0 120px;
}

.banche-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.banche-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 80px;
}

.banche-header {
    text-align: left;
    flex: 1;
    margin-bottom: 0;
}

.banche-badge {
    flex-shrink: 0;
    margin-left: 60px;
}

.banche-badge img {
    width: 280px;
    height: auto;
}

.banche-title {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 32px;
    letter-spacing: -1px;
}

.banche-subtitle {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 40px;
    line-height: 1.5;
}

.btn-crea-fid {
    display: inline-block;
    text-decoration: none;
    background: #ffffff;
    color: #000000;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-crea-fid:hover {
    background: #e0e0e0;
}

.banche-centered .banche-header-centered {
    text-align: center;
}

.banche-title-italic {
    font-style: italic;
}

.btn-crea-fid-outline {
    display: inline-block;
    text-decoration: none;
    background: #ffffff;
    color: #000000;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.2s ease;
    margin-bottom: 48px;
}

.btn-crea-fid-outline:hover {
    background: #e0e0e0;
}

/* FID Card Image */
.fid-card-image {
    max-width: 800px;
    margin: 0 auto;
}

.fid-card-image img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* FID Card */
/* New FID Card */
.fid-card-new {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 24px;
    padding: 0;
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.fid-main {
    flex: 1;
    padding: 32px;
}

.fid-company-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.fid-company-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
}

.fid-company-icon svg {
    width: 24px;
    height: 24px;
}

.fid-company-info {
    flex: 1;
}

.fid-company-name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}

.fid-company-id {
    font-size: 13px;
    color: #64748b;
}

.fid-badge-premium {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fid-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.fid-detail {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fid-detail-label {
    font-size: 11px;
    font-weight: 500;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.fid-detail-value {
    font-size: 14px;
    font-weight: 600;
    color: #e2e8f0;
}

.fid-center-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 32px 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.fid-qr-box {
    width: 120px;
    height: 120px;
    background: #ffffff;
    border-radius: 12px;
    padding: 8px;
    margin-bottom: 12px;
}

.fid-qr-box svg {
    width: 100%;
    height: 100%;
}

.fid-qr-label {
    font-size: 12px;
    color: #64748b;
    text-align: center;
}

.fid-sidebar {
    background: rgba(255, 255, 255, 0.03);
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.fid-metrics {
    display: flex;
    gap: 24px;
}

.fid-metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.fid-metric-circle {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: baseline;
    justify-content: center;
    padding-top: 20px;
}

.fid-metric-circle.blue {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.fid-metric-circle.green {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
}

.fid-metric-value {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.fid-metric-unit {
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
    margin-left: 2px;
}

.fid-metric-label {
    font-size: 12px;
    font-weight: 500;
    color: #94a3b8;
}

.btn-view-fid {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: #ffffff;
    color: #0f172a;
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-view-fid:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

.btn-view-fid svg {
    width: 16px;
    height: 16px;
}

/* FID Hero */
.fid-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

.fid-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.fid-hero-content {
    flex: 1;
    max-width: 600px;
}

.fid-hero-badge {
    display: inline-block;
    background: rgba(74, 108, 247, 0.1);
    color: #4a6cf7;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.fid-hero-title {
    font-size: 72px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -3px;
}

.fid-hero-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.fid-hero-desc {
    font-size: 17px;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 32px;
}

.fid-hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-fid-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #4a6cf7;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(74, 108, 247, 0.3);
}

.btn-fid-primary:hover {
    background: #3b5bdb;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(74, 108, 247, 0.4);
}

.btn-fid-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.btn-fid-ghost:hover {
    border-color: #4a6cf7;
    color: #4a6cf7;
}

.fid-hero-features {
    display: flex;
    gap: 32px;
}

.fid-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #374151;
}

.fid-feature svg {
    width: 20px;
    height: 20px;
    color: #22c55e;
}

.fid-hero-visual {
    flex-shrink: 1;
    min-width: 0;
}

.fid-hero-visual img {
    max-width: 500px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.15));
    animation: float 6s ease-in-out infinite;
}

/* Componenti Section */
.componenti {
    background: #f5f7fa;
    padding: 100px 0 120px;
}

.componenti-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.componenti-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.componenti-description {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.6;
    margin-bottom: 56px;
    max-width: 900px;
}

.btn-componenti {
    display: inline-block;
    text-decoration: none;
    background: #1a1a1a;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 60px;
    transition: all 0.2s ease;
}

.btn-componenti:hover {
    background: #333;
}

.componenti-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    overflow: visible;
}

.componenti-card {
    background: #f0f4ff;
    border-radius: 20px;
    padding: 28px 24px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
}

.componenti-card-img {
    padding: 0;
    min-height: unset;
    background: transparent;
    position: relative;
}

.componenti-card-img img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}

.card-tooltip {
    position: absolute;
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #ffffff;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
    width: 340px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 100;
}

.componenti-card-img:hover .card-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.tooltip-title {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a2e;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}

.tooltip-subtitle {
    font-size: 12px;
    font-style: italic;
    color: #555;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.tooltip-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 8px 0;
}

.tooltip-bullets li {
    font-size: 11.5px;
    color: #444;
    padding: 1.5px 0 1.5px 16px;
    position: relative;
    line-height: 1.4;
}

.tooltip-bullets li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: #3b82f6;
    font-size: 18px;
    line-height: 1;
    top: 2px;
    font-weight: bold;
}

.tooltip-footer {
    font-size: 11.5px;
    font-style: italic;
    color: #888;
    margin: 0;
    border-top: 1px solid #eeeeee;
    padding-top: 7px;
    line-height: 1.4;
}

.card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.card-description {
    font-size: 11px;
    font-weight: 400;
    color: #888;
    line-height: 1.5;
    margin-bottom: auto;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.badge-quickview {
    background: rgba(59, 130, 246, 0.6);
    color: #ffffff;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.badge-coming {
    background: #3b82f6;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-empty {
    width: 80px;
}

.progress-ring {
    width: 50px;
    height: 50px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.progress-ring svg {
    width: 100%;
    height: 100%;
}

.progress-ring.empty svg circle {
    stroke: #d0d0d0;
}

.ring-text {
    position: absolute;
    font-size: 11px;
    font-weight: 700;
    color: #22c55e;
}

/* Suite Aziende Section */
.suite-aziende {
    background: linear-gradient(180deg, #4a4a4a 0%, #000000 100%);
    padding: 100px 0 120px;
}

.suite-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

.suite-title {
    font-size: 42px;
    font-weight: 700;
    font-style: italic;
    color: #ffffff;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.suite-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 32px;
}

.btn-suite {
    display: inline-block;
    text-decoration: none;
    background: #ffffff;
    color: #000000;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 60px;
    transition: all 0.2s ease;
}

.btn-suite:hover {
    background: #e0e0e0;
}

.suite-table-image {
    max-width: 100%;
    margin: 0 auto;
}

.suite-table-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
}

.suite-table {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
}

.table-header {
    display: grid;
    grid-template-columns: 60px 170px 110px 1fr 120px 100px 140px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    gap: 12px;
}

.table-header span {
    font-size: 9px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-align: left;
    letter-spacing: 0.5px;
}

.table-row {
    display: grid;
    grid-template-columns: 60px 170px 110px 1fr 120px 100px 140px;
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    align-items: center;
    gap: 12px;
}

.table-row:last-child {
    border-bottom: none;
}

.col-tipo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.6);
}

.icon-menu {
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
}

.icon-chart,
.icon-user {
    font-size: 18px;
}

.col-ragione {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
}

.col-abbonamento {
    text-align: left;
}

.badge-fid {
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 9px;
    font-weight: 600;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
}

.badge-fid.basic {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.3);
}

.badge-fid.pro {
    background: rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.3);
}

.badge-fid.premium {
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.badge-fid.free {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.3);
}

.badge-fid.riattiva {
    background: rgba(150, 150, 150, 0.2);
    border-color: rgba(150, 150, 150, 0.3);
}

.col-status {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    text-align: left;
}

.status-completo {
    background: rgba(34, 197, 94, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 9px;
    font-weight: 600;
}

.status-incompleto {
    background: rgba(245, 158, 11, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: #f59e0b;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 9px;
    font-weight: 600;
}

.status-attiva {
    background: rgba(239, 68, 68, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px dashed rgba(239, 68, 68, 0.4);
    color: #ef4444;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 9px;
    font-weight: 600;
}

.status-cr {
    color: #22c55e;
    font-size: 10px;
    font-weight: 500;
}

.status-cr-yellow {
    color: #f59e0b;
    font-size: 10px;
    font-weight: 500;
}

.status-tag {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.8);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 500;
}

.col-completamento {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-align: left;
}

.col-punteggio {
    text-align: left;
}

.pt-green {
    color: #22c55e;
    font-size: 13px;
    font-weight: 600;
}

.pt-red {
    color: #ef4444;
    font-size: 13px;
    font-weight: 600;
}

.pt-gray {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    font-weight: 400;
}

.col-profilo {
    text-align: left;
}

.badge-online {
    background: rgba(34, 197, 94, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: #22c55e;
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 9px;
    font-weight: 600;
}

.badge-offline {
    background: rgba(150, 150, 150, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(150, 150, 150, 0.3);
    color: #999;
    padding: 5px 12px;
    border-radius: 16px;
    font-size: 9px;
    font-weight: 600;
}

/* Consulente Section */
.consulente {
    background: linear-gradient(180deg, #000000 0%, #4a4a4a 100%);
    padding: 100px 0;
}

.consulente-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    align-items: center;
    gap: 80px;
}

.consulente-image {
    flex: 1;
}

.consulente-image img {
    width: 100%;
    max-width: 500px;
}

.consulente-content {
    flex: 1;
}

.consulente-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.consulente-description {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 32px;
}

.btn-consulente {
    display: inline-block;
    text-decoration: none;
    background: #ffffff;
    color: #000000;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-consulente:hover {
    background: #e0e0e0;
}

/* Piani Section */
.piani {
    background: #f0f0f0;
    padding: 80px 0 100px;
}

.piani-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.piani-title {
    font-size: 42px;
    font-weight: 700;
    font-style: normal;
    color: #000000;
    margin-bottom: 40px;
}

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

.piano-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px 36px;
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.piano-card.large {
    grid-column: span 1;
}

.piano-card:nth-child(4),
.piano-card:nth-child(5) {
    grid-column: span 1;
}

.piani-grid-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

.piano-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.piano-header-row .piano-nome {
    margin-bottom: 0;
}

.prezzo-coming-soon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
}

.piano-nome {
    font-size: 26px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 14px;
}

.piano-nome sup {
    font-size: 12px;
}

.piano-prezzo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 16px;
}

.prezzo-old {
    font-size: 16px;
    color: #1a3a5c;
    text-decoration: line-through;
}

.prezzo-new {
    font-size: 18px;
    font-weight: 700;
    color: #1a3a5c;
}

.prezzo-new.green {
    color: #1a3a5c;
}

.prezzo-promo {
    font-size: 11px;
    color: #888;
    font-style: italic;
    margin-left: auto;
}

.piano-desc {
    font-size: 13px;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.4;
}

.piano-servizi strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.piano-servizi ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.piano-servizi li {
    font-size: 12px;
    color: #333;
    padding: 4px 0;
    padding-left: 12px;
    position: relative;
}

.piano-servizi li::before {
    content: "·";
    position: absolute;
    left: 0;
    color: #333;
    font-weight: bold;
}

.piano-servizi li em {
    color: #888;
    font-style: italic;
}

/* Footer */
/* Lavora con noi */
.lavora-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

.lavora-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.lavora-hero-content {
    flex: 1;
}

.lavora-hero-badge {
    display: inline-block;
    background: rgba(74, 108, 247, 0.1);
    color: #4a6cf7;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.lavora-title {
    font-size: 56px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 20px;
}

.lavora-subtitle {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}

.lavora-hero-desc {
    font-size: 16px;
    color: #777;
    line-height: 1.6;
    margin-bottom: 32px;
}

.btn-lavora-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    background: #4a6cf7;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-lavora-primary:hover {
    background: #3b5de7;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 108, 247, 0.3);
}

.lavora-hero-visual {
    flex-shrink: 0;
}

.lavora-hero-visual img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

/* Candidatura Section */
.candidatura {
    padding: 80px 0 100px;
    background: #ffffff;
}

.candidatura-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 40px;
}

.candidatura-header {
    text-align: center;
    margin-bottom: 48px;
}

.candidatura-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(74, 108, 247, 0.1) 0%, rgba(74, 108, 247, 0.05) 100%);
    color: #4a6cf7;
    margin-bottom: 20px;
}

.candidatura-title {
    font-size: 32px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.candidatura-desc {
    font-size: 16px;
    color: #777;
    line-height: 1.7;
}

.candidatura-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 48px;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 8px 32px rgba(0, 0, 0, 0.06);
}

.candidatura-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 600;
    color: #4a6cf7;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-section-title svg {
    flex-shrink: 0;
}

.form-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.08), transparent);
    margin: 32px 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: #555;
    letter-spacing: 0.2px;
}

.required {
    color: #e53e3e;
}

.form-group input,
.form-group select {
    padding: 13px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    background: #f8faff;
    transition: all 0.25s ease;
}

.form-group input::placeholder {
    color: #b0b8c9;
}

.form-group input:hover,
.form-group select:hover {
    border-color: #c0c8d8;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4a6cf7;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(74, 108, 247, 0.08);
}

/* File Upload Drop Area */
.file-drop-area {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 24px;
    border: 2px dashed #d0d5dd;
    border-radius: 16px;
    background: linear-gradient(135deg, #f8faff 0%, #f0f4ff 100%);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.file-drop-area:hover {
    border-color: #4a6cf7;
    background: linear-gradient(135deg, #f0f4ff 0%, #e8edff 100%);
}

.file-drop-area input[type="file"] {
    display: none;
}

.file-drop-icon {
    color: #4a6cf7;
    margin-bottom: 12px;
    opacity: 0.7;
}

.file-drop-text {
    font-size: 15px;
    color: #555;
    margin-bottom: 4px;
}

.file-drop-link {
    color: #4a6cf7;
    font-weight: 600;
    text-decoration: underline;
}

.file-drop-hint {
    font-size: 12px;
    color: #999;
}

.form-group-checkbox {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: #f8faff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin-bottom: 8px;
}

.form-group-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #4a6cf7;
    cursor: pointer;
    flex-shrink: 0;
}

.form-group-checkbox label {
    font-size: 14px;
    color: #555;
    cursor: pointer;
    line-height: 1.5;
}

.privacy-link {
    color: #4a6cf7;
    text-decoration: none;
    font-weight: 600;
}

.privacy-link:hover {
    text-decoration: underline;
}

.btn-invia {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #4a6cf7;
    color: #ffffff;
    padding: 16px 40px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: center;
    width: 100%;
    max-width: 320px;
    margin-top: 8px;
}

.btn-invia:hover {
    background: #3b5de7;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 108, 247, 0.3);
}

/* Contattaci */
.contatti-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
    position: relative;
    overflow: hidden;
}

.contatti-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.contatti-hero-content {
    flex: 1 1 auto;
    min-width: 0;
}

.contatti-hero-badge {
    display: inline-block;
    background: rgba(74, 108, 247, 0.1);
    color: #4a6cf7;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.contatti-title {
    font-size: 56px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1.1;
    margin-bottom: 20px;
}

.contatti-subtitle {
    font-size: 18px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 32px;
}

.contatti-info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contatti-info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.contatti-info-card:hover {
    box-shadow: 0 4px 20px rgba(74, 108, 247, 0.1);
    border-color: rgba(74, 108, 247, 0.15);
}

.contatti-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(74, 108, 247, 0.1) 0%, rgba(74, 108, 247, 0.05) 100%);
    color: #4a6cf7;
    flex-shrink: 0;
}

.contatti-info-label {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.contatti-info-value {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a2e;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contatti-info-value:hover {
    color: #4a6cf7;
}

.contatti-hero-visual {
    flex-shrink: 0;
}

.contatti-hero-visual img {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

.contatti-form-section {
    padding: 80px 0 100px;
    background: #ffffff;
}

.contatti-form-container {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Textarea */
.form-group textarea {
    padding: 13px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    color: #1a1a2e;
    background: #f8faff;
    transition: all 0.25s ease;
    resize: vertical;
    min-height: 120px;
}

.form-group textarea::placeholder {
    color: #b0b8c9;
}

.form-group textarea:hover {
    border-color: #c0c8d8;
}

.form-group textarea:focus {
    outline: none;
    border-color: #4a6cf7;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(74, 108, 247, 0.08);
}

.footer {
    background: #ffffff;
    padding: 48px 0;
    border-top: 1px solid #e0e0e0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    font-size: 13px;
    color: #555;
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #1a1a2e;
}

.footer-link-red {
    color: #555 !important;
}

.footer-link-red:hover {
    color: #1a1a2e !important;
}

/* Ecosistema Section */
.ecosistema {
    background: #000000;
    padding: 80px 0 0;
}

.ecosistema-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.ecosistema-content {
    max-width: 650px;
    margin-bottom: 40px;
}

.ecosistema-title {
    font-size: 42px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 28px;
}

.ecosistema-description {
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.6;
    margin-bottom: 36px;
}

.btn-ecosistema {
    display: inline-block;
    text-decoration: none;
    background: #ffffff;
    color: #000000;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-ecosistema:hover {
    background: #e0e0e0;
}

.ecosistema-image {
    display: flex;
    justify-content: center;
    margin: 0 auto;
}

.ecosistema-image img {
    max-width: 900px;
    width: 100%;
    height: auto;
}

/* Testimonials */
.testimonials {
    padding: 80px 0 100px;
}

.testimonials-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 50px;
}

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

.testimonial-card {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}

.testimonial-quote {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.5;
    margin-bottom: 28px;
}

.testimonial-name {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 4px;
}

.testimonial-role {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
}

.testimonial-location {
    font-size: 13px;
    color: #666;
}

/* CTA Section */
.cta-section {
    background: #ffffff;
    padding: 80px 0;
}

.cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.cta-top {
    text-align: center;
    margin-bottom: 100px;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    line-height: 1.4;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta-blue {
    display: inline-block;
    text-decoration: none;
    background: #3b82f6;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-cta-blue:hover {
    background: #2563eb;
}

.cta-academy {
    display: flex;
    align-items: center;
    gap: 60px;
}

.cta-academy-content {
    flex: 1;
}

.cta-academy-title {
    font-size: 32px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 20px;
}

.cta-academy-desc {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    line-height: 1.6;
    margin-bottom: 28px;
}

.btn-cta-black {
    display: inline-block;
    text-decoration: none;
    background: #000000;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s ease;
}

.btn-cta-black:hover {
    background: #333;
}

.cta-academy-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.cta-academy-image img {
    max-width: 400px;
    width: 100%;
    height: auto;
}

/* Players Page */
.players-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 60px;
    overflow: visible;
}

.players-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.players-hero-content {
    flex: 1;
    max-width: 580px;
}

.players-hero-badge {
    display: inline-block;
    background: rgba(74, 108, 247, 0.1);
    color: #4a6cf7;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.players-title {
    font-size: 72px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -2px;
}

.players-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.players-hero-desc {
    font-size: 17px;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 32px;
}

.players-hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-players-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #4a6cf7;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(74, 108, 247, 0.3);
}

.btn-players-primary:hover {
    background: #3b5bdb;
    transform: translateY(-2px);
}

.btn-players-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.btn-players-ghost:hover {
    border-color: #4a6cf7;
    color: #4a6cf7;
}

.players-hero-roles {
    display: flex;
    gap: 32px;
    flex-wrap: nowrap;
}

.player-role {
    display: flex;
    align-items: center;
    gap: 8px;
}

.role-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.player-role:nth-child(1) .role-icon {
    background: rgba(59, 130, 246, 0.1);
}

.player-role:nth-child(2) .role-icon {
    background: rgba(34, 197, 94, 0.1);
}

.player-role:nth-child(3) .role-icon {
    background: rgba(168, 85, 247, 0.1);
}

.player-role:nth-child(4) .role-icon {
    background: rgba(249, 115, 22, 0.1);
}

.role-name {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}

.players-hero-visual {
    flex-shrink: 0;
}

.players-hero-visual img {
    width: 600px;
    height: auto;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.15)) drop-shadow(0 0 2px rgba(255, 255, 255, 0.8));
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.players-ecosistema-desc {
    font-size: 18px;
    font-weight: 500;
    color: #cccccc;
    text-align: center;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

/* Players Detail Section */
.players-detail {
    background: #000000;
    padding: 60px 0 80px;
}

.players-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.players-detail-intro {
    margin-bottom: 100px;
}

.players-detail-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
}

.players-detail-text {
    font-size: 16px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.8;
    max-width: 1000px;
}

.player-card {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 60px;
}

.player-card:last-child {
    margin-bottom: 0;
}

.player-card-image {
    flex-shrink: 0;
}

.player-card-image img {
    width: 240px;
    height: auto;
}

.player-card-content {
    background: #333333;
    border-radius: 16px;
    padding: 36px 40px;
    flex: 1;
}

.player-card-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
}

.player-card-desc {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.player-card-benefits {
    margin-bottom: 20px;
}

.benefits-title {
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.player-card-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.player-card-benefits li {
    font-size: 13px;
    color: #cccccc;
    padding: 3px 0;
    padding-left: 14px;
    position: relative;
}

.player-card-benefits li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #cccccc;
}

.player-card-tagline {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
}

/* Partnership Section */
.partnership {
    background: #ffffff;
    padding: 80px 0 100px;
}

.partnership-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 80px;
}

.partnership-content {
    flex: 1;
    max-width: 700px;
}

.partnership-title {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 32px;
}

.partnership-text {
    font-size: 15px;
    color: #333333;
    line-height: 1.7;
    margin-bottom: 20px;
}

.partnership-text strong {
    font-weight: 700;
    color: #000000;
}

.partnership-link {
    font-size: 15px;
    color: #000000;
    text-decoration: underline;
}

.partnership-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.partnership-logo img {
    width: 150px;
    height: auto;
}

.partner-label {
    font-size: 16px;
    color: #8b1a4a;
    font-weight: 500;
}

/* Academy Page */
.academy-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

.academy-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.academy-hero-content {
    flex: 1;
    max-width: 580px;
}

.academy-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

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

.academy-title {
    font-size: 72px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: -2px;
    margin-bottom: 16px;
}

.academy-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.academy-hero-desc {
    font-size: 17px;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 32px;
}

.academy-hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-academy-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #4a6cf7;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(74, 108, 247, 0.3);
}

.btn-academy-primary:hover {
    background: #3b5bdb;
    transform: translateY(-2px);
}

.btn-academy-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.btn-academy-ghost:hover {
    border-color: #4a6cf7;
    color: #4a6cf7;
}

.academy-hero-stats {
    display: flex;
    gap: 40px;
}

.academy-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.academy-stat .stat-value {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

.academy-stat .stat-desc {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
}

.academy-hero-visual {
    flex-shrink: 0;
    flex: 1;
}

.academy-hero-visual img {
    max-width: 100%;
    width: 620px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: float 6s ease-in-out infinite;
}

/* About Page */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    padding-bottom: 60px;
}

.about-hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 60px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.about-hero-content {
    flex: 1;
    max-width: 600px;
}

.about-hero-badge {
    display: inline-block;
    background: rgba(74, 108, 247, 0.1);
    color: #4a6cf7;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 24px;
}

.about-title {
    font-size: 72px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -3px;
}

.about-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.about-hero-desc {
    font-size: 17px;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.7;
    margin-bottom: 32px;
}

.about-hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
}

.btn-about-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: #4a6cf7;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(74, 108, 247, 0.3);
}

.btn-about-primary:hover {
    background: #3b5bdb;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(74, 108, 247, 0.4);
}

.btn-about-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
    color: #1a1a1a;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.btn-about-ghost:hover {
    border-color: #4a6cf7;
    color: #4a6cf7;
}

.about-hero-stats {
    display: flex;
    gap: 40px;
}

.about-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-stat .stat-value {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
}

.about-stat .stat-desc {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.about-hero-visual {
    flex-shrink: 0;
    max-width: 680px;
    margin-right: 60px;
}

.about-hero-visual img {
    max-width: 680px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* Chi Siamo Section */
.chi-siamo {
    background: #000000;
    padding: 80px 0 100px;
}

.chi-siamo-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 60px;
    text-align: center;
}

.chi-siamo-title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 32px;
}

.chi-siamo-text {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.8;
    margin-bottom: 20px;
}

.btn-contattaci {
    display: inline-block;
    background: #ffffff;
    color: #1a1a1a;
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 24px;
    border: 1px solid #ffffff;
}

.btn-contattaci:hover {
    background: transparent;
    color: #ffffff;
}

/* Team Section */
.team {
    background: #000000;
    padding: 80px 0 120px;
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.team-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    align-items: start;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 24px;
    border: 3px solid #333;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.team-name {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 8px;
}

.team-role {
    font-size: 12px;
    font-weight: 700;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.team-bio {
    font-size: 14px;
    color: #ffffff;
    line-height: 1.7;
    text-align: justify;
}

/* Seminari Section */
.seminari {
    padding: 100px 0;
    background: #ffffff;
}

.seminari-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.seminari-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.seminari-desc {
    font-size: 18px;
    color: #4a4a4a;
    line-height: 1.6;
    margin-bottom: 32px;
    max-width: 700px;
}

.btn-seminari-black {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 60px;
}

.btn-seminari-black:hover {
    background: #333333;
    transform: translateY(-2px);
}

.seminari-subtitle {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.seminari-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: start;
}

.seminario-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.seminario-card-img {
    width: 100%;
    border-radius: 20px;
    display: block;
    object-fit: cover;
}

.seminario-wrapper .btn-academy-primary {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    padding: 14px 30px;
    font-size: 15px;
    white-space: nowrap;
    z-index: 2;
    border-radius: 50px;
}

.seminario-card {
    background: #f0f7ff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-height: 480px;
}

.seminario-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
}

.seminario-image img {
    width: 60%;
    height: auto;
    object-fit: contain;
}

.seminario-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.seminario-category {
    font-size: 12px;
    font-weight: 600;
    color: #3b82f6;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.seminario-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.seminario-text {
    font-size: 14px;
    color: #6a6a6a;
    line-height: 1.6;
    flex: 1;
}

.btn-seminario {
    display: inline-block;
    background: #3b82f6;
    color: #ffffff;
    padding: 14px 32px;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 50px;
    margin-top: 24px;
}

.btn-seminario:hover {
    background: #2563eb;
    transform: translateY(-2px);
}

/* ===================================================
   HAMBURGER MENU
   =================================================== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    border-radius: 8px;
    transition: background 0.2s;
    z-index: 1100;
}

.hamburger:hover {
    background: rgba(74, 108, 247, 0.08);
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #1a1a1a;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-nav-overlay.open {
    display: flex;
    opacity: 1;
}

.mobile-nav-overlay a {
    text-decoration: none;
    color: #1a1a1a;
    font-size: 24px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 50px;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mobile-nav-overlay a:hover {
    background: rgba(74, 108, 247, 0.08);
    color: #4a6cf7;
}

.mobile-nav-overlay .mobile-nav-divider {
    width: 40px;
    height: 1px;
    background: rgba(0,0,0,0.1);
    margin: 8px 0;
}

.mobile-nav-overlay .mobile-nav-login {
    font-size: 16px;
    color: #4a6cf7;
}

.mobile-nav-overlay .mobile-nav-register {
    font-size: 16px;
    background: #e8f0ff;
    color: #4a6cf7;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        width: calc(100% - 40px);
        top: 12px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-right {
        display: none;
    }

    .hero-container {
        flex-direction: column;
        padding: 0 24px;
        gap: 40px;
    }

    .hero-content {
        text-align: center;
        max-width: 100%;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-description br {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
    }

    .hero-stats {
        justify-content: center;
    }

    .stat-number {
        font-size: 24px;
    }

    .hero-image {
        display: none;
    }

    .linguaggio-title {
        font-size: 28px;
        white-space: normal;
    }

    .timeline-item {
        gap: 20px;
        padding: 24px 0;
    }

    .timeline-headline {
        font-size: 24px;
    }

    .timeline-text {
        font-size: 15px;
    }

    .partner-bar {
        flex-direction: column;
        gap: 12px;
    }

    /* BANCHE SECTION */
    .banche {
        padding: 60px 0 80px;
    }

    .banche-container {
        padding: 0 24px;
    }

    .banche-top {
        flex-direction: column;
        gap: 32px;
    }

    .banche-title {
        font-size: 32px;
    }

    .banche-subtitle {
        font-size: 16px;
    }

    .banche-badge img {
        max-width: 280px;
        width: 100%;
    }

    .fid-card-image img {
        max-width: 100%;
    }

    /* ECOSISTEMA */
    .ecosistema {
        padding: 60px 0 0;
    }

    .ecosistema-container {
        padding: 0 24px;
        flex-direction: column;
        gap: 32px;
    }

    .ecosistema-title {
        font-size: 32px;
    }

    .ecosistema-description {
        font-size: 16px;
    }

    .ecosistema-image img {
        max-width: 100%;
    }

    /* CTA SECTION */
    .cta-section {
        padding: 60px 0;
    }

    .cta-container {
        padding: 0 24px;
    }

    .cta-title {
        font-size: 26px;
        max-width: 100%;
    }

    .cta-academy {
        flex-direction: column;
        gap: 32px;
    }

    .cta-academy-title {
        font-size: 24px;
    }

    .cta-academy-desc {
        font-size: 15px;
    }

    .cta-academy-image img {
        max-width: 100%;
    }

    /* FID HERO */
    .fid-hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .fid-hero-container {
        flex-direction: column;
        padding: 0 24px;
        gap: 40px;
    }

    .fid-hero-title {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .fid-hero-subtitle {
        font-size: 18px;
    }

    .fid-hero-desc {
        font-size: 15px;
    }

    .fid-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-fid-primary,
    .btn-fid-ghost {
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
    }

    .fid-hero-features {
        flex-wrap: wrap;
        gap: 16px;
    }

    .fid-hero-visual {
        display: none;
    }

    /* FID CARD */
    .fid-card-new {
        flex-direction: column;
    }

    .fid-main {
        padding: 20px;
    }

    .fid-details-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .fid-center-section {
        padding: 20px;
    }

    .fid-sidebar {
        padding: 20px;
    }

    .fid-metrics {
        flex-wrap: wrap;
        gap: 16px;
    }

    /* COMPONENTI */
    .componenti {
        padding: 60px 0 80px;
    }

    .componenti-container {
        padding: 0 24px;
    }

    .componenti-title {
        font-size: 28px;
    }

    .componenti-description {
        font-size: 15px;
        margin-bottom: 32px;
    }

    .componenti-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .card-tooltip {
        display: none;
    }

    /* SUITE AZIENDE */
    .suite-aziende {
        padding: 60px 0 80px;
    }

    .suite-container {
        padding: 0 24px;
        overflow-x: auto;
    }

    .suite-title {
        font-size: 28px;
    }

    .suite-subtitle {
        font-size: 15px;
    }

    .suite-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    /* CONSULENTE */
    .consulente {
        padding: 60px 0;
    }

    .consulente-container {
        flex-direction: column;
        padding: 0 24px;
        gap: 40px;
    }

    .consulente-title {
        font-size: 28px;
    }

    .consulente-description {
        font-size: 16px;
    }

    .consulente-image img {
        max-width: 100%;
        width: 100%;
    }

    /* PIANI FID */
    .piani {
        padding: 60px 0 80px;
    }

    .piani-container {
        padding: 0 24px;
    }

    .piani-title {
        font-size: 28px;
    }

    .piani-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .piani-grid-bottom {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .piano-card {
        padding: 24px 20px;
    }

    .piano-header-row {
        flex-wrap: wrap;
        gap: 8px;
    }

    /* PLAYERS HERO */
    .players-hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .players-hero-container {
        flex-direction: column;
        padding: 0 24px;
        gap: 40px;
    }

    .players-title {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .players-subtitle {
        font-size: 18px;
    }

    .players-hero-desc {
        font-size: 15px;
    }

    .players-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-players-primary,
    .btn-players-ghost {
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
    }

    .players-hero-roles {
        flex-wrap: wrap;
        gap: 16px;
    }

    .players-hero-visual {
        display: none;
    }

    /* PLAYERS DETAIL */
    .players-detail {
        padding: 40px 0 60px;
    }

    .players-detail-container {
        padding: 0 24px;
    }

    .players-detail-title {
        font-size: 26px;
    }

    .players-detail-text {
        font-size: 14px;
    }

    .player-card {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 40px;
    }

    .player-card-image img {
        width: 100%;
        max-width: 200px;
    }

    .player-card-content {
        padding: 24px 20px;
    }

    .player-card-title {
        font-size: 18px;
    }

    /* PARTNERSHIP */
    .partnership {
        padding: 60px 0 80px;
    }

    .partnership-container {
        flex-direction: column;
        padding: 0 24px;
        gap: 40px;
    }

    .partnership-title {
        font-size: 26px;
    }

    .partnership-logo img {
        max-width: 120px;
    }

    /* ACADEMY HERO */
    .academy-hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .academy-hero-container {
        flex-direction: column;
        padding: 0 24px;
        gap: 40px;
    }

    .academy-title {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .academy-subtitle {
        font-size: 18px;
    }

    .academy-hero-desc {
        font-size: 15px;
    }

    .academy-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-academy-primary,
    .btn-academy-ghost {
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
    }

    .academy-hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .academy-hero-visual {
        display: none;
    }

    /* SEMINARI */
    .seminari {
        padding: 60px 0 80px;
    }

    .seminari-container {
        padding: 0 24px;
    }

    .seminari-title {
        font-size: 26px;
    }

    .seminari-desc {
        font-size: 15px;
    }

    .seminari-subtitle {
        font-size: 22px;
    }

    .seminari-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .seminario-card-img {
        max-width: 100%;
        width: 100%;
    }

    /* ABOUT HERO */
    .about-hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .about-hero-container {
        flex-direction: column;
        padding: 0 24px;
        gap: 40px;
    }

    .about-title {
        font-size: 42px;
        letter-spacing: -1px;
    }

    .about-subtitle {
        font-size: 18px;
    }

    .about-hero-desc {
        font-size: 15px;
    }

    .about-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-about-primary,
    .btn-about-ghost {
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
    }

    .about-hero-stats {
        flex-wrap: wrap;
        gap: 24px;
    }

    .about-hero-visual {
        display: none;
    }

    /* CHI SIAMO */
    .chi-siamo {
        padding: 60px 0 80px;
    }

    .chi-siamo-container {
        padding: 0 24px;
    }

    .chi-siamo-title {
        font-size: 26px;
    }

    .chi-siamo-text {
        font-size: 15px;
    }

    /* TEAM */
    .team {
        padding: 60px 0 80px;
    }

    .team-container {
        padding: 0 24px;
    }

    .team-title {
        font-size: 26px;
        margin-bottom: 40px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        gap: 48px;
        max-width: 400px;
        margin: 0 auto;
    }

    .team-photo {
        width: 140px;
        height: 140px;
    }

    /* LAVORA HERO */
    .lavora-hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .lavora-hero-container {
        flex-direction: column;
        padding: 0 24px;
        gap: 40px;
    }

    .lavora-title {
        font-size: 38px;
    }

    .lavora-subtitle {
        font-size: 15px;
    }

    .lavora-hero-desc {
        font-size: 14px;
    }

    .btn-lavora-primary {
        width: 100%;
        max-width: 320px;
        justify-content: center;
    }

    .lavora-hero-visual {
        display: none;
    }

    /* CANDIDATURA */
    .candidatura {
        padding: 60px 0 80px;
    }

    .candidatura-container {
        padding: 0 24px;
    }

    .candidatura-card {
        padding: 24px 20px;
    }

    .candidatura-title {
        font-size: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    /* CONTATTI HERO */
    .contatti-hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .contatti-hero-container {
        flex-direction: column;
        padding: 0 24px;
        gap: 40px;
    }

    .contatti-title {
        font-size: 38px;
    }

    .contatti-subtitle {
        font-size: 15px;
    }

    .contatti-info-card {
        flex-direction: column;
        gap: 12px;
    }

    .contatti-hero-visual {
        display: none;
    }

    .contatti-form-container {
        padding: 0 24px;
    }

    /* FOOTER */
    .footer-container {
        padding: 0 24px;
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    /* LINGUAGGIO */
    .linguaggio-container {
        padding: 0 24px;
    }

    .linguaggio {
        padding: 80px 0 60px;
    }

    /* COME FUNZIONA */
    .come-funziona {
        padding: 60px 0 80px;
    }

    .come-funziona-container {
        padding: 0 24px;
    }

    .come-funziona-title {
        font-size: 28px;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ===================================================
   PRIVACY POLICY PAGE
   =================================================== */
.privacy-hero {
    min-height: 55vh;
    background: transparent;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
}

.privacy-hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.privacy-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(74, 108, 247, 0.1);
    border: 1px solid rgba(74, 108, 247, 0.2);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 13px;
    color: #4a6cf7;
    margin-bottom: 24px;
}

.privacy-title {
    font-size: clamp(32px, 5vw, 72px);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
    margin: 0 0 16px 0;
}

.privacy-subtitle {
    font-size: 17px;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.6;
    max-width: 640px;
}

.privacy-content {
    padding: 80px 0;
    background: #f8faff;
}

.privacy-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.privacy-intro {
    margin-bottom: 36px;
    padding: 22px 28px;
    background: white;
    border-radius: 14px;
    border-left: 4px solid #2563eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.privacy-intro p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

.privacy-accordion {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.privacy-acc-item {
    background: white;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.privacy-acc-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    user-select: none;
    transition: background 0.2s;
}

.privacy-acc-header:hover {
    background: #f5f7ff;
}

.privacy-acc-header.active {
    background: #f0f4ff;
    border-bottom: 1px solid #e5e7eb;
}

.privacy-acc-label {
    display: flex;
    align-items: center;
    gap: 14px;
}

.privacy-acc-number {
    width: 30px;
    height: 30px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.privacy-acc-title {
    font-size: 15px;
    font-weight: 600;
    color: #1a1a2e;
}

.privacy-acc-arrow {
    width: 20px;
    height: 20px;
    color: #6b7280;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.privacy-acc-header.active .privacy-acc-arrow {
    transform: rotate(180deg);
}

.privacy-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s ease;
}

.privacy-acc-body.open {
    max-height: 4000px;
}

.privacy-acc-body-inner {
    padding: 24px 28px;
}

.privacy-doc-section {
    margin-bottom: 18px;
}

.privacy-doc-section-title {
    font-size: 12.5px;
    font-weight: 700;
    color: #374151;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 8px 0;
}

.privacy-doc-text {
    font-size: 13.5px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 8px 0;
}

.privacy-doc-list {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.privacy-doc-list li {
    font-size: 13.5px;
    color: #555;
    padding: 3px 0 3px 18px;
    position: relative;
    line-height: 1.55;
}

.privacy-doc-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: #2563eb;
    font-size: 11px;
    top: 6px;
}

.privacy-doc-rights {
    background: #f8faff;
    border-radius: 10px;
    padding: 18px 20px;
    margin-top: 18px;
    border: 1px solid #e0e7ff;
}

.privacy-doc-rights-title {
    font-size: 12.5px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.privacy-doc-rights ol {
    padding-left: 18px;
    margin: 0;
}

.privacy-doc-rights ol li {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 8px;
}

.privacy-coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 36px 20px;
    gap: 14px;
}

.privacy-coming-soon p {
    font-size: 14px;
    color: #6b7280;
    max-width: 440px;
    line-height: 1.6;
    margin: 0;
}

.btn-privacy-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #2563eb;
    color: white;
    padding: 12px 24px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: background 0.2s;
}

.btn-privacy-link:hover {
    background: #1d4ed8;
}

/* ===================================================
   TERMINI E CONDIZIONI PAGE
   =================================================== */
.termini-hero {
    min-height: 45vh;
    background: transparent;
    display: flex;
    align-items: center;
    padding: 120px 0 60px;
}

.termini-hero-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.termini-content {
    padding: 80px 0;
    background: #f8faff;
}

.termini-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

.termini-notice {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-left: 4px solid #f59e0b;
    border-radius: 12px;
    padding: 18px 22px;
    margin-bottom: 36px;
}

.termini-notice p {
    font-size: 13.5px;
    color: #78350f;
    line-height: 1.65;
    margin: 0;
}

.termini-toc {
    background: white;
    border-radius: 14px;
    padding: 24px 28px;
    margin-bottom: 40px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.termini-toc h3 {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 14px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.termini-toc ol {
    columns: 2;
    padding-left: 18px;
    margin: 0;
    gap: 24px;
}

.termini-toc ol li {
    font-size: 13px;
    color: #374151;
    line-height: 1.6;
    margin-bottom: 4px;
    break-inside: avoid;
}

.termini-toc ol li a {
    color: #2563eb;
    text-decoration: none;
}

.termini-toc ol li a:hover {
    text-decoration: underline;
}

.termini-article {
    background: white;
    border-radius: 14px;
    padding: 28px 32px;
    margin-bottom: 16px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
}

.termini-article h2 {
    font-size: 17px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 14px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f4ff;
}

.termini-article h2 span {
    color: #2563eb;
    margin-right: 6px;
}

.termini-article p {
    font-size: 14px;
    color: #555;
    line-height: 1.7;
    margin: 0 0 10px 0;
}

.termini-article p:last-child {
    margin-bottom: 0;
}

.termini-article ol,
.termini-article ul {
    padding-left: 20px;
    margin: 8px 0 14px 0;
}

.termini-article li {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
    margin-bottom: 8px;
}

.termini-article strong {
    color: #374151;
    font-weight: 600;
}

.termini-allegato {
    background: #f0f4ff;
    border: 1px solid #c7d2fe;
    border-radius: 14px;
    padding: 28px 32px;
    margin-bottom: 16px;
}

.termini-allegato h2 {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 2px solid #c7d2fe;
}

/* ===================================================
   COOKIE BANNER
   =================================================== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a2e;
    color: #e2e8f0;
    padding: 16px 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 9999;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.55;
    min-width: 0;
}

.cookie-banner-text strong {
    color: white;
    font-weight: 600;
}

.cookie-banner-text a {
    color: #60a5fa;
    text-decoration: none;
}

.cookie-banner-text a:hover {
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    align-items: center;
}

.btn-cookie-accept {
    background: #2563eb;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    transition: background 0.2s;
}

.btn-cookie-accept:hover {
    background: #1d4ed8;
}

.btn-cookie-reject {
    background: transparent;
    color: #94a3b8;
    border: 1px solid #475569;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
    transition: all 0.2s;
}

.btn-cookie-reject:hover {
    border-color: #94a3b8;
    color: #e2e8f0;
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 20px;
        gap: 14px;
    }

    .cookie-banner-buttons {
        width: 100%;
    }

    .btn-cookie-accept,
    .btn-cookie-reject {
        flex: 1;
        text-align: center;
    }

    .termini-toc ol {
        columns: 1;
    }

    .privacy-hero-container,
    .termini-hero-container,
    .privacy-container,
    .termini-container {
        padding: 0 20px;
    }
}