/* ============================================
   MODERN DESIGN SYSTEM - RFC Consulting 2024
   Ultra Modern & Unique Design
   ============================================ */

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color System */
    --primary: #EB310C;
    --primary-dark: #B8250A;
    --primary-light: #FF5733;
    --accent: #EB310C;
    --accent-dark: #B8250A;
    
    --blue: #0066FF;
    --blue-light: #3399FF;
    
    --text-900: #0a0a0a;
    --text-700: #1a1a1a;
    --text-500: #4a4a4a;
    --text-300: #8a8a8a;
    
    --bg-white: #ffffff;
    --bg-gray-50: #fafafa;
    --bg-gray-100: #f5f5f5;
    --bg-dark: #0a0a0a;
    
    --border: #e0e0e0;
    --border-light: #f0f0f0;
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 12px 48px rgba(0, 0, 0, 0.2);
    --shadow-primary: 0 8px 24px rgba(235, 49, 12, 0.25);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-700);
    background: var(--bg-white);
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Container */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

@media (min-width: 768px) {
    .container {
        padding: 0 var(--space-8);
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 var(--space-10);
    }
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    width: 100%;
}

/* ============================================
   NAVIGATION - ULTRA MODERN
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-4);
    height: 90px;
    min-height: 90px;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: transform var(--transition-base);
}

.logo a:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 70px;
    width: auto;
    object-fit: contain;
    transition: opacity var(--transition-base);
}

.logo-image:hover {
    opacity: 0.9;
}

@media (max-width: 768px) {
    .logo-image {
        height: 50px;
    }
    .nav-wrapper {
        height: 70px;
        min-height: 70px;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-2);
    align-items: center;
    height: 100%;
}

.nav-menu li {
    list-style: none;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-menu > li > a {
    text-decoration: none;
    color: var(--text-500);
    font-weight: 500;
    font-size: 15px;
    padding: var(--space-3) var(--space-5);
    height: 100%;
    display: flex;
    align-items: center;
    transition: all var(--transition-base);
    position: relative;
    border-radius: 8px;
}

.nav-menu > li > a::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
    transition: transform var(--transition-base);
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--primary);
    background: rgba(235, 49, 12, 0.05);
}

.nav-menu > li > a.active::before,
.nav-menu > li > a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-2);
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: var(--text-700);
    border-radius: 2px;
    transition: all var(--transition-base);
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        height: auto;
        padding: var(--space-4);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-menu li {
        width: 100%;
        height: auto;
    }
    
    .nav-menu > li > a {
        width: 100%;
        padding: var(--space-4);
        border-radius: 12px;
    }
}

/* ============================================
   HERO SECTION - ULTRA MODERN
   ============================================ */
.hero {
    position: relative;
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    overflow: hidden;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(235, 49, 12, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 102, 255, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    50% {
        transform: translate(30px, -30px) rotate(180deg);
    }
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-16);
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }
}

.hero-content {
    max-width: 600px;
}

.hero-pre-headline {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-4);
    display: inline-block;
    padding: var(--space-2) var(--space-4);
    background: rgba(235, 49, 12, 0.1);
    border-radius: 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    color: var(--text-900);
    margin-bottom: var(--space-6);
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--primary);
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    right: 0;
    height: 12px;
    background: rgba(235, 49, 12, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.hero-title .highlight-blue {
    color: var(--blue);
}

.hero-title .highlight-orange {
    color: var(--primary);
}

.hero-title a {
    text-decoration: none;
    transition: all var(--transition-base);
}

.hero-title a:hover {
    transform: translateY(-2px);
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: var(--text-500);
    line-height: 1.7;
    margin-bottom: var(--space-8);
    max-width: 550px;
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    animation: fadeInUp 1s ease-out;
    overflow: visible;
    z-index: 1;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-dashboard-image {
    max-width: 100%;
    height: auto;
    transform: rotate(-8deg);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 8px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s ease;
    border: 8px solid var(--bg-white);
    background: var(--bg-white);
    position: relative;
    z-index: 1;
}

.hero-dashboard-image:hover {
    transform: rotate(-5deg) scale(1.02);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2), 0 12px 32px rgba(0, 0, 0, 0.15);
}

.hero-dashboard-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, rgba(235, 49, 12, 0.1) 0%, rgba(0, 102, 255, 0.1) 100%);
    border-radius: 32px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-dashboard-image:hover::before {
    opacity: 1;
}

