:root {
    --bg-main: #060606;
    /* Much darker, true luxury black */
    --bg-sec: #0D0D0D;

    /* Glassmorphism base variables */
    --glass-bg: rgba(25, 25, 25, 0.3);
    --glass-bg-hover: rgba(35, 35, 35, 0.5);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-light: rgba(255, 255, 255, 0.15);
    --glass-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);

    --text-primary: #ffffff;
    --text-secondary: #999999;
    --accent: #E5E5E5;
    --accent-glow: rgba(255, 255, 255, 0.1);

    /* Updated Typography */
    --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-display: 'Outfit', sans-serif;
    --font-logo: 'Barlow Condensed', 'Plus Jakarta Sans', system-ui, sans-serif;

    --transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    background-color: #060606;
}

body {
    font-family: var(--font-sans);
    background-color: transparent;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Typography */
h1,
h2,
h3,
h4,
h5 {
    font-family: var(--font-display);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 300;
}

/* Layout */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section {
    padding: 8rem 0;
    position: relative;
}

.bg-darker {
    background-color: rgba(8, 8, 8, 0.55);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Navbar - Glassmorphism */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(6, 6, 6, 0.4);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1.25rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 0.75rem 0;
    background: rgba(6, 6, 6, 0.8);
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    text-decoration: none;
    color: var(--text-primary);
}

.logo-box {
    background: #ffffff;
    color: #1a1a1a;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    /* Using sans for the geometric FP */
    font-weight: 800;
    /* Extra bold */
    font-size: 2.2rem;
    letter-spacing: -1.5px;
    /* Tighter P next to F */
    flex-shrink: 0;
    border: none;
    border-radius: 2px;
    /* Slight rounding to avoid harsh pixels */
}

.logo-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0px;
}

.logo-text-top,
.logo-text-bottom {
    font-family: var(--font-sans);
    /* The generic sans is more geometric like the original */
    font-weight: 800;
    /* Very bold */
    font-size: 1.6rem;
    letter-spacing: 4px;
    /* Wide tracking like the image */
    text-transform: uppercase;
    line-height: 1.1;
    color: #ffffff;
}

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

.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    opacity: 0.8;
    transition: var(--transition);
}

.nav-links a:hover {
    opacity: 1;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

/* Dropdown Menu */
.nav-item-dropdown {
    position: relative;
    display: inline-block;
    padding: 0.5rem 0;
}

.nav-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    top: calc(100% - 10px);
    left: 50%;
    transform: translateX(-50%);
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    min-width: 240px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 0.5rem 0;
    z-index: 1001;
    text-align: left;
}

.nav-dropdown-content a {
    display: block;
    padding: 0.7rem 1.2rem;
    font-size: 0.9rem;
    color: var(--text-primary);
    white-space: nowrap;
    opacity: 1;
}

.nav-dropdown-content a:hover {
    background: rgba(255, 255, 255, 0.05);
    text-shadow: none;
}

.nav-item-dropdown:hover .nav-dropdown-content {
    display: block;
    animation: dropFadeIn 0.2s ease;
}

.dropdown-trigger::after {
    content: " ▾";
    font-size: 0.8em;
    opacity: 0.6;
}

@keyframes dropFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, 10px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
}

/* Nav Actions (right side) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 1.25rem;
}

.nav-aura-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.85rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border-light);
    border-radius: 8px;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.nav-aura-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    border-color: rgba(255, 255, 255, 0.25);
}

.nav-aura-btn svg {
    opacity: 0.7;
}

.nav-aura-btn:hover svg {
    opacity: 1;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    margin-left: 0;
}

.lang-sep {
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.85rem;
}

.lang-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 0.2rem 0.3rem;
    transition: color 0.2s;
    text-transform: uppercase;
}

.lang-btn:hover {
    color: rgba(255, 255, 255, 0.8);
}

.lang-btn.active {
    color: var(--text-primary);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.75rem;
    border-radius: 4px;
    font-weight: 500;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    border: 1px solid transparent;
}

.btn-primary {
    background: var(--text-primary);
    color: var(--bg-main);
}

.nav-links a.btn-primary {
    color: var(--bg-main);
    opacity: 1;
    text-shadow: none;
    font-weight: 600;
}

.btn-primary:hover {
    background: #e0e0e0;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px -10px rgba(255, 255, 255, 0.4);
    color: var(--bg-main);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--glass-border-light);
}

.btn-outline:hover {
    border-color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.1rem 2.25rem;
    font-size: 1.05rem;
}

.btn-block {
    display: block;
    width: 100%;
    top: 0;
}

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

.hero h1 {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.hero p {
    font-size: 1.35rem;
    max-width: 800px;
    margin: 0 auto 3rem auto;
    position: relative;
    z-index: 2;
    color: #b0b0b0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    position: relative;
    z-index: 2;
}

/* ─── Hero Mission & Vision ─────────────────────────────────── */
.hero-mv {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    max-width: 900px;
    margin: 2.5rem auto 0;
    text-align: left;
    position: relative;
    z-index: 2;
}

