﻿/* ============================================
   GUIDA.CSS - TEMA DARK INVENI
   Stili specifici per la pagina Guida
   Basato su homepage.css per coerenza visiva
   ============================================ */

:root {
    /* BLU PETROLIO - stessi di crea-base */
    --blu-petrolio-scuro: #0a1a2a;
    --blu-petrolio-medio: #1a2a3a;
    --blu-petrolio-chiaro: #2a3a4a;
    --testo-chiaro: #e6e6e6;
    --testo-secondario: #b0b0b0;
    --bordo-scuro: #3e3e42;
    --accento-turchese: #4ec9b0;
    --accento-oro: #ffb300;
}

/* ============================================
   SFONDO GENERALE PAGINA
   ============================================ */
body {
    background: #0a1a2a !important;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: "Segoe UI", system-ui, sans-serif;
}

/* ============================================
   HERO SECTION GUIDA (come homepage)
   ============================================ */
.hero-guida {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6rem 2rem 4rem; 
    background-size: cover;
    position: relative;
    color: white;
    text-align: center;
    border-bottom: 2px solid #083333;
}

.hero-guida-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-guida-title {
    font-size: 2.8rem;
    color: var(--testo-chiaro);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

    .hero-guida-title i {
        color: var(--accento-turchese);
        margin-right: 0.5rem;
    }

.hero-guida-subtitle {
    font-size: 1.3rem;
    color: var(--testo-secondario);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-guida-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--testo-secondario);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

    .meta-item i {
        color: var(--accento-turchese);
    }

/* ============================================
   TABELLA DEI CONTENUTI (TOC)
   ============================================ */
.toc-section {
    padding: 3rem 2rem;
    background: var(--blu-petrolio-scuro);
}

.toc-card {
    background: rgba(26, 28, 30, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(78, 201, 176, 0.2);
    border-radius: 12px;
    padding: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.toc-title {
    font-size: 1.8rem;
    color: var(--testo-chiaro);
    margin-bottom: 2rem;
    text-align: center;
}

    .toc-title i {
        color: var(--accento-turchese);
        margin-right: 0.5rem;
    }

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
}

    .toc-item:hover {
        background: rgba(78, 201, 176, 0.1);
        border-color: var(--accento-turchese);
        transform: translateX(5px);
    }

.toc-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--blu-petrolio-medio) 0%, var(--blu-petrolio-chiaro) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accento-turchese);
}

    .toc-icon i {
        font-size: 1.5rem;
        color: var(--accento-turchese);
    }

.toc-text h4 {
    font-size: 1.1rem;
    color: var(--testo-chiaro);
    margin-bottom: 0.25rem;
    font-weight: 600;
}

.toc-text p {
    font-size: 0.85rem;
    color: var(--testo-secondario);
    margin: 0;
}

/* ============================================
   SEZIONI GUIDA
   ============================================ */
.guide-section {
    padding: 5rem 2rem;
}

.guide-section-alt {
    background: var(--blu-petrolio-medio);
}

.guide-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.guide-section-number {
    display: inline-block;
    font-size: 1rem;
    color: var(--accento-turchese);
    background: rgba(78, 201, 176, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    border: 1px solid rgba(78, 201, 176, 0.3);
    margin-bottom: 1rem;
}

.guide-section-title {
    font-size: 2.2rem;
    color: var(--testo-chiaro);
    margin-bottom: 1rem;
    font-weight: 700;
}

.guide-section-subtitle {
    font-size: 1.2rem;
    color: var(--testo-secondario);
}

.guide-content {
    max-width: 1000px;
    margin: 0 auto;
}

.guide-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--testo-secondario);
}

    .guide-text strong {
        color: var(--testo-chiaro);
    }