/* ============================================
   BUTTONS - MODERN STYLE
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(235, 49, 12, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(235, 49, 12, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-large {
    padding: var(--space-5) var(--space-10);
    font-size: 18px;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

/* ============================================
   FEATURE CARDS - MODERN GRID
   ============================================ */
.why-section {
    padding: var(--space-24) 0;
    background: var(--bg-white);
    position: relative;
}

.why-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-6);
    margin-bottom: var(--space-16);
}

.why-feature-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: var(--space-8);
    text-decoration: none;
    color: inherit;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.why-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

.why-feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.why-feature-item:hover::before {
    transform: scaleX(1);
}

.why-feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(235, 49, 12, 0.1) 0%, rgba(235, 49, 12, 0.05) 100%);
    border-radius: 16px;
    color: var(--primary);
    margin-bottom: var(--space-4);
    transition: transform var(--transition-base);
}

.why-feature-item:hover .why-feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.why-feature-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: var(--space-3);
}

.why-feature-item p {
    color: var(--text-500);
    line-height: 1.7;
}

/* Dashboard Preview */
.dashboard-preview {
    margin-top: var(--space-16);
    max-width: 100%;
    overflow: hidden;
}

.dashboard-preview-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: var(--space-6);
    text-align: center;
}

.screenshots-slider {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    max-width: 100%;
    margin: 0 auto;
}

.screenshots-slider-wrapper {
    position: relative;
    max-width: 100%;
}

.screenshot-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: none;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    color: var(--text-700);
}

.screenshot-nav-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.screenshot-nav-btn.prev {
    left: var(--space-4);
}

.screenshot-nav-btn.next {
    right: var(--space-4);
}

.screenshots-slider-inner {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.screenshot-slide {
    min-width: 100%;
    flex-shrink: 0;
    display: block;
}

.screenshot-image-container {
    width: 100%;
    padding-top: 60%;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-gray-100) 0%, var(--bg-gray-50) 100%);
    max-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.screenshot-loading {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    z-index: 2;
    transition: opacity var(--transition-base);
}

.screenshot-loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: var(--space-3);
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.screenshot-loading p {
    color: var(--text-500);
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.screenshot-image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
}

.screenshot-image.loaded {
    opacity: 1;
    z-index: 2;
}

.screenshots-dots {
    display: flex;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.screenshot-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--border);
    cursor: pointer;
    transition: all var(--transition-base);
}

.screenshot-dot.active {
    background: var(--primary);
    transform: scale(1.3);
}

/* ============================================
   FEATURES PREVIEW SECTION
   ============================================ */
.features-preview {
    padding: var(--space-24) 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-gray-50) 100%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-12);
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-900);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-500);
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: var(--space-8);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(235, 49, 12, 0.03) 0%, transparent 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(235, 49, 12, 0.1) 0%, rgba(235, 49, 12, 0.05) 100%);
    border-radius: 18px;
    color: var(--primary);
    margin-bottom: var(--space-5);
}

.feature-tag {
    display: inline-block;
    padding: var(--space-1) var(--space-3);
    background: var(--primary);
    color: white;
    font-size: 12px;
    font-weight: 700;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: var(--space-4);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: var(--space-3);
}

.feature-card p {
    color: var(--text-500);
    line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    color: white;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: var(--space-8);
    opacity: 0.95;
    line-height: 1.7;
}

