/* ============================================
   NOMADS - PREMIUM SPECTACULAR LANDING PAGE
   ============================================ */

:root {
    /* Primary Colors */
    --primary-blue: #1D5B78;
    --primary-green: #9BA696;
    --primary-cream: #FFF9E8;
    --primary-beige: #F0EEE8;
    
    /* Accent Colors */
    --accent-blue: #7AB9C9;
    --accent-purple: #6A1B9A;
    --accent-orange: #FF6B35;
    --accent-silver: #B5B5B5;
    
    /* Background Colors */
    --light-bg: #FAFAFA;
    --card-bg: #FFFFFF;
    --dark-bg: #0A0A0A;
    --dark-card: #1A1A1A;
    
    /* Text Colors */
    --text-primary: #2C3E50;
    --text-secondary: #7F8C8D;
    --text-muted: #BDC3C7;
    --text-light: #FFFFFF;
    
    /* Border Colors */
    --border-light: #E8E8E8;
    --border-dark: #333333;
    
    /* Shadows */
    --shadow-light: rgba(0, 0, 0, 0.1);
    --shadow-dark: rgba(0, 0, 0, 0.4);
    
    /* Status Colors */
    --success: #27AE60;
    --warning: #F39C12;
    --error: #E74C3C;
    --info: #3498DB;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
    position: relative;
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */

body {
    cursor: none;
}

.cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--accent-blue);
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.1s ease;
    mix-blend-mode: difference;
}

.cursor-follower {
    position: fixed;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-green);
    pointer-events: none;
    z-index: 9998;
    transition: all 0.15s ease-out;
    opacity: 0.5;
}

/* ============================================
   ANIMATED BACKGROUND PARTICLES
   ============================================ */

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 0;
    pointer-events: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ============================================
   Navigation - GLASSMORPHISM
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    z-index: 10100;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(155, 166, 150, 0.1);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    pointer-events: auto; /* Garantisce che la navbar sia sempre cliccabile */
    touch-action: manipulation; /* Migliora il touch su mobile */
    /* Ottimizzazione scroll: usa transform invece di position per animazioni */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(30px) saturate(200%);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.5);
    padding: 0.5rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
    z-index: 1; /* Assicura che il container sia sopra elementi hero */
    pointer-events: auto; /* Garantisce che gli elementi dentro siano cliccabili */
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text-light);
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.nav-logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(0 0 20px rgba(122, 185, 201, 0.8));
    animation: logoGlow 3s ease-in-out infinite;
}

@keyframes logoGlow {
    0%, 100% { filter: drop-shadow(0 0 20px rgba(122, 185, 201, 0.8)); }
    50% { filter: drop-shadow(0 0 30px rgba(155, 166, 150, 0.8)); }
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue), var(--accent-silver));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientFlow 4s ease infinite;
    font-weight: 900;
    letter-spacing: 2px;
}

@keyframes gradientFlow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-menu li a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-blue));
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu li a:hover {
    color: var(--accent-blue);
    transform: translateY(-2px);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.lang-selector {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(155, 166, 150, 0.3);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.lang-selector:hover {
    border-color: var(--primary-green);
    background: rgba(155, 166, 150, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(155, 166, 150, 0.3);
}

.lang-selector-compact {
    background: linear-gradient(135deg, rgba(29, 91, 120, 0.15), rgba(26, 26, 26, 0.8));
    backdrop-filter: blur(15px);
    border: 1.5px solid rgba(122, 185, 201, 0.3);
    color: var(--text-light);
    padding: 8px 14px 8px 32px;
    border-radius: 12px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 700;
    min-width: 80px;
    text-align: left;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(29, 91, 120, 0.2),
                inset 0 1px 3px rgba(122, 185, 201, 0.1);
    position: relative;
    overflow: visible;
}

.lang-selector-compact::before {
    content: '🌐';
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 15px;
    opacity: 0.8;
    transition: all 0.3s ease;
    pointer-events: none;
}

.lang-selector-compact:hover {
    border-color: var(--accent-blue);
    background: linear-gradient(135deg, rgba(122, 185, 201, 0.25), rgba(155, 166, 150, 0.2));
    box-shadow: 0 6px 20px rgba(122, 185, 201, 0.4),
                inset 0 2px 5px rgba(122, 185, 201, 0.15);
    transform: translateY(-2px);
}

.lang-selector-compact:hover::before {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

.lang-selector-compact:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(155, 166, 150, 0.2),
                0 6px 20px rgba(122, 185, 201, 0.4);
}

.btn-login {
    /* Uniforma il tasto Login agli altri link della navbar */
    background: transparent;
    color: var(--text-light);
    border: none;
    padding: 8px 0;
    border-radius: 0;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    text-decoration: none;
    display: inline-block;
    box-shadow: none;
    overflow: visible;
}

.btn-login::before {
    content: none;
}

.btn-login::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-blue));
    border-radius: 2px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-login:hover {
    color: var(--accent-blue);
    transform: translateY(-2px);
}

.btn-login:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* ============================================
   Hero Section - SPECTACULAR
   ============================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
    /* Assicura che la hero non si sovrapponga alla navbar */
    margin-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none; /* Non interferisce con i click sulla navbar */
}

/* ANIMATED GRADIENT MESH */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.6;
    animation: morphing 25s ease-in-out infinite;
    will-change: transform;
}

/* Riduce animazioni per preferenze utente */
@media (prefers-reduced-motion: reduce) {
    .gradient-orb,
    .gradient-orb * {
        animation: none !important;
        will-change: auto !important;
    }
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--primary-blue), var(--accent-blue), transparent);
    top: -250px;
    left: -250px;
    animation: morphing 20s ease-in-out infinite, rotate 40s linear infinite;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--primary-green), var(--primary-blue), transparent);
    bottom: -200px;
    right: -200px;
    animation: morphing 25s ease-in-out infinite reverse, rotate 50s linear infinite reverse;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--accent-blue), var(--primary-blue), transparent);
    top: 50%;
    right: 10%;
    animation: morphing 30s ease-in-out infinite, float 15s ease-in-out infinite;
}

