@import '_content/Blazor.Bootstrap/Blazor.Bootstrap.7t9tbfaemk.bundle.scp.css';
@import 'ImagoTutum.Client.bundle.scp.css';

/* _content/ImagoTutum/Components/ImagoTutumMap.razor.rz.scp.css */
/*
  Questo CSS si applica solo al .card di questo componente.
  Niente selettori strani, niente complicazioni.
*/
.card[b-q4u7rv2y7z] {
    /* Mantiene le dimensioni originali che ti piacevano */
    width: 18rem;
    margin: 10px;

    /* BORDO E OMBRA PER EFFETTO 3D */
    border: none; /* Rimuoviamo il bordo per un look più pulito */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12); /* Ombra di base */

    /* TRANSIZIONE FLUIDA PER L'HOVER */
    transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}

.card:hover[b-q4u7rv2y7z] {
    /* EFFETTO 3D: solleva la card e aumenta l'ombra */
    transform: translateY(-5px);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.18);
}
/* _content/ImagoTutum/Components/Layout/MainLayout.razor.rz.scp.css */
#blazor-error-ui[b-t901bnpfbr] {
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-t901bnpfbr] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* _content/ImagoTutum/Components/Pages/ChoosePlan.razor.rz.scp.css */
/* === Pricing Page Buttons === */

.pricing-card[b-nrk4lkd97g] {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s ease-in-out;
}