/* ============================================
   FOOTER - MODERN STYLE
   ============================================ */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: var(--space-16) 0 var(--space-8);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-8);
    margin-bottom: var(--space-8);
}

.footer-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: white;
}

.footer-section h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: var(--space-4);
    color: rgba(255, 255, 255, 0.9);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-2);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--space-2);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-section ul li a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   PAGE HEADER - MODERN STYLE
   ============================================ */
.page-header {
    padding: var(--space-16) 0 var(--space-12);
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-gray-50) 100%);
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(235, 49, 12, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: var(--text-900);
    margin-bottom: var(--space-4);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.25rem;
    color: var(--text-500);
    position: relative;
    z-index: 1;
}

.breadcrumb {
    font-size: 14px;
    color: var(--text-500);
    margin-bottom: var(--space-4);
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* ============================================
   BLOG SECTION - OLD STYLE
   ============================================ */
.blog-section {
    padding: var(--space-16) 0 var(--space-32);
    background: var(--bg-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: var(--space-8);
    margin-top: 0;
}

.blog-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    overflow: hidden;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: var(--shadow-sm);
}

.blog-card-image {
    width: 100%;
    height: 42px;
    position: relative;
    overflow: hidden;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
    opacity: 0.6;
    transition: var(--transition-base);
}

.blog-card:hover .blog-image-overlay {
    opacity: 0.8;
}

/* Blog Image Themes */
.blog-image-sql-transfer {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0066FF 0%, #00BFFF 100%);
}

.blog-image-api-reader {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #10B981 0%, #34D399 100%);
}

.blog-image-platform-overview {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #EB310C 0%, #B8250A 100%);
}

.blog-image-platform-modules {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-image-data-integration {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.blog-image-api-automation {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.blog-image-security {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.blog-image-developer-experience {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.blog-card-content {
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--primary);
}

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-4);
    font-size: 0.8125rem;
    margin-top: var(--space-2);
}

.blog-category {
    color: var(--primary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.blog-date {
    color: var(--text-300);
    font-weight: 400;
}

.blog-title {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: var(--space-4);
    letter-spacing: -0.01em;
    margin-top: var(--space-2);
}

.blog-title a {
    color: var(--text-900);
    text-decoration: none;
    transition: var(--transition-base);
}

.blog-title a:hover {
    color: var(--primary);
}

.blog-excerpt {
    color: var(--text-500);
    line-height: 1.7;
    font-size: 0.9375rem;
    margin-bottom: var(--space-4);
    flex: 1;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-4);
    border-top: 1px solid var(--border-light);
}

.blog-meta {
    display: flex;
    gap: var(--space-3);
    font-size: 0.8125rem;
    color: var(--text-300);
}

.blog-author,
.blog-read-time {
    font-weight: 400;
}

.blog-read-more {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition-base);
}

.blog-read-more:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

/* Blog Single */
/* Blog Single Post */
.breadcrumb {
    font-size: 0.875rem;
    color: var(--text-300);
    margin-bottom: var(--space-4);
}

.breadcrumb a {
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition-base);
}

.breadcrumb a:hover {
    color: var(--primary-dark);
}

.post-meta-header {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-top: var(--space-4);
    font-size: 0.875rem;
    color: var(--text-500);
    justify-content: center;
}

.blog-single-section {
    padding: var(--space-16) 0 var(--space-32);
    background: var(--bg-white);
}

.blog-featured-image {
    width: 100%;
    height: 42px;
    border-radius: 20px;
    margin-bottom: var(--space-6);
    margin-top: calc(var(--space-16) * -1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-featured-image .blog-image-overlay {
    opacity: 0.3;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.2) 100%);
}

.blog-featured-image.blog-image-sql-transfer {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0066FF 0%, #00BFFF 100%);
}

.blog-featured-image.blog-image-api-reader {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #10B981 0%, #34D399 100%);
}

.blog-featured-image.blog-image-platform-overview {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #EB310C 0%, #B8250A 100%);
}

.blog-featured-image.blog-image-platform-modules {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.blog-featured-image.blog-image-data-integration {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.blog-featured-image.blog-image-api-automation {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.blog-featured-image.blog-image-security {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.blog-featured-image.blog-image-developer-experience {
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.blog-post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-700);
}

.blog-post-content h2,
.blog-post-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-900);
    margin-top: var(--space-8);
    margin-bottom: var(--space-4);
    line-height: 1.3;
}

.blog-post-content h3 {
    font-size: 1.5rem;
}

.blog-post-content p {
    margin-bottom: var(--space-4);
}

.blog-post-content ul,
.blog-post-content ol {
    margin-bottom: var(--space-4);
    padding-left: var(--space-6);
}

.blog-post-content li {
    margin-bottom: var(--space-2);
}

.blog-navigation {
    margin-top: var(--space-8);
    text-align: center;
}

/* ============================================
   CONTACT SECTION - MODERN STYLE
   ============================================ */
.contact {
    padding: var(--space-16) 0;
    background: var(--bg-white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-12);
}

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

.contact-info h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: var(--space-8);
}

.info-item {
    display: flex;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
    padding: var(--space-5);
    background: var(--bg-gray-50);
    border-radius: 16px;
    transition: all var(--transition-base);
}

.info-item:hover {
    background: rgba(235, 49, 12, 0.05);
    transform: translateX(8px);
}

.info-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: white;
    border-radius: 12px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-900);
    margin-bottom: var(--space-2);
}

