/* ===========================
   VARIABLES & RESET
   =========================== */
:root {
    --primary: #2563EB;
    --primary-dark: #1D4ED8;
    --primary-light: #EFF6FF;
    --accent: #7C3AED;
    --dark: #0F172A;
    --dark2: #1E293B;
    --text: #334155;
    --muted: #64748B;
    --border: #E2E8F0;
    --bg: #F8FAFC;
    --white: #FFFFFF;
    --green: #10B981;
    --orange: #F59E0B;
    --radius: 12px;
    --radius-lg: 20px;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.10);
    --shadow-xl: 0 30px 80px rgba(0,0,0,0.18);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===========================
   HEADER
   =========================== */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 24px;
    background: rgba(10, 18, 35, 0.55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: background 0.35s, border-color 0.35s, box-shadow 0.35s;
}
#header.scrolled {
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.header-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
    gap: 32px;
}

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}
.logo-link img {
    height: 38px;
    display: block;
    transition: opacity 0.3s;
}
/* Sfondo scuro: mostra bianco, nasconde colorato */
.logo-dark  { opacity: 1; position: relative; }
.logo-light { opacity: 0; position: absolute; pointer-events: none; }

/* Sfondo chiaro (scrolled): mostra colorato, nasconde bianco */
#header.scrolled .logo-dark  { opacity: 0; position: absolute; pointer-events: none; }
#header.scrolled .logo-light { opacity: 1; position: relative; }

/* Nav */
.nav-links { display: flex; gap: 8px; }
.nav-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 8px;
    transition: color 0.2s, background 0.2s;
}
.nav-links a:hover {
    color: white;
    background: rgba(255,255,255,0.1);
}
#header.scrolled .nav-links a { color: var(--muted); }
#header.scrolled .nav-links a:hover {
    color: var(--dark);
    background: var(--bg);
}

/* Header CTA button */
.header-btn {
    padding: 9px 20px;
    font-size: 14px;
    border-radius: 10px;
    gap: 6px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: white;
    padding: 10px 22px;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
}
.btn:hover { background: var(--primary-dark); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(37,99,235,0.35); }
.btn-large { padding: 14px 28px; font-size: 16px; border-radius: 14px; }
.btn-white { background: white; color: var(--primary); }
.btn-white:hover { background: #f0f4ff; box-shadow: 0 8px 24px rgba(255,255,255,0.25); }
.btn-full { width: 100%; justify-content: center; }
.btn-ghost {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
}
.btn-ghost:hover { color: white; }

/* ===========================
   HERO
   =========================== */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0F172A 0%, #1E3A5F 60%, #1a1f5e 100%);
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}
.hero-content {
    flex: 1;
    min-width: 0;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.85);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}