.guide-highlight {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(78, 201, 176, 0.1);
    border-left: 4px solid var(--accento-turchese);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

    .guide-highlight i {
        font-size: 2rem;
        color: var(--accento-turchese);
    }

    .guide-highlight p {
        margin: 0;
        font-size: 1.1rem;
        color: var(--testo-chiaro);
    }

.guide-steps {
    list-style-type: none;
    counter-reset: step-counter;
    margin: 2rem 0;
    padding: 0;
}

    .guide-steps li {
        counter-increment: step-counter;
        margin-bottom: 1rem;
        padding-left: 2.5rem;
        position: relative;
        color: var(--testo-secondario);
    }

        .guide-steps li::before {
            content: counter(step-counter);
            position: absolute;
            left: 0;
            top: 0;
            width: 1.8rem;
            height: 1.8rem;
            background: var(--accento-turchese);
            color: var(--blu-petrolio-scuro);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            font-size: 0.9rem;
        }

.guide-image-placeholder {
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(78, 201, 176, 0.3);
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    margin: 2rem 0;
}

    .guide-image-placeholder.small {
        padding: 1.5rem;
        max-width: 400px;
        margin: 1rem auto;
    }

    .guide-image-placeholder i {
        font-size: 3rem;
        color: var(--accento-turchese);
        margin-bottom: 1rem;
    }

    .guide-image-placeholder.small i {
        font-size: 2rem;
    }

    .guide-image-placeholder p {
        color: var(--testo-secondario);
        margin: 0;
        font-style: italic;
    }

/* ============================================
   METAFORA (Sezione 2)
   ============================================ */
.guide-metaphor {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.metaphor-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--blu-petrolio-medio) 0%, var(--blu-petrolio-chiaro) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--accento-turchese);
}

    .metaphor-icon i {
        font-size: 2.5rem;
        color: var(--accento-turchese);
    }

.metaphor-content h3 {
    font-size: 1.5rem;
    color: var(--testo-chiaro);
    margin-bottom: 2rem;
}

.metaphor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.metaphor-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
}

.metaphor-item-icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

    .metaphor-item-icon i {
        font-size: 1.5rem;
        color: white;
    }

.metaphor-item h4 {
    font-size: 1.1rem;
    color: var(--testo-chiaro);
    margin-bottom: 0.5rem;
}

.metaphor-item p {
    font-size: 0.95rem;
    color: var(--testo-secondario);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.example {
    font-style: italic;
    color: var(--accento-turchese);
    font-size: 0.9rem;
}

/* ============================================
   TECNOLOGIA (Sezione 3)
   ============================================ */
.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.tech-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

    .tech-card:hover {
        transform: translateY(-5px);
        border-color: var(--accento-turchese);
    }

.tech-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--blu-petrolio-medio) 0%, var(--blu-petrolio-chiaro) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
    border: 2px solid var(--accento-turchese);
}

    .tech-icon i {
        font-size: 1.8rem;
        color: var(--accento-turchese);
    }

.tech-card h4 {
    font-size: 1.1rem;
    color: var(--testo-chiaro);
    margin-bottom: 0.5rem;
}

.tech-card p {
    font-size: 0.9rem;
    color: var(--testo-secondario);
    line-height: 1.5;
    margin: 0;
}

