/* ================================
   AIDEAS - CONVERSION-OPTIMIZED DESIGN
   Tech-Forward Futurism Aesthetic
   ================================ */

@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;500;700;800;900&family=Sora:wght@300;400;600;700;800&display=swap');

/* ================================
   CSS VARIABLES & THEME
   ================================ */
:root {
    /* Primary Palette - Cyber Tech */
    --electric-blue: #00D4FF;
    --neon-purple: #B645FF;
    --deep-purple: #1A0B2E;
    --midnight: #0A0614;

    /* Accent Colors */
    --hot-pink: #FF006E;
    --cyber-yellow: #FFD60A;
    --mint-green: #06FFA5;

    /* Neutrals */
    --white: #FFFFFF;
    --off-white: #F8F9FA;
    --light-gray: #E8EAED;
    --medium-gray: #9CA3AF;
    --dark-gray: #1F2937;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--neon-purple) 0%, var(--electric-blue) 100%);
    --gradient-cta: linear-gradient(135deg, var(--hot-pink) 0%, var(--neon-purple) 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, var(--neon-purple) 0px, transparent 50%),
                     radial-gradient(at 80% 0%, var(--electric-blue) 0px, transparent 50%),
                     radial-gradient(at 0% 50%, var(--deep-purple) 0px, transparent 50%);

    /* Typography */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Sora', sans-serif;

    /* Spacing */
    --section-padding: 120px;
    --container-max: 1400px;

    /* Effects */
    --glow-blue: 0 0 30px rgba(0, 212, 255, 0.5);
    --glow-purple: 0 0 40px rgba(182, 69, 255, 0.6);
    --glow-pink: 0 0 25px rgba(255, 0, 110, 0.5);
}

/* ================================
   GLOBAL RESETS & BASE STYLES
   ================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--dark-gray);
    line-height: 1.7;
    background-color: var(--white);
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 90%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* Typography Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
}

p {
    margin-bottom: 20px;
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.8;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ================================
   ANIMATED GRADIENT BACKGROUND
   ================================ */
@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes glow {
    0%, 100% {
        filter: drop-shadow(0 0 15px rgba(0, 212, 255, 0.4));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 0 30px rgba(182, 69, 255, 0.6));
        transform: scale(1.02);
    }
}

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

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 110, 0.4); }
    50% { box-shadow: 0 0 40px rgba(255, 0, 110, 0.8), 0 0 60px rgba(182, 69, 255, 0.4); }
}

/* ================================
   NAVIGATION
   ================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    z-index: 9999;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 15px 0;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(182, 69, 255, 0.3));
}

.logo span {
    background: var(--gradient-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

#menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--deep-purple);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 40px;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

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

.nav-links a:hover {
    color: var(--neon-purple);
}

/* ================================
   HERO SECTION - CONVERSION OPTIMIZED
   ================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: var(--midnight);
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 120px;
}

/* Animated gradient mesh background */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    opacity: 0.8;
    animation: gradientShift 15s ease infinite;
    background-size: 200% 200%;
}

/* Floating geometric shapes */
.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 8s ease-in-out infinite;
}

.hero .container {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-image {
    margin-bottom: 40px;
    animation: slideInUp 1s ease-out;
}

.ai-bulb-image {
    width: 100%;
    max-width: 450px;
    height: auto;
    margin: 0 auto;
    animation: glow 4s ease-in-out infinite;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 25px;
    animation: slideInUp 1s ease-out 0.2s both;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.3);
}

.hero h2 {
    color: var(--electric-blue);
    margin-bottom: 20px;
    animation: slideInUp 1s ease-out 0.3s both;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.hero h3 {
    color: var(--electric-blue);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    margin-bottom: 30px;
    animation: slideInUp 1s ease-out 0.4s both;
}

.hero p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 750px;
    margin: 0 auto 40px;
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.8;
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.8s both;
}

/* ================================
   BUTTONS - HIGH CONVERSION CTAs
   ================================ */