.badge-dot {
    width: 8px; height: 8px;
    background: #10B981;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.85); }
}
.hero h1 {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.gradient-text {
    background: linear-gradient(90deg, #60A5FA, #A78BFA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 36px;
}
.hero-actions {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}
.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.stat { display: flex; flex-direction: column; }
.stat-num {
    font-size: 26px;
    font-weight: 800;
    color: white;
    line-height: 1;
}
.stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}
.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* ===========================
   APP WINDOW MOCKUP
   =========================== */
.hero-visual {
    flex: 1;
    min-width: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}
.app-window {
    background: #1E293B;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.08);
    width: 100%;
    max-width: 580px;
    transform: perspective(1000px) rotateY(-3deg) rotateX(2deg);
    transition: transform 0.3s;
}
.app-window:hover { transform: perspective(1000px) rotateY(0deg) rotateX(0deg); }
.app-bar {
    background: #0F172A;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.app-dots { display: flex; gap: 6px; }
.dot {
    width: 12px; height: 12px;
    border-radius: 50%;
}
.dot.red { background: #FF5F57; }
.dot.yellow { background: #FFBD2E; }
.dot.green { background: #28CA41; }
.app-bar-title {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    flex: 1;
    text-align: center;
    font-weight: 500;
}
.app-body { display: flex; }
.app-sidebar {
    width: 150px;
    background: #0F172A;
    padding: 16px 0;
    flex-shrink: 0;
    border-right: 1px solid rgba(255,255,255,0.06);
}
.sidebar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}
.sidebar-item svg { flex-shrink: 0; opacity: 0.6; }
.sidebar-item.active {
    background: rgba(37,99,235,0.2);
    color: #60A5FA;
    border-right: 2px solid #2563EB;
}
.sidebar-item.active svg { opacity: 1; }
.app-main {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 320px;
    overflow: hidden;
}
.app-kpis { display: flex; gap: 8px; }
.kpi-card {
    flex: 1;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
}
.kpi-label { font-size: 10px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.kpi-num { font-size: 22px; font-weight: 700; color: white; line-height: 1; }
.kpi-delta { font-size: 11px; margin-top: 4px; }
.kpi-delta.up { color: #10B981; }
.app-chart-area {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 12px;
}
.chart-title {
    font-size: 11px;
    color: rgba(255,255,255,0.4);
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
}
.chart-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 60px;
}
.chart-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    height: 100%;
    justify-content: flex-end;
}
.chart-bar {
    width: 100%;
    background: linear-gradient(to top, #2563EB, #60A5FA);
    border-radius: 3px 3px 0 0;
    transition: height 0.5s;
}
.chart-col span { font-size: 9px; color: rgba(255,255,255,0.3); }
.app-bookings {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 10px;
    padding: 12px;
}
.booking-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}
.booking-row:last-child { border-bottom: none; }
.booking-avatar {
    width: 28px; height: 28px;
    background: linear-gradient(135deg, #2563EB, #7C3AED);
    border-radius: 50%;
    font-size: 9px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.booking-info { flex: 1; }
.booking-info strong { font-size: 11px; color: rgba(255,255,255,0.8); display: block; font-weight: 600; }
.booking-info span { font-size: 10px; color: rgba(255,255,255,0.35); }
.booking-badge {
    font-size: 9px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 100px;
}
.booking-badge.confirmed { background: rgba(16,185,129,0.15); color: #10B981; }
.booking-badge.pending { background: rgba(245,158,11,0.15); color: #F59E0B; }

/* ===========================
   SECTION COMMON
   =========================== */
.section-label {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 12px;
}
.section-label.light { color: #60A5FA; }
.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--dark);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

/* ===========================
   TARGETS
   =========================== */
.targets {
    padding: 100px 0;
    background: var(--bg);
}
.targets .container { text-align: center; }
.targets .section-title { margin-bottom: 12px; }
.section-sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.6;
}
.targets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.target-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: left;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.target-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.target-icon {
    width: 56px; height: 56px;
    background: var(--primary-light);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary);
}
.target-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}
.target-card p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.target-card--more {
    background: linear-gradient(135deg, #EFF6FF, #F5F3FF);
    border-color: #C7D2FE;
}
.target-card--more h3 { color: var(--primary); }
.btn-sm {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    margin-top: 12px;
    transition: background 0.2s;
}
.btn-sm:hover { background: var(--primary-dark); }

/* ===========================
   FEATURES
   =========================== */
.features {
    padding: 100px 0;
    background: var(--white);
}
.features .container { text-align: center; }
.features .section-title { margin-bottom: 56px; }
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: left;
}
.feature-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}
.feature-icon.blue { background: #EFF6FF; color: #2563EB; }
.feature-icon.purple { background: #F5F3FF; color: #7C3AED; }
.feature-icon.green { background: #ECFDF5; color: #059669; }
.feature-icon.orange { background: #FFFBEB; color: #D97706; }
.feature-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}
.feature-card > p {
    font-size: 15px;
    color: var(--muted);
    margin-bottom: 20px;
    line-height: 1.65;
}
.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.feature-list li {
    font-size: 14px;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 8px;
}
.feature-list li::before {
    content: '';
    display: block;
    width: 18px;
    height: 18px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%232563EB' stroke-width='2.5'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
    flex-shrink: 0;
}

/* ===========================
   ACCESS HIGHLIGHT
   =========================== */
.access-highlight {
    padding: 100px 0;
    background: linear-gradient(135deg, #0F172A 0%, #1a1f5e 100%);
    overflow: hidden;
}
.access-inner {
    display: flex;
    align-items: center;
    gap: 80px;
}
.access-content { flex: 1; }
.access-content h2 {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
.access-content > p {
    font-size: 17px;
    color: rgba(255,255,255,0.6);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}
.access-points { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.access-point {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.point-icon {
    width: 44px; height: 44px;
    background: rgba(37,99,235,0.2);
    border: 1px solid rgba(37,99,235,0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #60A5FA;
    flex-shrink: 0;
}
.access-point strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: white;
    margin-bottom: 3px;
}
.access-point span { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.access-visual { flex: 0 0 auto; display: flex; justify-content: center; }

/* PHONE MOCKUP */
.phone-mock {
    width: 220px;
    background: #1E293B;
    border-radius: 36px;
    padding: 16px 12px;
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.phone-screen {
    background: var(--dark);
    border-radius: 24px;
    overflow: hidden;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.phone-header .phone-logo {
    font-size: 14px;
    font-weight: 700;
    color: white;
    text-align: center;
}
.phone-face-scan {
    position: relative;
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scan-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(37,99,235,0.5);
}
.scan-ring.outer {
    width: 120px; height: 120px;
    animation: ring-pulse 2s infinite;
}
.scan-ring.inner {
    width: 80px; height: 80px;
    border-color: rgba(37,99,235,0.7);
    animation: ring-pulse 2s infinite 0.3s;
}
@keyframes ring-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.05); }
}
.scan-icon {
    width: 56px; height: 56px;
    background: rgba(37,99,235,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.scan-line {
    position: absolute;
    left: 10px; right: 10px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #2563EB, transparent);
    animation: scan 2s linear infinite;
    top: 20px;
}
@keyframes scan {
    0% { top: 20px; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { top: 100px; opacity: 0; }
}
.phone-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #10B981;
    font-weight: 600;
}
.phone-qr-alt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 100%;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.phone-qr-alt span { font-size: 11px; color: rgba(255,255,255,0.35); }
.qr-block {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    font-weight: 500;
}

/* ===========================
   BENEFITS
   =========================== */
.benefits-section {
    padding: 100px 0;
    background: var(--bg);
}
.benefits-inner {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}
.benefits-text { flex: 1; }
.benefits-text p {
    font-size: 17px;
    color: var(--muted);
    line-height: 1.7;
    margin-top: 16px;
}
.benefits-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.benefit-check {
    width: 28px; height: 28px;
    background: var(--green);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.benefit-item strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 3px;
}
.benefit-item span { font-size: 14px; color: var(--muted); line-height: 1.55; }

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1D4ED8, #7C3AED);
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-glow {
    position: absolute;
    width: 600px; height: 600px;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}
.cta-section > .container > p {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}
.cta-note { font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 16px; }
.cta-inner { display: flex; flex-direction: column; align-items: center; }

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--dark);
    padding: 48px 0;
}
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo img { height: 30px; filter: brightness(0) invert(1) opacity(0.8); }
.footer-logo span { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.8); }
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.25); }

/* ===========================
   MODAL
   =========================== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(6px);
    z-index: 200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    max-width: 520px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-xl);
    max-height: 90vh;
    overflow-y: auto;
    transform: translateY(20px);
    transition: transform 0.25s;
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-close {
    position: absolute;
    top: 16px; right: 16px;
    background: var(--bg);
    border: none;
    width: 36px; height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    transition: background 0.2s;
}
.modal-close:hover { background: var(--border); }
.modal-header { text-align: center; margin-bottom: 32px; }
.modal-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}
.modal-header h3 { font-size: 22px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.modal-header p { font-size: 14px; color: var(--muted); }
.modal-piano-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 100px;
    margin-bottom: 10px;
    border: 1px solid rgba(37,99,235,0.2);
}
.form-row { display: flex; gap: 16px; }
.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 16px;
    flex: 1;
}
.form-group label { font-size: 13px; font-weight: 600; color: var(--dark2); }
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: 10px;
    font-family: inherit;
    font-size: 14px;
    color: var(--dark);
    background: var(--bg);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
    background: white;
}
.form-group textarea { resize: vertical; }
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px 0;
    gap: 12px;
}
.success-icon { line-height: 1; }
.form-success h4 { font-size: 20px; font-weight: 700; color: var(--dark); }
.form-success p { font-size: 14px; color: var(--muted); max-width: 300px; }

/* ===========================
   TESTIMONIANZE
   =========================== */
.testimonials {
    padding: 100px 0;
    background: var(--bg);
}
.testimonials .container { text-align: center; }
.testimonials .section-title { margin-bottom: 48px; }
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
}
.testimonial-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-stars { color: #FBBF24; font-size: 18px; letter-spacing: 2px; }
.testimonial-text {
    font-size: 15px;
    color: var(--text);
    line-height: 1.75;
    flex: 1;
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.testimonial-author strong { display: block; font-size: 15px; font-weight: 700; color: var(--dark); }
.testimonial-author span { font-size: 13px; color: var(--muted); }
.testimonial-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}
.testimonial-tags span {
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    padding: 3px 10px;
    border-radius: 100px;
}

/* ===========================
   PREZZI
   =========================== */
.pricing {
    padding: 100px 0;
    background: var(--white);
}
.pricing .container { text-align: center; }
.pricing .section-title { margin-bottom: 12px; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    text-align: left;
    margin-top: 48px;
    align-items: start;
}
.pricing-card {
    background: var(--bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    transition: transform 0.25s, box-shadow 0.25s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card--featured {
    background: var(--dark);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37,99,235,0.15), var(--shadow-xl);
    transform: translateY(-8px);
}
.pricing-card--featured:hover { transform: translateY(-12px); }
.plan-badge {
    display: inline-block;
    background: var(--primary);
    color: white;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.plan-header { margin-bottom: 20px; }
.plan-name {
    display: block;
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.pricing-card--featured .plan-name { color: white; }
.plan-desc { font-size: 14px; color: var(--muted); line-height: 1.55; }
.pricing-card--featured .plan-desc { color: rgba(255,255,255,0.55); }
.plan-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}
.pricing-card--featured .plan-price { border-bottom-color: rgba(255,255,255,0.1); }
.price-num {
    font-size: 48px;
    font-weight: 800;
    color: var(--dark);
    letter-spacing: -0.03em;
    line-height: 1;
}
.pricing-card--featured .price-num { color: white; }
.price-period { font-size: 16px; color: var(--muted); font-weight: 500; }
.pricing-card--featured .price-period { color: rgba(255,255,255,0.45); }
.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}
.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 500;
}
.feat-yes { color: var(--dark); }
.feat-no { color: var(--muted); text-decoration: line-through; }
.pricing-card--featured .feat-yes { color: rgba(255,255,255,0.9); }
.pricing-card--featured .feat-no { color: rgba(255,255,255,0.3); }
.feat-yes svg { color: var(--green); flex-shrink: 0; }
.feat-no svg { color: var(--muted); flex-shrink: 0; opacity: 0.5; }
.feat-note {
    font-size: 12px;
    color: var(--primary);
    font-weight: 700;
    margin-left: 2px;
}
.pricing-card--featured .feat-note { color: #60A5FA; }
.btn-outline-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 12px 20px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s;
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--primary);
}
.btn-outline-primary:hover { background: var(--primary); color: white; }
.pricing-notes {
    margin-top: 36px;
    padding: 24px 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.pricing-notes p { font-size: 13px; color: var(--muted); line-height: 1.6; }
.feat-note-label {
    font-weight: 700;
    color: var(--primary);
    margin-right: 4px;
}

/* Honeypot anti-spam: visivamente nascosto ma presente nel DOM */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 1024px) {
    .targets-grid { grid-template-columns: repeat(2, 1fr); }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .access-inner { flex-direction: column-reverse; gap: 48px; }
    .access-visual { width: 100%; display: flex; justify-content: center; }
}

@media (max-width: 1024px) {
    .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 48px auto 0; }
    .pricing-card--featured { transform: none; }
    .pricing-card--featured:hover { transform: translateY(-4px); }
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        padding: 100px 24px 60px;
        gap: 48px;
        text-align: center;
        min-height: auto;
    }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { width: 100%; }
    .app-window { transform: none; max-width: 100%; }
    .features-grid { grid-template-columns: 1fr; }
    .targets-grid { grid-template-columns: 1fr 1fr; }
    .benefits-inner { flex-direction: column; gap: 40px; }
    .nav-links { display: none; }
    .form-row { flex-direction: column; }
    .footer-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
}

@media (max-width: 520px) {
    .targets-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .stat-divider { display: none; }
}
