/* =========================================
   FCF ELETTRONICA — HOMEPAGE STYLES
   Mobile-First | Tech-Premium
   ========================================= */

/* =========================================
   1. HERO SECTION
   ========================================= */
.hero-section.modern-split-hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background:
        radial-gradient(600px 400px at 20% 30%, rgba(0, 200, 83, 0.35), transparent 60%),
        radial-gradient(500px 350px at 80% 15%, rgba(255, 145, 0, 0.25), transparent 65%),
        linear-gradient(145deg, #07080c 0%, #0d1117 50%, #111827 100%);
}

.hero-bottom-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--color-bg));
    z-index: 5;
    pointer-events: none;
}

/* Bokeh floating circles */
.bokeh-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 2;
}

.bokeh-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.25;
    filter: blur(8px);
    animation: floatBokeh 14s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

.bokeh-1 {
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.2);
    top: 20%;
    left: 5%;
}

.bokeh-2 {
    width: 160px;
    height: 160px;
    background: rgba(0, 200, 83, 0.3);
    bottom: 20%;
    right: 8%;
    animation-delay: -3s;
}

.bokeh-3 {
    width: 100px;
    height: 100px;
    background: rgba(255, 145, 0, 0.35);
    top: 50%;
    right: 25%;
    animation-delay: -6s;
}

@keyframes floatBokeh {
    0% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.1);
    }

    66% {
        transform: translate(-15px, 25px) scale(0.95);
    }

    100% {
        transform: translate(20px, -10px) scale(1.05);
    }
}

/* Pseudo-element glows */
.hero-section.modern-split-hero::before,
.hero-section.modern-split-hero::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    z-index: 1;
    pointer-events: none;
}

.hero-section.modern-split-hero::before {
    width: 300px;
    height: 300px;
    background: rgba(0, 200, 83, 0.5);
    top: -80px;
    right: 10%;
}

.hero-section.modern-split-hero::after {
    width: 350px;
    height: 350px;
    background: rgba(255, 145, 0, 0.4);
    bottom: -120px;
    left: 5%;
}

/* Hero Content - Mobile Stack */
.hero-content-wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 100px 20px 60px;
    z-index: 3;
    gap: 30px;
}

.hero-text-content {
    max-width: 100%;
    text-align: left;
    color: var(--color-text-light);
}

.hero-text-content h1 {
    color: #ffffff;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 8vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 16px;
    letter-spacing: -0.04em;
}

.hero-text-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: clamp(0.95rem, 2.5vw, 1.25rem);
    margin-bottom: 28px;
    line-height: 1.6;
    font-weight: 400;
}

/* Hero CTA */
.hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.hero-actions-left {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    width: 100%;
}

.btn-premium-cta,
.btn-secondary-cta {
    padding: 14px 28px;
    font-weight: 600;
    border-radius: var(--radius-pill);
    text-decoration: none;
    transition: var(--transition-base);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.02em;
    font-family: var(--font-display);
    flex: 1;
    min-width: 0;
    text-align: center;
}

.btn-premium-cta {
    background: linear-gradient(135deg, var(--color-primary), #28d87a);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.35);
}

.btn-premium-cta:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 28px rgba(0, 200, 83, 0.45);
}

.btn-secondary-cta {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.btn-secondary-cta:hover {
    transform: scale(1.03);
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
}

/* Social Links */
.hero-social-links {
    display: flex;
    gap: 12px;
    margin-top: 6px;
}

.hero-social-links .social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition-base);
}

.hero-social-links .social-link:hover {
    transform: scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.35);
}

/* Hero Image — hidden on small mobile, visible on larger */
.hero-image-container {
    display: none;
}

.hero-wavy-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    clip-path: url(#hero-premium-mask);
    z-index: 3;
    position: relative;
    animation: imageBreathing 16s ease-in-out infinite alternate;
    transform-origin: center;
}

