/* ============================================
   Hero Styles - All Variations
   Basic, AI-background, Split-Screen 60/40
   ============================================ */

/* ============================================
   Hero Section - Improved with decorative elements
   ============================================ */
.hero-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 50%, #3b82f6 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(14,165,233,0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59,130,246,0.2) 0%, transparent 70%);
    pointer-events: none;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-section .lead {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    opacity: 0.95;
}

.hero-section .btn-primary,
.hero-section .btn-lg {
    background-color: var(--color-accent) !important;
    border-color: var(--color-accent) !important;
    color: white !important;
    font-weight: 600;
    padding: 14px 32px;
    font-size: 1.1rem;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 14px rgba(14,165,233,0.4);
    transition: all 0.3s ease;
}

.hero-section .btn-primary:hover,
.hero-section .btn-lg:hover {
    background-color: var(--color-accent-hover) !important;
    border-color: var(--color-accent-hover) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(14,165,233,0.5);
}

/* Hero Bullets */
.hero-bullets {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 2rem;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-bullets li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: rgba(255,255,255,0.95);
}

.hero-bullets li i {
    color: var(--color-accent);
    font-size: 1.2rem;
}

/* Hero CTA Wrapper */
.hero-cta-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.hero-section .btn-outline-light {
    border: 2px solid rgba(255,255,255,0.8);
    color: white;
    background: transparent;
    font-weight: 600;
    padding: 12px 28px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.hero-section .btn-outline-light:hover {
    background: rgba(255,255,255,0.15);
    border-color: white;
    transform: translateY(-2px);
}

/* Hero Trust Badge */
.hero-trust-badge {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    margin-top: 1rem;
    margin-bottom: 0;
}

.hero-trust-badge i {
    color: var(--color-accent);
    margin-right: 0.25rem;
}

/* ============================================
   Hero Section with AI-generated background image
   ============================================ */
.hero-section.hero-with-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-section.hero-with-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: auto;
    height: auto;
    background: linear-gradient(135deg, rgba(30, 58, 95, 0.8) 0%, rgba(45, 90, 138, 0.7) 50%, rgba(59, 130, 246, 0.6) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-section.hero-with-image::after {
    content: none;
    display: none;
}

.hero-section.hero-with-image .container {
    position: relative;
    z-index: 1;
}

/* ============================================
   Hero Split-Screen Layout (60/40)
   Premium design with large visual + text card
   ============================================ */
.hero-split {
    display: grid;
    grid-template-columns: 60% 40%;
    min-height: 100vh;
    background: #0f172a;
}

/* Left side - Visual */
.hero-visual {
    position: relative;
    background: linear-gradient(135deg, #1e3a5f 0%, #2d5a8a 50%, #3b82f6 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-visual-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(15, 23, 42, 0.4) 0%,
        rgba(30, 58, 95, 0.3) 50%,
        rgba(59, 130, 246, 0.2) 100%
    );
}

/* Right side - Content */
.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 50px;
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

/* Card container */
.hero-card {
    background: rgba(30, 41, 59, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 48px 40px;
    backdrop-filter: blur(10px);
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.05);
}

/* Badges Container */
.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

/* Category Badge */
.hero-category-badge span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(34, 197, 94, 0.15);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 8px;
    padding: 6px 14px;
    font-size: 0.8rem;
    font-weight: 600;
    color: #86efac;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.hero-category-badge span::before {
    content: '\25C6';
    font-size: 0.6rem;
    color: #22c55e;
}

/* Main Badge */
.hero-badge span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #93c5fd;
    letter-spacing: 0.02em;
}

.hero-badge span::before {
    content: '\2605';
    color: #fbbf24;
}

/* Title */
.hero-split .hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

/* Subtitle */
.hero-split .hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 28px;
}

/* Bullets */
.hero-split .hero-bullets {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-split .hero-bullets li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 1rem;
    color: #e2e8f0;
    line-height: 1.5;
}

.hero-split .hero-bullets .bullet-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-split .hero-bullets .bullet-icon i {
    color: #22c55e;
    font-size: 1.125rem;
}

.hero-split .hero-bullets .bullet-text {
    flex: 1;
}

/* CTA Buttons */
.hero-split .hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

.hero-split .hero-btn-primary {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(59, 130, 246, 0.4);
}

.hero-split .hero-btn-primary:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.5);
    color: #ffffff;
}

.hero-split .hero-btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 500;
    color: #e2e8f0;
    transition: all 0.3s ease;
}

.hero-split .hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

/* Trust Badge */
.hero-split .hero-trust {
    display: flex;
    align-items: center;
    font-size: 0.875rem;
    color: #64748b;
    margin: 0;
}

.hero-split .hero-trust i {
    color: #22c55e;
}

/* Mini Steps */
.hero-mini-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-step {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mini-step-num {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    border-radius: 50%;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
}

.mini-step-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: #94a3b8;
}

.mini-step-arrow {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
}

/* ============================================
   Responsive - Hero
   ============================================ */
@media (max-width: 768px) {
    .hero-section { padding: 70px 0; }
    .hero-section h1 { font-size: 2rem; }
    .hero-section .lead { font-size: 1rem; }
    .hero-bullets { flex-direction: column; gap: 0.75rem; }
    .hero-bullets li { font-size: 1rem; justify-content: center; }
    .hero-cta-wrapper { flex-direction: column; gap: 0.75rem; }
    .hero-cta-wrapper .btn { width: 100%; }
}

/* Responsive - Tablet */
@media (max-width: 1200px) {
    .hero-split {
        grid-template-columns: 55% 45%;
    }

    .hero-content {
        padding: 40px 30px;
    }

    .hero-card {
        padding: 36px 30px;
    }

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

/* Responsive - Mobile */
@media (max-width: 991px) {
    .hero-split {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .hero-visual {
        min-height: 300px;
        order: 1;
    }

    .hero-content {
        order: 2;
        padding: 40px 24px;
    }

    .hero-card {
        padding: 32px 24px;
        border-radius: 20px;
    }

    .hero-split .hero-title {
        font-size: 1.75rem;
    }

    .hero-split .hero-subtitle {
        font-size: 1rem;
    }

    .hero-split .hero-cta {
        flex-direction: column;
    }

    .hero-split .hero-btn-primary,
    .hero-split .hero-btn-secondary {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }

    .hero-mini-steps {
        flex-wrap: wrap;
        gap: 12px;
    }

    .mini-step-arrow {
        display: none;
    }
}

/* Responsive - Small Mobile */
@media (max-width: 576px) {
    .hero-visual {
        min-height: 220px;
    }

    .hero-content {
        padding: 32px 16px;
    }

    .hero-card {
        padding: 24px 20px;
        border-radius: 16px;
    }

    .hero-badge span {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .hero-split .hero-title {
        font-size: 1.5rem;
    }

    .hero-split .hero-bullets li {
        font-size: 0.9rem;
    }

    .mini-step-text {
        font-size: 0.8rem;
    }
}