.hero-mv-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    backdrop-filter: blur(8px);
}

.hero-mv-label {
    display: inline-block;
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent, #4ade80);
    margin-bottom: 0.75rem;
}

.hero-mv-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

@media (max-width: 640px) {
    .hero-mv {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* ─── Hero FP-Score Link ────────────────────────────────────── */
.hero-fpscore-link {
    display: inline-block;
    margin-top: 1.75rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    z-index: 2;
}

.hero-fpscore-link span {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.hero-fpscore-link:hover {
    color: var(--text-primary);
}

/* ─── FP-Score CTA Section ─────────────────────────────────── */
.fpscore-cta-section {
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.fpscore-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 3.5rem;
    box-shadow: var(--glass-shadow);
    opacity: 0;
    transform: translateY(30px);
}

.fpscore-cta-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #4ade80;
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.2);
    padding: 0.35rem 0.85rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}

.fpscore-cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.fpscore-cta-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 520px;
    margin-bottom: 1.75rem;
}

.fpscore-cta-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
}

.fpscore-gauge {
    position: relative;
}

.fpscore-labels {
    display: flex;
    gap: 1rem;
}

.fpscore-label-item {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.72rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.fpscore-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

@media (max-width: 768px) {
    .fpscore-cta {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        text-align: center;
        gap: 2rem;
    }

    .fpscore-cta-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .fpscore-cta-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

.hero-bg-glow {
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}

.text-accent {
    color: #888888;
    font-style: italic;
    font-weight: 400;
}

/* ─── Problema → Soluzione ──────────────────────────────────── */
.ps-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: stretch;
}

.ps-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.ps-card:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.15);
}

.ps-problema:hover {
    border-color: rgba(239, 68, 68, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(239, 68, 68, 0.06);
}

.ps-soluzione:hover {
    border-color: rgba(74, 222, 128, 0.25);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(74, 222, 128, 0.06);
}

/* Icon rings */
.ps-icon-ring {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.ps-icon-red {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #ef4444;
}

.ps-icon-green {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.25);
    color: #4ade80;
}

.ps-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

.ps-lead {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.ps-body {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.ps-subtitle {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.ps-list {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1rem;
}

.ps-list li {
    position: relative;
    padding-left: 1.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.ps-list-red li::before {
    content: '\00D7';
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1.4;
}

.ps-quotes li {
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    border-left: 2px solid #ef4444;
    padding-left: 1.2rem;
    margin-left: 0;
}

.ps-quotes li::before {
    display: none;
}

.ps-quotes li em {
    font-style: italic;
}

.ps-list-green li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #4ade80;
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.6;
}

/* Divider arrow */
.ps-divider {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.ps-divider-line {
    width: 1px;
    flex: 1;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.12), transparent);
}

.ps-divider-arrow {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    margin: 1rem 0;
}

/* Mobile */
@media (max-width: 768px) {
    .ps-wrapper {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .ps-divider {
        flex-direction: row;
        padding: 1.5rem 0;
    }

    .ps-divider-line {
        width: auto;
        height: 1px;
        flex: 1;
        background: linear-gradient(to right, transparent, rgba(255,255,255,0.12), transparent);
    }

    .ps-divider-arrow {
        margin: 0 1rem;
        transform: rotate(90deg);
    }
}

/* Lists & Section Headers */
.feature-list {
    list-style: none;
    margin-top: 2rem;
}

.feature-list li {
    margin-bottom: 1.2rem;
    position: relative;
    padding-left: 2rem;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: "—";
    position: absolute;
    left: 0;
    color: var(--text-primary);
    font-weight: 300;
}

.feature-list strong {
    color: var(--text-primary);
    font-weight: 500;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem auto;
}

/* Base Antigravity Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-border-light);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Grids */
.services-grid,
.industry-grid,
.pricing-grid,
.comparison-grid {
    display: grid;
    gap: 2.5rem;
}

.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.industry-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    align-items: stretch;
    gap: 1.5rem;
}

.comparison-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    align-items: stretch;
}

/* Apply Glass Card explicitly */
.service-card,
.ind-card,
.pricing-card,
.comp-card,
.about-card,
.stat-box {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-border-light);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    /* initial state for GSAP */
    opacity: 0;
    transform: translateY(30px);
}

.pricing-card {
    padding: 1.8rem;
}

.service-card:hover,
.ind-card:hover,
.stat-box:hover,
.comp-card:hover,
.about-card:hover,
.pricing-card:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.pricing-card.featured,
.comp-card.featured {
    border-color: rgba(255, 255, 255, 0.2);
    /* GSAP will animate scale to 1, we let it hover bigger */
    background: rgba(255, 255, 255, 0.06);
}

.pricing-card.featured:hover,
.comp-card.featured:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Methodology Section */
.methodology-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    position: relative;
}