.btn {
    display: inline-block;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: var(--font-body);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn::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:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-cta);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 0, 110, 0.3);
    animation: pulse-glow 3s ease-in-out infinite;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 0, 110, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--electric-blue);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.btn-secondary:hover {
    background: var(--electric-blue);
    color: var(--midnight);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

/* ================================
   SERVICES SECTION
   ================================ */
.services {
    background: linear-gradient(180deg, var(--white) 0%, var(--off-white) 100%);
    position: relative;
}

.services h2 {
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(182, 69, 255, 0.2);
    border-color: var(--electric-blue);
}

.service-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 20px;
    position: relative;
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: var(--glow-purple);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.service-card h3 {
    text-align: center;
    color: var(--deep-purple);
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.service-card p {
    text-align: center;
    color: var(--medium-gray);
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-card p strong {
    color: var(--neon-purple);
    font-weight: 700;
}

.service-card .btn {
    display: block;
    margin: 25px auto 0;
    max-width: 250px;
    font-size: 0.95rem;
    padding: 14px 30px;
}

/* ================================
   VIBE CODING SECTION
   ================================ */
.vibe-coding {
    background: var(--deep-purple);
    position: relative;
    overflow: hidden;
}

.vibe-coding::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.vibe-coding h2 {
    color: var(--white);
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.3rem;
    color: var(--electric-blue);
    margin-bottom: 60px;
    font-weight: 400;
}

.vibe-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.vibe-book,
.vibe-app {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 25px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

.vibe-book:hover,
.vibe-app:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3);
}

.book-cover {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto 30px;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    max-height: 450px;
    transition: transform 0.4s ease;
}

.vibe-book:hover .book-cover {
    transform: scale(1.05);
}

.book-info h3,
.app-preview h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.6rem;
}

.book-info p,
.app-preview p {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 20px;
}

.book-info h4 {
    color: var(--electric-blue);
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.book-features,
.app-features {
    list-style: none;
    margin-bottom: 30px;
}

.book-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: flex-start;
    color: rgba(255, 255, 255, 0.9);
}

.book-features i {
    color: var(--mint-green);
    margin-right: 12px;
    min-width: 20px;
    margin-top: 3px;
    font-size: 1.1rem;
}

.app-icon {
    font-size: 5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    text-align: center;
    margin-bottom: 25px;
    animation: glow 3s ease-in-out infinite;
}

.app-preview {
    text-align: center;
}

.app-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
}

.app-features li {
    background: rgba(0, 212, 255, 0.15);
    border: 1px solid rgba(0, 212, 255, 0.3);
    padding: 12px 20px;
    border-radius: 25px;
    color: var(--electric-blue);
    font-weight: 600;
    transition: all 0.3s ease;
}

.app-features li:hover {
    background: var(--electric-blue);
    color: var(--deep-purple);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 212, 255, 0.3);
}

.app-features i {
    margin-right: 8px;
}

/* ================================
   WHY US SECTION
   ================================ */
.why-us {
    background: var(--white);
}

.why-us h2 {
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
}

.why-us-points {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.why-point {
    text-align: center;
    padding: 40px 30px;
    background: var(--white);
    border-radius: 20px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
}

.why-point::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: var(--gradient-primary);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-point:hover::before {
    opacity: 1;
}

.why-point:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(182, 69, 255, 0.15);
}

.why-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.why-point h3 {
    color: var(--deep-purple);
    margin-bottom: 15px;
}

.why-point p {
    color: var(--medium-gray);
    line-height: 1.7;
}

/* ================================
   CTA SECTION - CONVERSION FOCUSED
   ================================ */
.cta {
    background: var(--midnight);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 100px 0;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    opacity: 0.6;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 25px;
    text-shadow: 0 0 40px rgba(0, 212, 255, 0.4);
}

.cta p {
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
    font-size: 1.25rem;
}

.cta .btn-primary {
    font-size: 1.2rem;
    padding: 22px 50px;
}

/* ================================
   ABOUT US SECTION
   ================================ */
.about-us {
    background: var(--off-white);
}

.about-us h2 {
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    color: var(--dark-gray);
    margin-bottom: 25px;
    font-size: 1.1rem;
    line-height: 1.9;
}

.about-image {
    text-align: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.05);
}

/* ================================
   CONTACT SECTION
   ================================ */
.contact {
    background: var(--white);
}

.contact h2 {
    text-align: center;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 60px;
}

.contact-form-centered {
    max-width: 700px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.contact-form h3 {
    text-align: center;
    color: var(--deep-purple);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-gray);
    font-size: 1rem;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid var(--light-gray);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
    background: var(--white);
}

.form-input:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

textarea.form-input {
    resize: vertical;
    min-height: 140px;
}

.form-group label input[type="checkbox"] {
    margin-right: 8px;
}

.form-group a {
    color: var(--neon-purple);
    text-decoration: none;
    font-weight: 600;
}

.form-group a:hover {
    text-decoration: underline;
}

/* ================================
   FOOTER
   ================================ */
.footer {
    background: var(--deep-purple);
    color: var(--white);
    padding: 60px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: var(--gradient-primary);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
}

.footer-column h3 {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--electric-blue);
    transform: translateX(5px);
}

