/* 🌙 COMPONENTI DARK MODE - DESIGN NUOVO */

/* ===== NAVIGATION SEMPLICE E PULITA ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 10px 0;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo-link {
    display: inline-block;
    text-decoration: none;
}

.logo {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.navbar.scrolled .logo {
    height: 70px;
}

/* Menu Button */
.menu-btn {
    display: none;
    /* Hidden by default for desktop */
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1002;
}

@media (min-width: 769px) {
    .menu-btn {
        display: none;
    }
}

.menu-icon {
    position: relative;
    width: 100%;
    height: 100%;
}

.menu-icon span {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 25px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.menu-icon span:nth-child(1) {
    top: 10px;
}

.menu-icon span:nth-child(2) {
    top: 19px;
}

.menu-icon span:nth-child(3) {
    top: 28px;
}

.menu-btn.active .menu-icon span:nth-child(1) {
    transform: translateX(-50%) rotate(45deg);
    top: 19px;
}

.menu-btn.active .menu-icon span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active .menu-icon span:nth-child(3) {
    transform: translateX(-50%) rotate(-45deg);
    top: 19px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-item {
    color: white;
    text-decoration: none;
    font-family: var(--font-display);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--fire-red);
    transition: width 0.3s ease;
}

.nav-item:hover {
    color: var(--fire-orange);
}

.nav-item:hover::after {
    width: 80%;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .menu-btn {
        display: block !important;
        position: relative !important;
        z-index: 1001 !important;
        visibility: visible !important;
        opacity: 1 !important;
        background: rgba(255, 68, 68, 0.8) !important;
        border: 3px solid white !important;
        border-radius: 8px !important;
        padding: 10px !important;
        width: 55px !important;
        height: 55px !important;
        box-shadow: 0 0 15px rgba(255, 68, 68, 0.8) !important;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: left 0.3s ease;
        z-index: 1000;
    }

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

    .nav-item {
        font-size: 1.2rem;
        opacity: 1;
        transform: translateY(0);
        color: white;
        text-decoration: none;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
        text-align: center;
        display: block;
        max-width: 300px;
        margin: 0 auto;
    }

    .nav-item:hover {
        color: var(--fire-red);
    }

}

/* ===== HERO SECTION ===== */
/* Force hero buttons to be visible */
.hero-cta .btn {
    opacity: 1 !important;
    transform: none !important;
    translate: none !important;
    rotate: none !important;
    scale: none !important;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    flex-direction: column;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent 0%, rgba(10, 10, 10, 0.8) 70%, var(--carbon-black) 100%);
    pointer-events: none;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: white;
    animation: bounce 2s infinite;
    z-index: 10;
    width: 100%;
    max-width: 300px;
}

.scroll-indicator span {
    font-family: var(--font-display);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    display: inline-block;
    margin-bottom: 10px;
    white-space: nowrap;
    width: 100%;
    text-align: center;
}

.scroll-arrow {
    opacity: 0.8;
    transition: opacity 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.scroll-indicator:hover .scroll-arrow {
    opacity: 1;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }

    40% {
        transform: translateX(-50%) translateY(-10px);
    }

    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 0 2rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== RESULTS CARDS ===== */
.result-card {
    background: rgba(30, 30, 30, 0.9);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.result-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    border-color: var(--fire-red);
}

.result-card img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.result-card-content {
    padding: 2rem;
    text-align: center;
}

.result-card h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: white;
    margin: 0 0 1rem 0;
}

.result-badge {
    background: var(--fire-red);
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    white-space: nowrap;
    display: inline-block;
    margin: 0 auto;
}

/* ===== STORY SECTION ===== */
.story-section {
    padding: 5rem 0;
    background: #111;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-image {
    border-radius: 15px;
    overflow: hidden;
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-text h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.story-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--fire-red);
    display: block;
}

.stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
}

/* ===== FAQ ACCORDION ===== */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border: 1px solid rgba(255, 68, 68, 0.2);
    transition: all 0.3s ease;
}

.accordion-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.1);
    border-color: rgba(255, 68, 68, 0.4);
}