@keyframes morphing {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        border-radius: 50% 50% 50% 50%;
    }
    25% { 
        transform: translate(40px, -40px) scale(1.1);
        border-radius: 60% 40% 60% 40%;
    }
    50% { 
        transform: translate(-30px, 30px) scale(0.9);
        border-radius: 40% 60% 40% 60%;
    }
    75% { 
        transform: translate(30px, 40px) scale(1.05);
        border-radius: 50% 50% 40% 60%;
    }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    33% { transform: translateY(-30px) translateX(20px); }
    66% { transform: translateY(20px) translateX(-20px); }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text {
    animation: fadeInUp 1s ease-out both;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue), var(--primary-blue));
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    animation: gradientShift 8s ease infinite, heroTitleIntro 0.9s ease-out both;
    letter-spacing: -2px;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes heroTitleIntro {
    0% { opacity: 0; transform: translateY(18px) scale(1); }
    60% { opacity: 1; transform: translateY(0) scale(1); }
    100% { opacity: 1; transform: translateY(0) scale(0.94); }
}


.hero-subtitle {
    font-size: 1.8rem;
    color: var(--accent-blue);
    margin-bottom: 1rem;
    font-weight: 600;
    animation: fadeInUp 0.9s ease-out both;
    text-shadow: 0 0 20px rgba(122, 185, 201, 0.5);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    animation: fadeInUp 0.9s ease-out both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s ease-out both;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
    color: var(--text-light);
    border: none;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(122, 185, 201, 0.5);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(122, 185, 201, 0.7);
}

.btn-primary.coming-soon {
    cursor: not-allowed;
    opacity: 0.8;
}

.btn-primary.coming-soon:hover {
    transform: none;
    box-shadow: 0 10px 30px rgba(122, 185, 201, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-green);
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 1px;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--primary-green);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-secondary:hover::before {
    width: 400px;
    height: 400px;
}

.btn-secondary:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px rgba(155, 166, 150, 0.5);
}

.hero-image {
    position: relative;
    animation: fadeInRight 1s ease-out 0.5s both;
}

.phone-mockup {
    position: relative;
    max-width: 100%;
    perspective: 1200px;
    display: flex;
    justify-content: center;
}

.device-frame {
    position: relative;
    width: clamp(200px, 24vw, 280px);
    padding: 12px 12px 20px;
    border-radius: 32px;
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.95), rgba(29, 91, 120, 0.2));
    border: 2px solid rgba(155, 166, 150, 0.3);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.8),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: phoneFloat 8s ease-in-out infinite;
}

.device-frame::after {
    content: '';
    position: absolute;
    inset: 5px;
    border-radius: 27px;
    border: 1px solid rgba(122, 185, 201, 0.1);
    pointer-events: none;
}

.device-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 14px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.85));
    border-radius: 7px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.device-home-indicator {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 2px;
    z-index: 2;
}

.device-screen {
    width: 100%;
    border-radius: 22px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease;
}

.phone-mockup:hover .device-frame {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(29, 91, 120, 0.4),
        inset 0 1px 2px rgba(255, 255, 255, 0.15);
    border-color: rgba(122, 185, 201, 0.5);
}

.phone-mockup:hover .device-screen {
    transform: scale(1.01);
}

.device-frame.phone {
    width: clamp(200px, 24vw, 280px);
}

.device-frame.tablet {
    width: clamp(220px, 28vw, 320px);
    padding: 16px 16px 24px;
    border-radius: 28px;
    animation: imageFloat 8s ease-in-out infinite;
}

.device-frame.tablet::after {
    border-radius: 23px;
}

.device-frame.tablet .device-notch {
    display: none;
}

.device-frame.tablet .device-home-indicator {
    bottom: 14px;
    width: 120px;
}

@keyframes phoneFloat {
    0%, 100% { transform: translateY(0px) translateZ(0); }
    50% { transform: translateY(-15px) translateZ(15px); }
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(122, 185, 201, 0.4), transparent);
    border-radius: 50%;
    filter: blur(60px);
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

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

/* SCROLL INDICATOR - ENHANCED */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    animation: fadeIn 1s ease-out 1s both;
}

.mouse {
    width: 28px;
    height: 45px;
    border: 3px solid var(--primary-green);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 0 20px rgba(155, 166, 150, 0.5);
    animation: mouseGlow 2s ease-in-out infinite;
}

@keyframes mouseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(155, 166, 150, 0.5); }
    50% { box-shadow: 0 0 30px rgba(122, 185, 201, 0.8); }
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 10px;
    background: linear-gradient(to bottom, var(--primary-green), var(--accent-blue));
    border-radius: 3px;
    animation: scrollDown 2s infinite;
}

@keyframes scrollDown {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

/* ============================================
   FEATURES SECTION - PROFESSIONAL GRID LAYOUT
   ============================================ */

.features {
    padding: 100px 0;
    background: var(--dark-bg);
    position: relative;
    overflow: hidden;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-green), var(--accent-blue), var(--primary-green), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.feature-card {
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(20px);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 1px solid rgba(155, 166, 150, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.feature-card:last-child {
    grid-column: 1 / -1;
    max-width: 550px;
    margin: 0 auto;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(155, 166, 150, 0.4);
    box-shadow: 0 20px 40px rgba(29, 91, 120, 0.3);
    background: rgba(30, 30, 30, 0.8);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    position: relative;
    box-shadow: 0 8px 20px rgba(29, 91, 120, 0.3);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(122, 185, 201, 0.4);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: var(--text-light);
}

.feature-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.875rem;
    line-height: 1.3;
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--primary-green);
    font-weight: 500;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.feature-list li::before {
    content: '•';
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    .feature-card:last-child {
        max-width: 100%;
    }
}

/* ============================================
   HOW IT WORKS SECTION - CLEAN TIMELINE
   ============================================ */

.how-it-works {
    padding: 100px 0;
    background: var(--dark-card);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-green), var(--accent-blue), var(--primary-green), transparent);
}

