/* --- HERO STYLES --- */
html,
body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

/* Label brand sotto headline */
.hero-brand {
    font-size: 11px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(194, 209, 15, 0.7);
    margin-bottom: 24px;
    font-weight: 400;
}

.hero-title {
    font-family: 'Syne', sans-serif !important;
    font-size: clamp(52px, 9vw, 120px) !important;
    font-weight: 800 !important;
    line-height: 0.92 !important;
    letter-spacing: -0.03em !important;
    text-transform: uppercase !important;
    color: #ffffff !important;
    margin-bottom: 32px;
    text-align: center;
    text-shadow:
        0 0 30px rgba(0, 0, 0, 0.9),
        0 0 60px rgba(0, 0, 0, 0.6);
}

/* Headline spans */
.hero-title .line-full {
    display: block;
    color: #ffffff;
}

.hero-title .line-accent {
    color: transparent !important;
    -webkit-text-stroke: 1px rgba(194, 209, 15, 0.6) !important;
    display: block !important;
    font-family: 'Syne', sans-serif !important;
    font-weight: 800 !important;
}

/* --- NEW SECTIONS STYLES (Phase 11) --- */


/* Numbers Section */
.numbers-section {
    position: relative;
    z-index: 10;
}

.number-item .count {
    font-family: var(--font-display);
    font-size: clamp(48px, 6vw, 80px);
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.number-item .label {
    font-size: 13px;
    letter-spacing: 0.1em;
    color: var(--text-primary);
    text-transform: uppercase;
}

.numbers-note {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 40px;
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-divider {
    position: absolute;
    left: 58%;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--accent);
    opacity: 0.3;
}

@media (max-width: 900px) {
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .problem-divider {
        display: none;
    }
}

.problem-title {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 700;
}

/* Process Section (Vertical Timeline) */
.process-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline-line {
    position: absolute;
    left: 28px;
    /* Align with number center approx */
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--accent);
    opacity: 0.3;
    z-index: 0;
}

.process-step {
    display: flex;
    gap: 40px;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    font-family: var(--font-display);
    font-size: 64px;
    color: var(--accent);
    font-weight: 700;
    line-height: 1;
    min-width: 60px;
    text-align: center;
    background: var(--bg-secondary);
    /* Cover line behind */
    padding: 10px 0;
    border-radius: 8px;
    /* Slight radius to bg */
}

.step-content {
    padding-top: 12px;
}

.step-title {
    font-family: var(--font-display);
    font-size: 24px;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

/* FAQ Section (Accordion) */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 16px;
    cursor: pointer;
}

.faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    transition: color 0.3s;
}

.faq-header:hover {
    color: var(--accent);
}

.faq-question {
    font-family: var(--font-display);
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    width: 24px;
    text-align: center;
    line-height: 1;
    transition: transform 0.3s ease;
}

.faq-body {
    height: 0;
    overflow: hidden;
    transition: height 0.4s ease;
}

.faq-content {
    padding-bottom: 32px;
    color: var(--text-muted);
    line-height: 1.6;
    border-left: 3px solid var(--accent);
    padding-left: 20px;
    margin-left: 4px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-item.active .faq-header {
    color: var(--accent);
}

.faq-item.active .faq-body {
    height: auto;
    /* Fallback if JS height anim fails */
}

/* Updates to Footer Teaser */
.footer-teaser h2 {
    font-size: clamp(40px, 6vw, 90px);
}

/* Hero readability improvements */
.hero-sub {
    color: rgba(255, 255, 255, 0.75);
}

/* --- HERO MOBILE FIX DEFINITIVO --- */
@media screen and (max-width: 768px) {

    h1.hero-title-desktop,
    .hero-title-desktop {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    h1.hero-title-mobile,
    .hero-title-mobile {
        display: block !important;
        visibility: visible !important;
        font-size: 8vw !important;
        line-height: 0.9 !important;
        letter-spacing: -0.02em !important;
        text-align: center !important;
        overflow: visible !important;
        max-width: 100% !important;
    }

    .hero-title-mobile .line-full,
    .hero-title-mobile .line-accent {
        display: block !important;
        white-space: nowrap !important;
    }
}