.accordion-header {
    width: 100%;
    padding: 2.5rem;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header:hover {
    background: rgba(255, 68, 68, 0.05);
    padding-left: 2.5rem;
}

.accordion-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.accordion-icon {
    font-size: 2.5rem;
    transition: transform 0.3s ease;
    color: var(--fire-red);
    font-weight: 300;
}

.accordion-header[aria-expanded="true"] .accordion-icon {
    transform: rotate(45deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 2.5rem;
}

.accordion-content.show {
    max-height: 500px;
    padding: 0 2.5rem 2.5rem;
}

.accordion-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    font-size: 1.3rem;
    font-weight: 500;
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works-section {
    background: #0a0a0a;
    padding: 80px 0;
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.step-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 15px;
    padding: 50px 30px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--fire-gradient);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.step-card:hover::before {
    transform: translateX(0);
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--fire-red);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.2);
}

.step-card:hover .step-icon {
    transform: scale(1.15) rotate(5deg);
}

.step-icon {
    font-size: 3.5rem;
    margin-bottom: 25px;
    display: block;
    line-height: 1;
    transition: transform 0.3s ease;
}

.step-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.step-content p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ===== STORY PAGE ===== */
.story-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.story-chapter {
    margin-bottom: 80px;
    position: relative;
}

.chapter-number {
    position: absolute;
    left: -60px;
    top: 20px;
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--fire-red);
    opacity: 0.3;
    font-weight: 900;
    z-index: 1;
}

.chapter-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 68, 68, 0.2);
    position: relative;
    z-index: 2;
}

.chapter-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.chapter-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.chapter-text h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chapter-text h4 {
    font-size: 1.1rem;
    color: var(--fire-red);
    margin-bottom: 20px;
    font-weight: 600;
}

.chapter-text p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.quote {
    background: linear-gradient(135deg, rgba(255, 68, 68, 0.1) 0%, rgba(255, 68, 68, 0.05) 100%);
    border-left: 4px solid var(--fire-red);
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
    font-style: italic;
    font-size: 1.2rem;
    color: white;
    font-weight: 500;
}

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

.value-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid rgba(255, 68, 68, 0.2);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 68, 68, 0.4);
    box-shadow: 0 10px 30px rgba(255, 68, 68, 0.1);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.value-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
}

/* Mobile Responsive for Story Page */
@media (max-width: 768px) {
    .chapter-number {
        position: static;
        text-align: center;
        margin-bottom: 20px;
        font-size: 3rem;
    }

    .chapter-content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }

    .chapter-image img {
        height: 250px;
    }

    .chapter-text h3 {
        font-size: 1.5rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-card {
        padding: 30px 20px;
    }
}

/* Mobile Responsive - General */
@media (max-width: 768px) {

    /* Hero Section */
    .hero {
        min-height: 100vh;
        padding: 0 20px;
        background-position: center center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
    }

    .hero h1 {
        font-size: 2.5rem !important;
        line-height: 1.2;
        margin-top: 0 !important;
    }

    .hero-subtitle {
        font-size: 1.1rem !important;
        padding: 0 20px;
        line-height: 1.4;
    }

    .hero-content {
        margin-top: 0 !important;
        padding-top: 80px;
    }

    /* Navigation */
    .navbar {
        padding: 15px 0;
    }

    .logo {
        height: 80px;
    }

    .navbar.scrolled .logo {
        height: 60px;
    }

    /* FAQ */
    .accordion-header {
        padding: 1.5rem;
    }

    .accordion-title {
        font-size: 1.2rem;
    }

    .accordion-content {
        padding: 0 1.5rem;
    }

    .accordion-content.show {
        max-height: 600px;
        padding: 0 1.5rem 1.5rem;
    }

    .accordion-content p {
        font-size: 1.1rem;
    }

    /* Pricing */
    .pricing-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card {
        margin: 0 auto;
        max-width: 100%;
    }

    /* Steps */
    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-card {
        padding: 30px 20px;
    }

    .step-icon {
        font-size: 3rem;
        margin-bottom: 20px;
    }

    /* Footer */
    .footer-compact {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-contacts {
        gap: 10px;
    }

    .footer-social {
        justify-content: center;
    }

    /* Results Slider */
    .results-slider {
        padding: 0 20px;
        margin: 0 auto;
        width: 100%;
    }

    .result-card {
        margin: 0 auto;
        max-width: 400px;
        width: 100%;
    }

    .result-card img {
        height: 300px;
        object-fit: cover;
    }

    .result-card-content h3 {
        font-size: 1.2rem;
    }

    .result-card-content p {
        font-size: 0.9rem;
    }

    /* Text Sizes */
    .text-large {
        font-size: 1.1rem !important;
    }

    h2 {
        font-size: 2rem !important;
    }

    h3 {
        font-size: 1.3rem !important;
    }
}

/* iPad Portrait (769px-1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        padding: 0 40px;
        max-width: 900px;
    }

    .hero {
        padding: 0 40px;
        min-height: 100vh;
    }

    .hero h1 {
        font-size: 3rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.2rem;
        padding: 0 20px;
    }

    .result-card {
        max-width: 450px;
        margin: 0 auto;
    }

    .result-card img {
        height: 380px;
    }

    .accordion-header {
        padding: 2rem;
    }

    .accordion-title {
        font-size: 1.4rem;
    }

    .accordion-content {
        padding: 0 2rem;
    }

    .accordion-content p {
        font-size: 1.2rem;
    }

    .step-card {
        padding: 30px 25px;
    }

    .step-icon {
        font-size: 4rem;
    }

    .pricing-container {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
        max-width: 800px;
    }

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

/* iPad Landscape (1025px-1366px) */
@media (min-width: 1025px) and (max-width: 1366px) {
    .container {
        padding: 0 50px;
        max-width: 1100px;
    }

    .hero {
        padding: 0 50px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.3rem;
    }

    .result-card {
        max-width: 380px;
    }

    .result-card img {
        height: 320px;
    }

    .step-card {
        padding: 35px 30px;
    }

    .pricing-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
        max-width: 1000px;
    }
}