.hero-image-backdrop {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.hero-image-backdrop::before,
.hero-image-backdrop::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    clip-path: url(#hero-premium-mask);
    filter: blur(80px);
    opacity: 0.5;
    animation: driftBokeh 18s ease-in-out infinite alternate;
}

.hero-image-backdrop::before {
    background: radial-gradient(circle at 60% 30%, rgba(0, 200, 83, 0.7) 0%, transparent 60%);
    top: -5%;
    left: -5%;
}

.hero-image-backdrop::after {
    background: radial-gradient(circle at 40% 80%, rgba(255, 145, 0, 0.6) 0%, transparent 55%);
    top: 5%;
    left: 5%;
    animation-delay: -7s;
}

@keyframes imageBreathing {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.02);
    }
}

@keyframes driftBokeh {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(10px, -8px);
    }
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.5rem;
    text-decoration: none;
    transition: color 0.3s ease;
    animation: heroIndicatorBounce 2.5s ease infinite;
}

.hero-scroll-indicator:hover {
    color: var(--color-accent);
}

@keyframes heroIndicatorBounce {

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

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

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

/* Hero animate helpers (Keyframes for page load) */
.hero-animate-left {
    opacity: 0;
    animation: heroEnterLeft 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-animate-right {
    opacity: 0;
    animation: heroEnterRight 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-animate-up {
    opacity: 0;
    animation: heroEnterUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes heroEnterLeft {
    from { opacity: 0; transform: translateX(-100vw); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes heroEnterRight {
    from { opacity: 0; transform: translateX(100vw); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes heroEnterUp {
    from { opacity: 0; transform: translateY(150px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Fallback to prevent overflow lag and preserve "entrata dal esterno" feel */
@media (max-width: 768px) {
    .hero-animate-left {
        animation: heroEnterLeftMobile 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .hero-animate-right {
        animation: heroEnterRightMobile 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
    .hero-animate-up {
        animation: heroEnterUpMobile 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
}

@keyframes heroEnterLeftMobile {
    from { opacity: 0; transform: translateX(-120vw); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes heroEnterRightMobile {
    from { opacity: 0; transform: translateX(120vw); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes heroEnterUpMobile {
    from { opacity: 0; transform: translateY(100px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-delay-1 {
    animation-delay: 0.2s;
}

.hero-delay-2 {
    animation-delay: 0.4s;
}

.hero-delay-3 {
    animation-delay: 0.6s;
}

.hero-delay-4 {
    animation-delay: 0.8s;
}

/* Desktop Hero */
@media (min-width: 768px) {
    .hero-content-wrapper {
        flex-direction: row;
        align-items: stretch;
        justify-content: space-between;
        padding: 0 0 0 clamp(30px, 6vw, 80px);
        gap: 40px;
    }

    .hero-text-content {
        flex: 1;
        max-width: 640px;
        padding-top: 120px;
    }

    .hero-image-container {
        display: flex;
        flex: 1;
        height: 100%;
        position: relative;
        align-items: stretch;
        justify-content: flex-end;
    }

    .btn-premium-cta,
    .btn-secondary-cta {
        flex: none;
        padding: 16px 36px;
        font-size: 1rem;
    }
}

/* =========================================
   2. ABOUT / BRAND SECTION
   ========================================= */
.hero-container-text {
    text-align: center;
    margin: 60px auto 40px;
    padding: 0 20px;
    max-width: 900px;
}

.brand-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 7vw, 3.8rem);
    font-weight: 800;
    margin: 0;
    color: var(--color-text-dark);
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.brand-subtitle {
    font-size: 1rem;
    color: var(--color-primary);
    font-weight: 700;
    margin-top: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.brand-year {
    color: var(--color-accent);
}

.brand-desc {
    margin: 20px auto 0;
    color: var(--color-text-gray);
    font-size: 1.05rem;
    line-height: 1.65;
}

@media (min-width: 768px) {
    .hero-container-text {
        margin: 100px auto 60px;
    }
}

/* About Split */
.about-section-split {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 20px;
}

.about-image-container {
    width: 100%;
    position: relative;
}

.about-split-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    display: block;
    transition: transform 0.5s var(--easing-out), box-shadow 0.5s var(--easing-out);
}

.about-split-image:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.about-text-content {
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .about-section-split {
        flex-direction: row;
        align-items: center;
        gap: clamp(40px, 8vw, 100px);
        margin: 140px auto;
        padding: 0 min(5vw, 60px);
    }

    .about-image-container {
        flex: 0 1 45%;
        max-width: 600px;
    }

    .about-split-image {
        height: 480px;
    }

    .about-text-content {
        flex: 0 1 50%;
    }
}

/* =========================================
   3. STATS / CARDS
   ========================================= */
.stats-container,
.categories-grid,
.products-grid-home {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 16px;
    overflow-x: hidden;
}

.stat-3d-card,
.category-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-lg);
    padding: 24px 18px;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-base);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    cursor: pointer;
    text-decoration: none;
    display: block;
    position: relative;
    overflow: hidden;
    will-change: transform, opacity;
}

.stat-3d-card:hover,
.category-card:hover {
    transform: scale(1.03) translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 200, 83, 0.12);
}

.stat-box.reveal-on-scroll:nth-child(odd) {
    transform: translateX(-40px) scale(0.96);
    opacity: 0;
}

.stat-box.reveal-on-scroll:nth-child(even) {
    transform: translateX(40px) scale(0.96);
    opacity: 0;
}

.stat-box.reveal-on-scroll.visible {
    transform: translate(0, 0) scale(1) !important;
    opacity: 1 !important;
}

.stat-content {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 3.5rem);
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 6px;
    line-height: 1;
    letter-spacing: -0.04em;
}

.stat-label,
.cat-title {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text-dark);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

@media (min-width: 768px) {

    .stats-container,
    .categories-grid,
    .products-grid-home {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
        padding: 0 20px;
        margin: 40px auto;
    }

    .stat-3d-card,
    .category-card {
        padding: 36px 28px;
    }

    .stat-label {
        font-size: 0.9rem;
    }
}

/* =========================================
   4. REVIEWS
   ========================================= */
.reviews-section {
    padding: 40px 0 20px;
    background: transparent;
}

.small-section-title {
    font-family: var(--font-display);
    font-size: clamp(1.5rem, 5vw, 2.6rem);
    font-weight: 800;
    color: var(--color-text-dark);
    text-align: center;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.reviews-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 10px 20px 20px;
    margin: 0 -20px;
    scrollbar-width: none;
}

.reviews-grid::after {
    content: '';
    flex: 0 0 1px;
}

.reviews-grid::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 88%;
    scroll-snap-align: center;
    padding: 24px 20px;
    box-sizing: border-box;
    max-width: 320px;
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    font-weight: bold;
    flex-shrink: 0;
}

.review-author {
    text-align: left;
}

.review-author h4 {
    margin: 0;
    font-size: 1rem;
    color: var(--color-text-dark);
}

.review-source {
    margin: 0;
    font-size: 0.8rem;
    color: var(--color-text-gray);
}

.review-stars {
    color: #FBBC04;
    font-size: 1.1rem;
    margin-bottom: 12px;
    text-align: left;
}

.review-text {
    color: var(--color-text-gray);
    line-height: 1.6;
    font-size: 0.9rem;
    font-style: italic;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.3s ease;
}

.review-text.expanded {
    -webkit-line-clamp: unset;
    line-clamp: unset;
}

.read-more-btn {
    background: none;
    border: none;
    color: var(--color-primary);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    margin-top: 5px;
    font-size: 0.85rem;
    text-decoration: underline;
    display: inline-block;
    align-self: flex-start;
}

.review-btn-container {
    text-align: center;
    margin-top: 30px;
}
.btn-review-google {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #ffffff;
    color: #333333;
    padding: 12px 28px;
    border-radius: var(--radius-pill);
    font-weight: bold;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: var(--transition-base);
    border: 1px solid rgba(0,0,0,0.05);
    font-size: 1rem;
}
.btn-review-google:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.btn-review-google i, .btn-review-google svg {
    color: #4285F4;
    font-size: 1.2rem;
    width: 20px;
    height: 20px;
}

.reviews-carousel-wrapper {
    position: relative;
    width: 100%;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    left: -10px;
    right: -10px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid var(--card-border);
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    color: var(--color-text-dark);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    box-shadow: var(--shadow-sm);
}

.carousel-btn:hover {
    background: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
    box-shadow: var(--shadow-green);
}

@media (min-width: 768px) {
    .reviews-grid {
        display: flex;
        gap: 24px;
        overflow-x: auto;
        padding: 10px 0 20px;
    }

    .review-card {
        flex: 0 0 calc(33.333% - 16px);
        max-width: 400px;
        padding: 28px 24px;
    }

    .carousel-controls {
        left: -40px;
        right: -40px;
    }

    .reviews-section {
        padding: 60px 0 20px;
    }

    .reviews-section .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
}

/* =========================================
   5. STUNNING TIMELINE
   ========================================= */
.stunning-timeline-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    overflow-x: hidden;
}

.stunning-timeline-wrapper {
    position: relative;
    max-width: 1000px;
    margin: 60px auto 30px;
}

/* Base Line */
.st-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-pill);
    z-index: 1;
}

.st-line-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, rgba(0,200,83,0) 0%, var(--color-primary) 70%, var(--color-accent) 100%);
    border-radius: var(--radius-pill);
    box-shadow: 0 0 15px rgba(0, 200, 83, 0.6);
    transition: height 0.1s linear;
    position: relative;
}

/* Glowing ball at tip */
.st-line-fill::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 14px;
    height: 14px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 15px 4px var(--color-accent), 0 0 25px 6px var(--color-primary);
    z-index: 5;
}

/* Item Wrapper */
.st-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.st-item:last-child {
    margin-bottom: 0;
}

/* Marker / Icon */
.st-marker {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%) scale(0.5);
    width: 42px;
    height: 42px;
    background: var(--color-bg);
    border: 2px solid var(--color-primary);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--color-primary);
    font-size: 1.1rem;
    z-index: 2;
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 0 15px rgba(0, 200, 83, 0.2);
}

/* Content Card */
.st-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    width: 100%;
    box-sizing: border-box;
    box-shadow: var(--shadow-sm);
    
    /* ENTRANCE STATE OFF */
    transform: translateX(40px);
    opacity: 0;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
                opacity 0.8s cubic-bezier(0.2, 0.8, 0.2, 1),
                border-color 0.4s ease,
                box-shadow 0.4s ease;
}

.st-card h3 {
    margin: 0 0 10px;
    font-size: 1.3rem;
    color: var(--color-text-dark);
    font-weight: 800;
}

.st-card p {
    margin: 0;
    color: var(--color-text-gray);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ACTIVE STATE (Triggered by JS) */
.st-item.is-visible .st-marker {
    transform: translateY(-50%) scale(1);
    opacity: 1;
    background: var(--color-primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(0, 200, 83, 0.6);
}

.st-item.is-visible .st-card {
    transform: translateX(0);
    opacity: 1;
    border-color: rgba(0, 200, 83, 0.3);
    box-shadow: var(--shadow-md), 0 15px 30px rgba(0, 200, 83, 0.08);
}

/* DESKTOP ALTERNATING TIMELINE */
@media (min-width: 768px) {
    .st-line {
        left: 50%;
        transform: translateX(-50%);
    }

    .st-item {
        width: 50%;
        padding-left: 0;
        margin-bottom: 30px;
    }

    .st-item:nth-child(odd) {
        left: 0;
        padding-right: 50px;
        justify-content: flex-end;
    }

    .st-item:nth-child(even) {
        left: 50%;
        padding-left: 50px;
    }

    .st-item:nth-child(odd) .st-marker {
        left: auto;
        right: -21px; /* Half of 42px width */
    }

    .st-item:nth-child(even) .st-marker {
        left: -21px;
    }

    .st-card {
        max-width: 90%;
    }

    /* Directional Entrance (Desktop) */
    .st-item:nth-child(odd) .st-card {
        transform: translateX(-80px);
    }
    
    .st-item:nth-child(even) .st-card {
        transform: translateX(80px);
    }

    .st-item.is-visible .st-card {
        transform: translateX(0);
    }

    /* Reverse text alignment for odd items */
    .st-item:nth-child(odd) .st-card {
        text-align: right;
    }
}

/* =========================================
   6. HELP SECTION
   ========================================= */
.help-section {
    padding: 60px 16px;
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    padding: 0 0 30px;
    text-align: center;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 5vw, 2.8rem);
    font-weight: 800;
    margin: 0;
    color: var(--color-text-dark);
    letter-spacing: -0.03em;
    line-height: 1.1;
}

/* Help incoming line */
.help-timeline-incoming-line {
    width: 3px;
    height: 50px;
    background: linear-gradient(180deg, var(--color-accent), var(--color-primary));
    margin: -30px auto 8px auto;
    border-radius: 3px;
    box-shadow: 0 0 10px rgba(0, 200, 83, 0.4);
    transform-origin: top;
    transform: scaleY(0);
    transition: transform 0.8s ease-out;
}

.help-section.visible .help-timeline-incoming-line {
    transform: scaleY(1);
}

/* Branch SVG connector */
.branch-connector {
    width: 100%;
    height: 60px;
    margin: 8px 0 16px;
    position: relative;
    z-index: 0;
}

.branch-svg {
    width: 100%;
    height: 100%;
    display: block;
    overflow: visible;
}

.branch-path {
    fill: none;
    stroke-width: 2.5px;
    vector-effect: non-scaling-stroke;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.branch-path.bg {
    stroke: var(--card-border);
}

[data-theme="dark"] .branch-path.bg {
    stroke: rgba(255, 255, 255, 0.08);
}

.branch-path.fill {
    stroke: var(--color-primary);
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    transition: stroke-dashoffset 1.2s var(--easing-out);
    filter: drop-shadow(0 0 6px rgba(0, 200, 83, 0.4));
}

.help-section.visible .branch-path.fill.left {
    stroke-dashoffset: 0;
    transition-delay: 0.3s;
}

.help-section.visible .branch-path.fill.center {
    stroke-dashoffset: 0;
    transition-delay: 0.5s;
}

.help-section.visible .branch-path.fill.right {
    stroke-dashoffset: 0;
    transition-delay: 0.7s;
}

/* Help Grid */
.help-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.help-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 16px;
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--color-text-dark);
    transition: var(--transition-base);
}

.help-card:hover {
    transform: translateY(-2px);
}

.help-icon-wrapper {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    transition: var(--transition-base);
}

.help-icon-wrapper.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.help-icon-wrapper.phone {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.help-icon-wrapper.email {
    background: rgba(255, 145, 0, 0.1);
    color: var(--color-accent);
}

.help-card:hover .help-icon-wrapper.whatsapp {
    background: #25D366;
    color: #fff;
}

.help-card:hover .help-icon-wrapper.phone {
    background: #3B82F6;
    color: #fff;
}

.help-card:hover .help-icon-wrapper.email {
    background: var(--color-accent);
    color: #fff;
}

.help-card-content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 2px;
}

.help-card-content p {
    font-size: 0.85rem;
    color: var(--color-text-gray);
    margin: 0;
}

.help-arrow {
    margin-left: auto;
    color: var(--color-text-gray);
    font-size: 0.85rem;
    transition: var(--transition-base);
}

.help-card:hover .help-arrow {
    color: var(--color-primary);
    transform: translateX(4px);
}

@media (min-width: 768px) {
    .help-section {
        padding: 100px 20px;
    }

    .section-header {
        padding: 0 0 40px;
    }

    .help-grid {
        flex-direction: row;
        gap: 20px;
    }

    .help-card {
        flex: 1;
    }

    .branch-connector {
        height: 80px;
    }
}

/* =========================================
   7. LINE GLOW UTILITY
   ========================================= */
.line-glow {
    width: 50px;
    height: 5px;
    background: var(--color-primary);
    margin: 16px auto 0;
    border-radius: var(--radius-pill);
    box-shadow: 0 3px 10px rgba(0, 200, 83, 0.35);
}