

.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0a0b0f;
    overflow: hidden;
    padding: 6rem 2rem 4rem;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 92, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 92, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
    animation: gridPulse 8s ease-in-out infinite;
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 92, 0, 0.25) 0%, transparent 70%);
    top: -20%;
    left: -10%;
    animation: floatOrb1 12s ease-in-out infinite;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.2) 0%, transparent 70%);
    bottom: -20%;
    right: -10%;
    animation: floatOrb2 15s ease-in-out infinite;
}

@keyframes floatOrb1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, 20px) scale(1.05); }
    66% { transform: translate(-20px, 10px) scale(0.95); }
}

@keyframes floatOrb2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(-30px, -20px) scale(1.1); }
    66% { transform: translate(20px, -10px) scale(0.9); }
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-brand-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 1rem 0 1.5rem;
}

.brand-prefix {
    font-size: 0.85rem;
    color: #6b7280;
    font-weight: 400;
    text-transform: lowercase;
}

.brand-name {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.brand-name .brand-scrap {
    color: #ff5c00;
}

.brand-name .brand-line {
    color: #ffffff;
}

.hero-trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 1.25rem 0.5rem 0.75rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 999px;
    margin-bottom: 2rem;
}

.trust-pulse {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: trustPulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.6);
}

@keyframes trustPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.3); opacity: 0.6; }
}

.trust-text {
    font-size: 0.85rem;
    color: #9ca3af;
    font-weight: 500;
}

.trust-text strong {
    color: #10b981;
    font-weight: 700;
}

.hero-title-xl {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

.title-line {
    display: block;
    color: #ffffff;
}

.title-accent {
    display: block;
    background: linear-gradient(135deg, #ff5c00 0%, #ff8c00 50%, #ffb347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.title-accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 6px;
    background: linear-gradient(90deg, transparent, #ff5c00, transparent);
    border-radius: 3px;
    opacity: 0.6;
}

.hero-subtitle-modern {
    font-size: 1.25rem;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0 auto 2.5rem;
    max-width: 550px;
    font-weight: 400;
}

.hero-buttons-modern {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3.5rem;
}

.btn-hero-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #ff5c00 0%, #ff7a00 100%);
    border: none;
    border-radius: 14px;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(255, 92, 0, 0.4);
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 92, 0, 0.5);
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.btn-hero-primary:hover .btn-glow {
    transform: translateX(100%);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.75rem;
    font-size: 1rem;
    font-weight: 600;
    color: #d1d5db;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

.btn-hero-secondary i {
    transition: transform 0.3s ease;
}

.btn-hero-secondary:hover i {
    transform: translateX(4px);
}

.status-cards-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.status-card {
    position: relative;
    background: rgba(15, 17, 26, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    backdrop-filter: blur(20px);
    overflow: hidden;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.status-card:hover {
    border-color: rgba(255, 92, 0, 0.3);
    transform: translateY(-4px);
}

.status-card-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top left, rgba(255, 92, 0, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.status-card-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    min-width: 220px;
    padding: 2rem 2.5rem;
    text-align: center;
}

.status-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 92, 0, 0.2) 0%, rgba(255, 92, 0, 0.05) 100%);
    border-radius: 14px;
    color: #ff5c00;
    font-size: 1.6rem;
}

.status-card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.status-card-value {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.status-card-label {
    font-size: 0.9rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.25rem;
}

.status-card-bots {
    min-width: 380px !important;
    width: 380px !important;
    max-width: 380px !important;
    padding: 2rem 2.5rem !important;
    flex-shrink: 0;
}

.status-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.status-card-title {
    font-size: 0.85rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

.status-link-mini {
    color: #6b7280;
    font-size: 0.75rem;
    transition: color 0.2s ease;
}

.status-link-mini:hover {
    color: #ff5c00;
}

.bots-live-grid {
    display: flex;
    gap: 1rem;
}

.bot-live-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.2s ease;
    min-height: 100px;
}

.bot-live-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.bot-live-indicator {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #6b7280;
    transition: all 0.3s ease;
}

.bot-live-indicator.online {
    background: #10b981;
    box-shadow: 0 0 12px rgba(16, 185, 129, 0.6), 0 0 24px rgba(16, 185, 129, 0.3);
}

.bot-live-indicator.offline {
    background: #ef4444;
    box-shadow: 0 0 12px rgba(239, 68, 68, 0.6);
}

.bot-live-indicator.loading {
    animation: indicatorPulse 1.5s ease-in-out infinite;
}

@keyframes indicatorPulse {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.1); }
}

.bot-live-name {
    font-size: 0.95rem;
    color: #9ca3af;
    font-weight: 600;
}

.slide-up-fade {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUpFade 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.5s; }

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

@media (max-width: 768px) {
    .hero-modern {
        min-height: auto;
        padding: 5rem 1.5rem 3rem;
    }
    
    .hero-title-xl {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1rem;
    }
    
    .hero-buttons-modern {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .status-cards-container {
        flex-direction: column;
        align-items: center;
    }
    
    .status-card {
        width: 100%;
        max-width: 320px;
    }
    
    .status-card-bots {
        min-width: 100% !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .status-card-main {
        justify-content: center;
    }
    
    .hero-glow-1,
    .hero-glow-2 {
        width: 300px;
        height: 300px;
    }
}

.features-section {
    background: #0f111a;
    padding: 5rem 2rem;
}

.features-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 auto 0.75rem;
}

.section-subtitle {
    text-align: center;
    color: #9ca3af;
    font-size: 1.1rem;
    margin: 0 auto 3rem;
    max-width: 600px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: rgba(20, 25, 45, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: rgba(255, 92, 0, 0.3);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 92, 0, 0.15) 0%, rgba(255, 92, 0, 0.05) 100%);
    border-radius: 12px;
    color: #ff5c00;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.75rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
}

.feature-card-hidden {
    display: none;
}

.feature-card-hidden.visible {
    display: block;
}

.feature-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.btn-show-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #9ca3af;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-show-more:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.btn-feature-gradient {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg, #ff5c00 0%, #ff7a00 100%);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 92, 0, 0.3);
}

.btn-feature-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 92, 0, 0.4);
}