@media (max-width: 480px) {

    /* Extra Small Mobile */
    .container {
        padding: 0 15px;
        max-width: 100%;
    }

    .hero {
        padding: 0 15px;
        background-position: center center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;
        min-height: 100vh !important;
        height: 100vh !important;
    }

    .hero h1 {
        font-size: 2rem !important;
        line-height: 1.1;
        margin-top: 0 !important;
    }

    .hero-content {
        margin-top: 0 !important;
        padding-top: 60px;
    }

    .menu-btn {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        padding: 0 15px;
    }

    .result-card {
        max-width: 250px;
        margin: 0 auto;
        width: 100%;
    }

    .result-card img {
        height: 180px;
    }

    .accordion-header {
        padding: 1rem;
    }

    .accordion-content {
        padding: 0 1rem;
    }

    .accordion-content.show {
        padding: 0 1rem 1rem;
    }

    .accordion-title {
        font-size: 1.1rem;
    }

    .step-card {
        padding: 20px 15px;
    }

    .chapter-content {
        padding: 20px 15px;
    }

    .value-card {
        padding: 20px 15px;
    }
}

/* ===== FOOTER ===== */
.footer {
    background: #000;
    color: white;
    padding: 40px 0 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-logo {
    height: 50px;
    width: auto;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-email,
.footer-phone {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
    transition: color 0.3s ease;
}

.footer-email:hover,
.footer-phone:hover,
.footer-location:hover,
.footer-hours:hover {
    color: var(--fire-orange);
}

.footer-location,
.footer-hours {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    margin: 0;
    transition: color 0.3s ease;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--fire-red);
    transform: translateY(-3px);
}

.social-icon img {
    width: 20px;
    height: 20px;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

.footer-section h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--fire-red);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--fire-orange);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--fire-red);
    transform: translateY(-5px);
}

.social-link img {
    width: 24px;
    height: 24px;
}

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

/* ===== TIMELINE ===== */
.containerTimeline {
    display: flex;
    align-items: center;
    min-height: 60vh;
    padding: 3rem 0;
}

.rightTimeline {
    flex: 1;
    padding: 0 2rem;
}

.rightTimeline .svgSize {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

.timelineTitle_Top {
    font-family: var(--font-display);
    font-size: 2rem;
    color: white;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.textDescription {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: var(--fire-red);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--fire-orange);
    transform: translateY(-5px);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .steps-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .step-card {
        padding: 30px 20px;
    }

    .step-number {
        font-size: 2.5rem;
    }

    .footer-compact {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-info {
        flex-direction: column;
        gap: 15px;
    }

    .footer-social {
        justify-content: center;
    }
}