/* ============================================
   SIMPLE & COMPELLING HOME PAGE
   ============================================ */

.home-page {
    overflow-x: hidden;
}

/* Hero Section - Simple & Powerful */
.hero-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    padding: 6rem 0 4rem;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
                radial-gradient(circle, rgba(76, 192, 246, 0.15) 0%, transparent 50%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 107, 53, 0.2);
    border: 1px solid rgba(255, 107, 53, 0.4);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.hero-title .highlight {
    background: linear-gradient(135deg, #ff6b35, #4cc0f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    line-height: 1.7;
    color: rgba(203, 213, 225, 0.9);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
}

.hero-btn {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #ff6b35, #ff7f4f);
    color: #fff;
    border: none;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.5);
    color: #fff;
}

.hero-btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.hero-btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: #fff;
}

/* Quick Benefits - Simple Grid */
.quick-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.quick-benefit {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.quick-benefit:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 107, 53, 0.4);
    background: rgba(255, 255, 255, 0.08);
}

.quick-benefit-icon {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 0.75rem;
}

.quick-benefit-text {
    color: rgba(203, 213, 225, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
}

/* Video Section - Simple */
.video-section {
    background: linear-gradient(180deg, rgba(11, 18, 34, 1) 0%, rgba(15, 23, 42, 0.95) 100%);
    padding: 5rem 0;
    position: relative;
}

.video-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 107, 53, 0.1), transparent 60%);
    pointer-events: none;
}

.video-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.video-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.video-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(203, 213, 225, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.video-wrapper-premium {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (min-width: 1200px) {
    .video-wrapper-premium {
        max-width: 850px;
    }
}

.video-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: #000;
    box-shadow: 
        0 0 0 1px rgba(255, 107, 53, 0.3),
        0 0 40px rgba(255, 107, 53, 0.2),
        0 0 80px rgba(76, 192, 246, 0.15),
        0 20px 100px rgba(0, 0, 0, 0.6);
    transition: all 0.5s ease;
    padding: 8px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(76, 192, 246, 0.2));
}

.video-frame:hover {
    transform: scale(1.02);
    box-shadow: 
        0 0 0 2px rgba(255, 107, 53, 0.5),
        0 0 60px rgba(255, 107, 53, 0.3),
        0 0 120px rgba(76, 192, 246, 0.2),
        0 30px 120px rgba(0, 0, 0, 0.7);
}

.video-frame-inner {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.video-frame-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, transparent 50%, rgba(76, 192, 246, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-frame:hover .video-frame-inner::before {
    opacity: 1;
}

.video-wrapper-premium video {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    border-radius: 16px;
}

/* How-to Section - Simple */
.howto-section {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(11, 18, 34, 1) 100%);
    padding: 5rem 0;
    position: relative;
}

.howto-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(76, 192, 246, 0.08), transparent 40%),
                radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.08), transparent 40%);
    pointer-events: none;
}

.howto-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.howto-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.howto-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(203, 213, 225, 0.8);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.howto-carousel-wrapper {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

@media (min-width: 1200px) {
    .howto-carousel-wrapper {
        max-width: 850px;
    }
}

.howto-carousel {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    background: #000;
    box-shadow: 
        0 0 0 1px rgba(255, 107, 53, 0.3),
        0 0 40px rgba(255, 107, 53, 0.2),
        0 0 80px rgba(76, 192, 246, 0.15),
        0 20px 100px rgba(0, 0, 0, 0.6);
    transition: all 0.5s ease;
    padding: 8px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.2), rgba(76, 192, 246, 0.2));
}

.howto-carousel:hover {
    transform: scale(1.01);
    box-shadow: 
        0 0 0 2px rgba(255, 107, 53, 0.5),
        0 0 60px rgba(255, 107, 53, 0.3),
        0 0 120px rgba(76, 192, 246, 0.2),
        0 30px 120px rgba(0, 0, 0, 0.7);
}

.carousel-inner {
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    position: relative;
}

