/* Modern Hero Section - NetGigabit Inspired */
.modern-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--ng-bg-main, #f7f6fb);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Hero Background */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(91, 131, 205, 0.03) 0%, 
        rgba(194, 128, 191, 0.05) 50%, 
        rgba(91, 131, 205, 0.02) 100%);
}

/* Hero Shapes - Disabled for cleaner look */
.hero-shapes {
    display: none;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 3;
}

/* Centered Hero Content */
.hero-content-centered {
    position: relative;
    z-index: 3;
    padding: 80px 0;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--ng-primary-light, rgba(91, 131, 205, 0.1));
    color: var(--ng-primary-start, #5b83cd);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(230, 0, 18, 0.2);
}

.hero-badge i {
    animation: pulse 2s infinite;
}

/* Hero Title */
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Large Hero Title for Centered Layout */
.hero-title-large {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hero-title-primary {
    color: #333;
    display: block;
}

.hero-title-highlight {
    background: var(--ng-primary-gradient, linear-gradient(to right, #5b83cd 0%, #c280bf 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    position: relative;
}

.hero-title-highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--ng-primary-gradient, linear-gradient(to right, #5b83cd 0%, #c280bf 100%));
    border-radius: 2px;
}

.hero-title-secondary {
    color: #666;
    font-size: 0.7em;
    font-weight: 600;
    display: block;
}

/* Hero Description */
.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 32px;
    max-width: 500px;
}

/* Large Hero Description */
.hero-description-large {
    font-size: 20px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 48px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Features */
.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--ng-primary-start, #5b83cd);
    font-weight: 600;
    font-size: 15px;
}

.hero-feature i {
    font-size: 18px;
}

/* Centered Hero Features */
.hero-features-centered {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-bottom: 56px;
}

.hero-feature-large {
    background: white;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(230, 0, 18, 0.1);
    transition: all 0.3s ease;
}

.hero-feature-large:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px var(--ng-shadow-medium, rgba(91, 131, 205, 0.2));
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--ng-primary-light, rgba(91, 131, 205, 0.1));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-icon i {
    font-size: 28px;
    color: var(--ng-primary-start, #5b83cd);
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.btn-hero-primary,
.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-hero-primary {
    background: var(--ng-primary-gradient, linear-gradient(to right, #5b83cd 0%, #c280bf 100%));
    color: white;
    box-shadow: 0 8px 25px var(--ng-shadow-medium, rgba(91, 131, 205, 0.2));
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--ng-shadow-dark, rgba(91, 131, 205, 0.3));
    color: white;
}

.btn-hero-primary .btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.btn-hero-primary:hover .btn-glow {
    left: 100%;
}

.btn-hero-secondary {
    background: white;
    color: var(--ng-primary-start, #5b83cd);
    border: 2px solid var(--ng-primary-start, #5b83cd);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-hero-secondary:hover {
    background: var(--ng-primary-start, #5b83cd);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--ng-shadow-medium, rgba(91, 131, 205, 0.2));
}

/* Centered Hero Actions */
.hero-actions-centered {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.btn-hero-primary-large,
.btn-hero-secondary-large,
.btn-hero-tertiary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-hero-primary-large {
    background: var(--ng-primary-gradient, linear-gradient(to right, #5b83cd 0%, #c280bf 100%));
    color: white;
    box-shadow: 0 8px 25px var(--ng-shadow-medium, rgba(91, 131, 205, 0.2));
}

.btn-hero-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px var(--ng-shadow-dark, rgba(91, 131, 205, 0.3));
    color: white;
}

.btn-hero-secondary-large {
    background: white;
    color: var(--ng-primary-start, #5b83cd);
    border: 2px solid var(--ng-primary-start, #5b83cd);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn-hero-secondary-large:hover {
    background: var(--ng-primary-start, #5b83cd);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--ng-shadow-medium, rgba(91, 131, 205, 0.2));
}

.btn-hero-tertiary {
    background: rgba(230, 0, 18, 0.1);
    color: var(--ng-primary-start, #5b83cd);
    border: 2px solid rgba(230, 0, 18, 0.2);
}

.btn-hero-tertiary:hover {
    background: rgba(230, 0, 18, 0.15);
    color: #c50010;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--ng-shadow-medium, rgba(91, 131, 205, 0.2));
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--ng-primary-start, #5b83cd);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

/* Centered Hero Stats */
.hero-stats-centered {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 40px;
    background: white;
    padding: 40px 32px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(230, 0, 18, 0.1);
}

.hero-stat-large {
    text-align: center;
    position: relative;
}

.hero-stat-large::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: rgba(230, 0, 18, 0.2);
}

.hero-stat-large:last-child::after {
    display: none;
}

.hero-stat-large .stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--ng-primary-start, #5b83cd);
    line-height: 1;
    margin-bottom: 8px;
    display: block;
}

.hero-stat-large .stat-label {
    font-size: 14px;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    z-index: 2;
}

.hero-image-wrapper {
    position: relative;
    text-align: center;
}

.hero-image {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* Floating Cards */
.hero-floating-cards {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.floating-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: cardFloat 4s ease-in-out infinite;
}

.floating-card i {
    font-size: 24px;
    color: var(--ng-primary-start, #5b83cd);
    background: rgba(230, 0, 18, 0.1);
    padding: 12px;
    border-radius: 12px;
}

.card-content {
    display: flex;
    flex-direction: column;
}

.card-title {
    font-weight: 700;
    font-size: 14px;
    color: #333;
    margin-bottom: 2px;
}

.card-subtitle {
    font-size: 12px;
    color: #666;
}

.floating-card.card-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.floating-card.card-2 {
    top: 45%;
    left: 5%;
    animation-delay: 1.5s;
}

.floating-card.card-3 {
    bottom: 20%;
    right: 15%;
    animation-delay: 3s;
}

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

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: #666;
    z-index: 3;
    cursor: pointer;
}

.scroll-text {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

.scroll-arrow i {
    font-size: 20px;
    color: var(--ng-primary-start, #5b83cd);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Responsive Design */
@media (max-width: 1199px) {
    .hero-stats {
        gap: 24px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .floating-card {
        padding: 12px;
        gap: 8px;
    }
    
    .floating-card i {
        font-size: 20px;
        padding: 8px;
    }
}

@media (max-width: 991px) {
    .modern-hero {
        min-height: auto;
        padding: 80px 0 60px;
    }
    
    .hero-content {
        text-align: center;
        margin-bottom: 40px;
    }
    
    .hero-content-centered {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .hero-title-large {
        font-size: clamp(2.5rem, 5vw, 4rem);
        margin-bottom: 24px;
    }
    
    .hero-description-large {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .hero-features-centered {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 24px;
        margin-bottom: 48px;
    }
    
    .hero-feature-large {
        padding: 24px 16px;
    }
    
    .feature-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 16px;
    }
    
    .feature-icon i {
        font-size: 24px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-actions-centered {
        margin-bottom: 48px;
        gap: 16px;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-stats-centered {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 32px 24px;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 767px) {
    .modern-hero {
        padding: 60px 0 40px;
    }
    
    .hero-content-centered {
        padding: 40px 0;
    }
    
    .hero-title-large {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 20px;
    }
    
    .hero-description-large {
        font-size: 16px;
        margin-bottom: 32px;
    }
    
    .hero-features {
        justify-content: center;
        gap: 16px;
    }
    
    .hero-features-centered {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 40px;
    }
    
    .hero-feature-large {
        padding: 20px 12px;
    }
    
    .feature-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }
    
    .feature-icon i {
        font-size: 20px;
    }
    
    .feature-content h3 {
        font-size: 16px;
        margin-bottom: 4px;
    }
    
    .feature-content p {
        font-size: 12px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions-centered {
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin-bottom: 40px;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary,
    .btn-hero-primary-large,
    .btn-hero-secondary-large,
    .btn-hero-tertiary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 16px 32px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .hero-stats-centered {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 24px 16px;
    }
    
    .hero-stat-large::after {
        display: none;
    }
    
    .hero-stat-large .stat-number {
        font-size: 2.2rem;
    }
    
    .hero-stat-large .stat-label {
        font-size: 12px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .scroll-indicator {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-badge {
        font-size: 13px;
        padding: 6px 12px;
    }
    
    .hero-content-centered {
        padding: 30px 0;
    }
    
    .hero-title-large {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
        margin-bottom: 16px;
    }
    
    .hero-description-large {
        font-size: 15px;
        margin-bottom: 28px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .hero-features-centered {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 32px;
    }
    
    .hero-feature-large {
        padding: 16px 12px;
    }
    
    .feature-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 8px;
    }
    
    .feature-icon i {
        font-size: 18px;
    }
    
    .feature-content h3 {
        font-size: 14px;
        margin-bottom: 2px;
    }
    
    .feature-content p {
        font-size: 11px;
    }
    
    .hero-actions-centered {
        gap: 10px;
        margin-bottom: 32px;
    }
    
    .btn-hero-primary-large,
    .btn-hero-secondary-large,
    .btn-hero-tertiary {
        padding: 14px 28px;
        font-size: 15px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 16px;
    }
    
    .hero-stats-centered {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 20px 12px;
    }
    
    .hero-stat-large .stat-number {
        font-size: 2rem;
    }
    
    .hero-stat-large .stat-label {
        font-size: 11px;
    }
}

/* Animation Enhancements */
@media (prefers-reduced-motion: no-preference) {
    .hero-title-primary,
    .hero-title-highlight,
    .hero-title-secondary {
        animation: slideInUp 0.8s ease-out forwards;
        opacity: 0;
        transform: translateY(30px);
    }
    
    .hero-title-primary {
        animation-delay: 0.2s;
    }
    
    .hero-title-highlight {
        animation-delay: 0.4s;
    }
    
    .hero-title-secondary {
        animation-delay: 0.6s;
    }
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark mode support (future enhancement) */
@media (prefers-color-scheme: dark) {
    .modern-hero {
        background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    }
    
    .hero-title-primary {
        color: #ffffff;
    }
    
    .hero-title-secondary {
        color: #cccccc;
    }
    
    .hero-description {
        color: #cccccc;
    }
    
    .floating-card {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .card-title {
        color: #ffffff;
    }
    
    .card-subtitle {
        color: #cccccc;
    }
}
