/* ===== HERO SECTION STYLES ===== */

.hero-badge-wrapper {
    margin-bottom: 24px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.08), rgba(52, 168, 83, 0.08));
    border: 1px solid rgba(66, 133, 244, 0.25);
    color: #1a1a1a;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.8px;
    backdrop-filter: blur(15px);
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.08);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #ffde00;
    border-radius: 50%;
    display: inline-block;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -1.5px;
    margin-bottom: 28px;
    line-height: 1.1;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 18px;
    color: #555555;
    margin-bottom: 40px;
    line-height: 1.8;
    font-weight: 300;
    max-width: 580px;
    letter-spacing: 0.3px;
}

.hero-button-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-primary-btn {
    background: linear-gradient(135deg, #3086ff 0%, #1a5acc 100%);
    color: #FFFFFF;
    border: none;
    font-weight: 800;
    padding: 16px 36px;
    border-radius: 10px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 12px 35px rgba(66, 133, 244, 0.25);
    font-size: 15px;
    letter-spacing: 0.4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.hero-primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 50px rgba(66, 133, 244, 0.35);
    color: #FFFFFF;
}

.hero-primary-btn i {
    margin-right: 10px;
    font-size: 13px;
}

.hero-secondary-btn {
    background: rgba(66, 133, 244, 0.1);
    color: #1a1a1a;
    border: 1.5px solid rgba(66, 133, 244, 0.3);
    font-weight: 800;
    padding: 16px 36px;
    border-radius: 10px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    font-size: 15px;
    letter-spacing: 0.4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.hero-secondary-btn:hover {
    background: rgba(66, 133, 244, 0.2);
    border-color: rgba(66, 133, 244, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(66, 133, 244, 0.2);
    color: #1a1a1a;
}

.hero-secondary-btn i {
    margin-right: 10px;
    font-size: 13px;
}

.hero-stats-container {
    display: flex;
    gap: 32px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
}

.hero-stat-item {
    display: flex;
    flex-direction: column;
}

.hero-stat-number {
    font-size: 24px;
    font-weight: 900;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

.hero-stat-label {
    font-size: 13px;
    color: #666666;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

.hero-right-column {
    position: relative;
    margin-top: 40px;
}

.hero-orb-1 {
    position: absolute;
    top: -80px;
    right: -120px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(66, 133, 244, 0.2) 0%, rgba(66, 133, 244, 0) 70%);
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

.hero-orb-2 {
    position: absolute;
    bottom: -120px;
    left: -80px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(52, 168, 83, 0.15) 0%, rgba(52, 168, 83, 0) 70%);
    border-radius: 50%;
    filter: blur(90px);
    z-index: 0;
}

.hero-card-wrapper {
    padding: 60px 20px;
    position: relative;
    z-index: 2;
}

.hero-card {
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    background: rgba(66, 133, 244, 0.05);
    border-radius: 20px;
    padding: 50px 45px;
    border: 1.5px solid rgba(66, 133, 244, 0.2);
    backdrop-filter: blur(25px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-card:hover {
    background: rgba(66, 133, 244, 0.08);
    border-color: rgba(66, 133, 244, 0.35);
    box-shadow: 0 16px 60px rgba(66, 133, 244, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transform: translateY(-8px);
}

.hero-card-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.hero-card-icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.25), rgba(52, 168, 83, 0.15));
    border-radius: 20px;
    margin: 0 auto 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.1);
    transition: all 0.4s ease;
}

.hero-card-icon i {
    font-size: 55px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(66, 133, 244, 0.2);
}

.hero-card-icon:hover {
    background: linear-gradient(135deg, rgba(66, 133, 244, 0.35), rgba(52, 168, 83, 0.25));
    transform: scale(1.1);
}

.hero-card-heading {
    color: #1a1a1a;
    font-size: 22px;
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.hero-card-subheading {
    color: #666666;
    font-size: 16px;
    margin: 10px 0 0 0;
    font-weight: 400;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.hero-card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(66, 133, 244, 0.2), transparent);
    margin: 28px 0;
}

.hero-feature-list {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #1a1a1a;
    font-weight: 500;
}

.hero-feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.hero-feature-green {
    background: rgba(52, 168, 83, 0.15);
    border: 1px solid rgba(52, 168, 83, 0.4);
    color: #ffde00;
}

.hero-feature-blue {
    background: rgba(66, 133, 244, 0.15);
    border: 1px solid rgba(66, 133, 244, 0.4);
    color: #3086ff;
}

.hero-feature-red {
    background: rgba(234, 67, 53, 0.15);
    border: 1px solid rgba(234, 67, 53, 0.4);
    color: #EA4335;
}

.hero-card-icon i {
    font-size: 55px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(66, 133, 244, 0.2);
}

.hero-card-title {
    color: #1a1a1a;
    font-size: 22px;
    margin: 0;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1.3;
}

.hero-card-subtitle {
    color: #666666;
    font-size: 16px;
    margin: 10px 0 0 0;
    font-weight: 400;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.hero-card-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(66, 133, 244, 0.2), transparent);
    margin: 28px 0;
}

.hero-card-features {
    display: flex;
    gap: 12px;
    flex-direction: column;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: #1a1a1a;
    font-weight: 500;
}

.hero-feature-check {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.feature-green .hero-feature-check {
    background: rgba(52, 168, 83, 0.15);
    border: 1px solid rgba(52, 168, 83, 0.4);
    color: #ffde00;
}

.feature-blue .hero-feature-check {
    background: rgba(66, 133, 244, 0.15);
    border: 1px solid rgba(66, 133, 244, 0.4);
    color: #3086ff;
}

.feature-red .hero-feature-check {
    background: rgba(234, 67, 53, 0.15);
    border: 1px solid rgba(234, 67, 53, 0.4);
    color: #EA4335;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 40px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-card {
        max-width: 100%;
        padding: 30px 25px;
    }

    .hero-trust-indicators {
        gap: 20px;
    }
}
