/* ====================================
   🚀 GALDIERRENT FUTURISTIC LANDING
   Ultra-Modern CSS with Advanced Effects
   ==================================== */

/* CSS Custom Properties - Futuristic Theme */
:root {
    /* Brand Colors - Enhanced */
    --primary-black: #0a0a0a;
    --secondary-black: #111111;
    --tertiary-black: #1a1a1a;
    --primary-red: #e30613;
    --red-glow: #ff1a2b;
    --red-dark: #cc0510;
    --primary-grey: #c6c6c6;
    --light-grey: #e8e8e8;
    --primary-white: #ffffff;
    --off-white: #f8f9fa;
    
    /* Neon & Glow Effects */
    --neon-blue: #00d4ff;
    --neon-green: #00ff88;
    --neon-purple: #8b5cf6;
    --neon-pink: #f472b6;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary-red) 0%, var(--red-glow) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--neon-blue) 0%, var(--neon-purple) 100%);
    --gradient-text: linear-gradient(135deg, var(--primary-red), var(--neon-pink), var(--neon-blue));
    --gradient-bg: linear-gradient(135deg, var(--primary-black) 0%, var(--secondary-black) 50%, var(--tertiary-black) 100%);
    
    /* Glass Effects */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    --glass-backdrop: blur(20px);
    
    /* Typography */
    --font-primary: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'SF Mono', Consolas, monospace;
    
    /* Transitions & Animations */
    --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    
    /* Spacing */
    --section-padding: clamp(4rem, 8vw, 8rem);
    --container-padding: clamp(1.5rem, 5vw, 2rem);
}

/* Global Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    background: var(--primary-black);
    color: var(--primary-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    cursor: none;
}

/* Custom Cursor */
.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    background: var(--gradient-primary);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    mix-blend-mode: difference;
    transition: transform 0.1s ease-out;
    opacity: 0;
}

.cursor-follower.active {
    opacity: 1;
}

.cursor-follower.hover {
    transform: scale(2);
    background: var(--gradient-secondary);
}

/* Background Effects */
.bg-effects {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.floating-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--gradient-primary);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--gradient-secondary);
    top: 50%;
    right: 10%;
    animation-delay: -5s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--neon-green), var(--neon-blue));
    bottom: 20%;
    left: 20%;
    animation-delay: -10s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--neon-pink), var(--neon-purple));
    top: 30%;
    left: 50%;
    animation-delay: -15s;
}

.shape-5 {
    width: 250px;
    height: 250px;
    background: var(--gradient-primary);
    bottom: 10%;
    right: 30%;
    animation-delay: -7s;
}

.gradient-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(227, 6, 19, 0.03) 0%, transparent 70%);
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px) rotate(0deg); }
    25% { transform: translateY(-20px) translateX(10px) rotate(90deg); }
    50% { transform: translateY(0px) translateX(-10px) rotate(180deg); }
    75% { transform: translateY(10px) translateX(20px) rotate(270deg); }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* Glass Card Component */
.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    backdrop-filter: var(--glass-backdrop);
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 0.5rem 0;
    background: rgba(10, 10, 10, 0.95);
}

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

.nav-logo .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-text);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    color: var(--primary-white);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition-smooth);
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.nav-link:hover {
    color: var(--primary-red);
    transform: translateY(-2px);
}

.nav-link.cta-nav {
    background: var(--gradient-primary);
    border-radius: 25px;
    padding: 0.75rem 1.5rem;
    color: var(--primary-white);
}

.nav-link.cta-nav:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.3);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-white);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    line-height: 1.2;
    font-weight: 700;
}

.gradient-text {
    background: var(--gradient-text);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 3s ease-in-out infinite;
}

.highlight-text {
    position: relative;
    color: var(--primary-white);
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
    animation: highlightExpand 2s ease-out forwards;
}

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

@keyframes highlightExpand {
    0% { width: 0; }
    100% { width: 100%; }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(227, 6, 19, 0.1);
    border: 1px solid rgba(227, 6, 19, 0.3);
    color: var(--primary-red);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.section-badge i {
    font-size: 1rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.section-intro {
    font-size: clamp(1.1rem, 2.5vw, 1.25rem);
    color: var(--primary-grey);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Button Components */
.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-primary);
    color: var(--primary-white);
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.3);
}

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

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

.cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 20px 40px rgba(227, 6, 19, 0.4);
}

.cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    color: var(--primary-white);
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: var(--gradient-primary);
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(227, 6, 19, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 6rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out 0.2s forwards;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--neon-blue);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: glow 2s ease-in-out infinite alternate;
}

