/* =============================================
   home.css - Styles used ONLY on home.html
   ============================================= */

/* Hero Section */
.hero-new {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 107, 61, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(255, 107, 61, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content-left {
    padding: 20px;
}

.news-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 61, 0.1);
    border: 1px solid rgba(255, 107, 61, 0.3);
    padding: 8px 16px;
    border-radius: 50px;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #E7E8EA;
    animation: homeSlideDown 0.8s ease-out;
}

.news-badge span {
    background: #FF6B3D;
    color: white;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.75rem;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #A7AAB3;
    margin-bottom: 20px;
    font-weight: 500;
    animation: homeSlideDown 0.8s ease-out 0.1s both;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #ffffff 0%, #E7E8EA 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: homeSlideUp 0.8s ease-out 0.2s both;
}

.hero-title .accent {
    color: #FF6B3D;
    -webkit-text-fill-color: #FF6B3D;
}

.hero-description {
    font-size: 1.3rem;
    color: #A7AAB3;
    line-height: 1.7;
    margin-bottom: 40px;
    animation: homeSlideUp 0.8s ease-out 0.3s both;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    align-items: center;
    animation: homeSlideUp 0.8s ease-out 0.4s both;
}

.cta-primary {
    background: linear-gradient(135deg, #FF6B3D 0%, #ff8c5d 100%);
    color: white;
    padding: 18px 40px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 61, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 61, 0.4);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
    animation: homeSlideUp 0.8s ease-out 0.5s both;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #FF6B3D;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.95rem;
    color: #A7AAB3;
}

/* Hero Visual / Dashboard Preview */
.hero-visual {
    position: relative;
    animation: homeSlideRight 1s ease-out 0.3s both;
}

.mockup-container {
    position: relative;
    perspective: 1000px;
}

.dashboard-preview {
    background: #161A23;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 107, 61, 0.1);
    animation: homeFloat 6s ease-in-out infinite;
}

.preview-header {
    display: flex;
    gap: 8px;
    margin-bottom: 30px;
}

.preview-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #2A2F3C;
}

.preview-dot:first-child {
    background: #FF6B3D;
}

.preview-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.preview-card {
    background: #1C2130;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 107, 61, 0.1);
}

.preview-card-title {
    color: #FF6B3D;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.preview-metric {
    font-size: 2rem;
    font-weight: 800;
    color: #E7E8EA;
    margin-bottom: 8px;
}

.preview-label {
    color: #A7AAB3;
    font-size: 0.85rem;
}

.preview-bar {
    height: 8px;
    background: #2A2F3C;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 12px;
}

.preview-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #FF6B3D 0%, #ff8c5d 100%);
    border-radius: 4px;
    animation: homeFillBar 2s ease-out;
}

/* Trust Section */
.trust-section {
    padding: 80px 20px;
    text-align: center;
}

.trust-title {
    font-size: 1rem;
    color: #A7AAB3;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    font-size: 1.5rem;
    color: #4a5568;
    font-weight: 700;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.trust-item:hover {
    opacity: 1;
}

/* Disabled pricing button state */
.pricing-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Animations (home-specific) */
@keyframes homeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes homeSlideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes homeSlideRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes homeFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes homeFillBar {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}

/* Responsive - Home Page */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

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

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .cta-primary {
        width: 100%;
    }
}