@media (min-width: 768px) {
    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .methodology-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    @keyframes flowGradient {
        0% {
            background-position: -200% center;
        }

        100% {
            background-position: 200% center;
        }
    }

    /* Timeline base line */
    .methodology-grid::before {
        content: "";
        position: absolute;
        top: -1.5rem;
        left: 3rem;
        right: 3rem;
        height: 2px;
        background: rgba(255, 255, 255, 0.05);
        /* Sfondo grigio tenue */
        z-index: 10;
    }

    /* Animated flowing pulse */
    .methodology-grid::after {
        content: "";
        position: absolute;
        top: -1.5rem;
        left: 3rem;
        right: 3rem;
        height: 2px;
        background: linear-gradient(90deg, transparent 0%, var(--accent, #4ade80) 50%, transparent 100%);
        background-size: 50% 100%;
        background-repeat: no-repeat;
        z-index: 11;
        opacity: 0.8;
        animation: flowGradient 3s linear infinite;
        pointer-events: none;
    }
}

.meth-step {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-border-light);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
}

.meth-step:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

.meth-step-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.25);
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
    pointer-events: none;
}

.meth-step h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    z-index: 2;
}

.meth-duration {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent, #4ade80);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.meth-step p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
    z-index: 2;
}

.bestseller-badge {
    position: absolute;
    top: -14px;
    right: 20px;
    background: var(--text-primary);
    color: var(--bg-main);
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.coming-soon-badge {
    position: absolute;
    top: -14px;
    right: 20px;
    background: linear-gradient(135deg, #4ade80, #22d3ee);
    color: #0a2540;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(74, 222, 128, 0.3);
    white-space: nowrap;
}

/* Icons & Specifics */
.service-icon {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    line-height: 1;
}

.comp-header,
.pricing-header h3 {
    font-size: 1.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.comp-header.accent {
    color: var(--text-primary);
}

.pricing-price {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.75rem;
}

.pricing-price span {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-secondary);
}

.pricing-card.featured .pricing-price {
    color: #4ade80;
}

.pricing-cta {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
    text-decoration: none;
}

.pricing-setup {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: -0.25rem;
    margin-bottom: 0.5rem;
}

.pricing-setup span {
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.7;
}

.pricing-meta {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    padding: 0.75rem 0;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid var(--glass-border);
}

.pricing-includes {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent, #4ade80);
    margin-bottom: 0.25rem;
}

.comp-list,
.pricing-features {
    list-style: none;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comp-list li,
.pricing-features li {
    padding-left: 2rem;
    position: relative;
    color: var(--text-secondary);
    font-size: 1rem;
}

.comp-list li.negative::before {
    content: "✕";
    position: absolute;
    left: 0;
    color: #666;
    font-weight: bold;
}

.comp-list li.positive {
    color: var(--text-primary);
}

.comp-list li.positive::before,
.pricing-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--text-primary);
    font-weight: bold;
}

/* Stats Results */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    text-align: center;
}