.hero-headline {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-subheadline {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    color: var(--primary-grey);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
    display: block;
    font-family: var(--font-mono);
}

.hero-stats .stat-label {
    font-size: 0.875rem;
    color: var(--primary-grey);
    margin-top: 0.25rem;
}

.hero-visual {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out 0.4s forwards;
    position: relative;
}

.hero-main-visual {
    position: relative;
    margin-bottom: 2rem;
}

.hero-card {
    padding: 1.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.hero-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.card-overlay {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
}

.success-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 136, 0.2);
    border: 1px solid rgba(0, 255, 136, 0.4);
    color: var(--neon-green);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.floating-features {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.feature-box {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1rem;
    text-align: center;
    backdrop-filter: var(--glass-backdrop);
    position: relative;
    transition: var(--transition-smooth);
    cursor: pointer;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.feature-box[data-delay="0.2"] { animation-delay: 0.6s; }
.feature-box[data-delay="0.4"] { animation-delay: 0.8s; }
.feature-box[data-delay="0.6"] { animation-delay: 1s; }

.feature-box:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(227, 6, 19, 0.2);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    color: var(--primary-white);
}

.feature-box span {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-white);
}

.feature-pulse {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 8px;
    height: 8px;
    background: var(--neon-green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Benefits Section */
.benefits {
    padding: var(--section-padding) 0;
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    transition: var(--transition-smooth);
    cursor: pointer;
    overflow: hidden;
}

.benefit-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(227, 6, 19, 0.1), transparent);
    transition: left 0.8s ease;
}

.benefit-card:hover::after {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.benefit-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.5rem;
}

.benefit-badge {
    background: rgba(0, 212, 255, 0.2);
    color: var(--neon-blue);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.3);
}

.benefit-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-white);
}

.benefit-card p {
    color: var(--primary-grey);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.benefit-metrics {
    display: flex;
    gap: 1rem;
}

.metric {
    text-align: center;
}

.metric-number {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-red);
    display: block;
    font-family: var(--font-mono);
}

.metric-label {
    font-size: 0.75rem;
    color: var(--primary-grey);
    margin-top: 0.25rem;
}

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

/* How It Works Section */
.how-it-works {
    padding: var(--section-padding) 0;
    position: relative;
}

.timeline-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-progress {
    position: absolute;
    left: 50%;
    top: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-red), var(--neon-blue));
    transform: translateX(-50%);
    opacity: 0.3;
}

.timeline-step {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    position: relative;
}

.timeline-step:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-step:nth-child(even) .step-content {
    margin-right: 3rem;
    margin-left: 0;
}

.step-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-white);
    position: relative;
    box-shadow: 0 0 30px rgba(227, 6, 19, 0.5);
}

.step-content {
    flex: 1;
    margin-left: 3rem;
    padding: 2rem;
    border-radius: 20px;
    position: relative;
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    font-size: 1.25rem;
}

.step-badge {
    background: rgba(139, 92, 246, 0.2);
    color: var(--neon-purple);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-white);
}

.step-content p {
    color: var(--primary-grey);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.step-visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.step-visual img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.step-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
}

.process-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--primary-white);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

.step-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(227, 6, 19, 0.2);
    color: var(--primary-red);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(227, 6, 19, 0.3);
}

/* Social Proof Section */
.social-proof {
    padding: var(--section-padding) 0;
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial {
    padding: 2rem;
    border-radius: 20px;
    position: relative;
    transition: var(--transition-smooth);
}

.testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.testimonial-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.rating {
    display: flex;
    gap: 0.25rem;
}

.star-filled {
    color: #fbbf24;
    font-size: 1rem;
}

.testimonial-badge {
    background: rgba(0, 255, 136, 0.2);
    color: var(--neon-green);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.testimonial blockquote {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--primary-white);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info strong {
    color: var(--primary-white);
    display: block;
    font-weight: 600;
}

.author-info span {
    color: var(--primary-grey);
    font-size: 0.875rem;
}

.metrics-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.metric-card {
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: var(--transition-smooth);
}

.metric-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-white);
    font-size: 1.5rem;
}

.metric-content .metric-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-white);
    display: block;
    font-family: var(--font-mono);
    margin-bottom: 0.5rem;
}

.metric-content .metric-label {
    color: var(--primary-grey);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.metric-trend {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 255, 136, 0.2);
    color: var(--neon-green);
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(0, 255, 136, 0.3);
}

.partners-section {
    text-align: center;
}

.partners-section h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary-white);
}

.partners-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    align-items: center;
}

.partner-logo {
    transition: var(--transition-smooth);
    cursor: pointer;
}

.partner-logo:hover {
    transform: scale(1.1);
}

.partner-logo img {
    width: 100%;
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.5) opacity(0.7);
    transition: var(--transition-smooth);
}

.partner-logo:hover img {
    filter: grayscale(0%) brightness(1) opacity(1);
}