.pricing-card:hover[b-nrk4lkd97g] {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.pricing-card.featured[b-nrk4lkd97g] {
    border: 2px solid var(--secondary-blue);
}

.pricing-card.premium[b-nrk4lkd97g] {
    border: 2px solid var(--primary-blue);
}

.price-switch[b-nrk4lkd97g] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.toggle-button[b-nrk4lkd97g] {
    border: 1px solid var(--border-light);
    background-color: var(--white);
    color: var(--text-dark);
    border-radius: 8px;
    padding: 0.3rem 0.8rem;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.toggle-button.active[b-nrk4lkd97g] {
    background: var(--gradient);
    color: var(--white);
    border-color: var(--secondary-blue);
    font-weight: 600;
}

.toggle-button:hover[b-nrk4lkd97g] {
    background-color: var(--secondary-blue);
    color: var(--white);
}

/* === Payment Buttons === */

.payment-methods[b-nrk4lkd97g] {
    margin-top: 1rem;
}

.btn-outline[b-nrk4lkd97g] {
    flex: 1;
    border: 1px solid var(--border-light);
    background-color: var(--white);
    color: var(--text-dark);
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-outline i[b-nrk4lkd97g] {
    margin-right: 0.4rem;
    font-size: 1.1rem;
}

.btn-outline:hover[b-nrk4lkd97g] {
    border-color: var(--secondary-blue);
    color: var(--secondary-blue);
}

.btn-outline.active[b-nrk4lkd97g] {
    background: var(--gradient);
    color: var(--white);
    border-color: var(--secondary-blue);
    font-weight: 600;
}

/* === CTA Buttons (già usati) === */
.btn-primary[b-nrk4lkd97g] {
    width: 100%;
    background: var(--gradient);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 0.6rem;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn-primary:hover[b-nrk4lkd97g] {
    opacity: 0.9;
}

.features-list[b-nrk4lkd97g] {
    text-align: left;              /* allinea il testo a sinistra */
    list-style: none;              /* rimuove i punti elenco */
    padding: 0;
    margin: 1rem 0;
}

.features-list li[b-nrk4lkd97g] {
    display: flex;                 /* per tenere icona e testo sulla stessa riga */
    align-items: flex-start;
    gap: 0.5rem;                   /* spazio tra icona e testo */
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.features-list i[b-nrk4lkd97g] {
    color: var(--secondary-blue);
    margin-top: 0.2rem;            /* riallinea verticalmente l’icona con il testo */
}
/* _content/ImagoTutum/Components/Pages/Home.razor.rz.scp.css */
*[b-cja09r824h] {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root[b-cja09r824h] {
    --primary-blue: #1e3a8a;
    --secondary-blue: #3b82f6;
    --accent-blue: #60a5fa;
    --success-green: #059669;
    --content-bg: #f8fafc;
    --white: #ffffff;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --text-white: #f1f5f9;
    --border-light: #e2e8f0;
    --shadow: rgba(15, 23, 42, 0.08);
    --gradient: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
    --hero-gradient: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #60a5fa 100%);
}

body[b-cja09r824h] {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

@keyframes glow-b-cja09r824h {
    0%, 100% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); }
    50% { box-shadow: 0 0 40px rgba(59, 130, 246, 0.8), 0 0 60px rgba(96, 165, 250, 0.6); }
}

@keyframes slideInLeft-b-cja09r824h {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight-b-cja09r824h {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

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

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

@keyframes shimmer-b-cja09r824h {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

@keyframes expandContract-b-cja09r824h {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Header */
header[b-cja09r824h] {
    background: var(--white);
    padding: 6rem 2rem 2rem;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
    position: relative;
    z-index: 1;
}

header h1[b-cja09r824h] {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.etymology[b-cja09r824h] {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-style: italic;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.etymology strong[b-cja09r824h] {
    color: var(--text-dark);
    font-weight: 600;
}

.tagline[b-cja09r824h] {
    font-size: 1.375rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.word-cycler[b-cja09r824h] {
    display: inline-block;
    position: relative;
    vertical-align: bottom;
    min-width: 140px;
    height: 1.8em;
    text-align: left;
}

.word-cycler span[b-cja09r824h] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    animation: wordCycle-b-cja09r824h 8s infinite;
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    white-space: nowrap;
}

.word-cycler span:nth-child(1)[b-cja09r824h] { animation-delay: 0s; }
.word-cycler span:nth-child(2)[b-cja09r824h] { animation-delay: 2s; }
.word-cycler span:nth-child(3)[b-cja09r824h] { animation-delay: 4s; }
.word-cycler span:nth-child(4)[b-cja09r824h] { animation-delay: 6s; }

@keyframes wordCycle-b-cja09r824h {
    0%, 100% { opacity: 0; transform: translateY(10px); }
    5%, 20% { opacity: 1; transform: translateY(0); }
    25% { opacity: 0; transform: translateY(-10px); }
}

/* Navigation */
.nav[b-cja09r824h] {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav.scrolled[b-cja09r824h] {
    padding: 0.5rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav-container[b-cja09r824h] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo[b-cja09r824h] {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--text-dark);
}

.nav-logo-icon[b-cja09r824h] {
    width: 2.5rem;
    height: 2.5rem;
    background: var(--gradient);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    animation: pulse-b-cja09r824h 3s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.nav-logo-icon:hover[b-cja09r824h] {
    transform: rotate(360deg) scale(1.1);
    animation: none;
}

.nav-logo h1[b-cja09r824h] {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-cta[b-cja09r824h] {
    background: var(--gradient);
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.nav-cta:hover[b-cja09r824h] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

/* Hero Section */
.hero[b-cja09r824h] {
    background: var(--hero-gradient);
    color: var(--white);
    padding: 8rem 0 6rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero[b-cja09r824h]::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: rotate-b-cja09r824h 30s linear infinite;
    pointer-events: none;
}

.hero[b-cja09r824h]::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
            linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
            linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
    animation: float-b-cja09r824h 20s ease-in-out infinite;
}

.hero-container[b-cja09r824h] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-brand[b-cja09r824h] {
    margin-bottom: 3rem;
    animation: fadeInUp-b-cja09r824h 1s ease-out;
}

.hero-brand h1[b-cja09r824h] {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1;
    letter-spacing: -0.02em;
    background: linear-gradient(45deg, #fff, #e0f2fe, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer-b-cja09r824h 3s linear infinite;
}

.etymology[b-cja09r824h] {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    font-style: italic;
    animation: fadeInUp-b-cja09r824h 1s ease-out 0.2s both;
}

.etymology strong[b-cja09r824h] {
    color: var(--white);
    font-weight: 600;
}

.tagline[b-cja09r824h] {
    font-size: 1.5rem;
    color: var(--white);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    animation: fadeInUp-b-cja09r824h 1s ease-out 0.4s both;
}

.word-cycler[b-cja09r824h] {
    display: inline-block;
    position: relative;
    vertical-align: bottom;
    min-width: 140px;
    height: 1.8em;
    text-align: left;
}

.word-cycler span[b-cja09r824h] {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    animation: wordCycle-b-cja09r824h 8s infinite;
    color: #fbbf24;
    font-weight: 700;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

.word-cycler span:nth-child(1)[b-cja09r824h] { animation-delay: 0s; }
.word-cycler span:nth-child(2)[b-cja09r824h] { animation-delay: 2s; }
.word-cycler span:nth-child(3)[b-cja09r824h] { animation-delay: 4s; }
.word-cycler span:nth-child(4)[b-cja09r824h] { animation-delay: 6s; }

@keyframes wordCycle-b-cja09r824h {
    0%, 100% { opacity: 0; transform: translateY(10px); }
    5%, 20% { opacity: 1; transform: translateY(0); }
    25% { opacity: 0; transform: translateY(-10px); }
}

.hero h1.main-title[b-cja09r824h] {
    font-size: 5.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1;
    letter-spacing: -0.02em;
    background: linear-gradient(45deg, #fff, #e0f2fe, #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: fadeInUp-b-cja09r824h 1s ease-out 0.6s both, shimmer-b-cja09r824h 3s linear infinite 1s;
}

.hero .subtitle[b-cja09r824h] {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    animation: fadeInUp-b-cja09r824h 1s ease-out 0.9s both;
}

.hero .description[b-cja09r824h] {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.85;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp-b-cja09r824h 1s ease-out 1.1s both;
}

.hero-trust[b-cja09r824h] {
    margin-top: 2rem;
    font-size: 1rem;
    opacity: 0.8;
    animation: fadeInUp-b-cja09r824h 1s ease-out 1.5s both;
}

.hero-cta[b-cja09r824h] {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    color: var(--primary-blue);
    padding: 1.125rem 2.5rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: fadeInUp-b-cja09r824h 1s ease-out 1.3s both;
    position: relative;
    overflow: hidden;
}

@keyframes gentlePulse-b-cja09r824h {
    0%, 100% { box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }
    50% { box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25), 0 0 15px rgba(59, 130, 246, 0.2); }
}

.hero-cta.loaded[b-cja09r824h] {
    animation: gentlePulse-b-cja09r824h 3s ease-in-out infinite;
}

.hero-cta[b-cja09r824h]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.hero-cta:hover[b-cja09r824h]::before {
    width: 300px;
    height: 300px;
}

.hero-cta:hover[b-cja09r824h] {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(59, 130, 246, 0.4);
}

.hero-cta i[b-cja09r824h] {
    transition: transform 0.3s ease;
}

.hero-cta:hover i[b-cja09r824h] {
    transform: translateX(5px);
}

/* Problem Section */
.problem[b-cja09r824h] {
    padding: 6rem 0;
    background: var(--content-bg);
}

.container[b-cja09r824h] {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Particle Effect */
.particles[b-cja09r824h] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
}

.particle[b-cja09r824h] {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: particleFloat-b-cja09r824h 20s linear infinite;
}

@keyframes particleFloat-b-cja09r824h {
    0% {
        transform: translateY(100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(100px);
        opacity: 0;
    }
}

.section-header[b-cja09r824h] {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2[b-cja09r824h] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.section-header h2[b-cja09r824h]::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient);
    border-radius: 2px;
    animation: expandContract-b-cja09r824h 2s ease-in-out infinite;
}

.section-header p[b-cja09r824h] {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.problem-grid[b-cja09r824h] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.problem-card[b-cja09r824h] {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px var(--shadow);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.problem-card[b-cja09r824h]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s;
}

.problem-card:hover[b-cja09r824h]::before {
    left: 100%;
}

.problem-card:hover[b-cja09r824h] {
    border-color: var(--secondary-blue);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(30, 58, 138, 0.2), 0 0 20px rgba(59, 130, 246, 0.1);
}

.problem-icon[b-cja09r824h] {
    width: 4rem;
    height: 4rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    animation: float-b-cja09r824h 3s ease-in-out infinite;
}

.problem-card:hover .problem-icon[b-cja09r824h] {
    transform: rotateY(360deg) scale(1.1);
    animation: none;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.fake-examples[b-cja09r824h] {
    display: none; /* Removed for simplicity */
}

.fake-grid[b-cja09r824h] {
    display: none;
}

/* Solution Section */
.solution[b-cja09r824h] {
    padding: 5rem 0;
    background: var(--white);
}

.solution-content[b-cja09r824h] {
    max-width: 1200px;
    margin: 0 auto;
}

.solution-text h2[b-cja09r824h] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.solution-text p[b-cja09r824h] {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.solution-features[b-cja09r824h] {
    list-style: none;
}

.solution-features li[b-cja09r824h] {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
    text-align: left;
}

.solution-features i[b-cja09r824h] {
    color: var(--success-green);
    font-size: 1.25rem;
}

.solution-cta[b-cja09r824h] {
    display: inline-block;
    background: var(--gradient);
    color: var(--white);
    padding: 0.875rem 2rem;
    border-radius: 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 138, 0.3);
}

.solution-cta:hover[b-cja09r824h] {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.4);
}

/* Roadmap Section */
.roadmap[b-cja09r824h] {
    padding: 6rem 0;
    background: var(--content-bg);
}

.roadmap-timeline[b-cja09r824h] {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.roadmap-timeline[b-cja09r824h]::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--secondary-blue), var(--accent-blue));
    transform: translateX(-50%);
}

.roadmap-item[b-cja09r824h] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    align-items: start;
}

.roadmap-item:nth-child(even) .roadmap-content[b-cja09r824h] {
    grid-column: 1;
    text-align: right;
}

.roadmap-item:nth-child(even) .roadmap-empty[b-cja09r824h] {
    grid-column: 2;
}

.roadmap-item:nth-child(odd) .roadmap-empty[b-cja09r824h] {
    grid-column: 1;
}

.roadmap-item:nth-child(odd) .roadmap-content[b-cja09r824h] {
    grid-column: 2;
    text-align: left;
}

.roadmap-content[b-cja09r824h] {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 15px var(--shadow);
    border: 2px solid var(--border-light);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-top: 0.5rem;
}

.roadmap-content[b-cja09r824h]::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.5s ease;
}

.roadmap-content:hover[b-cja09r824h]::before {
    transform: scale(1);
}

.roadmap-content:hover[b-cja09r824h] {
    border-color: var(--secondary-blue);
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(30, 58, 138, 0.2), 0 0 25px rgba(59, 130, 246, 0.15);
}

.roadmap-badge[b-cja09r824h] {
    display: inline-block;
    padding: 0.375rem 1rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes badgePulse-b-cja09r824h {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
}

.roadmap-badge[b-cja09r824h] {
    animation: badgePulse-b-cja09r824h 3s ease-in-out infinite;
}

.roadmap-badge.live[b-cja09r824h] {
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #15803d;
}

.roadmap-badge.progress[b-cja09r824h] {
    background: linear-gradient(135deg, #dbeafe, #bfdbfe);
    color: #1e40af;
}

.roadmap-badge.planned[b-cja09r824h] {
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
    color: #6b21a8;
}

.roadmap-content h3[b-cja09r824h] {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.roadmap-quarter[b-cja09r824h] {
    font-size: 0.875rem;
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.roadmap-content p[b-cja09r824h] {
    color: var(--text-light);
    line-height: 1.6;
}

.roadmap-features[b-cja09r824h] {
    list-style: none;
    margin-top: 1rem;
}

.roadmap-features li[b-cja09r824h] {
    padding: 0.5rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.roadmap-item:nth-child(odd) .roadmap-features[b-cja09r824h] {
    flex-direction: row;
}

.roadmap-item:nth-child(even) .roadmap-features li[b-cja09r824h] {
    flex-direction: row-reverse;
}

.roadmap-features i[b-cja09r824h] {
    color: var(--success-green);
    font-size: 0.875rem;
}

.roadmap-dot[b-cja09r824h] {
    position: absolute;
    left: 50%;
    top: 1.5rem;
    width: 1.25rem;
    height: 1.25rem;
    background: var(--white);
    border: 3px solid var(--secondary-blue);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    transition: all 0.3s ease;
}

@keyframes subtleGlow-b-cja09r824h {
    0%, 100% { box-shadow: 0 0 10px rgba(59, 130, 246, 0.3); }
    50% { box-shadow: 0 0 20px rgba(59, 130, 246, 0.5); }
}

.roadmap-dot[b-cja09r824h] {
    animation: subtleGlow-b-cja09r824h 3s ease-in-out infinite;
}

.roadmap-item:hover .roadmap-dot[b-cja09r824h] {
    width: 1.75rem;
    height: 1.75rem;
}

.roadmap-dot.live[b-cja09r824h] {
    border-color: #15803d;
    background: #15803d;
    box-shadow: 0 0 0 4px rgba(21, 128, 61, 0.2);
}

@keyframes liveGlow-b-cja09r824h {
    0%, 100% {
        box-shadow: 0 0 0 4px rgba(21, 128, 61, 0.2), 0 0 15px rgba(21, 128, 61, 0.4);
    }
    50% {
        box-shadow: 0 0 0 6px rgba(21, 128, 61, 0.3), 0 0 25px rgba(21, 128, 61, 0.6);
    }
}

.roadmap-dot.live[b-cja09r824h] {
    animation: liveGlow-b-cja09r824h 2s ease-in-out infinite;
}

/* Use Cases Section */
.use-cases[b-cja09r824h] {
    padding: 6rem 0;
    background: var(--content-bg);
}

.use-cases-grid[b-cja09r824h] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.use-case[b-cja09r824h] {
    background: var(--white);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.use-case[b-cja09r824h]::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

.use-case:hover[b-cja09r824h]::after {
    transform: scaleX(1);
}

.use-case:hover[b-cja09r824h] {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(30, 58, 138, 0.2), 0 0 30px rgba(59, 130, 246, 0.1);
}

.use-case-icon[b-cja09r824h] {
    width: 4rem;
    height: 4rem;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.use-case:hover .use-case-icon[b-cja09r824h] {
    transform: rotateY(360deg) scale(1.15);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.5);
}

.use-case h3[b-cja09r824h] {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.use-case p[b-cja09r824h] {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.use-case-example[b-cja09r824h] {
    display: none; /* Simplified for cleaner look */
}

/* Screenshot Showcase */
.screenshot-showcase[b-cja09r824h] {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

.screenshot-device[b-cja09r824h] {
    position: relative;
    background: #1f2937;
    border-radius: 2.5rem;
    padding: 1rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    animation: float-b-cja09r824h 4s ease-in-out infinite;
}

.screenshot-device:hover[b-cja09r824h] {
    transform: scale(1.02) rotateY(2deg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4), 0 0 40px rgba(59, 130, 246, 0.3);
}

.screenshot-slide[b-cja09r824h] {
    background: var(--white);
    border-radius: 2rem;
    overflow: hidden;
    display: none;
}

.screenshot-slide.active[b-cja09r824h] {
    display: block;
}

.screenshot-header[b-cja09r824h] {
    background: var(--gradient);
    color: var(--white);
    padding: 1rem;
}

.status-bar[b-cja09r824h] {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.app-header[b-cja09r824h] {
    font-size: 1.125rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.screenshot-content[b-cja09r824h] {
    padding: 1rem;
    background: var(--content-bg);
}

.verified-capture[b-cja09r824h] {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
}

.capture-preview[b-cja09r824h] {
    position: relative;
    aspect-ratio: 16/9;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder[b-cja09r824h] {
    font-size: 3rem;
    color: rgba(255, 255, 255, 0.8);
}

.map-preview[b-cja09r824h] {
    position: absolute;
    bottom: 0.5rem;
    right: 0.5rem;
    width: 120px;
    height: 80px;
    background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
    border-radius: 0.5rem;
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
    position: relative;
}

.location-pin[b-cja09r824h] {
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--secondary-blue);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    border: 2px solid var(--white);
    animation: bounce-b-cja09r824h 2s ease-in-out infinite;
}

@keyframes bounce-b-cja09r824h {
    0%, 100% { transform: rotate(-45deg) translateY(0); }
    50% { transform: rotate(-45deg) translateY(-5px); }
}

.capture-meta[b-cja09r824h] {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1rem;
    border-top: 1px solid var(--border-light);
}

.meta-item[b-cja09r824h] {
    text-align: center;
}

.meta-item i[b-cja09r824h] {
    font-size: 1.5rem;
    color: var(--secondary-blue);
}

.date[b-cja09r824h] {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.875rem;
}

.time[b-cja09r824h] {
    font-size: 0.75rem;
    color: var(--text-light);
}

.screenshot-indicators[b-cja09r824h] {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
}

.indicator[b-cja09r824h] {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--border-light);
    transition: all 0.3s ease;
}

.indicator.active[b-cja09r824h] {
    background: var(--secondary-blue);
    width: 24px;
    border-radius: 4px;
}

/* See It In Action Section */
.action-demo[b-cja09r824h] {
    padding: 6rem 0;
    background: var(--white);
}

.demo-grid[b-cja09r824h] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.demo-item[b-cja09r824h] {
    text-align: center;
}

.demo-screenshot[b-cja09r824h] {
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.demo-screenshot:hover[b-cja09r824h] {
    transform: translateY(-10px);
}

/* Browser Mockup */
.browser-mockup[b-cja09r824h] {
    background: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.browser-bar[b-cja09r824h] {
    background: #e5e7eb;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.browser-dots[b-cja09r824h] {
    display: flex;
    gap: 0.5rem;
}

.browser-dots span[b-cja09r824h] {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #d1d5db;
}

.browser-dots span:nth-child(1)[b-cja09r824h] { background: #ef4444; }
.browser-dots span:nth-child(2)[b-cja09r824h] { background: #f59e0b; }
.browser-dots span:nth-child(3)[b-cja09r824h] { background: #10b981; }

.browser-url[b-cja09r824h] {
    flex: 1;
    background: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-light);
}

.browser-content[b-cja09r824h] {
    aspect-ratio: 16/10;
    background: var(--hero-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.desktop-view .hero-preview h1[b-cja09r824h] {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.desktop-view .hero-preview p[b-cja09r824h] {
    color: rgba(255, 255, 255, 0.9);
}

/* Phone Mockup */
.phone-mockup[b-cja09r824h] {
    width: 280px;
    margin: 0 auto;
    background: #1f2937;
    border-radius: 2.5rem;
    padding: 0.75rem;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
    position: relative;
}

.phone-notch[b-cja09r824h] {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 25px;
    background: #1f2937;
    border-radius: 0 0 1rem 1rem;
    z-index: 2;
}

.phone-content[b-cja09r824h] {
    background: var(--white);
    border-radius: 2rem;
    overflow: hidden;
    aspect-ratio: 9/19.5;
}

.status-bar-demo[b-cja09r824h] {
    background: var(--gradient);
    color: var(--white);
    padding: 2rem 1rem 0.75rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
}

.app-showcase[b-cja09r824h] {
    background: var(--content-bg);
    padding: 1rem;
    min-height: 300px;
}

.app-logo[b-cja09r824h] {
    text-align: center;
    font-size: 2rem;
    color: var(--secondary-blue);
    margin-bottom: 1rem;
}

.capture-list[b-cja09r824h] {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.capture-item[b-cja09r824h] {
    background: var(--white);
    padding: 0.75rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 2px 8px var(--shadow);
}

.capture-thumb[b-cja09r824h] {
    width: 50px;
    height: 50px;
    background: #000;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
}

.capture-info[b-cja09r824h] {
    flex: 1;
    font-size: 0.75rem;
}

.capture-date[b-cja09r824h] {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.capture-location[b-cja09r824h] {
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.capture-badge[b-cja09r824h] {
    color: var(--success-green);
    font-size: 1.25rem;
}

/* Map Mockup */
.map-mockup[b-cja09r824h] {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    border: 1px solid var(--border-light);
}

.map-view[b-cja09r824h] {
    aspect-ratio: 1;
    background: #f3f4f6;
    position: relative;
    overflow: hidden;
}

.map-grid[b-cja09r824h] {
    position: absolute;
    inset: 0;
    background-image:
            linear-gradient(rgba(0,0,0,0.03) 1px, transparent 1px),
            linear-gradient(90deg, rgba(0,0,0,0.03) 1px, transparent 1px);
    background-size: 30px 30px;
}

/* Map Streets */
.map-street-h[b-cja09r824h] {
    position: absolute;
    left: 0;
    right: 0;
    height: 20px;
    background: #d1d5db;
    border-top: 2px solid #9ca3af;
    border-bottom: 2px solid #9ca3af;
}

.map-street-h[b-cja09r824h]::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 2px;
    background: repeating-linear-gradient(
            90deg,
            #fff 0px,
            #fff 15px,
            transparent 15px,
            transparent 30px
    );
    transform: translateY(-50%);
}

.map-street-v[b-cja09r824h] {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 20px;
    background: #d1d5db;
    border-left: 2px solid #9ca3af;
    border-right: 2px solid #9ca3af;
}

.map-street-v[b-cja09r824h]::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: repeating-linear-gradient(
            180deg,
            #fff 0px,
            #fff 15px,
            transparent 15px,
            transparent 30px
    );
    transform: translateX(-50%);
}

/* Map Buildings */
.map-building[b-cja09r824h] {
    position: absolute;
    background: #e5e7eb;
    border: 2px solid #9ca3af;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.map-mockup:hover .map-building[b-cja09r824h] {
    background: #d1d5db;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.map-building:nth-child(even)[b-cja09r824h] {
    animation: buildingPulse-b-cja09r824h 4s ease-in-out infinite;
}

.map-building:nth-child(odd)[b-cja09r824h] {
    animation: buildingPulse-b-cja09r824h 4s ease-in-out infinite 2s;
}

@keyframes buildingPulse-b-cja09r824h {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.85; }
}

/* Map Park */
.map-park[b-cja09r824h] {
    position: absolute;
    background: linear-gradient(135deg, #d1fae5 0%, #a7f3d0 100%);
    border: 2px solid #6ee7b7;
    border-radius: 8px;
    opacity: 0.7;
}

.map-park[b-cja09r824h]::before {
    content: '🌳';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.5rem;
    opacity: 0.5;
}

.map-marker[b-cja09r824h] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -100%);
    font-size: 3rem;
    color: var(--secondary-blue);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
    animation: bounce-b-cja09r824h 2s ease-in-out infinite;
    z-index: 10;
}

.map-info[b-cja09r824h] {
    background: var(--white);
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    border-top: 1px solid var(--border-light);
}

.demo-caption h4[b-cja09r824h] {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.demo-caption p[b-cja09r824h] {
    color: var(--text-light);
    font-size: 0.9375rem;
}

/* Screenshots Section - Hidden */
.screenshots[b-cja09r824h] {
    display: none;
}

/* Trust Section */
.trust[b-cja09r824h] {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
}

.trust-grid[b-cja09r824h] {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.trust-item[b-cja09r824h] {
    text-align: center;
    padding: 2rem;
}

.trust-icon[b-cja09r824h] {
    width: 5rem;
    height: 5rem;
    background: var(--success-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.trust-item:hover .trust-icon[b-cja09r824h] {
    transform: scale(1.2) rotate(360deg);
    box-shadow: 0 15px 40px rgba(5, 150, 105, 0.4);
}

.trust-number[b-cja09r824h] {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--success-green);
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.trust-item:hover .trust-number[b-cja09r824h] {
    transform: scale(1.15);
    color: var(--secondary-blue);
}

/* CTA Section */
.cta[b-cja09r824h] {
    padding: 6rem 0;
    background: var(--gradient);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta[b-cja09r824h]::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float-b-cja09r824h 15s ease-in-out infinite;
}

.cta-badge[b-cja09r824h] {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    animation: pulse-b-cja09r824h 2s ease-in-out infinite;
}

.cta-badge i[b-cja09r824h] {
    color: #fbbf24;
}

.cta h2[b-cja09r824h] {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.cta p[b-cja09r824h] {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
}

.cta-features[b-cja09r824h] {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cta-feature[b-cja09r824h] {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.125rem;
}

.cta-feature i[b-cja09r824h] {
    color: #10b981;
    font-size: 1.25rem;
}

.cta-subtext[b-cja09r824h] {
    margin-top: 1.5rem;
    font-size: 0.9375rem;
    opacity: 0.8;
}

/* FAQ Section */
.faq[b-cja09r824h] {
    padding: 6rem 0;
    background: var(--content-bg);
}

.faq-grid[b-cja09r824h] {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item[b-cja09r824h] {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 15px var(--shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-item:hover[b-cja09r824h] {
    border-color: var(--secondary-blue);
    box-shadow: 0 8px 25px rgba(30, 58, 138, 0.15);
}

.faq-question[b-cja09r824h] {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    user-select: none;
    transition: all 0.3s ease;
}

.faq-question:hover[b-cja09r824h] {
    background: var(--content-bg);
}

.faq-question i:first-child[b-cja09r824h] {
    color: var(--secondary-blue);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.faq-question h3[b-cja09r824h] {
    flex: 1;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

.faq-toggle[b-cja09r824h] {
    color: var(--text-light);
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle[b-cja09r824h] {
    transform: rotate(180deg);
    color: var(--secondary-blue);
}

.faq-answer[b-cja09r824h] {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer[b-cja09r824h] {
    max-height: 300px;
}

.faq-answer p[b-cja09r824h] {
    padding: 0 2rem 1.5rem 5rem;
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.cta-button[b-cja09r824h] {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    color: var(--primary-blue);
    padding: 1.5rem 4rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.cta-button[b-cja09r824h]::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover[b-cja09r824h]::before {
    width: 400px;
    height: 400px;
}

.cta-button:hover[b-cja09r824h] {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), 0 0 40px rgba(59, 130, 246, 0.5);
}

.cta-button i[b-cja09r824h] {
    transition: transform 0.3s ease;
}

.cta-button:hover i[b-cja09r824h] {
    transform: translateX(10px) scale(1.2);
}

/* Footer */
.footer[b-cja09r824h] {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 3rem 0;
    text-align: center;
}

.footer-logo[b-cja09r824h] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.footer-logo-icon[b-cja09r824h] {
    width: 3rem;
    height: 3rem;
    background: var(--gradient);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    header[b-cja09r824h] {
        padding: 5rem 1rem 1.5rem;
    }

    header h1[b-cja09r824h] {
        font-size: 1.875rem;
    }

    .etymology[b-cja09r824h] {
        font-size: 0.8125rem;
    }

    .tagline[b-cja09r824h] {
        font-size: 1.0625rem;
        line-height: 1.6;
    }

    .word-cycler[b-cja09r824h] {
        min-width: 100px;
        height: 1.6em;
    }

    .nav-container[b-cja09r824h] {
        padding: 0 1rem;
    }

    .nav-cta[b-cja09r824h] {
        padding: 0.5rem 1.5rem;
        font-size: 0.875rem;
    }

    .hero[b-cja09r824h] {
        padding: 6rem 0 4rem;
    }

    .hero h1.main-title[b-cja09r824h] {
        font-size: 3rem;
    }

    .hero .subtitle[b-cja09r824h] {
        font-size: 1.25rem;
    }

    .hero .description[b-cja09r824h] {
        font-size: 1.125rem;
    }

    .hero-cta[b-cja09r824h] {
        padding: 1rem 2rem;
        font-size: 1.125rem;
    }

    .container[b-cja09r824h] {
        padding: 0 1rem;
    }

    .section-header h2[b-cja09r824h] {
        font-size: 2rem;
    }

    .problem-grid[b-cja09r824h],
    .use-cases-grid[b-cja09r824h],
    .screenshots-grid[b-cja09r824h],
    .trust-grid[b-cja09r824h] {
        grid-template-columns: 1fr;
    }

    .cta h2[b-cja09r824h] {
        font-size: 2rem;
    }

    .cta-button[b-cja09r824h] {
        padding: 1.25rem 2.5rem;
        font-size: 1.25rem;
    }

    .roadmap-timeline[b-cja09r824h]::before {
        left: 1.5rem;
    }

    .roadmap-item[b-cja09r824h] {
        grid-template-columns: 1fr;
        padding-left: 3.5rem;
    }

    .roadmap-item:nth-child(even) .roadmap-content[b-cja09r824h],
    .roadmap-item:nth-child(odd) .roadmap-content[b-cja09r824h] {
        grid-column: 1;
        text-align: left;
    }

    .roadmap-empty[b-cja09r824h] {
        display: none;
    }

    .roadmap-dot[b-cja09r824h] {
        left: 1.5rem;
    }

    .roadmap-item:nth-child(even) .roadmap-features li[b-cja09r824h] {
        flex-direction: row;
    }
}