.steps-container {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.steps-container::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-blue), var(--accent-blue));
}

.step-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
    animation: fadeInLeft 0.6s ease-out backwards;
}

.step-number {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
    border-radius: 50%;
    flex-shrink: 0;
    box-shadow: 0 0 0 4px rgba(155, 166, 150, 0.2);
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.step-item:hover .step-number {
    transform: scale(1.3);
    box-shadow: 0 0 0 6px rgba(155, 166, 150, 0.3), 0 0 20px rgba(122, 185, 201, 0.4);
}

.step-content {
    flex: 1;
    background: rgba(30, 30, 30, 0.6);
    padding: 1.75rem;
    border-radius: 16px;
    border: 1px solid rgba(155, 166, 150, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.step-item:hover .step-content {
    transform: translateX(8px);
    border-color: rgba(155, 166, 150, 0.3);
    box-shadow: 0 8px 24px rgba(29, 91, 120, 0.2);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.step-description {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
}

/* ============================================
   Download Section - MODERN
   ============================================ */

.download {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--dark-bg) 0%, var(--dark-card) 100%);
    position: relative;
    overflow: hidden;
}

.download::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(122, 185, 201, 0.1), transparent 70%);
    animation: rotate 30s linear infinite;
}

.download-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.download-text {
    max-width: 700px;
}

.download-image {
    display: flex;
    justify-content: center;
}

.download-screenshots {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    max-width: 900px;
}

.download-screenshot {
    width: 200px;
    max-width: 22vw;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(155, 166, 150, 0.3);
    object-fit: cover;
    background: #000;
}

.download-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    line-height: 1.2;
    letter-spacing: -1px;
}

.download-description {
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.download-buttons {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-text .download-buttons {
    margin-top: 1.8rem;
    justify-content: center;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem 2rem;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(155, 166, 150, 0.3);
    border-radius: 20px;
    text-decoration: none;
    color: var(--text-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.download-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(122, 185, 201, 0.2), transparent);
    transform: translateY(-50%);
    transition: left 0.6s;
}

.download-btn:hover::before {
    left: 100%;
}

.download-btn:hover {
    border-color: var(--primary-green);
    background: rgba(155, 166, 150, 0.2);
    transform: translateX(15px) scale(1.02);
    box-shadow: 0 10px 30px rgba(122, 185, 201, 0.3);
}

.download-btn svg {
    width: 40px;
    height: 40px;
    color: var(--primary-green);
    transition: transform 0.3s ease;
}

.download-btn:hover svg {
    transform: scale(1.2) rotate(5deg);
}

.download-btn-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
}

.download-btn-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1;
}

.download-btn-store {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-light);
    line-height: 1;
    letter-spacing: -0.5px;
}

.download-btn-ios svg {
    color: var(--text-light);
}

.download-btn-android svg {
    color: #3DDC84; /* Google Play green */
}

.download-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.download-coming-soon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.coming-soon-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2.5rem;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(29, 91, 120, 0.2), rgba(155, 166, 150, 0.15));
    border: 2px solid rgba(155, 166, 150, 0.4);
    color: var(--text-light);
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 1rem;
    box-shadow: 0 15px 40px rgba(29, 91, 120, 0.4), 
                inset 0 2px 10px rgba(122, 185, 201, 0.15);
    backdrop-filter: blur(20px);
    transition: all 0.4s ease;
    animation: pulseGlow 3s ease-in-out infinite;
}

.coming-soon-pill:hover {
    border-color: var(--accent-blue);
    box-shadow: 0 20px 50px rgba(122, 185, 201, 0.5), 
                inset 0 2px 10px rgba(122, 185, 201, 0.25);
    transform: translateY(-2px);
}

.coming-soon-pill::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
    box-shadow: 0 0 15px rgba(122, 185, 201, 1),
                0 0 25px rgba(122, 185, 201, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 15px 40px rgba(29, 91, 120, 0.4), 
                    inset 0 2px 10px rgba(122, 185, 201, 0.15);
    }
    50% {
        box-shadow: 0 20px 50px rgba(29, 91, 120, 0.6), 
                    inset 0 2px 15px rgba(122, 185, 201, 0.25);
    }
}

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

/* ============================================
   Footer - PREMIUM
   ============================================ */

.footer {
    background: linear-gradient(180deg, var(--dark-card) 0%, #000000 100%);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(155, 166, 150, 0.2);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-green), var(--accent-blue), var(--primary-green), transparent);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    max-width: 620px;
    margin: 0 auto;
}

.footer-logo {
    height: 56px;
    width: auto;
    margin-bottom: 0.5rem;
    filter: drop-shadow(0 0 16px rgba(122, 185, 201, 0.6));
}

.footer-tagline {
    font-size: 1.4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 1px;
}

.footer-description {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 1rem;
    max-width: 480px;
}

.footer-copy {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1.5rem;
}

/* ============================================
   Login Modal - GLASSMORPHISM
   ============================================ */

.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    backdrop-filter: blur(20px);
    animation: fadeIn 0.3s ease;
    overflow: hidden;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(30px) saturate(180%);
    padding: 3.5rem;
    border-radius: 30px;
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(155, 166, 150, 0.3);
    position: relative;
    animation: slideUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.8);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.modal-close {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 2.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--text-light);
    transform: rotate(90deg) scale(1.2);
}

.modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.modal-logo {
    height: 70px;
    width: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 20px rgba(122, 185, 201, 0.8));
    animation: logoGlow 3s ease-in-out infinite;
}

.modal-header h2 {
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.modal-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.form-group label {
    color: var(--text-light);
    font-weight: 600;
    font-size: 1.05rem;
}

.form-group input {
    padding: 15px 20px;
    background: rgba(10, 10, 10, 0.6);
    border: 2px solid rgba(155, 166, 150, 0.3);
    border-radius: 15px;
    color: var(--text-light);
    font-size: 1.05rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-green);
    background: rgba(10, 10, 10, 0.8);
    box-shadow: 0 0 0 4px rgba(155, 166, 150, 0.2);
    transform: translateY(-2px);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--text-muted);
    cursor: pointer;
    font-size: 0.95rem;
}

.checkbox-label input {
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.forgot-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    font-weight: 500;
}

.forgot-link:hover {
    color: var(--primary-green);
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary-green), var(--accent-blue));
    color: var(--text-light);
    border: none;
    padding: 16px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(122, 185, 201, 0.4);
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-submit:hover::before {
    width: 400px;
    height: 400px;
}

.btn-submit:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(122, 185, 201, 0.6);
}

.form-divider {
    text-align: center;
    position: relative;
    margin: 1.5rem 0;
}

.form-divider::before,
.form-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 45%;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(155, 166, 150, 0.3), transparent);
}

.form-divider::before {
    left: 0;
}

.form-divider::after {
    right: 0;
}

.form-divider span {
    color: var(--text-muted);
    background: transparent;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
    font-size: 0.95rem;
}