.stat-number {
    font-size: 5rem;
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 1rem;
    font-family: var(--font-display);
    letter-spacing: -3px;
    text-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.stat-label {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Forms & Contact Layout */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.calendly-wrapper {
    position: relative;
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-border-light);
    border-radius: 12px;
    overflow: hidden;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
}

.calendly-badge {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--text-secondary);
}

.form-container {
    max-width: 100%;
    margin: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 3rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    border-top: 1px solid var(--glass-border-light);
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-sans);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

@media (max-width: 900px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .calendly-inline-widget {
        height: 580px !important;
    }
}

/* Footer */
.footer {
    padding: 4rem 0 2rem 0;
    border-top: 1px solid var(--glass-border);
    margin-top: 4rem;
    text-align: center;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.footer-links p {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

/* GSAP Handles standard reveals so we reset initial opacity */

/* Media Queries */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(6, 6, 6, 0.95);
        backdrop-filter: blur(20px);
        padding: 2rem 0;
        border-bottom: 1px solid var(--glass-border);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-actions {
        margin-left: auto;
        margin-right: 0.5rem;
    }

    .nav-aura-btn span {
        display: none;
    }

    .nav-aura-btn {
        padding: 0.4rem;
        border-radius: 6px;
    }

    .grid-2 {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    h1 {
        font-size: 2.5rem;
    }

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

    .pricing-card.featured,
    .comp-card.featured {
        transform: scale(1);
    }

    .stat-number {
        font-size: 4rem;
    }
}

/* ── Team / Chi Siamo ─────────────────────────────────────── */
.team-group-header {
    margin-bottom: 2rem;
}

.team-group-label {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
    border-left: 2px solid rgba(255,255,255,0.2);
    padding-left: 1rem;
}

/* ─── Chi Siamo Details ─────────────────────────────────────── */
.chi-siamo-details {
    max-width: 960px;
    margin: 3rem auto 3.5rem;
    opacity: 0;
    transform: translateY(30px);
}

.chi-siamo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.chi-siamo-item {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    padding: 2rem;
    transition: var(--transition);
}

.chi-siamo-item:hover {
    background: var(--glass-bg-hover);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.chi-siamo-item h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.chi-siamo-item p {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
    font-size: 0.95rem;
}

.chi-siamo-item p + p {
    margin-top: 1rem;
}

.chi-siamo-legal {
    font-size: 0.82rem !important;
    opacity: 0.7;
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
    margin-top: 1.25rem !important;
}

@media (max-width: 768px) {
    .chi-siamo-grid {
        grid-template-columns: 1fr;
    }
}

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

.founders-grid {
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

.team-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.2rem;
    transition: var(--transition);
}

.team-card:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-8px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.team-photo-wrap {
    position: relative;
    width: 110px;
    height: 110px;
    flex-shrink: 0;
}

.team-photo {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--glass-border-light);
    display: block;
}

.team-photo-placeholder {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
    border: 2px solid var(--glass-border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(255,255,255,0.5);
    letter-spacing: 1px;
}

/* Show placeholder only when img fails or has no src */
.team-photo[src=""],
.team-photo:not([src]) {
    display: none;
}

.team-photo[src=""] + .team-photo-placeholder,
.team-photo:not([src]) + .team-photo-placeholder {
    position: relative;
    inset: unset;
}

.team-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.team-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0;
}

.team-role-badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255,255,255,0.55);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 0.3rem 0.85rem;
}

.team-bio {
    font-size: 0.9rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.btn-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(10, 102, 194, 0.15);
    border: 1px solid rgba(10, 102, 194, 0.4);
    color: #70a9e0;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.5rem 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    margin-top: 0.25rem;
}

.btn-linkedin:hover {
    background: rgba(10, 102, 194, 0.3);
    border-color: rgba(10, 102, 194, 0.7);
    color: #a8cef0;
}

@media (max-width: 768px) {
    .founders-grid {
        max-width: 100%;
        grid-template-columns: 1fr;
    }
}

/* ── Form message & CAPTCHA ── */
.form-message {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.form-message.success {
    background: rgba(74, 222, 128, 0.1);
    border: 1px solid rgba(74, 222, 128, 0.3);
    color: #4ade80;
}

.form-message.error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

.captcha-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.captcha-group #captcha-question,
.captcha-group .captcha-question {
    font-weight: bold;
    color: var(--accent, #4ade80);
}