/* ==================== HERO ==================== */
.hero-section {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 50%, #0d4a7a 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(255,255,255,0.03)" d="M0,224L48,213.3C96,203,192,181,288,186.7C384,192,480,224,576,218.7C672,213,768,171,864,165.3C960,160,1056,192,1152,197.3C1248,203,1344,181,1392,170.7L1440,160L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
}

.hero-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--accent);
    padding: 6px 18px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero-title {
    color: var(--white);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--accent);
}

.hero-desc {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.15rem;
    max-width: 540px;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ==================== ABOUT GRID ==================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-stat-card {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.about-stat-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.about-stat-card i {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 0.75rem;
}

.about-stat-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.about-stat-card p {
    color: var(--muted);
    font-size: 0.9rem;
    margin: 0;
}

/* ==================== PRODUCT CARDS ==================== */
.product-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.product-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 1.25rem;
}

.product-card .badge-live,
.product-card .badge-dev {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
}

.product-card h4 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.product-card p {
    color: var(--muted);
    font-size: 0.95rem;
    flex: 1;
}

.product-link {
    font-weight: 500;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: auto;
}

.product-link i {
    font-size: 0.75rem;
    transition: var(--transition);
}

.product-link:hover i {
    transform: translateX(4px);
}

.product-cta-card {
    border: 2px dashed var(--border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.product-cta-card:hover {
    border-color: var(--secondary);
}

/* ==================== INDUSTRY CARDS ==================== */
.industry-card {
    background: var(--light-bg);
    border-radius: var(--radius);
    padding: 2rem 1rem;
    transition: var(--transition);
}

.industry-card:hover {
    background: var(--secondary);
    color: var(--white);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.industry-card:hover i,
.industry-card:hover h6 {
    color: var(--white);
}

.industry-card i {
    color: var(--secondary);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.industry-card h6 {
    font-size: 0.9rem;
    margin: 0;
    font-weight: 600;
    transition: var(--transition);
}

/* ==================== CTA BANNER ==================== */
.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #1a3a5c 100%);
    padding: 80px 0;
    color: var(--white);
}

.cta-banner h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-desc {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .hero-section {
        text-align: center;
    }

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

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .about-stat-card h3 {
        font-size: 2rem;
    }

    .cta-banner h2 {
        font-size: 1.5rem;
    }
}
