@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Montserrat:wght@700;800&display=swap');

:root {
    --primary: #1a73e8;
    --primary-dark: #1557b0;
    --secondary: #667eea;
    --accent: #764ba2;
    --text-main: #2c3e50;
    --text-muted: #666;
    --bg-light: #f8f9fa;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.15);
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background: var(--bg-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

/* Glassmorphism */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
}

.glass-dark {
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modern Buttons */
.btn-modern {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-modern {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: 0 10px 20px rgba(26, 115, 232, 0.3);
}

.btn-primary-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(26, 115, 232, 0.4);
}

/* Swiper Customization */
.swiper-hero {
    width: 100%;
    height: 100vh;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.hero-slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.1);
    transition: transform 8s ease-out;
}

.swiper-slide-active .hero-slide-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 20px;
}

/* Workflow Section */
.workflow-container {
    padding: 100px 0;
    background: white;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 100px;
    opacity: 0;
    transform: translateY(50px);
}

.workflow-step:nth-child(even) {
    flex-direction: row-reverse;
}

.workflow-img {
    flex: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.workflow-img img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.workflow-step:hover .workflow-img img {
    transform: scale(1.05);
}

.workflow-content {
    flex: 1;
}

.workflow-number {
    font-size: 80px;
    font-weight: 800;
    color: rgba(26, 115, 232, 0.1);
    line-height: 1;
    margin-bottom: -40px;
}

/* Animations */
.reveal-text {
    overflow: hidden;
}

.reveal-text span {
    display: block;
    transform: translateY(100%);
}

/* Responsive */
@media (max-width: 768px) {
    .workflow-step, .workflow-step:nth-child(even) {
        flex-direction: column;
        gap: 30px;
    }
    
    .workflow-img img {
        height: 300px;
    }
}