.guide-note {
    display: flex;
    gap: 1rem;
    background: rgba(255, 179, 0, 0.1);
    border: 1px solid rgba(255, 179, 0, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

    .guide-note i {
        font-size: 1.5rem;
        color: var(--accento-oro);
    }

    .guide-note p {
        margin: 0;
        color: var(--testo-chiaro);
        line-height: 1.6;
    }

/* ============================================
   ZONE DI CACCIA (Sezione 4)
   ============================================ */
.zones-visual {
    margin: 2rem 0;
}

.zone-item {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.zone-tesoro .zone-icon {
    background: rgba(78, 201, 176, 0.2);
    border-color: var(--accento-turchese);
}

.zone-attenzione .zone-icon {
    background: rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
}

.zone-caccia .zone-icon {
    background: rgba(244, 67, 54, 0.2);
    border-color: #F44336;
}

.zone-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid;
}

    .zone-icon i {
        font-size: 1.5rem;
    }

.zone-tesoro .zone-icon i {
    color: var(--accento-turchese);
}

.zone-attenzione .zone-icon i {
    color: #4CAF50;
}

.zone-caccia .zone-icon i {
    color: #F44336;
}

.zone-content h4 {
    font-size: 1.1rem;
    color: var(--testo-chiaro);
    margin-bottom: 0.5rem;
}

.zone-content p {
    color: var(--testo-secondario);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.zone-content ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
    color: var(--testo-secondario);
}

.zone-content li {
    margin-bottom: 0.25rem;
}

.zone-arrow {
    text-align: center;
    margin: 0.5rem 0;
}

    .zone-arrow i {
        font-size: 1.5rem;
        color: var(--testo-secondario);
    }

.guide-tip {
    display: flex;
    gap: 1rem;
    background: rgba(78, 201, 176, 0.1);
    border: 1px solid rgba(78, 201, 176, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
}

    .guide-tip i {
        font-size: 1.5rem;
        color: var(--accento-turchese);
    }

    .guide-tip h4 {
        font-size: 1.1rem;
        color: var(--testo-chiaro);
        margin-bottom: 0.5rem;
    }

    .guide-tip p {
        margin: 0;
        color: var(--testo-secondario);
        line-height: 1.6;
    }

/* ============================================
   SEMPLICE VS AVANZATA (Sezione 5)
   ============================================ */
.comparison-table {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    margin: 2rem 0;
}

.comparison-header {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    background: rgba(78, 201, 176, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-empty {
    padding: 1rem;
}

.comparison-type {
    padding: 1.5rem;
}

    .comparison-type h4 {
        font-size: 1.1rem;
        color: var(--testo-chiaro);
        margin-bottom: 0.5rem;
    }

        .comparison-type h4 i {
            margin-right: 0.5rem;
        }

    .comparison-type p {
        font-size: 0.9rem;
        color: var(--testo-secondario);
        margin: 0;
    }

.comparison-row {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

    .comparison-row:last-child {
        border-bottom: none;
    }

.comparison-label {
    padding: 1.5rem;
    font-weight: 600;
    color: var(--testo-chiaro);
    background: rgba(255, 255, 255, 0.02);
}

.comparison-value {
    padding: 1.5rem;
    color: var(--testo-secondario);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

    .comparison-value i.success {
        color: #4CAF50;
        margin-right: 0.5rem;
    }

    .comparison-value i.muted {
        color: #666;
        margin-right: 0.5rem;
    }

.difficulty {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-right: 0.5rem;
}

    .difficulty.easy {
        background: rgba(76, 175, 80, 0.2);
        color: #4CAF50;
    }

    .difficulty.medium {
        background: rgba(255, 179, 0, 0.2);
        color: var(--accento-oro);
    }

.advice-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.advice-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
}

    .advice-card h4 {
        color: var(--testo-chiaro);
        margin-bottom: 1rem;
        font-size: 1.1rem;
    }

    .advice-card ul {
        margin: 0;
        padding-left: 1.5rem;
        color: var(--testo-secondario);
    }

    .advice-card li {
        margin-bottom: 0.5rem;
    }

/* ============================================
   CREARE UNA CACCIA (Sezione 6)
   ============================================ */
.creation-steps {
    margin: 2rem 0;
}

.creation-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--accento-turchese);
    color: var(--blu-petrolio-scuro);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-content h4 {
    color: var(--testo-chiaro);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.step-content p {
    color: var(--testo-secondario);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.step-content ul, .step-content ol {
    color: var(--testo-secondario);
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.step-content li {
    margin-bottom: 0.5rem;
}

.zone-config {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

.zone-config-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem;
    border-radius: 4px;
}

    .zone-config-item h5 {
        color: var(--testo-chiaro);
        margin-bottom: 0.5rem;
    }

.advanced-params {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1rem 0;
}

.param-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

    .param-item i {
        color: var(--accento-turchese);
    }

.guide-action {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(78, 201, 176, 0.1);
    border-radius: 8px;
}

    .guide-action h3 {
        color: var(--testo-chiaro);
        margin-bottom: 1rem;
    }

    .guide-action p {
        color: var(--testo-secondario);
        margin-bottom: 2rem;
    }

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* ============================================
   AUDIENCE (Sezione 7)
   ============================================ */
.audience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.audience-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

    .audience-card:hover {
        transform: translateY(-5px);
        border-color: var(--accento-turchese);
    }

.audience-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

    .audience-icon i {
        font-size: 1.8rem;
        color: white;
    }

.audience-card h4 {
    font-size: 1.2rem;
    color: var(--testo-chiaro);
    margin-bottom: 0.5rem;
}

.audience-card p {
    color: var(--testo-secondario);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.audience-example {
    font-size: 0.9rem;
    color: var(--accento-turchese);
    font-style: italic;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--blu-petrolio-scuro) 0%, #0f2a3a 100%);
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

    .faq-header h2 {
        font-size: 2.2rem;
        color: var(--testo-chiaro);
        margin-bottom: 0.5rem;
    }

        .faq-header h2 i {
            color: var(--accento-turchese);
            margin-right: 0.5rem;
        }

    .faq-header p {
        color: var(--testo-secondario);
        font-size: 1.1rem;
    }

.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 1rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: background 0.2s;
}

    .faq-question:hover {
        background: rgba(255, 255, 255, 0.1);
    }

    .faq-question h4 {
        color: var(--testo-chiaro);
        font-size: 1.1rem;
        margin: 0;
    }

    .faq-question i {
        color: var(--testo-secondario);
        transition: transform 0.3s;
    }

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--testo-secondario);
    line-height: 1.6;
}

    .faq-answer ul {
        margin: 0.5rem 0 0 0;
        padding-left: 1.5rem;
    }

    .faq-answer li {
        margin-bottom: 0.25rem;
    }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    padding: 5rem 2rem;
    background: var(--blu-petrolio-medio);
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: rgba(26, 28, 30, 0.6);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(78, 201, 176, 0.3);
    border-radius: 12px;
    padding: 3rem;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--blu-petrolio-medio) 0%, var(--blu-petrolio-chiaro) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem auto;
    border: 2px solid var(--accento-turchese);
}

    .cta-icon i {
        font-size: 2.5rem;
        color: var(--accento-turchese);
    }

.cta-card h2 {
    font-size: 2.2rem;
    color: var(--testo-chiaro);
    margin-bottom: 1.5rem;
}

.cta-card p {
    color: var(--testo-secondario);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.btn-xlarge {
    padding: 1.2rem 3rem !important;
    font-size: 1.3rem !important;
}

.cta-footnote {
    color: var(--testo-secondario);
    font-size: 0.9rem;
}

    .cta-footnote a {
        color: var(--accento-turchese);
        text-decoration: none;
    }

        .cta-footnote a:hover {
            text-decoration: underline;
        }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-guida-title {
        font-size: 2.5rem;
    }

    .guide-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-guida {
        min-height: 50vh;
        padding: 4rem 1rem;
    }

    .hero-guida-title {
        font-size: 2rem;
    }

    .hero-guida-subtitle {
        font-size: 1.1rem;
    }

    .hero-guida-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: center;
    }

    .meta-item {
        width: 100%;
        justify-content: center;
    }

    .toc-grid {
        grid-template-columns: 1fr;
    }

    .guide-section {
        padding: 3rem 1rem;
    }

    .guide-section-title {
        font-size: 1.8rem;
    }

    .metaphor-grid {
        grid-template-columns: 1fr;
    }

    .guide-metaphor {
        flex-direction: column;
        gap: 1rem;
    }

    .metaphor-icon {
        margin: 0 auto;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-type,
    .comparison-label,
    .comparison-value {
        border-left: none;
    }

    .advice-grid {
        grid-template-columns: 1fr;
    }

    .creation-step {
        flex-direction: column;
        gap: 1rem;
    }

    .step-number {
        margin: 0 auto;
    }

    .zone-config {
        grid-template-columns: 1fr;
    }

    .action-buttons {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .btn-xlarge {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-guida-title {
        font-size: 1.8rem;
    }

    .guide-section-title {
        font-size: 1.5rem;
    }

    .guide-highlight {
        flex-direction: column;
        text-align: center;
    }

    .technology-grid {
        grid-template-columns: 1fr;
    }

    .faq-question h4 {
        font-size: 1rem;
    }

    .cta-card {
        padding: 2rem 1rem;
    }

        .cta-card h2 {
            font-size: 1.8rem;
        }
}
