
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

* {
    font-family: 'Inter', sans-serif;
}

.gradient-text {
    background: linear-gradient(135deg, #ea580c, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.corporate-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.corporate-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(234, 88, 12, 0.15);
    border-color: rgba(234, 88, 12, 0.3);
}

.professional-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.professional-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-bg {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    position: relative;
    overflow: hidden;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(234, 88, 12, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(234, 88, 12, 0.05) 0%, transparent 50%);
}

.corporate-accent {
    background: linear-gradient(90deg, transparent, rgba(234, 88, 12, 0.1), transparent);
    height: 1px;
}

.professional-button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.professional-button:hover {
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.4);
    transform: translateY(-2px);
}

.professional-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.professional-button:hover::before {
    left: 100%;
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    transform: translateX(-50%);
    width: 120px;
    height: 3px;
    background: linear-gradient(90deg, #ea580c, #ffffff);
    border-radius: 2px;
}

.corporate-border {
    border-left: 4px solid #ea580c;
}

.stats-counter {
    background: linear-gradient(135deg, rgba(234, 88, 12, 0.1), rgba(255, 255, 255, 0.05));
    border: 1px solid rgba(234, 88, 12, 0.2);
}

.testimonial-card {
    background: linear-gradient(145deg, #1a1a1a, #0a0a0a);
    border: 1px solid rgba(234, 88, 12, 0.2);
}

.professional-shadow {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.corporate-pattern {
    background-image: 
        linear-gradient(45deg, transparent 40%, rgba(234, 88, 12, 0.02) 40%, rgba(234, 88, 12, 0.02) 60%, transparent 60%),
        linear-gradient(-45deg, transparent 40%, rgba(255, 255, 255, 0.01) 40%, rgba(255, 255, 255, 0.01) 60%, transparent 60%);
    background-size: 40px 40px;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in:nth-child(1) { animation-delay: 0.1s; }
.fade-in:nth-child(2) { animation-delay: 0.2s; }
.fade-in:nth-child(3) { animation-delay: 0.3s; }
.fade-in:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.icon-hover {
    transition: all 0.3s ease;
}

.icon-hover:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.professional-grid {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}