/* Contact Section */
.contact {
    padding: var(--section-padding) 0;
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text {
    padding-right: 2rem;
}

.contact-text h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-text p {
    font-size: 1.1rem;
    color: var(--primary-grey);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-benefits {
    margin-bottom: 2rem;
}

.contact-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-benefit i {
    color: var(--neon-green);
    font-size: 1.25rem;
}

.contact-benefit span {
    color: var(--primary-white);
    font-weight: 500;
}

.contact-visual {
    margin-top: 2rem;
    border-radius: 15px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.contact-form-wrapper {
    position: relative;
}

.contact-form {
    padding: 2.5rem;
    border-radius: 20px;
}

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

.form-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-white);
}

.form-header p {
    color: var(--primary-grey);
    font-size: 0.9rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-white);
    font-weight: 600;
    font-size: 0.9rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1.25rem;
    color: var(--primary-grey);
    font-size: 1.1rem;
    z-index: 2;
}

.form-group input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--primary-white);
    font-size: 1rem;
    box-sizing: border-box;
    min-height: calc(1rem + 2rem + 2px); /* Allineato con select height */
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(227, 6, 19, 0.3);
    transform: translateY(-2px);
}

.form-group input::placeholder {
    color: var(--primary-grey);
}

/* Custom Select Styling */
.custom-select-wrapper {
    position: relative;
}

.custom-select {
    position: relative;
    width: 100%;
    cursor: pointer;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1rem 1rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--primary-white);
    font-size: 1rem;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
    min-height: calc(1rem + 2rem + 2px); /* Allineato con input height */
    box-sizing: border-box;
}

.custom-select-trigger:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.08);
}

.custom-select.active .custom-select-trigger {
    border-color: var(--primary-red);
    box-shadow: 0 0 20px rgba(227, 6, 19, 0.3);
}

.custom-select-trigger i {
    color: var(--primary-grey);
    transition: var(--transition-smooth);
    font-size: 1.1rem;
}

.custom-select.active .custom-select-trigger i {
    transform: rotate(180deg);
    color: var(--primary-red);
}

.custom-select-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary-black);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(20px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    max-height: 200px;
    overflow-y: auto;
    margin-top: 5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.custom-select.active .custom-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select-option {
    padding: 0.75rem 1rem;
    color: var(--primary-white);
    cursor: pointer;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.custom-select-option:last-child {
    border-bottom: none;
}

.custom-select-option:hover {
    background: var(--primary-red);
    color: var(--primary-white);
}

.custom-select-option.selected {
    background: var(--primary-red);
    color: var(--primary-white);
}

/* Custom scrollbar for options */
.custom-select-options::-webkit-scrollbar {
    width: 6px;
}

.custom-select-options::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
}

.custom-select-options::-webkit-scrollbar-thumb {
    background: var(--primary-red);
    border-radius: 3px;
}

.custom-select-options::-webkit-scrollbar-thumb:hover {
    background: var(--secondary-red);
}

/* Form Messages */
.form-message {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.form-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-message-success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid rgba(0, 255, 136, 0.3);
    color: #00ff88;
}

.form-message-error {
    background: rgba(255, 59, 48, 0.1);
    border: 1px solid rgba(255, 59, 48, 0.3);
    color: #ff3b30;
}

.full-width {
    width: 100%;
    grid-column: 1 / -1;
}

.form-footer {
    margin-top: 1.5rem;
    text-align: center;
}

.security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-grey);
    font-size: 0.875rem;
}

.security-badge i {
    color: var(--neon-green);
}

/* Footer */
.footer {
    background: var(--secondary-black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-text);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--primary-grey);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    text-decoration: none;
    transition: var(--transition-smooth);
    backdrop-filter: blur(10px);
}

.social-link:hover {
    background: var(--gradient-primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(227, 6, 19, 0.3);
}

.footer-contact h4 {
    color: var(--primary-white);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--primary-grey);
}

.contact-item i {
    color: var(--primary-red);
    font-size: 1rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary-grey);
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--primary-grey);
    text-decoration: none;
    transition: var(--transition-smooth);
}

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

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

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

@keyframes glow {
    0% {
        box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    }
    100% {
        box-shadow: 0 0 20px rgba(0, 212, 255, 0.6);
    }
}

/* Scroll Animations */
[data-scroll] {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

[data-scroll].in-view {
    opacity: 1;
    transform: translateY(0);
}

[data-scroll][data-delay="0.1"].in-view { transition-delay: 0.1s; }
[data-scroll][data-delay="0.2"].in-view { transition-delay: 0.2s; }
[data-scroll][data-delay="0.3"].in-view { transition-delay: 0.3s; }

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-text {
        text-align: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .timeline-step {
        flex-direction: column !important;
        text-align: center;
    }
    
    .timeline-step:nth-child(even) .step-content {
        margin-right: 0;
        margin-left: 0;
    }
    
    .step-content {
        margin-left: 0;
        margin-top: 2rem;
    }
    
    .timeline-progress {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: clamp(3rem, 6vw, 4rem);
        --container-padding: 1rem;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-showcase {
        grid-template-columns: 1fr;
    }
    
    .partners-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .floating-features {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-text {
        padding-right: 0;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .floating-features {
        display: none;
    }
    
    .feature-box {
        width: 100%;
    }
}

/* High DPI Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .cursor-follower {
        width: 15px;
        height: 15px;
    }
}