.carousel-item {
    position: relative;
    transition: transform 0.8s ease-in-out;
}

.carousel-item.active {
    transition: transform 0.8s ease-in-out;
}

.howto-img {
    width: 100%;
    height: auto;
    min-height: 400px;
    object-fit: contain;
    display: block;
    transition: transform 0.8s ease-in-out, opacity 0.8s ease-in-out;
    background: #000;
}

@media (min-width: 768px) {
    .howto-img {
        min-height: 500px;
    }
}

@media (min-width: 1200px) {
    .howto-img {
        min-height: 550px;
    }
}

.carousel-item:not(.active) .howto-img {
    opacity: 0.7;
}

.carousel-item.active .howto-img {
    transform: scale(1);
    opacity: 1;
}

.howto-step-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.7) 100%);
    pointer-events: none;
    z-index: 2;
    border-radius: 16px;
}

.howto-step-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.95), rgba(76, 192, 246, 0.95));
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    padding: 0.75rem 1.5rem;
    z-index: 3;
    pointer-events: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.howto-step-number {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.howto-step-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.howto-step-description {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.95), rgba(11, 18, 34, 0.95));
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    z-index: 3;
    pointer-events: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.howto-step-text {
    color: rgba(203, 213, 225, 0.95);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.carousel-control-prev,
.carousel-control-next {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.9), rgba(76, 192, 246, 0.9));
    backdrop-filter: blur(10px);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
    transition: all 0.4s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.carousel-control-prev {
    left: 30px;
}

.carousel-control-next {
    right: 30px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1);
}

.carousel-indicators {
    margin-bottom: 2rem;
    gap: 0.5rem;
}

.carousel-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    transition: all 0.4s ease;
    opacity: 0.7;
}

.carousel-indicators button:hover {
    opacity: 1;
    transform: scale(1.2);
    background: rgba(255, 107, 53, 0.5);
}

.carousel-indicators button.active {
    background: linear-gradient(135deg, #ff6b35, #4cc0f6);
    border-color: #fff;
    width: 40px;
    border-radius: 7px;
    opacity: 1;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

/* CTA Section - Compelling */
.cta-section {
    background: linear-gradient(135deg, #ff6b35 0%, #ff7f4f 50%, #4cc0f6 100%);
    border-radius: 24px;
    padding: 4rem 2rem;
    margin: 4rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.4);
    text-align: center;
}

.cta-section::before {
    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 15s linear infinite;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cta-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.cta-btn {
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 800;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-btn-primary {
    background: #fff;
    color: #ff6b35;
    border: none;
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
    color: #ff6b35;
    background: #f8f9fa;
}

.cta-btn-outline {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.cta-btn-outline:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    color: #fff;
}

/* Trust Badges */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 600;
}

.trust-badge i {
    color: #2dd4bf;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 4rem 0 3rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-btn {
        width: 100%;
        justify-content: center;
    }
    
    .quick-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .video-section,
    .howto-section {
        padding: 3rem 0;
    }
    
    .cta-section {
        padding: 3rem 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-btn {
        width: 100%;
        justify-content: center;
    }
    
    .howto-step-badge {
        top: 15px;
        left: 15px;
        padding: 0.5rem 1rem;
    }
    
    .howto-step-number {
        font-size: 1.25rem;
    }
    
    .howto-step-label {
        font-size: 0.75rem;
    }
    
    .howto-step-description {
        bottom: 15px;
        left: 15px;
        right: 15px;
        padding: 0.75rem 1rem;
    }
    
    .howto-step-text {
        font-size: 0.85rem;
    }
    
    .carousel-control-prev,
    .carousel-control-next {
        width: 44px;
        height: 44px;
    }
    
    .carousel-control-prev {
        left: 15px;
    }
    
    .carousel-control-next {
        right: 15px;
    }
    
    .carousel-indicators {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 576px) {
    .hero-btn,
    .cta-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .howto-img {
        min-height: 300px;
    }
}