.footer a[href^="mailto:"] {
    color: var(--electric-blue) !important;
    font-weight: 600;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* Social icons from basic-social.css */

/* Container principale */
.social-container {
  display: flex;
  gap: 20px; /* Aumentata spaziatura come richiesto */
  padding: 15px 0;
}

/* Stile base per tutte le icone social */
.social-icon {
  width: 45px; /* Leggermente più grandi */
  height: 45px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1); /* Sfondo scuro semitrasparente */
  border: 1px solid rgba(255, 255, 255, 0.2); /* Bordo sottile per definizione */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* Icona bianca all'interno */
.social-icon i,
.social-icon svg {
  color: #FFFFFF; /* Bianco puro */
  fill: #FFFFFF;
  font-size: 20px;
  transition: all 0.3s ease;
}

/* Effetto hover */
.social-icon:hover {
  background-color: #00D4FF; /* Electric Blue */
  border-color: #00D4FF;
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.social-icon:hover i {
  color: #0A0614; /* Icona diventa scura su sfondo chiaro per contrasto */
}

.social-icon:hover svg {
  fill: #0A0614; /* Icona SVG diventa scura su sfondo chiaro */
}

/* Stile specifico per "Coming Soon" (YouTube) */
.social-icon.coming-soon {
  opacity: 0.7;
  cursor: not-allowed;
}

.social-icon.coming-soon:hover {
  background-color: rgba(255, 255, 255, 0.2); /* Non diventa blu */
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: none;
  transform: none;
}

.social-icon.coming-soon:hover i {
  color: #FFFFFF; /* Rimane bianca */
}

/* TOOLTIP Generico (mostra il contenuto di data-tooltip) */
.social-icon::after {
  content: attr(data-tooltip); /* Prende il testo dall'attributo HTML */
  position: absolute;
  bottom: 120%; /* Posizionato sopra */
  left: 50%;
  transform: translateX(-50%);
  background-color: #00D4FF;
  color: #0A0614;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Freccetta del tooltip */
.social-icon::before {
  content: "";
  position: absolute;
  bottom: 110%; /* Posizionato appena sotto il tooltip */
  left: 50%;
  transform: translateX(-50%);
  border-width: 6px;
  border-style: solid;
  border-color: #00D4FF transparent transparent transparent;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

/* Mostra tooltip all'hover */
.social-icon:hover::after,
.social-icon:hover::before {
  opacity: 1;
  visibility: visible;
  bottom: 125%; /* Leggero movimento verso l'alto */
}

.social-icon:hover::before {
  bottom: 115%;
}

/* ================================
   QUESTIONNAIRE STYLES
   ================================ */
.questionnaire-container {
    background: var(--off-white);
    padding: 100px 0;
    min-height: 100vh;
}

.questionnaire-card {
    background: var(--white);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 50px;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(0, 212, 255, 0.1);
}

.step-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    position: relative;
    padding-bottom: 10px;
}

.step {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: var(--white);
    position: relative;
    z-index: 2;
    font-family: var(--font-display);
    transition: all 0.4s ease;
}

.step.active {
    background: var(--gradient-primary);
    box-shadow: var(--glow-purple);
    transform: scale(1.2);
}

.step.completed {
    background: var(--mint-green);
}

.step-title {
    display: none;
    font-size: 0.85rem;
    text-align: center;
    color: var(--dark-gray);
    position: absolute;
    width: 120px;
    left: 50%;
    transform: translateX(-50%);
    top: 50px;
    font-weight: 600;
}

.step.active .step-title {
    display: block;
    color: var(--neon-purple);
}

.step-content {
    display: none;
}

.step-content.active {
    display: block;
    animation: slideInUp 0.5s ease-out;
}

.form-control {
    width: 100%;
    padding: 15px 20px;
    border-radius: 12px;
    border: 2px solid var(--light-gray);
    font-size: 1rem;
    font-family: var(--font-body);
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--electric-blue);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.rating-container {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.rating-btn {
    flex: 1;
    padding: 15px;
    border: 2px solid var(--light-gray);
    border-radius: 12px;
    background: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    font-weight: 600;
}

.rating-btn:hover {
    background: var(--off-white);
    border-color: var(--electric-blue);
}

.rating-btn.selected {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    box-shadow: var(--glow-blue);
}

.buttons-container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.error-message {
    color: var(--hot-pink);
    font-size: 0.9rem;
    margin-top: 8px;
    display: none;
    font-weight: 600;
}

.btn-disabled {
    background: var(--light-gray) !important;
    color: var(--medium-gray) !important;
    cursor: not-allowed !important;
    border-color: var(--light-gray) !important;
    box-shadow: none !important;
}

.thank-you {
    text-align: center;
    padding: 60px 20px;
}

.thank-you i {
    font-size: 5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 30px;
}

.support-info {
    background: rgba(0, 212, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    margin-top: 30px;
    border-left: 4px solid var(--electric-blue);
}

/* Header for other pages */
.header {
    padding: 100px 0 60px;
    background: var(--midnight);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-mesh);
    opacity: 0.6;
}

.header .container {
    position: relative;
    z-index: 2;
}

.header h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.header p {
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */
@media (max-width: 1200px) {
    :root {
        --section-padding: 80px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .vibe-content {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

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

    .btn {
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    #menu-toggle {
        display: block;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 60px 20px;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        gap: 20px;
    }

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

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.2rem;
        display: block;
        padding: 15px 0;
    }

    .services-grid,
    .why-us-points {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 35px 25px;
    }

    .questionnaire-card {
        padding: 35px 25px;
    }

    .step-title {
        display: none !important;
    }

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

    .rating-container {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .container {
        width: 95%;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .ai-bulb-image {
        max-width: 280px;
    }

    .service-card,
    .why-point {
        padding: 30px 20px;
    }

    .vibe-book,
    .vibe-app {
        padding: 30px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* ================================
   UTILITY CLASSES
   ================================ */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glassmorphism {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Confirmation message */
.confirmation-message {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 100;
    border-radius: 25px;
}

.confirmation-content {
    text-align: center;
    padding: 40px;
    max-width: 80%;
}

.confirmation-content h3 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.form-check {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.form-check input {
    margin-right: 10px;
}