.info-content p {
    color: var(--text-500);
    line-height: 1.7;
    margin: 0;
}

.contact-form-wrapper {
    background: var(--bg-gray-50);
    padding: var(--space-8);
    border-radius: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.form-group label {
    font-weight: 600;
    color: var(--text-700);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: var(--space-4);
    border: 2px solid var(--border);
    border-radius: 12px;
    font-size: 16px;
    font-family: var(--font-family);
    transition: all var(--transition-base);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(235, 49, 12, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.alert {
    padding: var(--space-4);
    border-radius: 12px;
    margin-bottom: var(--space-5);
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    color: #DC2626;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 991px) {
    .hero-dashboard-image {
        max-width: 90%;
        transform: rotate(-6deg);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .blog-card-content {
        padding: var(--space-4);
    }

    .blog-card-image {
        height: 30px;
    }

    .blog-featured-image {
        height: 30px;
    }

    .blog-post-content {
        font-size: 0.9375rem;
    }

    .blog-post-content h2 {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: var(--space-16) 0;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-dashboard-image {
        max-width: 85%;
        transform: rotate(-4deg);
    }
    
    .why-features,
    .features-grid,
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.highlight {
    color: var(--primary);
}

.highlight-blue {
    color: var(--blue);
}

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

.mt-1 { margin-top: var(--space-4); }
.mt-2 { margin-top: var(--space-8); }
.mt-3 { margin-top: var(--space-12); }
.mb-1 { margin-bottom: var(--space-4); }
.mb-2 { margin-bottom: var(--space-8); }
.mb-3 { margin-bottom: var(--space-12); }

/* ============================================
   ANIMATIONS & EFFECTS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

/* Smooth scroll reveal */
.fade-in {
    animation: fadeIn 0.6s ease-out;
}

.slide-in-up {
    animation: slideInUp 0.8s ease-out;
}

/* Hover effects for interactive elements */
.interactive {
    transition: all var(--transition-base);
    cursor: pointer;
}

.interactive:hover {
    transform: translateY(-2px);
}

/* Glassmorphism effect */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Gradient text */
.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   MODERN MODULE PAGES STYLES
   ============================================ */

/* Modern Hero Sections */
.module-hero-modern {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.rep-gradient {
    background: linear-gradient(135deg, #FFF5E6 0%, #FFE4CC 50%, #FFDAB3 100%);
}

.sql-gradient {
    background: linear-gradient(135deg, #E3F2FD 0%, #BBDEFB 50%, #90CAF9 100%);
}

.api-gradient {
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 50%, #A5D6A7 100%);
}

.mf-gradient {
    background: linear-gradient(135deg, #F3E5E5 0%, #E1BEE7 50%, #CE93D8 100%);
}

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

.module-badge-modern {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-700);
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.hero-title-modern {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-900);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.gradient-text-sql {
    background: linear-gradient(135deg, #0066FF 0%, #00BFFF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-api {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-mf {
    background: linear-gradient(135deg, #8E44AD 0%, #9B59B6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-modern {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-600);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badges-modern {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.badge-pill {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-700);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.badge-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.sql-badge {
    border-color: rgba(0, 102, 255, 0.2);
    color: #0066FF;
}

.api-badge {
    border-color: rgba(16, 185, 129, 0.2);
    color: #10B981;
}

.mf-badge {
    border-color: rgba(142, 68, 173, 0.2);
    color: #8E44AD;
}

/* Hero Decorations */
.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    animation: float 20s infinite ease-in-out;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-delay: 0s;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -50px;
    left: -50px;
    animation-delay: 5s;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

.sql-circle {
    background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, rgba(0, 102, 255, 0) 70%);
}

.api-circle {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.15) 0%, rgba(16, 185, 129, 0) 70%);
}

.mf-circle {
    background: radial-gradient(circle, rgba(142, 68, 173, 0.15) 0%, rgba(142, 68, 173, 0) 70%);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-30px) scale(1.05);
    }
}

/* Modern Features Section */
.features-modern {
    padding: 100px 0;
    background: #FFFFFF;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-modern h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header-modern p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-500);
    max-width: 600px;
    margin: 0 auto;
}

.features-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.feature-card-modern {
    position: relative;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card-modern:hover::before {
    transform: scaleX(1);
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(196, 30, 58, 0.3);
}

.feature-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.3);
    transition: all 0.4s ease;
}

.feature-card-modern:hover .feature-icon-modern {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 32px rgba(196, 30, 58, 0.4);
}

.sql-icon {
    background: linear-gradient(135deg, #0066FF 0%, #00BFFF 100%);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}

.api-icon {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.mf-icon {
    background: linear-gradient(135deg, #8E44AD 0%, #9B59B6 100%);
    box-shadow: 0 8px 24px rgba(142, 68, 173, 0.3);
}

.rep-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.3);
}

.feature-card-modern h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--text-900);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.feature-card-modern p {
    font-size: 1rem;
    color: var(--text-600);
    line-height: 1.7;
}

.card-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.feature-card-modern:hover .card-glow {
    opacity: 1;
}

.sql-glow {
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
}

.api-glow {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
}

.mf-glow {
    background: radial-gradient(circle, rgba(142, 68, 173, 0.1) 0%, transparent 70%);
}

.rep-glow {
    background: radial-gradient(circle, rgba(196, 30, 58, 0.1) 0%, transparent 70%);
}

/* Use Cases Section */
.usecases-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #FAFBFC 0%, #F5F7FA 100%);
}

.usecases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.usecase-card {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.usecase-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.usecase-card:hover::after {
    transform: scaleX(1);
}

.usecase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.sql-card::after {
    background: linear-gradient(90deg, #0066FF 0%, #00BFFF 100%);
}

.api-card::after {
    background: linear-gradient(90deg, #10B981 0%, #34D399 100%);
}

.mf-card::after {
    background: linear-gradient(90deg, #8E44AD 0%, #9B59B6 100%);
}

.usecase-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(196, 30, 58, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.sql-tag {
    background: rgba(0, 102, 255, 0.1);
    color: #0066FF;
}

.api-tag {
    background: rgba(16, 185, 129, 0.1);
    color: #10B981;
}

.mf-tag {
    background: rgba(142, 68, 173, 0.1);
    color: #8E44AD;
}

.usecase-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-900);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.usecase-card p {
    font-size: 1rem;
    color: var(--text-600);
    line-height: 1.7;
    margin-bottom: 20px;
}

.usecase-points {
    list-style: none;
    padding: 0;
    margin: 0;
}

.usecase-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--text-700);
}

.usecase-points li svg {
    flex-shrink: 0;
    color: var(--primary);
}

.sql-card .usecase-points li svg {
    color: #0066FF;
}

.api-card .usecase-points li svg {
    color: #10B981;
}

.mf-card .usecase-points li svg {
    color: #8E44AD;
}

/* Modern Stats Section */
.stats-modern {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    overflow: hidden;
}

.stats-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" xmlns="http://www.w3.org/2000/svg"><circle cx="30" cy="30" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.rep-stats {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.sql-stats {
    background: linear-gradient(135deg, #0066FF 0%, #00BFFF 100%);
}

.api-stats {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
}

.mf-stats {
    background: linear-gradient(135deg, #8E44AD 0%, #9B59B6 100%);
}

.stats-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 1;
}

.stat-card-modern {
    text-align: center;
    padding: 32px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.stat-card-modern:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s ease;
}

.stat-card-modern:hover .stat-icon {
    transform: scale(1.1) rotate(10deg);
    background: rgba(255, 255, 255, 0.3);
}

.sql-stat-icon,
.api-stat-icon,
.mf-stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s ease;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.stat-label-modern {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Modern CTA Section */
.cta-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.cta-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.1) 0%, transparent 70%);
    animation: rotate 30s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.cta-content-modern {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-modern h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-900);
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-content-modern p {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-600);
    margin-bottom: 40px;
    line-height: 1.7;
}

.btn-modern {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-modern:hover::before {
    width: 400px;
    height: 400px;
}

.btn-modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(196, 30, 58, 0.4);
}

.btn-modern span {
    position: relative;
    z-index: 1;
}

.btn-modern svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn-modern:hover svg {
    transform: translateX(4px);
}

.btn-primary-modern {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    box-shadow: 0 8px 24px rgba(196, 30, 58, 0.3);
}

.btn-primary-modern:hover {
    box-shadow: 0 16px 40px rgba(196, 30, 58, 0.4);
}

.sql-btn {
    background: linear-gradient(135deg, #0066FF 0%, #00BFFF 100%);
    box-shadow: 0 8px 24px rgba(0, 102, 255, 0.3);
}

.sql-btn:hover {
    box-shadow: 0 16px 40px rgba(0, 102, 255, 0.4);
}

.api-btn {
    background: linear-gradient(135deg, #10B981 0%, #34D399 100%);
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.3);
}

.api-btn:hover {
    box-shadow: 0 16px 40px rgba(16, 185, 129, 0.4);
}

.mf-btn {
    background: linear-gradient(135deg, #8E44AD 0%, #9B59B6 100%);
    box-shadow: 0 8px 24px rgba(142, 68, 173, 0.3);
}

.mf-btn:hover {
    box-shadow: 0 16px 40px rgba(142, 68, 173, 0.4);
}

.sql-cta::before {
    background: radial-gradient(circle, rgba(0, 102, 255, 0.1) 0%, transparent 70%);
}

.api-cta::before {
    background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
}

.mf-cta::before {
    background: radial-gradient(circle, rgba(142, 68, 173, 0.1) 0%, transparent 70%);
}

/* Responsive Design for Modern Modules */
@media (max-width: 768px) {
    .module-hero-modern {
        padding: 80px 0 60px;
    }

    .hero-title-modern {
        font-size: 2rem;
    }

    .features-grid-modern,
    .usecases-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .stats-grid-modern {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .decoration-circle {
        display: none;
    }

    .feature-card-modern,
    .usecase-card {
        padding: 28px;
    }

    .btn-modern {
        padding: 14px 32px;
        font-size: 1rem;
    }
}
