/* Homepage Specific Styles */

/* Hero Section */
.hero {
    background: #ffffff;
    padding: 80px 0;
    color: var(--text-primary);
}

/* Center section subtitles on homepage */
.home .section-subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.hero-title {
    text-align: left;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.rotating-text {
    display: inline-block;
    transition: opacity 0.3s ease;
    opacity: 1;
}

.hero-subtitle {
    margin-bottom: 40px;
    color: var(--text-secondary);
}

.hero-actions {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 24px;
}

.hero-note {
    display: flex;
    flex-direction: column;
    gap: 0;
    font-size: 14px;
}

.hero-note p {
    color: var(--text-secondary);
    font-size: inherit;
    margin: 0;
    text-align: left;
}

.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(91, 61, 245, 0.2);
}

.hero-video-container {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(91, 61, 245, 0.2);
    background: #000;
}

.hero-video {
    width: 100%;
    height: auto;
    display: block;
}

.video-mute-toggle {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.video-mute-toggle:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: white;
    transform: scale(1.1);
}

.video-mute-toggle svg {
    width: 24px;
    height: 24px;
}

.mute-icon .mute-line {
    stroke: #ff4444;
}

@media (max-width: 768px) {
    .video-mute-toggle {
        width: 40px;
        height: 40px;
        bottom: 12px;
        right: 12px;
    }
    
    .video-mute-toggle svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-title {
        text-align: left;
    }
    
    .hero-subtitle {
        text-align: left;
    }
    
    .hero-actions {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }
    
    .hero-note p {
        text-align: left;
    }
    
    .hero {
        padding: 60px 0;
    }
}

/* How It Works / Features Section */
.how-it-works-section {
    background: white;
}

.how-it-works-section .section-title {
    text-align: center;
}

.features-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-top: 48px;
}

.feature-box {
    background: transparent;
    border: none;
    padding: 0;
    text-align: left;
    transition: var(--transition);
}

.feature-box:hover {
    transform: translateY(-4px);
}

.feature-illustration {
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #000000;
}

.feature-box-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-box-title {
    margin-bottom: 16px;
    color: #000000;
}

.feature-box-description {
    color: #000000;
    text-align: left;
}

@media (max-width: 768px) {
    .features-cards-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Value Proposition Section */
.value-prop-section {
    background: white;
}

.value-prop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.value-prop-visual {
    position: relative;
}

.value-prop-image {
    width: 100%;
    height: auto;
    display: block;
}

.value-prop-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-prop-title {
    color: #000000;
    margin: 0;
}

.value-prop-text {
    color: #000000;
    margin: 0;
}

.value-props {
    display: flex;
    gap: 32px;
    margin-top: 16px;
}

.value-prop-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.value-prop-icon {
    width: 40px;
    height: 40px;
    background: #000000;
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.value-prop-item span {
    font-size: 14px;
    font-weight: 600;
    color: #000000;
}

@media (max-width: 768px) {
    .value-prop-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .value-props {
        flex-direction: column;
        gap: 20px;
    }
}