.social-login {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.btn-social {
    padding: 14px;
    border: 2px solid rgba(155, 166, 150, 0.3);
    border-radius: 15px;
    background: rgba(10, 10, 10, 0.6);
    color: var(--text-light);
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.btn-social:hover {
    border-color: var(--primary-green);
    background: rgba(155, 166, 150, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(122, 185, 201, 0.3);
}

.form-footer {
    text-align: center;
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-size: 1rem;
}

.signup-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-weight: 700;
    margin-left: 0.5rem;
    transition: color 0.3s ease;
}

.signup-link:hover {
    color: var(--primary-green);
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

[data-aos] {
    opacity: 0;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* ============================================
   Responsive Design
   ============================================ */

@media (max-width: 1024px) {
    .hero {
        padding-top: 120px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-image {
        order: -1;
        justify-self: center;
        margin-top: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        border-top: 1px solid rgba(155, 166, 150, 0.2);
        justify-content: flex-start;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    /* Ottimizzazioni scroll su mobile */
    html,
    body {
        -webkit-overflow-scrolling: touch; /* Smooth scroll su iOS */
        overflow-scrolling: touch;
        /* Riduce repaint durante scroll */
        transform: translateZ(0);
        -webkit-transform: translateZ(0);
    }
    
    /* Assicura che la navbar sia sempre sopra tutto su mobile */
    .navbar {
        z-index: 99999 !important; /* Z-index molto alto per mobile */
        pointer-events: auto !important;
        /* Riduce backdrop-filter su mobile per performance */
        backdrop-filter: blur(10px) saturate(150%) !important;
        -webkit-backdrop-filter: blur(10px) saturate(150%) !important;
    }
    
    .hero {
        padding-top: 140px;
        /* Assicura che la hero non copra la navbar */
        margin-top: 0;
    }
    
    /* Assicura che gli elementi hero non interferiscano */
    .hero-background,
    .hero-background * {
        pointer-events: none !important;
    }
    
    /* Ottimizzazioni performance per mobile: riduce animazioni pesanti */
    .gradient-orb {
        /* Semplifica animazioni su mobile */
        animation: none !important;
        will-change: auto !important;
        /* Riduce blur per performance */
        filter: blur(60px) !important;
        /* Riduce opacità per meno repaint */
        opacity: 0.4 !important;
    }
    
    /* Disabilita animazioni pesanti su mobile */
    .orb-1,
    .orb-2,
    .orb-3 {
        animation: none !important;
        will-change: auto !important;
    }
    
    /* Riduce backdrop-filter su elementi specifici per mobile (non tutti) */
    .btn-login,
    .feature-card,
    .download-card {
        backdrop-filter: blur(5px) !important;
        -webkit-backdrop-filter: blur(5px) !important;
    }
    
    /* Mantieni backdrop-filter solo dove necessario (navbar, modals) */
    .navbar,
    .modal,
    .modal-content {
        backdrop-filter: blur(10px) saturate(150%) !important;
        -webkit-backdrop-filter: blur(10px) saturate(150%) !important;
    }
    
    /* Disabilita will-change su elementi animati per mobile (causa repaint continui) */
    .gradient-orb,
    .hero-content,
    .hero-text,
    .hero-image,
    .phone-mockup,
    .scroll-indicator {
        will-change: auto !important;
    }
    
    /* Usa transform3d solo quando necessario per hardware acceleration */
    .hero-content,
    .hero-text,
    .hero-image {
        transform: translateZ(0); /* Force hardware acceleration solo quando necessario */
    }

    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-image {
        margin-top: 2rem;
    }
    
    .coming-soon-pill {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    /* Download buttons mobile */
    .download-buttons {
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }
    
    .download-btn {
        padding: 1.2rem 1.5rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .download-btn-store {
        font-size: 1.2rem;
    }

    /* Hide scroll indicator on mobile */
    .scroll-indicator {
        display: none;
    }

    .download-screenshots {
        max-width: 100%;
        gap: 1rem;
    }

    .download-screenshot {
        max-width: 44%;
        width: 44%;
        border-radius: 18px;
    }

    .section-header {
        text-align: center;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-card {
        text-align: center;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .feature-icon {
        margin: 0 auto 1.5rem;
    }
    
    .feature-list {
        text-align: left;
        display: inline-block;
        margin: 0 auto;
    }

    .download-title {
        font-size: 2.2rem;
    }
    
    .download-description {
        font-size: 1.1rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .step-number {
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.9rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
        box-shadow: 0 0 0 5px rgba(155, 166, 150, 0.25);
    }

    .steps-container::before {
        display: none;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(20px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.5);
        padding: 2rem 0;
        border-top: 1px solid rgba(155, 166, 150, 0.2);
    }

    .nav-menu.active {
        left: 0;
    }
    
    .nav-actions {
        position: fixed;
        right: 5.5rem;
        top: 18px;
        gap: 0.5rem;
        z-index: 99;
    }
    
    .lang-selector-compact {
        font-size: 10px;
        padding: 5px 8px 5px 24px;
        min-width: 55px;
        border-radius: 8px;
    }
    
    .lang-selector-compact::before {
        font-size: 11px;
        left: 6px;
    }
    
    .btn-login {
        padding: 6px 14px;
        font-size: 12px;
        border-radius: 20px;
    }

    .nav-toggle {
        display: flex;
        /* Ensure burger stays clickable (avoid overlap with fixed nav-actions) */
        position: relative;
        z-index: 10200;
        padding: 10px;
        margin: -10px;
        touch-action: manipulation;
        pointer-events: auto; /* Garantisce che il burger sia sempre cliccabile */
        -webkit-tap-highlight-color: transparent; /* Rimuove highlight su tap mobile */
    }
    
    /* Assicura che tutti gli elementi cliccabili nella navbar siano sempre accessibili */
    .navbar * {
        pointer-events: auto;
    }
    
    .nav-menu a,
    .nav-actions a,
    .nav-actions select {
        pointer-events: auto;
        touch-action: manipulation;
        -webkit-tap-highlight-color: transparent;
    }

    body {
        cursor: auto;
    }

    .cursor,
    .cursor-follower {
        display: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }

    .modal-content {
        padding: 2rem;
    }
}

/* ============================================
   Additional Effects
   ============================================ */

/* Loading State */
.loading {
    pointer-events: none;
    opacity: 0.6;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 20px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    z-index: 3000;
    max-width: 400px;
    font-weight: 600;
    animation: slideInRight 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

@keyframes slideInRight {
    from {
        transform: translateX(120%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(120%);
        opacity: 0;
    }
}

/* Focus States */
a:focus,
button:focus,
input:focus,
select:focus {
    outline: 3px solid var(--accent-blue);
    outline-offset: 3px;
}

/* Selection */
::selection {
    background: var(--primary-green);
    color: var(--text-light);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--dark-bg);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary-green), var(--accent-blue));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(to bottom, var(--accent-blue), var(--accent-silver));
}

/* RTL Support */
[dir="rtl"] {
    direction: rtl;
}

[dir="rtl"] .hero-content,
[dir="rtl"] .download-content,
[dir="rtl"] .footer-content {
    direction: rtl;
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .modal,
    .scroll-indicator {
        display: none;
    }
}

/* ============================================
   NOMADS — SPECTACULAR TRAVEL REDESIGN
   Vivid colors, alternating light/dark sections,
   bold typography, eye-catching layout.
   ============================================ */

/* --- Kill futuristic leftovers --- */
body { cursor: auto !important; }
.cursor, .cursor-follower { display: none !important; }
#particles-js { display: none !important; }
.gradient-orb, .orb-1, .orb-2, .orb-3 { display: none !important; }
.phone-glow { display: none !important; }
.btn-primary::before, .btn-secondary::before,
.btn-submit::before, .download-btn::before { display: none !important; }
.feature-card::before { display: none !important; }
.download::before { display: none !important; }
.coming-soon-pill::before { animation: none !important; }
.coming-soon-pill { animation: none !important; }
.logo-img { filter: none !important; animation: none !important; }
.modal-logo { filter: none !important; animation: none !important; }
.logo-text { animation: none !important; }
.nav-logo:hover { transform: none !important; }
.nav-menu li a:hover { transform: none !important; }
.modal-close:hover { transform: none !important; }
.btn-login:hover { transform: none !important; }
.lang-selector:hover { transform: none !important; box-shadow: none !important; }
.lang-selector-compact:hover { transform: none !important; }
.lang-selector-compact:hover::before { transform: translateY(-50%) !important; }

/* ============================================
   BODY — light celeste base (scroll areas)
   ============================================ */
body {
    background: #e8f2f7 !important;
    color: #2C3E50 !important;
}

/* ============================================
   NAVBAR — solid dark bar, strong contrast
   ============================================ */
.navbar {
    background: linear-gradient(90deg, #1D5B78 0%, #1a5070 100%) !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    border-bottom: 2px solid var(--accent-silver) !important;
    box-shadow: 0 4px 24px rgba(29, 91, 120, 0.3) !important;
    transition: padding 0.3s ease !important;
}
.navbar.scrolled {
    background: linear-gradient(90deg, #153d52 0%, #12354a 100%) !important;
    box-shadow: 0 4px 30px rgba(29, 91, 120, 0.4) !important;
}

.logo-text {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
    font-weight: 800 !important;
    letter-spacing: 2px !important;
}

.nav-menu li a {
    color: rgba(255, 255, 255, 0.85) !important;
}
.nav-menu li a:hover {
    color: white !important;
}
.nav-menu li a::after {
    height: 3px !important;
    background: var(--accent-silver) !important;
    border-radius: 2px !important;
}
/* Niente rettangolo al click: solo la linea argento sotto */
.nav-menu li a:focus {
    outline: none !important;
    box-shadow: none !important;
}
.nav-menu li a:focus::after {
    width: 100% !important;
}

.lang-selector-compact {
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
    backdrop-filter: none !important;
    box-shadow: none !important;
    color: white !important;
}
.lang-selector-compact:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
}
.lang-selector-compact option {
    background: var(--primary-blue) !important;
    color: white !important;
}

.btn-login {
    color: white !important;
}
.btn-login::after {
    background: var(--accent-silver) !important;
}

/* ============================================
   HERO — vivid gradient, dramatic
   ============================================ */
.hero {
    background:
        radial-gradient(ellipse 80% 50% at 20% 80%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse 60% 60% at 80% 20%, rgba(122, 185, 201, 0.12) 0%, transparent 50%),
        linear-gradient(145deg, #1D5B78 0%, #0e3a50 35%, #0a2a3c 100%) !important;
    background-size: auto, auto, auto !important;
    background-position: 0 0, 0 0, 0 0 !important;
    background-repeat: repeat, repeat, repeat !important;
    min-height: 100vh !important;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url("../assets/images/world-map.png") center / cover no-repeat;
    opacity: 0.02;
    mix-blend-mode: screen;
    filter: invert(1) grayscale(1);
    pointer-events: none;
}

.hero-title {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
    color: white !important;
    animation: fadeInUp 0.7s ease-out both !important;
    letter-spacing: -2px !important;
    font-size: 5rem !important;
    line-height: 1.02 !important;
    font-weight: 900 !important;
    text-shadow: 0 4px 60px rgba(0, 0, 0, 0.4) !important;
}

.hero-subtitle {
    text-shadow: none !important;
    color: var(--accent-silver) !important;
    font-weight: 700 !important;
    font-size: 1.6rem !important;
    letter-spacing: 0.5px !important;
    text-shadow: 0 2px 20px rgba(212, 175, 55, 0.3) !important;
}

.hero-description {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 1.15rem !important;
    max-width: 500px !important;
    line-height: 1.8 !important;
}

/* ============================================
   DOWNLOAD BUTTONS — silver CTA
   ============================================ */
.hero-text .download-buttons {
    margin-top: 2rem !important;
}
.download-btn {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 16px !important;
    backdrop-filter: none !important;
    padding: 1.1rem 1.6rem !important;
    transition: all 0.3s ease !important;
}
.download-btn:hover {
    transform: translateY(-4px) !important;
    background: var(--accent-silver) !important;
    border-color: var(--accent-silver) !important;
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4) !important;
}
.download-btn:hover svg { transform: none !important; color: #1D5B78 !important; }
.download-btn:hover .download-btn-label { color: rgba(29, 91, 120, 0.7) !important; }
.download-btn:hover .download-btn-store { color: #1D5B78 !important; }

.download-btn-store {
    color: white !important;
}

/* ============================================
   PHONE MOCKUP — floating with vivid shadow
   ============================================ */
.device-frame {
    animation: none !important;
    background: #1a1a2e !important;
    border: 2px solid rgba(122, 185, 201, 0.2) !important;
    border-radius: 34px !important;
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 80px rgba(29, 91, 120, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset !important;
    transition: transform 0.4s ease, box-shadow 0.4s ease !important;
}
.device-frame.tablet { animation: none !important; }
.phone-mockup:hover .device-frame {
    transform: translateY(-12px) !important;
    box-shadow:
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 120px rgba(122, 185, 201, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.05) inset !important;
}
.phone-mockup:hover .device-screen { transform: none !important; }
.device-screen { border-radius: 24px !important; }

/* ============================================
   SCROLL INDICATOR
   ============================================ */
.mouse {
    border-color: rgba(255, 255, 255, 0.4) !important;
    box-shadow: none !important;
    animation: none !important;
    border-width: 2px !important;
}
.mouse::before { background: white !important; }

/* ============================================
   TRAVEL QUOTE — elegante, evoca viaggi
   ============================================ */
.travel-quote-section {
    padding: 80px 0 !important;
    background:
        linear-gradient(180deg, #e8f2f7 0%, #dceaf2 30%, #e8f2f7 100%) !important;
    position: relative;
}
.travel-quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(29, 91, 120, 0.2), transparent);
}
.travel-quote {
    margin: 0 !important;
    padding: 0 20px !important;
    text-align: center !important;
    position: relative;
}
.quote-icon {
    display: block !important;
    font-size: 2rem !important;
    color: var(--accent-silver) !important;
    margin-bottom: 1rem !important;
    opacity: 0.9;
}
.quote-text {
    font-size: 1.5rem !important;
    font-weight: 400 !important;
    font-style: italic !important;
    color: var(--primary-blue) !important;
    line-height: 1.6 !important;
    max-width: 700px !important;
    margin: 0 auto 1rem !important;
}
.quote-cite {
    display: block !important;
    font-size: 1rem !important;
    font-style: normal !important;
    color: #5a7a8a !important;
    font-weight: 500 !important;
}

/* ============================================
   FEATURES — LIGHT CELESTE, armonico con il blu
   ============================================ */
.features {
    background: linear-gradient(180deg, #e8f2f7 0%, #dceaf2 50%, #e8f2f7 100%) !important;
    background-size: auto !important;
    background-position: 0 0 !important;
    background-repeat: repeat !important;
    padding: 120px 0 !important;
    position: relative;
}
.features::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
    background: url("../assets/images/world-map.png") center / cover no-repeat;
    opacity: 0.015;
    mix-blend-mode: screen;
    filter: invert(1) grayscale(1);
    pointer-events: none;
}

.section-header { margin-bottom: 4rem !important; }

.features .section-title {
    color: var(--primary-blue) !important;
    font-weight: 800 !important;
    font-size: 2.8rem !important;
    letter-spacing: -1px !important;
}
.features .section-title::after {
    content: '' !important;
    display: block !important;
    width: 80px !important;
    height: 5px !important;
    background: linear-gradient(90deg, var(--accent-silver), var(--accent-blue)) !important;
    border-radius: 3px !important;
    margin: 16px auto 0 !important;
}
.features .section-subtitle {
    color: #5a7a8a !important;
    font-size: 1.2rem !important;
    margin-top: 12px !important;
}

.feature-card {
    background: white !important;
    backdrop-filter: none !important;
    border: 1px solid rgba(29, 91, 120, 0.12) !important;
    border-radius: 24px !important;
    padding: 2.5rem 2rem !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 4px 24px rgba(29, 91, 120, 0.08) !important;
    border-left: 4px solid var(--accent-blue) !important;
}
.feature-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 48px rgba(29, 91, 120, 0.15) !important;
    border-left-color: var(--accent-silver) !important;
}
.feature-card:hover .feature-icon {
    transform: scale(1.1) !important;
    box-shadow: 0 8px 24px rgba(29, 91, 120, 0.35) !important;
}

.feature-icon {
    width: 64px !important;
    height: 64px !important;
    border-radius: 18px !important;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-blue)) !important;
    box-shadow: 0 6px 20px rgba(29, 91, 120, 0.25) !important;
    transition: all 0.4s ease !important;
}

.feature-title {
    color: var(--primary-blue) !important;
    font-weight: 700 !important;
    font-size: 1.45rem !important;
}

.feature-description {
    color: #5a7a8a !important;
}

.feature-list li {
    color: var(--primary-blue) !important;
    font-weight: 500 !important;
}
.feature-list li::before {
    color: var(--accent-silver) !important;
    font-size: 1.5rem !important;
}

/* ============================================
   HOW IT WORKS — VIVID BLUE BACKGROUND
   ============================================ */
.how-it-works {
    background:
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse 70% 60% at 20% 80%, rgba(122, 185, 201, 0.15) 0%, transparent 50%),
        linear-gradient(160deg, var(--primary-blue) 0%, #0e3a50 100%) !important;
    padding: 100px 0 !important;
}
.how-it-works::before { display: none !important; }

.how-it-works .section-title {
    color: white !important;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3) !important;
}
.how-it-works .section-title::after {
    content: '' !important;
    display: block !important;
    width: 60px !important;
    height: 4px !important;
    background: var(--accent-silver) !important;
    border-radius: 2px !important;
    margin: 12px auto 0 !important;
}
.how-it-works .section-subtitle {
    color: rgba(255, 255, 255, 0.75) !important;
}

.steps-container::before {
    background: rgba(255, 255, 255, 0.2) !important;
    width: 2px !important;
}

.step-number {
    width: 44px !important;
    height: 44px !important;
    font-size: 1rem !important;
    font-weight: 800 !important;
    color: var(--primary-blue) !important;
    background: var(--accent-silver) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4) !important;
    border: none !important;
}
.step-item:hover .step-number {
    transform: none !important;
    box-shadow: 0 6px 28px rgba(212, 175, 55, 0.6) !important;
}

.step-content {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: none !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 16px !important;
    box-shadow: none !important;
    transition: all 0.3s ease !important;
}
.step-item:hover .step-content {
    transform: none !important;
    background: rgba(255, 255, 255, 0.14) !important;
    border-color: rgba(212, 175, 55, 0.3) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2) !important;
}

.step-title {
    color: white !important;
    font-weight: 700 !important;
}
.step-description {
    color: rgba(255, 255, 255, 0.7) !important;
}

/* ============================================
   DOWNLOAD — LIGHT CELESTE, armonico con il blu
   ============================================ */
.download {
    background:
        linear-gradient(180deg, #dceaf2 0%, #e8f2f7 50%, #dceaf2 100%) !important;
    padding: 120px 0 !important;
}

.download-title {
    color: var(--primary-blue) !important;
    font-weight: 800 !important;
    font-size: 2.8rem !important;
    letter-spacing: -1px !important;
}
.download-title::after {
    content: '' !important;
    display: block !important;
    width: 80px !important;
    height: 5px !important;
    background: linear-gradient(90deg, var(--accent-silver), var(--accent-blue)) !important;
    border-radius: 3px !important;
    margin: 16px 0 0 !important;
}

.download-description {
    color: #5a7a8a !important;
    font-size: 1.15rem !important;
}

.download .download-btn {
    background: var(--primary-blue) !important;
    border: 2px solid var(--primary-blue) !important;
    color: white !important;
}
.download .download-btn:hover {
    background: #153d52 !important;
    border-color: #153d52 !important;
    box-shadow: 0 12px 36px rgba(29, 91, 120, 0.35) !important;
    transform: translateY(-4px) !important;
}
.download .download-btn svg {
    color: white !important;
}
.download .download-btn-label {
    color: rgba(255, 255, 255, 0.8) !important;
}
.download .download-btn-store {
    color: white !important;
}

/* Screenshot phone frames */
.screenshot-device {
    position: relative;
    background: linear-gradient(180deg, #1e2530 0%, #151b24 100%);
    border-radius: 28px;
    padding: 10px 6px;
    border: 1px solid rgba(29, 91, 120, 0.2);
    box-shadow:
        0 20px 50px rgba(29, 91, 120, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    width: 200px;
    max-width: 22vw;
}
.screenshot-device:hover {
    transform: translateY(-10px);
    box-shadow:
        0 30px 60px rgba(29, 91, 120, 0.25),
        0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}
.screenshot-notch {
    display: block;
    width: 40%;
    height: 5px;
    background: #2a2a3e;
    border-radius: 10px;
    margin: 0 auto 6px;
}
.screenshot-home {
    display: block;
    width: 28%;
    height: 4px;
    background: #2a2a3e;
    border-radius: 10px;
    margin: 6px auto 2px;
}
.download-screenshot {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 16px !important;
    border: none !important;
    display: block !important;
    box-shadow: none !important;
}
.download-screenshots {
    gap: 1.5rem !important;
}

/* ============================================
   FOOTER — dark, elegant
   ============================================ */
.footer {
    background: linear-gradient(170deg, #0d1f2d 0%, #0a1620 100%) !important;
    border-top: 3px solid var(--accent-silver) !important;
    padding: 60px 0 30px !important;
}
.footer::before { display: none !important; }

.footer-logo {
    filter: none !important;
    height: 52px !important;
}

.footer-tagline {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--accent-silver) !important;
    color: var(--accent-silver) !important;
    font-weight: 700 !important;
    font-size: 1.3rem !important;
    letter-spacing: 2px !important;
    text-shadow: 0 2px 20px rgba(212, 175, 55, 0.3) !important;
}

.footer-description {
    color: rgba(255, 255, 255, 0.55) !important;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.3) !important;
    font-size: 0.85rem !important;
}

.footer a {
    color: rgba(255, 255, 255, 0.7) !important;
    transition: color 0.3s ease !important;
}
.footer a:hover {
    color: var(--accent-silver) !important;
}

/* ============================================
   LOGIN MODAL — vivid, warm
   ============================================ */
.modal {
    background: rgba(0, 0, 0, 0.85) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
}
.modal-content {
    background: linear-gradient(165deg, #141c26 0%, #0d1419 100%) !important;
    backdrop-filter: none !important;
    border: 1px solid rgba(122, 185, 201, 0.2) !important;
    border-radius: 24px !important;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6), 0 0 60px rgba(29, 91, 120, 0.1) !important;
}
.modal-header h2 {
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: white !important;
    color: white !important;
    font-weight: 700 !important;
}
.modal-header p {
    color: rgba(255, 255, 255, 0.6) !important;
}
.modal-close {
    color: rgba(255, 255, 255, 0.6) !important;
}
.modal-close:hover {
    color: var(--accent-silver) !important;
}

.form-group label {
    color: rgba(255, 255, 255, 0.9) !important;
}
.form-group input {
    border-radius: 12px !important;
    border: 1px solid rgba(122, 185, 201, 0.2) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    color: white !important;
}
.form-group input:focus {
    transform: none !important;
    border-color: var(--accent-silver) !important;
    background: rgba(0, 0, 0, 0.4) !important;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2) !important;
}
.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.4) !important;
}

.checkbox-label { color: rgba(255, 255, 255, 0.6) !important; }
.forgot-link { color: var(--accent-silver) !important; }

.btn-submit {
    background: linear-gradient(135deg, var(--accent-silver), #D0D0D0) !important;
    border-radius: 12px !important;
    box-shadow: 0 8px 32px rgba(212, 175, 55, 0.4) !important;
    color: #1D5B78 !important;
}
.btn-submit:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 12px 40px rgba(212, 175, 55, 0.5) !important;
}

.form-divider::before,
.form-divider::after {
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent) !important;
}
.form-divider span { color: rgba(255, 255, 255, 0.4) !important; }

.btn-social {
    border-radius: 12px !important;
    border: 1px solid rgba(122, 185, 201, 0.2) !important;
    background: rgba(0, 0, 0, 0.3) !important;
    color: white !important;
}
.btn-social:hover {
    transform: none !important;
    border-color: var(--accent-silver) !important;
    background: rgba(212, 175, 55, 0.1) !important;
}

.form-footer { color: rgba(255, 255, 255, 0.5) !important; }
.signup-link { color: var(--accent-silver) !important; }

/* ============================================
   UTILITIES
   ============================================ */
.notification {
    backdrop-filter: none !important;
    border-radius: 14px !important;
    animation: slideInRight 0.4s ease !important;
}

::-webkit-scrollbar { width: 8px !important; }
::-webkit-scrollbar-track { background: #e8f2f7 !important; }
::-webkit-scrollbar-thumb {
    background: var(--accent-blue) !important;
    border-radius: 4px !important;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary-blue) !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-title { font-size: 3.5rem !important; }

    .nav-menu {
        background: var(--primary-blue) !important;
        backdrop-filter: none !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem !important;
        letter-spacing: -1px !important;
    }
    .hero-subtitle {
        font-size: 1.15rem !important;
    }
    .section-title {
        font-size: 2.2rem !important;
    }
    .feature-card {
        padding: 2rem 1.5rem !important;
    }
    .download-title {
        font-size: 2.2rem !important;
    }

    .nav-menu {
        background: var(--primary-blue) !important;
        backdrop-filter: none !important;
    }

    .step-number {
        width: 38px !important;
        height: 38px !important;
    }

    /* Spazio sotto i bottoni App Store / Google Play in hero (mobile) */
    .hero-text .download-buttons {
        margin-bottom: 2rem !important;
        padding-bottom: 1.5rem !important;
    }

    .quote-text {
        font-size: 1.2rem !important;
    }
    .travel-quote-section {
        padding: 60px 0 !important;
    }

    .screenshot-device {
        max-width: 44% !important;
        width: 44% !important;
        border-radius: 20px !important;
        padding: 7px 4px !important;
    }
    .screenshot-notch {
        height: 4px !important;
        margin-bottom: 4px !important;
    }
    .screenshot-home {
        height: 3px !important;
        margin-top: 4px !important;
    }
    .download-screenshot {
        border-radius: 12px !important;
    }
}
