/* ============================================
   BoxApps Custom Styles
   Based on logo colors and modern design
   ============================================ */

/* Color Variables - Modern AI Theme with Brand Colors for Interactive Elements */
:root {
    /* Brand Colors - Only for buttons and icons */
    --primary-color: #F53003;        /* Main brand red/orange from logo */
    --primary-hover: #F61500;        /* Darker variant */
    --secondary-color: #FF4433;      /* Secondary red/orange accent */
    --accent-color: #F8B803;         /* Yellow/gold accent from logo */
    --success-color: #06A77D;        /* Success/green color */
    
    /* Modern AI Theme Colors - For backgrounds and sections */
    --ai-dark: #0A0B1E;              /* Deep dark blue-black */
    --ai-darker: #050611;            /* Almost black */
    --ai-dark-card: #0F1123;         /* Dark card background */
    --ai-gradient-start: #1a1b3a;    /* Gradient start */
    --ai-gradient-end: #0f1123;      /* Gradient end */
    --ai-accent-blue: #3B82F6;       /* AI blue accent */
    --ai-accent-purple: #8B5CF6;     /* AI purple accent */
    --ai-accent-cyan: #06B6D4;       /* AI cyan accent */
    
    /* Light theme colors */
    --bg-light: #FAFBFC;             /* Light background */
    --bg-light-alt: #F5F7FA;         /* Alternate light background */
    --bg-card-light: #FFFFFF;        /* Light card background */
    
    /* Text Colors */
    --text-primary: #1E293B;         /* Primary text */
    --text-secondary: #64748B;       /* Secondary text */
    --text-light: #94A3B8;           /* Light text */
    --text-white: #FFFFFF;           /* White text */
    
    /* Borders and Dividers */
    --border-light: rgba(226, 232, 240, 0.8);
    --border-dark: rgba(51, 65, 85, 0.2);
    --divider-gradient: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
    
    /* Legacy support */
    --dark-color: #1B1B18;
    --light-color: #FAFBFC;
    --text-color: #1E293B;
    --text-light-old: #706F6C;
    --border-color: rgba(226, 232, 240, 0.8);
    --bg-dark: #0A0B1E;
    --bg-card-dark: #0F1123;
    
    /* Modern Shadow System */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-colored: 0 10px 30px -5px rgba(245, 48, 3, 0.3);
    
    /* Modern Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
    transition: background-color 0.3s ease;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header Styles - Dark AI Theme Matching Footer */
.main-header {
    background: linear-gradient(135deg, var(--ai-dark) 0%, var(--ai-darker) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    overflow: hidden;
}

.main-header::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--divider-gradient);
}

.main-header::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(60px);
    animation: float 20s ease-in-out infinite;
    pointer-events: none;
}

.main-header .container {
    position: relative;
    z-index: 2;
}

.navbar-toggler {
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.navbar-toggler:hover {
    border-color: rgba(245, 48, 3, 0.5);
    box-shadow: 0 0 10px rgba(245, 48, 3, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 0.2rem rgba(245, 48, 3, 0.25);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    filter: drop-shadow(0 0 3px rgba(245, 48, 3, 0.3));
}

.navbar-nav {
    position: relative;
    z-index: 2;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text-white);
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.navbar-brand:hover {
    color: var(--text-white);
    filter: drop-shadow(0 0 10px rgba(245, 48, 3, 0.5));
}

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
    filter: brightness(0) invert(1);
}

.navbar-brand:hover .logo-img {
    transform: scale(1.08);
    filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(245, 48, 3, 0.6));
}

.brand-text {
    display: none;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    position: relative;
    text-shadow: 0 0 0 rgba(245, 48, 3, 0);
}

.navbar-nav .nav-link:hover {
    color: var(--text-white);
    text-shadow: 0 0 15px rgba(245, 48, 3, 0.8), 0 0 30px rgba(245, 48, 3, 0.4);
    transform: translateY(-1px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 0 10px rgba(245, 48, 3, 0.6);
    transition: var(--transition);
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
    box-shadow: 0 0 15px rgba(245, 48, 3, 0.8);
}

.navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(245, 48, 3, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transition: var(--transition);
    opacity: 0;
    z-index: -1;
}

.navbar-nav .nav-link:hover::before {
    width: 120%;
    height: 200%;
    opacity: 1;
}

/* Language Dropdown Styles */
.language-dropdown {
    margin-left: 1rem;
    position: relative;
}

.language-btn {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    gap: 0.5rem;
    position: relative;
    z-index: 2;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(245, 48, 3, 0.5);
    color: var(--text-white);
    box-shadow: 0 0 15px rgba(245, 48, 3, 0.3);
    transform: translateY(-1px);
}

.language-btn:focus {
    box-shadow: 0 0 0 0.2rem rgba(245, 48, 3, 0.25);
    border-color: rgba(245, 48, 3, 0.5);
}

.language-btn i.fa-globe {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.language-btn:hover i.fa-globe {
    color: var(--text-white);
    filter: drop-shadow(0 0 8px rgba(245, 48, 3, 0.6));
}

.current-lang {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 0 0 rgba(245, 48, 3, 0);
    transition: var(--transition);
}

.language-btn:hover .current-lang {
    text-shadow: 0 0 10px rgba(245, 48, 3, 0.6);
}

.language-btn .fa-chevron-down {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.language-btn:hover .fa-chevron-down {
    color: var(--text-white);
}

.language-dropdown .dropdown-menu {
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(245, 48, 3, 0.2);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    min-width: 180px;
    backdrop-filter: blur(20px);
    background: rgba(15, 17, 35, 0.95);
    right: 0 !important;
    left: auto !important;
    top: 100% !important;
}

.language-dropdown .dropdown-item {
    padding: 0.75rem 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.language-dropdown .dropdown-item:hover {
    background: rgba(245, 48, 3, 0.15);
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(245, 48, 3, 0.6);
    padding-left: 1.5rem;
}

.language-dropdown .dropdown-item.active {
    background: rgba(245, 48, 3, 0.2);
    color: var(--text-white);
    text-shadow: 0 0 10px rgba(245, 48, 3, 0.8);
}

.lang-flag {
    font-size: 1.25rem;
    width: 24px;
    display: inline-block;
    text-align: center;
}

/* Hide brand text - logo only */
.brand-text {
    display: none;
}

/* Hero Section - Modern AI Theme */
.hero-section {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #FFFFFF 50%, var(--bg-light-alt) 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.05) 50%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite;
    filter: blur(60px);
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, rgba(59, 130, 246, 0.04) 50%, transparent 70%);
    border-radius: 50%;
    animation: float 30s ease-in-out infinite reverse;
    filter: blur(60px);
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    line-height: 1.8;
    font-weight: 400;
}

.hero-question {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.hero-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(245, 48, 3, 0.6);
}

.question-text {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    line-height: 1.6;
    margin: 0;
}

.highlight-text {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 0 20px rgba(245, 48, 3, 0.6);
    position: relative;
}

.hero-cta {
    padding: 1.5rem;
    background: rgba(15, 17, 35, 0.4);
    border-radius: 12px;
    border-left: 3px solid var(--primary-color);
    backdrop-filter: blur(10px);
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin: 0;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.hero-button-primary,
.hero-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: none;
    z-index: 10;
    pointer-events: auto;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
}

.hero-button-primary {
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.hero-button-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    pointer-events: none;
    z-index: 0;
}

.hero-button-primary:hover::before {
    width: 400px;
    height: 400px;
}

.hero-button-primary span,
.hero-button-primary i {
    position: relative;
    z-index: 1;
}

.hero-button-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, var(--ai-accent-purple) 0%, var(--ai-accent-blue) 100%);
}

.hero-button-primary:hover i {
    transform: translateX(5px);
}

.hero-button-secondary {
    color: var(--text-white);
    background: rgba(15, 17, 35, 0.6);
    border: 2px solid rgba(59, 130, 246, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.hero-button-secondary span,
.hero-button-secondary i {
    position: relative;
    z-index: 1;
}

.hero-button-secondary:hover {
    transform: translateY(-3px);
    background: rgba(15, 17, 35, 0.8);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.hero-button-secondary:hover i {
    transform: scale(1.1);
}

.btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    background: #E55A2A;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    padding: 0.75rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.hero-image {
    position: relative;
    z-index: 1;
    padding-bottom: 20px;
}

.hero-graphic {
    width: 100%;
    min-height: 500px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    position: relative;
    overflow: visible;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-graphic::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.1) 50%, transparent 70%);
    animation: float 15s ease-in-out infinite;
    z-index: 1;
}

.hero-data-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: 2;
    transition: var(--transition);
    filter: brightness(0.85) contrast(1.1);
}

.hero-graphic:hover .hero-data-image {
    transform: scale(1.05);
    filter: brightness(0.9) contrast(1.15);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 48, 3, 0.1) 0%, rgba(59, 130, 246, 0.15) 50%, rgba(139, 92, 246, 0.1) 100%);
    z-index: 3;
    pointer-events: none;
    border-radius: 24px;
}

.hero-graphic::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--ai-accent-blue));
    z-index: 4;
    border-radius: 24px 24px 0 0;
}

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

/* Data Process Diagram */
.data-process-diagram {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 40px 20px 50px 20px;
    width: 100%;
    min-height: 100%;
    position: relative;
    z-index: 2;
    flex-wrap: wrap;
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 18px 15px;
    background: rgba(15, 17, 35, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    min-width: 160px;
    max-width: 180px;
    flex: 1;
    transition: all 0.3s ease;
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.process-step:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.2);
}

.process-step-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 12px;
    margin-bottom: 12px;
    font-size: 24px;
    color: var(--ai-accent-blue);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.process-step-1 .process-step-icon {
    color: #ef4444;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(220, 38, 38, 0.2));
    border-color: rgba(239, 68, 68, 0.3);
}

.process-step-2 .process-step-icon {
    color: #f59e0b;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.2));
    border-color: rgba(245, 158, 11, 0.3);
}

.process-step-3 .process-step-icon {
    color: #10b981;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    border-color: rgba(16, 185, 129, 0.3);
}

.process-step-4 .process-step-icon {
    color: #8b5cf6;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(124, 58, 237, 0.2));
    border-color: rgba(139, 92, 246, 0.3);
}

.process-step-label {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    text-align: center;
}

.process-step-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.process-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.process-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(59, 130, 246, 0.4);
}

.process-item i {
    font-size: 10px;
    opacity: 0.7;
}

.process-arrow {
    color: var(--ai-accent-blue);
    font-size: 18px;
    animation: pulse 2s ease-in-out infinite;
    opacity: 0.8;
    flex-shrink: 0;
    transform: rotate(0deg); /* Explicitly set to point sideways (right) on larger screens */
}

@keyframes pulse {
    0%, 100% { 
        opacity: 0.6;
        transform: rotate(0deg) translateX(0);
    }
    50% { 
        opacity: 1;
        transform: rotate(0deg) translateX(5px);
    }
}

@keyframes pulse-vertical {
    0%, 100% { 
        opacity: 0.6;
        transform: rotate(90deg) translateY(0);
    }
    50% { 
        opacity: 1;
        transform: rotate(90deg) translateY(5px);
    }
}

@media (max-width: 768px) {
    .data-process-diagram {
        flex-direction: column;
        gap: 20px;
        padding: 30px 20px 40px 20px;
    }
    
    .process-arrow {
        transform: rotate(90deg); /* Point down on mobile */
        animation: pulse-vertical 2s ease-in-out infinite;
    }
    
    .process-step {
        min-width: 200px;
        max-width: 100%;
        width: 100%;
        padding: 25px 20px;
    }
    
    .process-step-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .process-step-label {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .process-step-items {
        gap: 10px;
    }
    
    .process-item {
        font-size: 13px;
        padding: 8px 14px;
    }
    
    .process-item i {
        font-size: 12px;
    }
}

/* Responsive adjustments for data process diagram */
@media (max-width: 991px) {
    .data-process-diagram {
        gap: 15px;
        padding: 30px 20px 40px 20px;
    }
    
    .process-step {
        min-width: 180px;
        max-width: 200px;
        padding: 20px 18px;
    }
    
    .process-step-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
        margin-bottom: 14px;
    }
    
    .process-step-label {
        font-size: 16px;
        margin-bottom: 14px;
    }
    
    .process-item {
        font-size: 12px;
        padding: 7px 12px;
    }
    
    .process-item i {
        font-size: 11px;
    }
}

/* Services Section - Modern AI Theme */
.services-section {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, #FFFFFF 50%, var(--bg-light-alt) 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--divider-gradient);
}

.services-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -15%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.06) 0%, rgba(139, 92, 246, 0.04) 50%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.section-header {
    margin-bottom: 5rem;
    position: relative;
}

.section-header::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
    opacity: 0.5;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple));
    border-radius: 2px;
    opacity: 0.6;
}

.section-header .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-top: 1.5rem;
    line-height: 1.7;
    font-weight: 400;
}

.service-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    height: 100%;
    transition: var(--transition);
    border: 1px solid var(--border-light);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.service-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, rgba(139, 92, 246, 0.05) 50%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(59, 130, 246, 0.3);
    background: rgba(255, 255, 255, 0.95);
}

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

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
    position: relative;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    /* Brand color only on hover for icons */
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(245, 48, 3, 0.3);
    border-color: var(--primary-color);
}

.service-card:hover .service-icon::before {
    opacity: 1;
}

.service-icon i {
    font-size: 2.2rem;
    color: var(--primary-color);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon i {
    color: #fff;
    transform: scale(1.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    transition: var(--transition);
}

.service-card:hover .service-title {
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    line-height: 1.8;
    font-weight: 400;
}

/* Stats Section - Keep brand colors for icons only */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--ai-gradient-start) 0%, var(--ai-gradient-end) 100%);
    color: var(--text-white);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 30s ease-in-out infinite;
    filter: blur(80px);
}

.stats-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 35s ease-in-out infinite reverse;
    filter: blur(80px);
}

.stat-card {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
}

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

.stat-card:hover::before {
    opacity: 1;
}

.stat-icon {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.stat-icon i {
    font-size: 2rem;
    /* Brand color for icons */
    color: var(--primary-color);
    transition: var(--transition);
}

.stat-card:hover .stat-icon i {
    color: var(--primary-color);
    transform: scale(1.1);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--text-white);
    position: relative;
    z-index: 1;
}

.stat-label {
    font-size: 1.125rem;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 1;
}

/* About Section - Modern AI Theme */
.about-section {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, #FFFFFF 50%, var(--bg-light-alt) 100%);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--divider-gradient);
}

.about-content {
    padding-right: 2rem;
}

.about-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-weight: 400;
}

.about-features {
    list-style: none;
    margin-top: 2rem;
}

.about-features li {
    padding: 0.75rem 0;
    font-size: 1.125rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.about-features li:hover {
    color: var(--text-secondary);
    transform: translateX(5px);
}

.about-features li i {
    /* Brand color for icons */
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: var(--transition);
}

.about-features li:hover i {
    transform: scale(1.2);
    color: var(--secondary-color);
}

.about-chart {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    height: 400px;
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.about-chart:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.about-chart::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan));
}

/* Contact Section - Modern AI Theme */
.contact-section {
    padding: 140px 0;
    background: linear-gradient(180deg, var(--bg-light-alt) 0%, #FFFFFF 50%, var(--bg-light) 100%);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--divider-gradient);
}

.contact-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan));
}

.contact-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 48, 3, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    /* Brand color for icons */
    background: linear-gradient(135deg, rgba(245, 48, 3, 0.1) 0%, rgba(255, 68, 51, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.25rem;
    flex-shrink: 0;
    transition: var(--transition);
}

.contact-item:hover i {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    transform: scale(1.1) rotate(5deg);
}

.contact-item h5 {
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.contact-item p {
    color: var(--text-secondary);
    margin: 0;
}

.contact-form .form-control {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
}

/* Footer - Modern AI Theme */
.main-footer {
    background: linear-gradient(135deg, var(--ai-dark) 0%, var(--ai-darker) 100%);
    color: var(--text-white);
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: var(--divider-gradient);
}

.main-footer::after {
    content: '';
    position: absolute;
    top: 20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    animation: float 25s ease-in-out infinite;
}

/* ============================================
   NEWSLETTER SUBSCRIPTION SECTION
   ============================================ */

.newsletter-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 17, 35, 0.98) 0%, rgba(20, 25, 45, 0.98) 100%);
}

.newsletter-card {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.newsletter-glow {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

.newsletter-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.newsletter-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #FFFFFF;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    animation: float 3s ease-in-out infinite;
}

.newsletter-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.newsletter-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-form {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-input-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.newsletter-input-wrapper {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.newsletter-input-icon {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 1.1rem;
    z-index: 1;
}

.newsletter-input {
    width: 100%;
    padding: 1.2rem 1.25rem 1.2rem 3.5rem;
    background: rgba(15, 17, 35, 0.8);
    border: 2px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    color: var(--text-white);
    font-size: 1rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    background: rgba(15, 17, 35, 0.95);
}

.newsletter-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

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

.newsletter-button:hover::before {
    width: 400px;
    height: 400px;
}

.newsletter-button span,
.newsletter-button i {
    position: relative;
    z-index: 1;
}

.newsletter-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5), 0 0 50px rgba(139, 92, 246, 0.3);
}

.newsletter-button:hover i {
    transform: translateX(5px);
}

.newsletter-button:active {
    transform: translateY(-1px) scale(1.02);
}

.newsletter-message {
    min-height: 30px;
    margin-bottom: 1rem;
    text-align: center;
    font-size: 0.95rem;
    transition: var(--transition);
}

.newsletter-message.success {
    color: #22C55E;
}

.newsletter-message.error {
    color: #EF4444;
}

.newsletter-privacy {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0;
}

.newsletter-privacy i {
    color: var(--ai-accent-blue);
    font-size: 0.85rem;
}

/* Responsive Design for Newsletter */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 60px 0;
    }

    .newsletter-card {
        padding: 2.5rem 1.5rem;
    }

    .newsletter-title {
        font-size: 2rem;
    }

    .newsletter-description {
        font-size: 1rem;
    }

    .newsletter-input-group {
        flex-direction: column;
    }

    .newsletter-input-wrapper {
        min-width: 100%;
    }

    .newsletter-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
}

.footer-brand {
    margin-bottom: 2rem;
}

.footer-brand p {
    max-width: 300px;
    margin-top: 1rem;
}

.footer-logo-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo-box {
    display: inline-block;
    padding: 0.35rem 0.6rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border: 1.5px solid rgba(59, 130, 246, 0.4);
    border-radius: 8px;
    font-weight: 800;
    font-size: 1.3rem;
    color: var(--ai-accent-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
    transition: var(--transition);
}

.footer-logo-apps {
    display: inline-block;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.footer-brand:hover .footer-logo-box {
    transform: scale(1.05);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
}

.footer-brand:hover .footer-logo-apps {
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #fff;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

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

.footer-links a:hover {
    /* Brand color on hover */
    color: var(--primary-color);
    padding-left: 8px;
    transform: translateX(3px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    word-break: break-word;
}

.footer-contact li i {
    /* Brand color for icons */
    color: var(--primary-color);
    width: 20px;
    min-width: 20px;
    flex-shrink: 0;
    transition: var(--transition);
    margin-top: 0.2rem;
}

.footer-contact li:hover {
    color: rgba(255, 255, 255, 0.9);
}

.footer-contact li:hover i {
    transform: scale(1.15);
    color: var(--secondary-color);
}

.footer-contact li a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact li a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links a:hover {
    /* Brand color on hover */
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(245, 48, 3, 0.4);
    color: #fff;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Footer section spacing improvements */
.main-footer .row > div {
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .main-footer .row > div:last-child {
        margin-bottom: 0;
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
        margin-bottom: 1.25rem;
        text-align: left;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.7;
        margin-bottom: 0.875rem;
        text-align: left;
    }
    
    .hero-cta {
        padding: 1.25rem;
        margin-top: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .cta-text {
        font-size: 1rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.6;
        text-align: left;
    }
    
    .hero-question {
        padding-left: 1rem;
        margin-bottom: 1.25rem;
    }
    
    .question-text {
        font-size: 1.25rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.7;
        text-align: left;
    }
    
    .highlight-text {
        display: inline-block;
        white-space: normal;
        word-break: break-word;
    }
    
    .hero-buttons {
        flex-direction: column;
        position: relative;
        z-index: 10;
        pointer-events: auto;
        margin-top: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        min-height: 48px;
        z-index: 10;
        pointer-events: auto;
        touch-action: manipulation;
    }
    
    .hero-button-primary,
    .hero-button-secondary {
        z-index: 10;
        pointer-events: auto;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
    }
    
    .hero-image {
        margin-top: 1rem;
    }
    
    .services-section,
    .about-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .service-card {
        margin-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
    
    .main-footer {
        padding: 40px 0 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.75rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.35;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.75;
        margin-bottom: 0.75rem;
        text-align: left;
    }
    
    .hero-cta {
        padding: 1rem;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
    
    .cta-text {
        font-size: 0.95rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.65;
        text-align: left;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.875rem;
        width: 100%;
        position: relative;
        z-index: 10;
        pointer-events: auto;
        margin-top: 1rem;
    }
    
    .hero-button-primary,
    .hero-button-secondary {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        z-index: 10;
        pointer-events: auto;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
    }
    
    .hero-image {
        margin-top: 0.75rem;
    }
    
    .hero-question {
        padding-left: 0.75rem;
        margin-bottom: 1rem;
    }
    
    .question-text {
        font-size: 1.1rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
        line-height: 1.75;
        text-align: left;
        padding-right: 0.5rem;
    }
    
    .highlight-text {
        display: inline-block;
        white-space: normal;
        word-break: break-word;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .about-chart {
        height: 300px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #E55A2A;
}

/* Modern Card Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Add fade-in animation to cards on load */
.service-card,
.stat-card,
.system-card {
    animation: fadeInUp 0.6s ease-out backwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }
.service-card:nth-child(7) { animation-delay: 0.7s; }

.stat-card:nth-child(1) { animation-delay: 0.1s; }
.stat-card:nth-child(2) { animation-delay: 0.2s; }
.stat-card:nth-child(3) { animation-delay: 0.3s; }
.stat-card:nth-child(4) { animation-delay: 0.4s; }

.system-card:nth-child(1) { animation-delay: 0.1s; }
.system-card:nth-child(2) { animation-delay: 0.2s; }
.system-card:nth-child(3) { animation-delay: 0.3s; }

/* Enhanced Button Styles */
.btn-primary {
    position: relative;
    overflow: hidden;
}

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

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

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

/* Glassmorphism Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Modern Section Dividers */
.section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--border-color), transparent);
    margin: 80px 0;
    position: relative;
}

.section-divider::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--bg-light), 0 0 0 6px var(--primary-color);
}

/* Systems Showcase Section - AI Theme Dark Background */
.systems-showcase-section {
    padding: 140px 0;
    background: linear-gradient(135deg, var(--ai-dark) 0%, var(--ai-darker) 50%, var(--ai-dark-card) 100%);
    position: relative;
    overflow: hidden;
}

/* Falling Particles Animation Background */
.systems-showcase-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.18) 0%, rgba(59, 130, 246, 0.12) 50%, transparent 70%);
    border-radius: 50%;
    animation: float 35s ease-in-out infinite reverse;
    filter: blur(100px);
    z-index: 0;
}

.systems-showcase-section .particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.systems-showcase-section .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    animation: particleFall linear infinite;
    opacity: 0;
}

.systems-showcase-section .particle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(2px);
}

@keyframes particleFall {
    0% {
        transform: translateY(-100vh) translateX(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) translateX(100px);
        opacity: 0;
    }
}

.systems-showcase-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.15) 50%, transparent 70%);
    border-radius: 50%;
    animation: float 30s ease-in-out infinite;
    filter: blur(100px);
}


.systems-showcase-section .section-header {
    position: relative;
    z-index: 2;
}

.systems-showcase-section .container {
    position: relative;
    z-index: 2;
}

.systems-showcase-section .section-header::before {
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.5), transparent);
}

.systems-showcase-section .section-title {
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.systems-showcase-section .section-title::after {
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan));
}

.systems-showcase-section .section-subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.system-card {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    height: 100%;
    transition: var(--transition);
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    isolation: isolate;
}

.system-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.system-card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.system-card:hover .system-card-glow {
    opacity: 1;
}

.system-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2), 0 0 60px rgba(139, 92, 246, 0.1);
    background: rgba(15, 17, 35, 0.8);
}

.system-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.system-card-icon i {
    font-size: 2.5rem;
    color: #FFFFFF;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.system-card:hover .system-card-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.system-card:hover .system-card-icon i {
    color: #FFFFFF;
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.system-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    transform: translateZ(0);
}

.system-card-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-weight: 400;
    position: relative;
    z-index: 1;
    transform: translateZ(0);
}

.system-card:hover .system-card-title {
    color: var(--text-white);
}

.system-card:hover .system-card-description {
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    .systems-showcase-section {
        padding: 80px 0;
    }
    
    .system-card {
        margin-bottom: 1.5rem;
        padding: 2rem;
    }
    
    .system-card-title {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
        text-align: left;
    }
    
    .system-card-description {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.7;
        text-align: left;
    }
}

/* ============================================
   WORKFLOW VISUALIZATION STYLES
   ============================================ */

/* Workflow Introduction Card */
.workflow-intro-card {
    position: relative;
    background: rgba(15, 17, 35, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out;
    text-align: center;
}

.workflow-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan), var(--ai-accent-blue));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.workflow-intro-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 0;
}

.workflow-intro-card:hover {
    transform: translateY(-3px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.25), 0 0 60px rgba(139, 92, 246, 0.1);
    background: rgba(15, 17, 35, 0.9);
}

.workflow-intro-card:hover::after {
    opacity: 1;
}

.workflow-intro-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25) 0%, rgba(139, 92, 246, 0.25) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.workflow-intro-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: var(--transition);
}

.workflow-intro-card:hover .workflow-intro-icon::before {
    opacity: 1;
}

.workflow-intro-icon i {
    font-size: 2.8rem;
    color: #FFFFFF;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.workflow-intro-card:hover .workflow-intro-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.35), rgba(139, 92, 246, 0.35));
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.workflow-intro-card:hover .workflow-intro-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.6));
}

.workflow-intro-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.workflow-intro-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    font-weight: 400;
    margin: 0 0 2rem 0;
    position: relative;
    z-index: 1;
}

.workflow-intro-content {
    margin-top: 2rem;
    position: relative;
    z-index: 1;
    text-align: left;
}

.intro-paragraph {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: left;
}

.intro-paragraph strong {
    color: #FFFFFF;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(139, 92, 246, 0.25));
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    display: inline-block;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.2);
    transition: var(--transition);
}

.intro-paragraph strong:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.35), rgba(139, 92, 246, 0.35));
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.intro-paragraph:last-child {
    margin-bottom: 0;
}

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.workflow-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

/* Workflow Step Cards */
.workflow-step {
    position: relative;
    margin: 2rem auto 2rem;
    max-width: 800px;
    animation: fadeInUp 0.6s ease-out;
}

.workflow-step:first-child {
    margin-top: 0;
}

.workflow-step-card {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}

.workflow-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.workflow-step-card:hover::before {
    transform: scaleX(1);
}

.workflow-step-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2), 0 0 60px rgba(139, 92, 246, 0.1);
    background: rgba(15, 17, 35, 0.8);
}

.workflow-step-number {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ai-accent-blue), var(--ai-accent-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    z-index: 2;
}

.workflow-step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.workflow-step-icon i {
    font-size: 2.5rem;
    color: #FFFFFF;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.workflow-step-card:hover .workflow-step-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.workflow-step-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
}

.workflow-step-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.workflow-step-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.workflow-step-list li {
    color: rgba(255, 255, 255, 0.7);
    padding: 0.5rem 1rem;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 8px;
    border-left: 3px solid var(--ai-accent-blue);
    transition: var(--transition);
}

.workflow-step-list li:hover {
    background: rgba(59, 130, 246, 0.2);
    color: rgba(255, 255, 255, 0.9);
    transform: translateX(5px);
}

/* Connector Arrows */
.workflow-connector {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
    position: relative;
}

.workflow-arrow {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Decision Point */
.workflow-decision {
    max-width: 900px;
}

.workflow-decision-card {
    border: 2px solid rgba(139, 92, 246, 0.4);
    background: rgba(15, 17, 35, 0.8);
}

.workflow-decision-card::before {
    background: linear-gradient(90deg, var(--ai-accent-purple), var(--ai-accent-cyan), var(--ai-accent-blue));
    transform: scaleX(1);
}

.decision-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 25px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    margin-top: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

/* Workflow Branches */
.workflow-branches {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 3rem 0;
    position: relative;
}

.workflow-branch {
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.branch-header {
    text-align: center;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(15, 17, 35, 0.4);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.branch-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: #FFFFFF;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.branch-icon-optimize {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(59, 130, 246, 0.3));
    border: 2px solid rgba(34, 197, 94, 0.5);
}

.branch-icon-new {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(236, 72, 153, 0.3));
    border: 2px solid rgba(139, 92, 246, 0.5);
}

.branch-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.branch-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Branch Steps */
.branch-steps {
    position: relative;
}

.branch-step {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
    position: relative;
}

.branch-step:hover {
    transform: translateX(5px);
    border-color: rgba(59, 130, 246, 0.5);
    background: rgba(15, 17, 35, 0.8);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

.branch-step-number-small {
    position: absolute;
    top: -10px;
    left: 15px;
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, var(--ai-accent-blue), var(--ai-accent-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(59, 130, 246, 0.4);
}

.branch-step-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.3rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.branch-step-content {
    flex: 1;
}

.branch-step-content h5 {
    color: var(--text-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.branch-step-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.branch-step-sublist {
    list-style: none;
    padding: 0;
    margin: 0.5rem 0 0;
}

.branch-step-sublist li {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    padding: 0.25rem 0;
    padding-left: 1rem;
    position: relative;
}

.branch-step-sublist li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--ai-accent-blue);
}

.branch-step-warning {
    border-color: rgba(245, 158, 11, 0.4);
    background: rgba(245, 158, 11, 0.05);
}

.branch-step-warning .branch-step-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(245, 158, 11, 0.2));
    color: #FBBF24;
}

.branch-connector-small {
    display: flex;
    justify-content: center;
    margin: 0.5rem 0;
    color: rgba(59, 130, 246, 0.6);
    font-size: 1rem;
}

.branch-goal {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 12px;
    border-left: 4px solid rgba(34, 197, 94, 0.6);
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.branch-goal i {
    color: rgba(34, 197, 94, 0.8);
}

/* Merge Point */
.workflow-merge {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0;
    position: relative;
    height: 60px;
}

.merge-line-left,
.merge-line-right {
    position: absolute;
    top: 50%;
    width: calc(50% - 40px);
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.4));
}

.merge-line-left {
    left: 0;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.4), transparent);
}

.merge-line-right {
    right: 0;
}

.merge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ai-accent-blue), var(--ai-accent-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
    z-index: 2;
    position: relative;
}

/* Final Step */
.workflow-final .workflow-step-card {
    border: 2px solid rgba(34, 197, 94, 0.4);
    background: rgba(15, 17, 35, 0.8);
}

.workflow-final .workflow-step-card::before {
    background: linear-gradient(90deg, var(--ai-accent-blue), rgba(34, 197, 94, 0.6), var(--ai-accent-purple));
    transform: scaleX(1);
}

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

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

/* Responsive Design */
@media (max-width: 992px) {
    .workflow-branches {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .merge-line-left,
    .merge-line-right {
        display: none;
    }

    .workflow-merge {
        height: auto;
        margin: 1rem 0;
    }
}

@media (max-width: 768px) {
    .workflow-intro-card {
        margin: 0 1rem;
    }

    .workflow-intro-card-header {
        padding: 2rem 1.5rem 1.5rem;
    }

    .workflow-intro-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }

    .workflow-intro-icon i {
        font-size: 2.2rem;
    }

    .workflow-intro-card {
        padding: 2rem 1.5rem;
    }
    
    .workflow-intro-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }
    
    .workflow-intro-icon i {
        font-size: 2.2rem;
    }

    .workflow-intro-title {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .workflow-intro-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .workflow-intro-content {
        margin-top: 1.5rem;
    }

    .intro-paragraph {
        font-size: 0.95rem;
        line-height: 1.8;
        text-align: left;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
    
    .intro-paragraph strong {
        display: inline-block;
        white-space: normal;
        word-break: break-word;
    }

    .workflow-step {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }
    
    .workflow-step:first-child {
        margin-top: 0;
    }
    
    .workflow-step-card {
        padding: 2rem 1.5rem;
        padding-top: 2.5rem;
    }
    
    .workflow-step-number {
        top: -20px;
    }

    .workflow-step-list {
        grid-template-columns: 1fr;
    }

    .branch-step {
        flex-direction: column;
        text-align: center;
    }

    .branch-step-icon {
        margin: 0 auto;
    }

    .workflow-step-icon {
        width: 60px;
        height: 60px;
    }

    .workflow-step-icon i {
        font-size: 2rem;
    }

    .workflow-step-title {
        font-size: 1.5rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
        text-align: left;
    }
    
    .workflow-step-description {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.7;
        text-align: left;
    }

    .branch-title {
        font-size: 1.3rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
    }
    
    .branch-subtitle {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
    }
    
    .workflow-intro-title {
        font-size: 1.75rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
        text-align: left;
    }
    
    .workflow-intro-subtitle {
        font-size: 1rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.7;
        text-align: left;
    }
    
    .intro-paragraph {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.8;
        text-align: left;
    }
    
    .intro-paragraph strong {
        display: inline-block;
        white-space: normal;
        word-break: break-word;
    }
    
    .workflow-intro-card-header {
        text-align: left;
    }
    
    .workflow-prebuild-title,
    .workflow-cta-title {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
        text-align: left;
    }
    
    .workflow-prebuild-description,
    .workflow-cta-description {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.7;
        text-align: left;
    }
    
    .workflow-prebuild-description strong,
    .workflow-cta-description strong {
        display: inline-block;
        white-space: normal;
        word-break: break-word;
    }
}

@media (max-width: 576px) {
    .workflow-intro-card {
        padding: 1.5rem;
    }
    
    .workflow-intro-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .workflow-intro-icon i {
        font-size: 1.8rem;
    }
    
    .workflow-intro-title {
        font-size: 1.5rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.35;
        text-align: center;
        margin-bottom: 0.5rem;
    }
    
    .workflow-intro-subtitle {
        font-size: 0.95rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.75;
        text-align: center;
        margin-bottom: 1.25rem;
    }
    
    .workflow-intro-content {
        margin-top: 1.25rem;
    }
    
    .intro-paragraph {
        font-size: 0.9rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.8;
        text-align: left;
    }
    
    .workflow-step {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .workflow-step:first-child {
        margin-top: 0;
    }
    
    .workflow-step-card {
        padding-top: 2rem;
    }
    
    .workflow-step-number {
        top: -18px;
    }
    
    .workflow-step-title {
        font-size: 1.3rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
        text-align: left;
    }
    
    .workflow-step-description {
        font-size: 0.95rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.75;
        text-align: left;
    }
    
    .branch-title {
        font-size: 1.2rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
    }
    
    .branch-subtitle {
        font-size: 0.9rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
    }
    
    .workflow-prebuild-title,
    .workflow-cta-title {
        font-size: 1.5rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.35;
        text-align: left;
    }
    
    .workflow-prebuild-description,
    .workflow-cta-description {
        font-size: 0.95rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.75;
        text-align: left;
    }
}

/* Workflow Pre-Built System Card */
.workflow-prebuild-card {
    position: relative;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(251, 191, 36, 0.15) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 4rem 3rem;
    border: 2px solid rgba(245, 158, 11, 0.4);
    box-shadow: 0 12px 40px rgba(245, 158, 11, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    overflow: hidden;
    transition: var(--transition);
    animation: fadeInUp 1s ease-out;
    margin-top: 3rem;
}

.workflow-prebuild-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #F59E0B, #FBBF24, #FCD34D, #F59E0B);
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.workflow-prebuild-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.2) 0%, transparent 70%);
    opacity: 0.5;
    transition: var(--transition);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
    z-index: 0;
}

.workflow-prebuild-card:hover {
    transform: translateY(-8px);
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 25px 60px rgba(245, 158, 11, 0.35), 0 0 100px rgba(251, 191, 36, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2) 0%, rgba(251, 191, 36, 0.2) 100%);
}

.workflow-prebuild-card:hover::after {
    opacity: 0.8;
}

.workflow-prebuild-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.workflow-prebuild-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25) 0%, rgba(251, 191, 36, 0.25) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(245, 158, 11, 0.4);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.workflow-prebuild-icon i {
    font-size: 3rem;
    color: #F59E0B;
    filter: drop-shadow(0 0 15px rgba(245, 158, 11, 0.5));
    transition: var(--transition);
}

.workflow-prebuild-card:hover .workflow-prebuild-icon {
    transform: scale(1.15) rotate(-10deg);
    border-color: rgba(245, 158, 11, 0.6);
    box-shadow: 0 15px 40px rgba(245, 158, 11, 0.4);
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.35), rgba(251, 191, 36, 0.35));
}

.workflow-prebuild-card:hover .workflow-prebuild-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(245, 158, 11, 0.7));
}

.workflow-prebuild-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.workflow-prebuild-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.workflow-prebuild-description strong {
    color: #FFFFFF;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.25), rgba(251, 191, 36, 0.25));
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    border: 1px solid rgba(245, 158, 11, 0.3);
}

.workflow-prebuild-highlight {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(15, 17, 35, 0.6);
    border-radius: 20px;
    border: 2px solid rgba(245, 158, 11, 0.3);
    margin: 2.5rem auto;
    max-width: 700px;
    transition: var(--transition);
}

.workflow-prebuild-card:hover .workflow-prebuild-highlight {
    border-color: rgba(245, 158, 11, 0.5);
    background: rgba(15, 17, 35, 0.8);
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.2);
}

.prebuild-highlight-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(251, 191, 36, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(245, 158, 11, 0.4);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.prebuild-highlight-icon i {
    font-size: 2rem;
    color: #F59E0B;
    filter: drop-shadow(0 0 10px rgba(245, 158, 11, 0.5));
}

.prebuild-highlight-text {
    text-align: left;
    flex: 1;
}

.prebuild-highlight-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.prebuild-highlight-text p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* AI-Driven Systems Showcase */
.workflow-ai-systems-showcase {
    margin: 3rem 0;
    padding: 2.5rem;
    background: rgba(15, 17, 35, 0.5);
    border-radius: 20px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    position: relative;
    overflow: hidden;
}

.workflow-ai-systems-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.6), rgba(139, 92, 246, 0.6), rgba(6, 182, 212, 0.6));
    opacity: 0.5;
}

.ai-systems-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-systems-title i {
    color: var(--ai-accent-blue);
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
    font-size: 1.6rem;
    -webkit-text-fill-color: var(--ai-accent-blue);
}

.ai-systems-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    text-align: center;
    margin-bottom: 0;
}

.ai-system-mini-card {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: var(--transition);
    height: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.ai-system-mini-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.ai-system-mini-card:hover::before {
    transform: scaleX(1);
}

.ai-system-mini-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(15, 17, 35, 0.8);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2), 0 0 30px rgba(139, 92, 246, 0.1);
}

.ai-system-mini-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.ai-system-mini-icon i {
    font-size: 1.8rem;
    color: var(--ai-accent-blue);
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
    transition: var(--transition);
}

.ai-system-mini-card:hover .ai-system-mini-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.35), rgba(139, 92, 246, 0.35));
    border-color: rgba(59, 130, 246, 0.5);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.3);
}

.ai-system-mini-card:hover .ai-system-mini-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.7));
}

.ai-system-mini-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.ai-system-mini-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

.ai-system-mini-card:hover .ai-system-mini-title {
    color: var(--text-white);
}

.ai-system-mini-card:hover .ai-system-mini-desc {
    color: rgba(255, 255, 255, 0.85);
}

.workflow-prebuild-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
}

.prebuild-feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(15, 17, 35, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(245, 158, 11, 0.2);
    transition: var(--transition);
}

.prebuild-feature-item:hover {
    transform: translateY(-3px);
    background: rgba(15, 17, 35, 0.7);
    border-color: rgba(245, 158, 11, 0.4);
    box-shadow: 0 6px 15px rgba(245, 158, 11, 0.2);
}

.prebuild-feature-item i {
    font-size: 1.3rem;
    color: #22C55E;
    filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.5));
}

.prebuild-feature-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

.workflow-prebuild-button-wrapper {
    margin-top: 2.5rem;
}

.workflow-prebuild-buttons-group {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.workflow-prebuild-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

.workflow-prebuild-button:hover::before {
    width: 400px;
    height: 400px;
}

.workflow-prebuild-button span,
.workflow-prebuild-button i {
    position: relative;
    z-index: 1;
}

.workflow-prebuild-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(245, 158, 11, 0.5), 0 0 40px rgba(251, 191, 36, 0.3);
    background: linear-gradient(135deg, #FBBF24 0%, #F59E0B 100%);
}

.workflow-prebuild-button:hover i {
    transform: translateX(5px);
}

.workflow-stacks-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

.workflow-stacks-button:hover::before {
    width: 400px;
    height: 400px;
}

.workflow-stacks-button span,
.workflow-stacks-button i {
    position: relative;
    z-index: 1;
}

.workflow-stacks-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, var(--ai-accent-purple) 0%, var(--ai-accent-blue) 100%);
}

.workflow-stacks-button:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Pre-Build Card */
@media (max-width: 768px) {
    .workflow-prebuild-card {
        padding: 2.5rem 1.5rem;
        margin-top: 2rem;
    }

    .workflow-prebuild-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .workflow-prebuild-icon i {
        font-size: 2.5rem;
    }

    .workflow-prebuild-title {
        font-size: 1.7rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
        text-align: left;
    }

    .workflow-prebuild-description {
        font-size: 1rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.7;
        text-align: left;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .workflow-prebuild-description strong {
        display: inline-block;
        white-space: normal;
        word-break: break-word;
    }

    .workflow-ai-systems-showcase {
        padding: 1.5rem;
        margin: 2rem 0;
    }

    .ai-systems-title {
        font-size: 1.4rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .ai-systems-title i {
        font-size: 1.4rem;
    }

    .ai-systems-subtitle {
        font-size: 0.9rem;
    }

    .ai-system-mini-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .ai-system-mini-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.75rem;
    }

    .ai-system-mini-icon i {
        font-size: 1.5rem;
    }

    .ai-system-mini-title {
        font-size: 1rem;
    }

    .ai-system-mini-desc {
        font-size: 0.85rem;
    }

    .workflow-prebuild-highlight {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

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

    .workflow-prebuild-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .prebuild-feature-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .workflow-prebuild-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

/* Workflow Call to Action Card */
.workflow-cta-card {
    position: relative;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 4rem 3rem;
    border: 2px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    overflow: hidden;
    transition: var(--transition);
    animation: fadeInUp 1s ease-out;
    margin-top: 3rem;
}

.workflow-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan), var(--ai-accent-blue));
    background-size: 200% 100%;
    animation: gradientShift 3s ease infinite;
}

.workflow-cta-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    opacity: 0.5;
    transition: var(--transition);
    pointer-events: none;
    animation: pulse 4s ease-in-out infinite;
    z-index: 0;
}

.workflow-cta-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 25px 60px rgba(59, 130, 246, 0.35), 0 0 100px rgba(139, 92, 246, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.15) inset;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
}

.workflow-cta-card:hover::after {
    opacity: 0.8;
}

.workflow-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.workflow-cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25) 0%, rgba(59, 130, 246, 0.25) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(34, 197, 94, 0.4);
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.workflow-cta-icon i {
    font-size: 3rem;
    color: #22C55E;
    filter: drop-shadow(0 0 15px rgba(34, 197, 94, 0.5));
    transition: var(--transition);
}

.workflow-cta-card:hover .workflow-cta-icon {
    transform: scale(1.15) rotate(10deg);
    border-color: rgba(34, 197, 94, 0.6);
    box-shadow: 0 15px 40px rgba(34, 197, 94, 0.4);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.35), rgba(59, 130, 246, 0.35));
}

.workflow-cta-card:hover .workflow-cta-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(34, 197, 94, 0.7));
}

.workflow-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.workflow-cta-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.workflow-cta-description strong {
    color: #FFFFFF;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25), rgba(59, 130, 246, 0.25));
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.workflow-cta-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.cta-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(15, 17, 35, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: var(--transition);
    text-align: left;
}

.cta-feature-item:hover {
    transform: translateY(-3px);
    background: rgba(15, 17, 35, 0.7);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.cta-feature-item i {
    font-size: 1.8rem;
    color: var(--ai-accent-blue);
    min-width: 30px;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.cta-feature-item:nth-child(1) i {
    color: #FBBF24;
}

.cta-feature-item:nth-child(2) i {
    color: var(--ai-accent-blue);
}

.cta-feature-item:nth-child(3) i {
    color: #EC4899;
}

.cta-feature-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
}

.cta-feature-item span strong {
    color: #FFFFFF;
    font-weight: 600;
}

.workflow-cta-message {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 2rem 0 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.workflow-cta-message strong {
    color: #FFFFFF;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.25), rgba(59, 130, 246, 0.25));
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.workflow-cta-button-wrapper {
    margin-top: 2.5rem;
}

.workflow-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

.workflow-cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.workflow-cta-button span,
.workflow-cta-button i {
    position: relative;
    z-index: 1;
}

.workflow-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, var(--ai-accent-purple) 0%, var(--ai-accent-blue) 100%);
}

.workflow-cta-button:hover i {
    transform: translateX(5px);
}

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

/* Responsive Design for CTA Card */
@media (max-width: 768px) {
    .workflow-cta-card {
        padding: 2.5rem 1.5rem;
        margin-top: 2rem;
    }

    .workflow-cta-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 1.5rem;
    }

    .workflow-cta-icon i {
        font-size: 2.5rem;
    }

    .workflow-cta-title {
        font-size: 1.7rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
        text-align: left;
    }

    .workflow-cta-description {
        font-size: 1rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.7;
        text-align: left;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .workflow-cta-description strong {
        display: inline-block;
        white-space: normal;
        word-break: break-word;
    }

    .workflow-cta-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cta-feature-item {
        text-align: center;
        flex-direction: column;
        padding: 1rem;
    }

    .workflow-cta-message {
        font-size: 1rem;
    }

    .workflow-cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .workflow-prebuild-buttons-group {
        flex-direction: column;
        align-items: center;
    }

    .workflow-stacks-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   TECHNOLOGY STACK PAGE STYLES
   ============================================ */

/* Stack Intro Card */
.stack-intro-card {
    background: rgba(15, 17, 35, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.stack-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan));
}

.stack-intro-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.stack-intro-icon i {
    font-size: 2.5rem;
    color: var(--ai-accent-blue);
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.stack-intro-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stack-intro-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto;
}

/* Stack Section */
.stack-section {
    margin-bottom: 4rem;
}

.stack-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.stack-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stack-section-title i {
    color: var(--ai-accent-blue);
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
    -webkit-text-fill-color: var(--ai-accent-blue);
}

.stack-section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* Stack Cards */
.stack-card {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.stack-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

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

.stack-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2), 0 0 60px rgba(139, 92, 246, 0.1);
    background: rgba(15, 17, 35, 0.8);
}

.stack-card-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.stack-card-icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(59, 130, 246, 0.3);
    transition: var(--transition);
}

.stack-card-icon i {
    font-size: 2rem;
    color: var(--ai-accent-blue);
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.stack-card:hover .stack-card-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.35), rgba(139, 92, 246, 0.35));
    border-color: rgba(59, 130, 246, 0.5);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.stack-card-laravel .stack-card-icon {
    background: linear-gradient(135deg, rgba(255, 45, 32, 0.2), rgba(255, 45, 32, 0.15));
    border-color: rgba(255, 45, 32, 0.3);
}

.stack-card-laravel .stack-card-icon i {
    color: #FF2D20;
}

.stack-card-codeigniter .stack-card-icon {
    background: linear-gradient(135deg, rgba(238, 120, 0, 0.2), rgba(238, 120, 0, 0.15));
    border-color: rgba(238, 120, 0, 0.3);
}

.stack-card-codeigniter .stack-card-icon i {
    color: #EE7800;
}

.stack-card-mysql .stack-card-icon {
    background: linear-gradient(135deg, rgba(0, 117, 143, 0.2), rgba(0, 117, 143, 0.15));
    border-color: rgba(0, 117, 143, 0.3);
}

.stack-card-mysql .stack-card-icon i {
    color: #00758F;
}

.stack-card-php .stack-card-icon {
    background: linear-gradient(135deg, rgba(119, 123, 179, 0.2), rgba(119, 123, 179, 0.15));
    border-color: rgba(119, 123, 179, 0.3);
}

.stack-card-php .stack-card-icon i {
    color: #777BB3;
}

.stack-card-aws .stack-card-icon {
    background: linear-gradient(135deg, rgba(255, 153, 0, 0.2), rgba(255, 153, 0, 0.15));
    border-color: rgba(255, 153, 0, 0.3);
}

.stack-card-aws .stack-card-icon i {
    color: #FF9900;
}

.stack-card-server .stack-card-icon,
.stack-card-infrastructure .stack-card-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.15));
    border-color: rgba(34, 197, 94, 0.3);
}

.stack-card-server .stack-card-icon i,
.stack-card-infrastructure .stack-card-icon i {
    color: #22C55E;
}

.stack-card-iot .stack-card-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.15));
    border-color: rgba(6, 182, 212, 0.3);
}

.stack-card-iot .stack-card-icon i {
    color: #06B6D4;
}

.stack-card-events .stack-card-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.2), rgba(236, 72, 153, 0.15));
    border-color: rgba(236, 72, 153, 0.3);
}

.stack-card-events .stack-card-icon i {
    color: #EC4899;
}

.stack-card-iot-integration .stack-card-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.15));
    border-color: rgba(139, 92, 246, 0.3);
}

.stack-card-iot-integration .stack-card-icon i {
    color: #8B5CF6;
}

.stack-card-hosting .stack-card-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.15));
    border-color: rgba(34, 197, 94, 0.3);
}

.stack-card-hosting .stack-card-icon i {
    color: #22C55E;
}

.stack-card-email .stack-card-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(59, 130, 246, 0.15));
    border-color: rgba(59, 130, 246, 0.3);
}

.stack-card-email .stack-card-icon i {
    color: var(--ai-accent-blue);
}

.stack-card-european .stack-card-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(139, 92, 246, 0.15));
    border-color: rgba(139, 92, 246, 0.3);
}

.stack-card-european .stack-card-icon i {
    color: #8B5CF6;
}

/* Frontend Technology Cards */
.stack-card-react .stack-card-icon {
    background: linear-gradient(135deg, rgba(97, 218, 251, 0.2), rgba(97, 218, 251, 0.15));
    border-color: rgba(97, 218, 251, 0.3);
}

.stack-card-react .stack-card-icon i {
    color: #61DAFB;
    animation: rotate 20s linear infinite;
}

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

.stack-card-html .stack-card-icon {
    background: linear-gradient(135deg, rgba(227, 79, 38, 0.2), rgba(227, 79, 38, 0.15));
    border-color: rgba(227, 79, 38, 0.3);
}

.stack-card-html .stack-card-icon i {
    color: #E34F26;
}

.stack-card-css .stack-card-icon {
    background: linear-gradient(135deg, rgba(21, 114, 182, 0.2), rgba(21, 114, 182, 0.15));
    border-color: rgba(21, 114, 182, 0.3);
}

.stack-card-css .stack-card-icon i {
    color: #1572B6;
}

.stack-card-js .stack-card-icon {
    background: linear-gradient(135deg, rgba(247, 223, 30, 0.2), rgba(247, 223, 30, 0.15));
    border-color: rgba(247, 223, 30, 0.3);
}

.stack-card-js .stack-card-icon i {
    color: #F7DF1E;
}

.stack-card-bootstrap .stack-card-icon {
    background: linear-gradient(135deg, rgba(121, 82, 179, 0.2), rgba(121, 82, 179, 0.15));
    border-color: rgba(121, 82, 179, 0.3);
}

.stack-card-bootstrap .stack-card-icon i {
    color: #7952B3;
}

.stack-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

.stack-card-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.stack-card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.stack-card-features li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stack-card-features li i {
    color: #22C55E;
    font-size: 0.9rem;
    filter: drop-shadow(0 0 5px rgba(34, 197, 94, 0.5));
}

/* Tech Badges */
.stack-tech-badge {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    text-align: center;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.stack-tech-badge:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(15, 17, 35, 0.8);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.2);
}

.stack-tech-badge i {
    font-size: 2.5rem;
    color: var(--ai-accent-blue);
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
    transition: var(--transition);
}

.stack-tech-badge:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.7));
}

.stack-tech-badge span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
}

/* Stack CTA Card */
.stack-cta-card {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 2px solid rgba(59, 130, 246, 0.3);
    text-align: center;
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
}

.stack-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stack-cta-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.stack-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

.stack-cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.stack-cta-button span,
.stack-cta-button i {
    position: relative;
    z-index: 1;
}

.stack-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, var(--ai-accent-purple) 0%, var(--ai-accent-blue) 100%);
}

.stack-cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Stack Page */
@media (max-width: 768px) {
    .stack-intro-card {
        padding: 2rem 1.5rem;
    }

    .stack-intro-title {
        font-size: 1.6rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
        margin-bottom: 0.875rem;
        text-align: center;
    }

    .stack-intro-description {
        font-size: 1rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.7;
        text-align: center;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .stack-section-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 0.5rem;
        display: flex;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
    }
    
    .stack-section-subtitle {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.7;
        text-align: center;
    }
    
    .stack-section-header {
        text-align: center;
    }

    .stack-card {
        padding: 2rem 1.5rem;
    }

    .stack-card-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .stack-card-icon {
        margin: 0 auto;
    }
    
    .stack-card-title {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
        text-align: center;
    }
    
    .stack-card-description {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.7;
        text-align: left;
    }
}

@media (max-width: 576px) {
    .stack-intro-title {
        font-size: 1.4rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.35;
        margin-bottom: 0.75rem;
        text-align: center;
    }

    .stack-intro-description {
        font-size: 0.95rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.75;
        text-align: center;
        max-width: 100%;
    }

    .stack-section-title {
        font-size: 1.4rem;
        flex-direction: column;
        gap: 0.5rem;
        display: flex;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
    }
    
    .stack-section-subtitle {
        font-size: 0.95rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.75;
        text-align: center;
    }
    
    .stack-section-header {
        text-align: center;
    }
    
    .stack-card-title {
        font-size: 1.3rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
        text-align: center;
    }
    
    .stack-card-description {
        font-size: 0.95rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.75;
        text-align: left;
    }

    .stack-cta-card {
        padding: 2rem 1.5rem;
    }

    .stack-cta-title {
        font-size: 1.6rem;
    }

    .stack-cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

/* ============================================
   SERVICES PAGE ENHANCEMENTS
   ============================================ */

/* Services-Stack Intro Section */
.services-stack-intro {
    background: rgba(15, 17, 35, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-stack-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan));
}

.services-stack-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.services-stack-icon i {
    font-size: 2rem;
    color: var(--ai-accent-blue);
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.services-stack-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-stack-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-stack-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

.services-stack-button:hover::before {
    width: 400px;
    height: 400px;
}

.services-stack-button span,
.services-stack-button i {
    position: relative;
    z-index: 1;
}

.services-stack-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, var(--ai-accent-purple) 0%, var(--ai-accent-blue) 100%);
}

.services-stack-button:hover i {
    transform: translateX(5px);
}

/* Service Technology Badges */
.service-tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.service-tech-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 10px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: var(--ai-accent-blue);
    font-size: 1.2rem;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.service-tech-badge:hover {
    background: rgba(59, 130, 246, 0.25);
    border-color: rgba(59, 130, 246, 0.5);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.service-tech-badge i {
    filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.5));
}

.service-tech-badge:hover i {
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.7));
}

/* Services-Stack CTA Section */
.services-stack-cta {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 2px solid rgba(59, 130, 246, 0.3);
    text-align: center;
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.services-stack-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan));
}

.services-stack-cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(139, 92, 246, 0.25));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    transition: var(--transition);
}

.services-stack-cta:hover .services-stack-cta-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.4);
}

.services-stack-cta-icon i {
    font-size: 2.5rem;
    color: var(--ai-accent-blue);
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.5));
}

.services-stack-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-stack-cta-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-stack-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.services-stack-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.services-stack-cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.services-stack-cta-button span,
.services-stack-cta-button i {
    position: relative;
    z-index: 1;
}

.services-stack-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, var(--ai-accent-purple) 0%, var(--ai-accent-blue) 100%);
}

.services-stack-cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Services Enhancements */
@media (max-width: 768px) {
    .services-stack-intro {
        padding: 2rem 1.5rem;
    }

    .services-stack-title {
        font-size: 1.5rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
        margin-bottom: 1rem;
        text-align: left;
    }

    .services-stack-description {
        font-size: 1rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        text-align: left;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .services-stack-intro {
        text-align: left;
    }

    .services-stack-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }

    .service-tech-badge {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .services-stack-cta {
        padding: 2rem 1.5rem;
    }

    .services-stack-cta-title {
        font-size: 1.6rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
        margin-bottom: 1rem;
        text-align: left;
    }

    .services-stack-cta-description {
        font-size: 1rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        text-align: left;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .services-stack-cta {
        text-align: left;
    }

    .services-stack-cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 1.5rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.35;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.75;
        text-align: center;
    }
    
    .section-header {
        text-align: center;
    }
    
    .section-header.text-center .section-title,
    .section-header.text-center .section-subtitle {
        text-align: center;
    }
    
    .services-stack-title {
        font-size: 1.3rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.35;
        margin-bottom: 0.875rem;
        text-align: left;
    }

    .services-stack-description {
        font-size: 0.95rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.75;
        margin-bottom: 1.25rem;
        text-align: left;
    }
    
    .services-stack-cta-title {
        font-size: 1.4rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.35;
        margin-bottom: 0.875rem;
        text-align: left;
    }

    .services-stack-cta-description {
        font-size: 0.95rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.75;
        margin-bottom: 1.25rem;
        text-align: left;
    }
    
    .system-card-title {
        font-size: 1.2rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.4;
        text-align: left;
    }
    
    .system-card-description {
        font-size: 0.9rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.7;
        text-align: left;
    }
}

/* ============================================
   ABOUT PAGE ENHANCEMENTS
   ============================================ */

/* About Intro Card */
.about-intro-card {
    background: rgba(15, 17, 35, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan));
}

.about-intro-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.about-intro-icon i {
    font-size: 2.5rem;
    color: var(--ai-accent-blue);
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.about-intro-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-intro-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-intro-description:last-child {
    margin-bottom: 0;
}

/* About Section Headers */
.about-section {
    margin-bottom: 4rem;
}

.about-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-section-title i {
    color: var(--ai-accent-blue);
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
    -webkit-text-fill-color: var(--ai-accent-blue);
}

.about-section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

/* How We Can Help Cards */
.about-help-card {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.about-help-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.about-help-card:hover::before {
    transform: scaleX(1);
}

.about-help-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 0;
}

.about-help-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2), 0 0 60px rgba(139, 92, 246, 0.1);
    background: rgba(15, 17, 35, 0.8);
}

.about-help-card:hover::after {
    opacity: 1;
}

.about-help-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-help-icon i {
    font-size: 2.5rem;
    color: #FFFFFF;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.about-help-card:hover .about-help-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.about-help-card:hover .about-help-icon i {
    color: #FFFFFF;
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.about-help-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-help-card:hover .about-help-title {
    color: var(--text-white);
}

.about-help-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-weight: 400;
    position: relative;
    z-index: 1;
    margin: 0;
    text-align: center;
    font-size: 1rem;
}

.about-help-card:hover .about-help-description {
    color: rgba(255, 255, 255, 0.85);
}

/* About Help Section Card */
.about-help-section-card {
    background: rgba(15, 17, 35, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.about-help-section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan));
}

/* About Values Section Card */
.about-values-section-card {
    background: rgba(15, 17, 35, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.about-values-section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan));
}

/* About Approach Card */
.about-approach-card {
    background: rgba(15, 17, 35, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.about-approach-header {
    text-align: center;
    margin-bottom: 2rem;
}

.about-approach-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(34, 197, 94, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(34, 197, 94, 0.3);
}

.about-approach-icon i {
    font-size: 2rem;
    color: #22C55E;
    filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.5));
}

.about-approach-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.approach-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(15, 17, 35, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: var(--transition);
}

.approach-item:hover {
    transform: translateX(5px);
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(15, 17, 35, 0.7);
}

.approach-item i {
    font-size: 1.8rem;
    color: var(--ai-accent-blue);
    min-width: 30px;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

.approach-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.approach-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Partnership Card */
.about-partnership-card {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.15));
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 4rem 3rem;
    border: 2px solid rgba(139, 92, 246, 0.4);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.25);
    position: relative;
    overflow: hidden;
}

.about-partnership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ai-accent-purple), var(--ai-accent-blue), var(--ai-accent-cyan));
}

.about-partnership-header {
    text-align: center;
    margin-bottom: 3rem;
}

.about-partnership-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(139, 92, 246, 0.5);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.about-partnership-icon i {
    font-size: 2.8rem;
    color: #8B5CF6;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.5));
}

.about-partnership-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-partnership-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    font-weight: 500;
}

.partnership-content {
    position: relative;
    z-index: 1;
}

.partnership-intro {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 3rem;
    text-align: center;
}

.partnership-intro strong {
    color: #FFFFFF;
    font-weight: 700;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.25), rgba(59, 130, 246, 0.25));
    padding: 0.25rem 0.6rem;
    border-radius: 6px;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.partnership-benefits {
    margin-bottom: 3rem;
}

.partnership-benefits-title,
.partnership-types-title {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partnership-benefit-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(15, 17, 35, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: var(--transition);
    height: 100%;
}

.partnership-benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(15, 17, 35, 0.8);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.partnership-benefit-item i {
    font-size: 1.5rem;
    color: #22C55E;
    min-width: 25px;
    filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.5));
}

.partnership-benefit-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.partnership-benefit-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.partnership-types {
    margin-bottom: 3rem;
}

.partnership-type-card {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.partnership-type-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(15, 17, 35, 0.8);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.partnership-type-card i {
    font-size: 2.5rem;
    color: var(--ai-accent-purple);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.partnership-type-card h5 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.partnership-type-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.partnership-cta {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(139, 92, 246, 0.3);
}

.partnership-cta-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.partnership-cta-text strong {
    color: #FFFFFF;
    font-weight: 700;
}

.partnership-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--ai-accent-purple) 0%, var(--ai-accent-blue) 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

.partnership-cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.partnership-cta-button span,
.partnership-cta-button i {
    position: relative;
    z-index: 1;
}

.partnership-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.5), 0 0 40px rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
}

.partnership-cta-button:hover i {
    transform: translateX(5px);
}

/* About Values Cards */
.about-value-card {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.about-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.about-value-card:hover::before {
    transform: scaleX(1);
}

.about-value-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
    z-index: 0;
}

.about-value-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2), 0 0 60px rgba(139, 92, 246, 0.1);
    background: rgba(15, 17, 35, 0.8);
}

.about-value-card:hover::after {
    opacity: 1;
}

.about-value-card-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.about-value-card i {
    font-size: 2.5rem;
    color: #FFFFFF;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    position: relative;
    z-index: 1;
}

.about-value-card:hover .about-value-card-icon-wrapper {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.about-value-card:hover i {
    color: #FFFFFF;
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

.about-value-card h5 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.about-value-card:hover h5 {
    color: var(--text-white);
}

.about-value-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-weight: 400;
    position: relative;
    z-index: 1;
    margin: 0;
    font-size: 1rem;
}

.about-value-card:hover p {
    color: rgba(255, 255, 255, 0.85);
}

/* About Final CTA */
.about-final-cta {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 2px solid rgba(59, 130, 246, 0.3);
    text-align: center;
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
}

.about-final-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-final-cta-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.about-final-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.about-cta-button-primary,
.about-cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.about-cta-button-primary {
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.about-cta-button-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5);
    background: linear-gradient(135deg, var(--ai-accent-purple) 0%, var(--ai-accent-blue) 100%);
}

.about-cta-button-secondary {
    color: var(--text-white);
    background: rgba(15, 17, 35, 0.6);
    border: 2px solid rgba(59, 130, 246, 0.4);
}

.about-cta-button-secondary:hover {
    transform: translateY(-3px);
    background: rgba(15, 17, 35, 0.8);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-intro-card {
        padding: 2rem 1.5rem;
    }

    .about-intro-title {
        font-size: 1.6rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
        margin-bottom: 1.25rem;
    }

    .about-intro-description {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.25rem;
    }

    .about-section-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 0.5rem;
        display: flex;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
    }

    .about-section-subtitle {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
    }

    .about-help-section-card {
        padding: 2rem 1.5rem;
    }

    .about-help-title {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
        font-size: 1.3rem;
        margin-bottom: 0.875rem;
    }

    .about-help-description {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-approach-title {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
        font-size: 1.5rem;
    }

    .approach-item h5 {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .approach-item p {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-values-section-card {
        padding: 2rem 1.5rem;
    }

    .about-value-card h5 {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
        font-size: 1.2rem;
        margin-bottom: 0.875rem;
    }

    .about-value-card p {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-partnership-card {
        padding: 2.5rem 1.5rem;
    }

    .about-partnership-title {
        font-size: 1.8rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
    }

    .about-partnership-subtitle {
        font-size: 1rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
    }

    .partnership-intro {
        font-size: 1rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
    }

    .partnership-intro strong {
        display: inline-block;
        white-space: normal;
        word-break: break-word;
    }

    .partnership-benefits-title {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .partnership-benefit-item h5 {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .partnership-benefit-item p {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .partnership-types-title {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }

    .partnership-type-card h5 {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .partnership-type-card p {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .partnership-cta-text {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .partnership-cta-text strong {
        display: inline-block;
        white-space: normal;
        word-break: break-word;
    }

    .about-final-cta {
        padding: 2rem 1.5rem;
    }

    .about-final-cta-title {
        font-size: 1.6rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
        margin-bottom: 1rem;
    }

    .about-final-cta-description {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
        font-size: 1rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .about-final-cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-cta-button-primary,
    .about-cta-button-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .about-intro-card {
        padding: 1.5rem 1.25rem;
    }

    .about-intro-title {
        font-size: 1.4rem;
        margin-bottom: 1rem;
    }

    .about-intro-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .about-section-title {
        font-size: 1.4rem;
    }

    .about-help-section-card {
        padding: 1.5rem 1.25rem;
    }

    .about-help-title {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }

    .about-help-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .about-approach-title {
        font-size: 1.3rem;
    }

    .approach-item h5 {
        font-size: 1rem;
    }

    .approach-item p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .about-values-section-card {
        padding: 1.5rem 1.25rem;
    }

    .about-value-card h5 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .about-value-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .about-partnership-card {
        padding: 2rem 1.25rem;
    }

    .about-partnership-title {
        font-size: 1.6rem;
    }

    .about-partnership-subtitle {
        font-size: 0.95rem;
    }

    .partnership-intro {
        font-size: 0.95rem;
    }

    .partnership-benefits-title {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }

    .partnership-benefit-item h5 {
        font-size: 1rem;
    }

    .partnership-benefit-item p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .partnership-types-title {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }

    .partnership-type-card h5 {
        font-size: 1rem;
    }

    .partnership-type-card p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .partnership-cta-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }

    .about-final-cta {
        padding: 1.5rem 1.25rem;
    }

    .about-final-cta-title {
        font-size: 1.4rem;
        margin-bottom: 0.875rem;
    }

    .about-final-cta-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
}

/* ============================================
   CONTACT PAGE ENHANCEMENTS
   ============================================ */

/* Contact Info Cards */
.contact-info-card {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
    background: rgba(15, 17, 35, 0.8);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(59, 130, 246, 0.3);
}

.contact-info-icon i {
    font-size: 1.5rem;
    color: var(--ai-accent-blue);
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.contact-info-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.contact-info-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
}

/* Contact Form Card */
.contact-form-card {
    background: rgba(15, 17, 35, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 4rem 3rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.contact-form-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan));
}

.contact-form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(139, 92, 246, 0.25));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.contact-form-icon i {
    font-size: 2.5rem;
    color: var(--ai-accent-blue);
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.5));
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-form-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 0;
}

/* Contact Alerts */
.contact-alert {
    border-radius: 12px;
    padding: 1rem 1.5rem;
    margin-bottom: 2rem;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-alert i {
    font-size: 1.2rem;
}

.alert-success {
    background: rgba(34, 197, 94, 0.15);
    color: #22C55E;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.15);
    color: #EF4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.alert-danger ul {
    padding-left: 1.5rem;
}

.alert-info {
    background: rgba(59, 130, 246, 0.15);
    color: #3B82F6;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

/* AI Clarification Banner */
.ai-clarification-banner {
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.ai-clarification-banner i {
    font-size: 1.3rem;
    color: #3B82F6;
    margin-top: 0.2rem;
}

.ai-clarification-banner strong {
    color: #FFFFFF;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.ai-clarification-banner p {
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    line-height: 1.6;
}

/* Form Sections */
.form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.form-section-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-section-title i {
    color: var(--ai-accent-blue);
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

.form-section-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Form Groups */
.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.form-label .required {
    color: #EF4444;
    margin-left: 0.25rem;
}

/* Form Controls */
.form-control {
    background: rgba(15, 17, 35, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 12px;
    padding: 0.875rem 1.25rem;
    color: var(--text-white);
    font-size: 1rem;
    transition: var(--transition);
    width: 100%;
}

.form-control:focus {
    background: rgba(15, 17, 35, 0.8);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
    color: var(--text-white);
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-control option {
    background: rgba(15, 17, 35, 0.95);
    color: var(--text-white);
}

.form-control.is-invalid {
    border-color: rgba(239, 68, 68, 0.5);
    background: rgba(239, 68, 68, 0.05);
}

.form-control.is-invalid:focus {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

.invalid-feedback {
    display: block;
    color: #EF4444;
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Custom Checkboxes */
.services-checkbox-group {
    margin-top: 1rem;
}

.form-check-custom {
    position: relative;
    padding: 1rem;
    background: rgba(15, 17, 35, 0.4);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
}

.form-check-custom:hover {
    background: rgba(15, 17, 35, 0.6);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-2px);
}

.form-check-custom input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.form-check-custom label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    margin: 0;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.form-check-custom label i {
    color: var(--ai-accent-blue);
    font-size: 1.1rem;
    filter: drop-shadow(0 0 5px rgba(59, 130, 246, 0.5));
}

.form-check-custom input[type="checkbox"]:checked + label {
    color: var(--text-white);
}

.form-check-custom input[type="checkbox"]:checked ~ .form-check-custom,
.form-check-custom:has(input[type="checkbox"]:checked) {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.form-check-custom input[type="checkbox"]:checked + label i {
    color: var(--ai-accent-blue);
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.7));
}

/* Submit Section */
.form-submit-section {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.contact-submit-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

.contact-submit-button:hover::before {
    width: 400px;
    height: 400px;
}

.contact-submit-button span,
.contact-submit-button i {
    position: relative;
    z-index: 1;
}

.contact-submit-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, var(--ai-accent-purple) 0%, var(--ai-accent-blue) 100%);
}

.contact-submit-button:hover i {
    transform: translateX(5px);
}

.contact-submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-note {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.form-note i {
    color: #22C55E;
}

/* Team Section */
.team-section-card {
    background: rgba(15, 17, 35, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 4rem 3rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.team-section-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan));
}

.team-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.team-section-title i {
    color: var(--ai-accent-blue);
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
    -webkit-text-fill-color: var(--ai-accent-blue);
}

.team-section-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin: 0;
}

/* Team Member Cards */
.team-member-card {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.team-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
    z-index: 2;
}

.team-member-card:hover::before {
    transform: scaleX(1);
}

.team-member-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2), 0 0 60px rgba(139, 92, 246, 0.1);
    background: rgba(15, 17, 35, 0.8);
}

.team-member-image {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(15, 17, 35, 0.3) 100%);
    transition: var(--transition);
}

.team-member-card:hover .team-member-image img {
    transform: scale(1.1);
}

.team-member-card:hover .team-member-overlay {
    background: linear-gradient(to bottom, transparent 0%, rgba(15, 17, 35, 0.5) 100%);
}

.team-member-info {
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.team-member-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.team-member-role {
    font-size: 1rem;
    color: var(--ai-accent-blue);
    font-weight: 500;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.team-member-role::before {
    content: '';
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ai-accent-blue), transparent);
}

.team-member-role::after {
    content: '';
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--ai-accent-blue), transparent);
}

.team-member-bio {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.team-member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50%;
    color: var(--ai-accent-blue);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s;
}

.social-link:hover::before {
    width: 100%;
    height: 100%;
}

.social-link i {
    position: relative;
    z-index: 1;
    font-size: 1rem;
    transition: var(--transition);
}

.social-link:hover {
    border-color: rgba(59, 130, 246, 0.6);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.social-link:hover i {
    color: #FFFFFF;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

/* Social Link Colors */
.social-link[title="LinkedIn"]:hover {
    background: rgba(0, 119, 181, 0.3);
    border-color: rgba(0, 119, 181, 0.6);
}

.social-link[title="Instagram"]:hover {
    background: rgba(225, 48, 108, 0.3);
    border-color: rgba(225, 48, 108, 0.6);
}

.social-link[title="Facebook"]:hover {
    background: rgba(24, 119, 242, 0.3);
    border-color: rgba(24, 119, 242, 0.6);
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-form-card {
        padding: 2.5rem 1.5rem;
    }

    .contact-form-title {
        font-size: 1.6rem;
    }

    .contact-form-subtitle {
        font-size: 1rem;
    }

    .form-section {
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }

    .form-section-title {
        font-size: 1.2rem;
        margin-bottom: 0.875rem;
    }

    .form-section-description {
        margin-bottom: 0.875rem;
    }

    .form-group {
        margin-bottom: 1rem;
    }

    .contact-form .row.g-3,
    .contact-form .row.g-4 {
        --bs-gutter-y: 0.75rem;
        --bs-gutter-x: 0.75rem;
    }

    .contact-submit-button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 100%;
    }

    .form-submit-section {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .form-check-custom {
        padding: 0.875rem;
    }

    .services-checkbox-group .row.g-3 {
        --bs-gutter-y: 0.75rem;
        --bs-gutter-x: 0.75rem;
    }

    .team-section-card {
        padding: 2.5rem 1.5rem;
    }

    .team-section-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .team-member-image {
        height: 250px;
    }

    .team-member-info {
        padding: 1.5rem;
    }

    .team-member-name {
        font-size: 1.2rem;
    }

    .team-member-bio {
        font-size: 0.9rem;
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .contact-form-card {
        padding: 2rem 1.25rem;
    }

    .form-section {
        margin-bottom: 0.875rem;
        padding-bottom: 0.875rem;
    }

    .form-section-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }

    .form-section-description {
        margin-bottom: 0.75rem;
        font-size: 0.9rem;
    }

    .form-group {
        margin-bottom: 0.875rem;
    }

    .form-label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
    }

    .contact-form .row.g-3,
    .contact-form .row.g-4 {
        --bs-gutter-y: 0.5rem;
        --bs-gutter-x: 0.5rem;
    }

    .form-submit-section {
        margin-top: 1.5rem;
        padding-top: 1.25rem;
    }

    .services-checkbox-group .row.g-3 {
        --bs-gutter-y: 0.5rem;
        --bs-gutter-x: 0.5rem;
    }

    .form-check-custom {
        padding: 0.75rem;
    }
}

/* ============================================
   FLOATING CHAT WIDGET
   ============================================ */

.chat-widget-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
}

/* Chat Button */
.chat-button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
    border: none;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4), 0 0 40px rgba(139, 92, 246, 0.2);
    color: #FFFFFF;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: chatPulse 2s ease-in-out infinite;
}

.chat-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5), 0 0 60px rgba(139, 92, 246, 0.3);
}

.chat-button-active {
    background: linear-gradient(135deg, var(--ai-accent-purple) 0%, var(--ai-accent-blue) 100%);
    animation: none;
}

.chat-notification-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 24px;
    height: 24px;
    background: #EF4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: #FFFFFF;
    border: 2px solid rgba(15, 17, 35, 0.9);
    box-shadow: 0 2px 8px rgba(239, 68, 68, 0.4);
}

@keyframes chatPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4), 0 0 40px rgba(139, 92, 246, 0.2);
    }
    50% {
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6), 0 0 50px rgba(139, 92, 246, 0.4);
    }
}

/* Chat Window */
.chat-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    height: 600px;
    max-height: calc(100vh - 120px);
    background: rgba(15, 17, 35, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 80px rgba(59, 130, 246, 0.2);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}

.chat-window::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan));
}

.chat-window-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Chat Header */
.chat-window-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(15, 17, 35, 0.8);
}

.chat-header-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
}

.chat-header-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(59, 130, 246, 0.4);
}

.chat-header-avatar i {
    font-size: 1.3rem;
    color: var(--ai-accent-blue);
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

.chat-header-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin: 0;
}

.chat-header-status {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22C55E;
    box-shadow: 0 0 8px rgba(34, 197, 94, 0.6);
    animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.6;
    }
}

.chat-close-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.chat-close-btn:hover {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.4);
    color: #EF4444;
    transform: rotate(90deg);
}

/* Chat Messages */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    scroll-behavior: smooth;
}

.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: rgba(15, 17, 35, 0.5);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(59, 130, 246, 0.4);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: rgba(59, 130, 246, 0.6);
}

.chat-message {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    animation: messageSlideIn 0.3s ease-out;
}

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

.chat-message-bot {
    align-self: flex-start;
}

.chat-message-user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 35px;
    height: 35px;
    min-width: 35px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.message-avatar i {
    font-size: 0.9rem;
    color: var(--ai-accent-blue);
}

.message-content {
    max-width: 75%;
    background: rgba(15, 17, 35, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 18px;
    padding: 0.75rem 1rem;
    position: relative;
}

.chat-message-user .message-content {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
    border-color: rgba(59, 130, 246, 0.4);
}

.message-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0 0 0.25rem 0;
}

.message-time {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-top: 0.25rem;
}

/* Chat Input */
.chat-input-container {
    padding: 1.5rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
    background: rgba(15, 17, 35, 0.8);
}

.chat-form {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.chat-input {
    flex: 1;
    background: rgba(15, 17, 35, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 25px;
    padding: 0.75rem 1.25rem;
    color: var(--text-white);
    font-size: 0.9rem;
    transition: var(--transition);
}

.chat-input:focus {
    outline: none;
    border-color: rgba(59, 130, 246, 0.6);
    background: rgba(15, 17, 35, 0.8);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.chat-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.chat-send-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ai-accent-blue), var(--ai-accent-purple));
    border: none;
    color: #FFFFFF;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.chat-send-btn:hover {
    transform: scale(1.1) rotate(15deg);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

.chat-send-btn:active {
    transform: scale(0.95);
}

.chat-footer-note {
    margin: 0.75rem 0 0 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.chat-footer-note i {
    font-size: 0.7rem;
}

/* Responsive Design for Chat Widget */
@media (max-width: 768px) {
    .chat-widget-container {
        bottom: 20px;
        right: 20px;
        padding-top: 20px;
    }

    .chat-button {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .chat-window {
        width: calc(100vw - 40px);
        max-width: 380px;
        height: calc(100vh - 140px);
        max-height: 550px;
        bottom: 75px;
        right: 0;
    }

    .chat-notification-badge {
        width: 20px;
        height: 20px;
        font-size: 0.7rem;
    }

    .chat-input-container {
        padding: 1.25rem 1rem;
    }

    .chat-form {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }

    .chat-input {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
        width: 100%;
    }

    .chat-send-btn {
        width: 100%;
        height: 48px;
        min-width: auto;
        font-size: 1rem;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(59, 130, 246, 0.3);
        border-radius: 25px;
    }

    .chat-send-btn:active {
        transform: scale(0.98);
        box-shadow: 0 2px 10px rgba(59, 130, 246, 0.5);
    }

    .chat-footer-note {
        margin-top: 0.875rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .chat-widget-container {
        bottom: 15px;
        right: 15px;
        padding-top: 15px;
    }

    .chat-button {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .chat-window {
        width: calc(100vw - 30px);
        height: calc(100vh - 120px);
        max-height: 500px;
        bottom: 70px;
        right: 0;
    }

    .chat-window-header {
        padding: 1.25rem 1rem;
    }

    .chat-messages {
        padding: 1.25rem 1rem;
    }

    .chat-input-container {
        padding: 1rem 0.875rem;
    }

    .chat-form {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
    }

    .chat-input {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
        border-radius: 20px;
        width: 100%;
    }

    .chat-send-btn {
        width: 100%;
        height: 46px;
        min-width: auto;
        font-size: 0.95rem;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
        border-radius: 23px;
    }

    .chat-send-btn:active {
        transform: scale(0.98);
        box-shadow: 0 2px 10px rgba(59, 130, 246, 0.5);
    }

    .chat-footer-note {
        margin-top: 0.75rem;
        font-size: 0.65rem;
    }
}

/* ============================================
   DATA RESCUE & TRANSFORMATION SECTION
   ============================================ */

.data-rescue-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(15, 17, 35, 0.98) 0%, rgba(15, 17, 35, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.data-rescue-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(239, 68, 68, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.data-rescue-content {
    position: relative;
    z-index: 1;
}

.data-rescue-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(245, 158, 11, 0.15));
    border-radius: 25px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.data-rescue-badge i {
    color: #EF4444;
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.5));
}

.data-rescue-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.data-rescue-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.data-rescue-description strong {
    color: #FFFFFF;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(245, 158, 11, 0.2));
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.data-rescue-features {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.rescue-feature-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(15, 17, 35, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: var(--transition);
}

.rescue-feature-item:hover {
    transform: translateX(10px);
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(15, 17, 35, 0.8);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.rescue-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.2), rgba(245, 158, 11, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.rescue-feature-icon i {
    font-size: 1.5rem;
    color: #EF4444;
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.5));
}

.rescue-feature-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.rescue-feature-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.data-rescue-cta {
    margin-top: 2.5rem;
}

.data-rescue-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

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

.data-rescue-button:hover::before {
    width: 400px;
    height: 400px;
}

.data-rescue-button span,
.data-rescue-button i {
    position: relative;
    z-index: 1;
}

.data-rescue-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, var(--ai-accent-purple) 0%, var(--ai-accent-blue) 100%);
}

.data-rescue-button:hover i {
    transform: translateX(5px);
}

.data-rescue-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.data-rescue-note i {
    color: var(--ai-accent-blue);
}

/* Data Rescue Visual */
.data-rescue-visual {
    position: relative;
    z-index: 1;
}

.data-rescue-graphic {
    position: relative;
    padding: 2rem;
}

.data-state {
    background: rgba(15, 17, 35, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.data-state-before {
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.05);
    margin-bottom: 2rem;
}

.data-state-after {
    border-color: rgba(34, 197, 94, 0.4);
    background: rgba(34, 197, 94, 0.05);
}

.data-state-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid;
}

.data-state-before .data-state-label {
    color: #EF4444;
    border-color: rgba(239, 68, 68, 0.3);
}

.data-state-after .data-state-label {
    color: #22C55E;
    border-color: rgba(34, 197, 94, 0.3);
}

.data-state-label i {
    font-size: 1.3rem;
    filter: drop-shadow(0 0 8px currentColor);
}

/* Chaos Visual - Before State */
.data-chaos-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    flex: 1;
    position: relative;
}

.chaos-item {
    background: rgba(239, 68, 68, 0.1);
    border: 2px dashed rgba(239, 68, 68, 0.4);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
    animation: chaosFloat 3s ease-in-out infinite;
    position: relative;
}

.chaos-item-1 { animation-delay: 0s; }
.chaos-item-2 { animation-delay: 0.5s; }
.chaos-item-3 { animation-delay: 1s; }
.chaos-item-4 { animation-delay: 1.5s; }
.chaos-item-5 { animation-delay: 2s; }
.chaos-item-6 { animation-delay: 2.5s; }

@keyframes chaosFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(2deg);
    }
    75% {
        transform: translateY(5px) rotate(-2deg);
    }
}

.chaos-item i {
    font-size: 1.5rem;
    color: #EF4444;
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.5));
}

/* Clean Visual - After State */
.data-clean-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    flex: 1;
}

.clean-item {
    background: rgba(34, 197, 94, 0.1);
    border: 2px solid rgba(34, 197, 94, 0.4);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.clean-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.6), rgba(34, 197, 94, 0.3));
}

.clean-item:hover {
    transform: translateY(-5px);
    background: rgba(34, 197, 94, 0.15);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.2);
}

.clean-item i {
    font-size: 2rem;
    color: #22C55E;
    filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.5));
}

/* Transformation Arrow */
.data-transformation-arrow {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
    height: 80px;
}

.transformation-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(59, 130, 246, 0.5);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    position: relative;
    z-index: 2;
    animation: magicPulse 2s ease-in-out infinite;
}

@keyframes magicPulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 8px 35px rgba(59, 130, 246, 0.6), 0 0 40px rgba(139, 92, 246, 0.3);
    }
}

.transformation-icon i {
    font-size: 2rem;
    color: var(--ai-accent-blue);
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.7));
    animation: magicRotate 3s linear infinite;
}

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

.arrow-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.4), rgba(59, 130, 246, 0.6), rgba(34, 197, 94, 0.4));
    border-radius: 2px;
    z-index: 1;
}

.arrow-line::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid rgba(34, 197, 94, 0.6);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

/* Responsive Design for Data Rescue Section */
@media (max-width: 992px) {
    .data-rescue-visual {
        margin-top: 3rem;
    }

    .data-chaos-visual {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .data-rescue-section {
        padding: 40px 0;
    }

    .data-rescue-title {
        font-size: 2rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
        margin-bottom: 1.25rem;
        text-align: left;
    }

    .data-rescue-description {
        font-size: 1rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.7;
        margin-bottom: 1rem;
        text-align: left;
    }
    
    .data-rescue-description strong {
        display: inline-block;
        white-space: normal;
        word-break: break-word;
    }

    .rescue-feature-item {
        flex-direction: column;
        text-align: center;
    }

    .rescue-feature-icon {
        margin: 0 auto;
    }

    .data-rescue-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .data-chaos-visual {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .chaos-item {
        padding: 0.75rem;
        font-size: 0.75rem;
    }

    .chaos-item i {
        font-size: 1.2rem;
    }

    .data-clean-visual {
        grid-template-columns: 1fr;
    }

    .transformation-icon {
        width: 60px;
        height: 60px;
    }

    .transformation-icon i {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .data-rescue-title {
        font-size: 1.75rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.35;
        margin-bottom: 1rem;
        text-align: left;
    }

    .data-rescue-description {
        font-size: 0.95rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.75;
        margin-bottom: 0.75rem;
        text-align: left;
    }
    
    .data-rescue-description strong {
        display: inline-block;
        white-space: normal;
        word-break: break-word;
    }
}

/* ============================================
   EXCEL TO BETTER REPORTING SECTION
   ============================================ */

.excel-to-reporting-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(15, 17, 35, 0.98) 0%, rgba(20, 25, 45, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.excel-to-reporting-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(34, 197, 94, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.excel-reporting-content {
    position: relative;
    z-index: 1;
}

.excel-reporting-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(34, 197, 94, 0.15));
    border-radius: 25px;
    border: 1px solid rgba(59, 130, 246, 0.3);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.excel-reporting-badge i {
    color: #3B82F6;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

.excel-reporting-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.excel-reporting-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.excel-reporting-description strong {
    color: #FFFFFF;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(34, 197, 94, 0.2));
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.excel-reporting-features {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.reporting-feature-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(15, 17, 35, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(59, 130, 246, 0.2);
    transition: var(--transition);
}

.reporting-feature-item:hover {
    transform: translateX(10px);
    border-color: rgba(59, 130, 246, 0.4);
    background: rgba(15, 17, 35, 0.8);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.reporting-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(34, 197, 94, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.reporting-feature-icon i {
    font-size: 1.5rem;
    color: #3B82F6;
    filter: drop-shadow(0 0 8px rgba(59, 130, 246, 0.5));
}

.reporting-feature-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.reporting-feature-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.excel-reporting-cta {
    margin-top: 2.5rem;
}

.excel-reporting-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, rgba(34, 197, 94, 0.8) 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

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

.excel-reporting-button:hover::before {
    width: 400px;
    height: 400px;
}

.excel-reporting-button span,
.excel-reporting-button i {
    position: relative;
    z-index: 1;
}

.excel-reporting-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5), 0 0 40px rgba(34, 197, 94, 0.3);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.8) 0%, var(--ai-accent-blue) 100%);
}

.excel-reporting-button:hover i {
    transform: translateX(5px);
}

.excel-reporting-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.excel-reporting-note i {
    color: var(--ai-accent-blue);
}

/* Excel Reporting Visual */
.excel-reporting-visual {
    position: relative;
    z-index: 1;
}

.excel-reporting-graphic {
    position: relative;
    padding: 2rem;
}

.reporting-state {
    background: rgba(15, 17, 35, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 2px solid;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
}

.reporting-state-before {
    border-color: rgba(239, 68, 68, 0.4);
    background: rgba(239, 68, 68, 0.05);
    margin-bottom: 2rem;
}

.reporting-state-after {
    border-color: rgba(34, 197, 94, 0.4);
    background: rgba(34, 197, 94, 0.05);
}

.reporting-state-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    font-size: 1.1rem;
}

.reporting-state-before .reporting-state-label {
    color: rgba(239, 68, 68, 0.9);
}

.reporting-state-before .reporting-state-label i {
    color: #EF4444;
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.5));
}

.reporting-state-after .reporting-state-label {
    color: rgba(34, 197, 94, 0.9);
}

.reporting-state-after .reporting-state-label i {
    color: #22C55E;
    filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.5));
}

.excel-chaos-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    flex: 1;
}

.excel-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(239, 68, 68, 0.3);
    text-align: center;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.excel-item:nth-child(1) { animation-delay: 0s; }
.excel-item:nth-child(2) { animation-delay: 0.5s; }
.excel-item:nth-child(3) { animation-delay: 1s; }
.excel-item:nth-child(4) { animation-delay: 1.5s; }
.excel-item:nth-child(5) { animation-delay: 2s; }
.excel-item:nth-child(6) { animation-delay: 2.5s; }

.excel-item:hover {
    transform: translateY(-5px);
    background: rgba(239, 68, 68, 0.2);
    box-shadow: 0 8px 20px rgba(239, 68, 68, 0.3);
}

.excel-item i {
    font-size: 1.8rem;
    color: #EF4444;
    filter: drop-shadow(0 0 8px rgba(239, 68, 68, 0.6));
}

.excel-item span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.system-clean-visual {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    flex: 1;
}

.system-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(34, 197, 94, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(34, 197, 94, 0.3);
    text-align: center;
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.system-item:nth-child(1) { animation-delay: 0s; }
.system-item:nth-child(2) { animation-delay: 0.5s; }
.system-item:nth-child(3) { animation-delay: 1s; }
.system-item:nth-child(4) { animation-delay: 1.5s; }
.system-item:nth-child(5) { animation-delay: 2s; }
.system-item:nth-child(6) { animation-delay: 2.5s; }

.system-item:hover {
    transform: translateY(-5px);
    background: rgba(34, 197, 94, 0.2);
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.system-item i {
    font-size: 1.8rem;
    color: #22C55E;
    filter: drop-shadow(0 0 8px rgba(34, 197, 94, 0.6));
}

.system-item span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

.reporting-transformation-arrow {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
}

.reporting-transformation-arrow .transformation-icon {
    position: absolute;
    width: 70px;
    height: 70px;
    background: rgba(15, 17, 35, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(59, 130, 246, 0.4);
    z-index: 2;
    box-shadow: 0 8px 35px rgba(59, 130, 246, 0.6), 0 0 40px rgba(34, 197, 94, 0.3);
    animation: pulseGlow 2s ease-in-out infinite;
}

.reporting-transformation-arrow .transformation-icon i {
    font-size: 2rem;
    color: var(--ai-accent-blue);
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.7));
    animation: magicRotate 3s linear infinite;
}

.reporting-transformation-arrow .arrow-line {
    position: absolute;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, rgba(239, 68, 68, 0.4), rgba(59, 130, 246, 0.6), rgba(34, 197, 94, 0.4));
    border-radius: 2px;
    z-index: 1;
}

.reporting-transformation-arrow .arrow-line::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 15px solid rgba(34, 197, 94, 0.6);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

/* Responsive Design for Excel to Reporting Section */
@media (max-width: 992px) {
    .excel-reporting-visual {
        margin-top: 3rem;
    }

    .excel-chaos-visual {
        grid-template-columns: repeat(2, 1fr);
    }

    .system-clean-visual {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .excel-to-reporting-section {
        padding: 60px 0;
    }

    .excel-reporting-title {
        font-size: 2rem;
    }

    .excel-reporting-description {
        font-size: 1rem;
    }

    .reporting-feature-item {
        flex-direction: column;
        text-align: center;
    }

    .reporting-feature-icon {
        margin: 0 auto;
    }

    .excel-reporting-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1.1rem;
    }

    .excel-chaos-visual {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .excel-item {
        padding: 0.75rem;
        font-size: 0.75rem;
    }

    .excel-item i {
        font-size: 1.2rem;
    }

    .system-clean-visual {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .system-item {
        padding: 0.75rem;
        font-size: 0.75rem;
    }

    .system-item i {
        font-size: 1.2rem;
    }

    .reporting-transformation-arrow .transformation-icon {
        width: 60px;
        height: 60px;
    }

    .reporting-transformation-arrow .transformation-icon i {
        font-size: 1.5rem;
    }
}

/* ============================================
   AI POWERED DATA SECTION (HOME PAGE)
   ============================================ */

.ai-powered-data-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(20, 25, 45, 0.98) 0%, rgba(15, 17, 35, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.ai-powered-data-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 30% 50%, rgba(139, 92, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.ai-data-content {
    position: relative;
    z-index: 1;
}

.ai-data-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.15));
    border-radius: 25px;
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.ai-data-badge i {
    color: var(--ai-accent-purple);
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
}

.ai-data-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-data-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.ai-data-description strong {
    color: #FFFFFF;
    font-weight: 600;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.ai-data-features {
    margin: 2.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ai-feature-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.25rem;
    background: rgba(15, 17, 35, 0.6);
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: var(--transition);
}

.ai-feature-item:hover {
    transform: translateX(10px);
    border-color: rgba(139, 92, 246, 0.4);
    background: rgba(15, 17, 35, 0.8);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.ai-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.ai-feature-icon i {
    font-size: 1.5rem;
    color: var(--ai-accent-purple);
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.5));
}

.ai-feature-item h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.ai-feature-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.ai-data-cta {
    margin-top: 2.5rem;
}

.ai-data-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--ai-accent-purple) 0%, var(--ai-accent-blue) 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    margin-bottom: 1rem;
}

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

.ai-data-button:hover::before {
    width: 400px;
    height: 400px;
}

.ai-data-button span,
.ai-data-button i {
    position: relative;
    z-index: 1;
}

.ai-data-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.5), 0 0 40px rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
}

.ai-data-button:hover i {
    transform: translateX(5px);
}

.ai-data-note {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.ai-data-note i {
    color: var(--ai-accent-purple);
}

/* AI Data Visual */
.ai-data-visual {
    position: relative;
    z-index: 1;
}

.ai-data-graphic {
    position: relative;
    padding: 2rem;
}

.ai-visual-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--ai-accent-purple) 0%, var(--ai-accent-blue) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    color: #FFFFFF;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
    animation: float 3s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.5));
}

.ai-capabilities-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

@media (min-width: 1200px) {
    .ai-capabilities-visual {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
}

.ai-capability-item {
    background: rgba(15, 17, 35, 0.7);
    backdrop-filter: blur(20px);
    border-radius: 16px;
    padding: 1.25rem 1rem;
    border: 2px solid rgba(139, 92, 246, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    min-height: 120px;
}

.ai-capability-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(139, 92, 246, 0.6), rgba(59, 130, 246, 0.6));
}

.ai-capability-item:hover {
    transform: translateY(-5px);
    background: rgba(15, 17, 35, 0.9);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.ai-capability-item i {
    font-size: 1.75rem;
    color: var(--ai-accent-purple);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.6));
    transition: var(--transition);
}

.ai-capability-item:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.8));
}

.ai-capability-item span {
    text-align: center;
}

/* Responsive Design for AI Section */
@media (max-width: 992px) {
    .ai-powered-data-section {
        padding: 40px 0;
    }

    .ai-data-title {
        font-size: 2rem;
    }

    .ai-data-description {
        font-size: 1rem;
    }

    .ai-feature-item {
        flex-direction: column;
        text-align: center;
    }

    .ai-feature-icon {
        margin: 0 auto;
    }

    .ai-data-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }

    .ai-capabilities-visual {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .ai-capability-item {
        padding: 1rem 0.75rem;
        font-size: 0.85rem;
        min-height: 100px;
    }

    .ai-capability-item i {
        font-size: 1.5rem;
    }

    .ai-visual-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .ai-capabilities-visual {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .ai-capability-item {
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .ai-capabilities-visual {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   AI PAGE STYLES
   ============================================ */

/* AI Intro Card */
.ai-intro-card {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3.5rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ai-intro-card-glow {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

.ai-intro-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ai-accent-purple);
    margin-bottom: 1.5rem;
}

.ai-intro-badge i {
    font-size: 1rem;
}

.ai-intro-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-intro-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.ai-intro-description strong {
    color: #FFFFFF;
    font-weight: 600;
}

/* AI Benefit Cards */
.ai-benefit-card {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.ai-benefit-card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    transition: var(--transition);
}

.ai-benefit-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.3);
}

.ai-benefit-card:hover .ai-benefit-card-glow {
    width: 300px;
    height: 300px;
}

.ai-benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.ai-benefit-icon i {
    font-size: 2rem;
    color: var(--ai-accent-purple);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.ai-benefit-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.ai-benefit-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* AI How It Works */
.ai-how-card {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3.5rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
}

.ai-how-card-glow {
    position: absolute;
    top: -30%;
    left: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 5s ease-in-out infinite;
}

.ai-how-step {
    background: rgba(15, 17, 35, 0.8);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: var(--transition);
    height: 100%;
    position: relative;
}

.ai-how-step:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.ai-how-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--ai-accent-purple), var(--ai-accent-blue));
    border-radius: 10px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.ai-how-step-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.ai-how-step-icon i {
    font-size: 1.8rem;
    color: var(--ai-accent-purple);
}

.ai-how-step-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.ai-how-step-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* AI Use Cases */
.ai-usecase-card {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: var(--transition);
    text-align: center;
    height: 100%;
}

.ai-usecase-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.2);
}

.ai-usecase-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.ai-usecase-icon i {
    font-size: 2rem;
    color: var(--ai-accent-purple);
}

.ai-usecase-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.ai-usecase-desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* AI Expertise Card */
.ai-expertise-card {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3.5rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ai-expertise-card-glow {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

.ai-expertise-header {
    text-align: center;
    margin-bottom: 2rem;
}

.ai-expertise-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--ai-accent-purple) 0%, var(--ai-accent-blue) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #FFFFFF;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
}

.ai-expertise-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-expertise-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0;
}

.ai-expertise-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 0;
    text-align: center;
}

.ai-expertise-feature {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: rgba(15, 17, 35, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: var(--transition);
}

.ai-expertise-feature:hover {
    transform: translateX(10px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.ai-expertise-feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(139, 92, 246, 0.3);
}

.ai-expertise-feature-icon i {
    font-size: 1.5rem;
    color: var(--ai-accent-purple);
}

.ai-expertise-feature h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.ai-expertise-feature p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* AI CTA Card */
.ai-cta-card {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.ai-cta-card-glow {
    position: absolute;
    top: -30%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 5s ease-in-out infinite;
}

.ai-cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.ai-cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--ai-accent-purple) 0%, var(--ai-accent-blue) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #FFFFFF;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
    animation: float 3s ease-in-out infinite;
}

.ai-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ai-cta-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.ai-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.ai-cta-button-primary,
.ai-cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.ai-cta-button-primary {
    background: linear-gradient(135deg, var(--ai-accent-purple) 0%, var(--ai-accent-blue) 100%);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.ai-cta-button-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.5);
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
}

.ai-cta-button-secondary {
    background: rgba(15, 17, 35, 0.8);
    border: 2px solid rgba(139, 92, 246, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.ai-cta-button-secondary:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 92, 246, 0.6);
    background: rgba(15, 17, 35, 1);
    box-shadow: 0 15px 35px rgba(139, 92, 246, 0.3);
}

/* Responsive Design for AI Page */
@media (max-width: 768px) {
    .ai-intro-card,
    .ai-how-card,
    .ai-expertise-card,
    .ai-cta-card {
        padding: 2rem;
    }

    .ai-intro-title,
    .ai-expertise-title,
    .ai-cta-title {
        font-size: 2rem;
    }

    .ai-cta-buttons {
        flex-direction: column;
    }

    .ai-cta-button-primary,
    .ai-cta-button-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   SYSTEMS WE BUILD SECTION (HOME PAGE)
   ============================================ */

.systems-we-build-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(15, 17, 35, 0.95) 0%, rgba(15, 17, 35, 0.98) 100%);
    position: relative;
    overflow: hidden;
}

.systems-we-build-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.1) 50%, transparent 70%);
    border-radius: 50%;
    animation: float 30s ease-in-out infinite;
    filter: blur(100px);
}

.systems-we-build-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, rgba(59, 130, 246, 0.08) 50%, transparent 70%);
    border-radius: 50%;
    animation: float 35s ease-in-out infinite reverse;
    filter: blur(100px);
}

.systems-we-build-section .container {
    position: relative;
    z-index: 1;
}

/* Unified Platform Card */
.unified-platform-card {
    background: rgba(15, 17, 35, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3rem;
    border: 2px solid rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    margin-bottom: 3rem;
}

.unified-platform-glow {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

.unified-platform-content {
    position: relative;
    z-index: 1;
}

.unified-platform-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.15));
    border-radius: 25px;
    border: 1px solid rgba(139, 92, 246, 0.4);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.unified-platform-badge i {
    color: var(--ai-accent-purple);
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.6));
}

.unified-platform-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.25rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.unified-platform-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.unified-platform-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.unified-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(15, 17, 35, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.unified-benefit-item i {
    color: var(--ai-accent-purple);
    font-size: 1.1rem;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.5));
}

/* Unified Systems Diagram */
.unified-platform-visual {
    position: relative;
    z-index: 1;
    padding: 2rem;
}

.unified-systems-diagram {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    min-height: 400px;
    justify-content: center;
    padding: 2rem;
}

.unified-system-item {
    background: rgba(15, 17, 35, 0.8);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    border: 2px solid rgba(139, 92, 246, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    min-width: 140px;
    transition: var(--transition);
    position: relative;
    z-index: 2;
}

.unified-system-item:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.5);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.unified-system-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(139, 92, 246, 0.4);
}

.unified-system-icon i {
    font-size: 1.75rem;
    color: var(--ai-accent-purple);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.6));
}

.unified-system-label {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    font-size: 1.1rem;
}

.unified-connector {
    color: var(--ai-accent-purple);
    font-size: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.5));
    animation: pulse 2s ease-in-out infinite;
    position: relative;
    z-index: 3;
}

.unified-connector-1 {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.unified-connector-2 {
    position: absolute;
    bottom: 25%;
    left: 50%;
    transform: translate(-50%, 50%) rotate(-45deg);
}

.unified-center-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg, var(--ai-accent-purple) 0%, var(--ai-accent-blue) 100%);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    border: 3px solid rgba(139, 92, 246, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: #FFFFFF;
    font-weight: 600;
    box-shadow: 0 10px 40px rgba(139, 92, 246, 0.4);
    z-index: 10;
    animation: float 3s ease-in-out infinite;
}

.unified-center-core i {
    font-size: 2rem;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.5));
}

.unified-center-core span {
    font-size: 0.9rem;
    text-align: center;
}

/* System Build Cards */
.system-build-card {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    isolation: isolate;
}

.system-build-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.system-build-card:hover::before {
    transform: scaleX(1);
}

.system-build-card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.system-build-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2), 0 0 60px rgba(139, 92, 246, 0.1);
    background: rgba(15, 17, 35, 0.8);
}

.system-build-card:hover .system-build-card-glow {
    opacity: 1;
}

.system-build-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(139, 92, 246, 0.15) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.system-build-icon i {
    font-size: 2.5rem;
    color: #FFFFFF;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.system-build-card:hover .system-build-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(139, 92, 246, 0.3));
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.system-build-card:hover .system-build-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
}

/* Color Variations for Different System Types */
.system-build-card-crm .system-build-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(59, 130, 246, 0.15));
}

.system-build-card-crm:hover .system-build-icon {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.3), rgba(59, 130, 246, 0.3));
    box-shadow: 0 10px 30px rgba(34, 197, 94, 0.4);
}

.system-build-card-erp .system-build-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(251, 191, 36, 0.15));
}

.system-build-card-erp:hover .system-build-icon {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.3), rgba(251, 191, 36, 0.3));
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.system-build-card-hr .system-build-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.15), rgba(139, 92, 246, 0.15));
}

.system-build-card-hr:hover .system-build-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.3), rgba(139, 92, 246, 0.3));
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.4);
}

.system-build-card-lms .system-build-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.15), rgba(59, 130, 246, 0.15));
}

.system-build-card-lms:hover .system-build-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.3), rgba(59, 130, 246, 0.3));
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.4);
}

.system-build-card-integration .system-build-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.15));
}

.system-build-card-integration:hover .system-build-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(59, 130, 246, 0.3));
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.system-build-card-custom .system-build-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(6, 182, 212, 0.15));
}

.system-build-card-custom:hover .system-build-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.3), rgba(6, 182, 212, 0.3));
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.system-build-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 1rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    z-index: 1;
    transform: translateZ(0);
}

.system-build-card:hover .system-build-title {
    color: var(--text-white);
}

.system-build-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-weight: 400;
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 0.95rem;
    transform: translateZ(0);
}

.system-build-card:hover .system-build-description {
    color: rgba(255, 255, 255, 0.85);
}

.system-build-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.system-build-features li {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    background: rgba(59, 130, 246, 0.08);
    border-radius: 8px;
    border-left: 3px solid rgba(59, 130, 246, 0.3);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.system-build-features li:hover {
    background: rgba(59, 130, 246, 0.15);
    border-left-color: rgba(59, 130, 246, 0.6);
    transform: translateX(5px);
    color: rgba(255, 255, 255, 0.9);
}

.system-build-features li i {
    color: #22C55E;
    font-size: 0.8rem;
    filter: drop-shadow(0 0 5px rgba(34, 197, 94, 0.5));
}

/* Systems Build CTA */
.systems-build-cta {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15), rgba(139, 92, 246, 0.15));
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 4rem 3rem;
    border: 2px solid rgba(59, 130, 246, 0.3);
    text-align: center;
    box-shadow: 0 12px 40px rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.systems-build-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan));
}

.systems-build-cta-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(139, 92, 246, 0.25));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
}

.systems-build-cta:hover .systems-build-cta-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
}

.systems-build-cta-icon i {
    font-size: 2.8rem;
    color: var(--ai-accent-blue);
    filter: drop-shadow(0 0 15px rgba(59, 130, 246, 0.5));
}

.systems-build-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.systems-build-cta-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.systems-build-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 3.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.systems-build-cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.systems-build-cta-button:hover::before {
    width: 400px;
    height: 400px;
}

.systems-build-cta-button span,
.systems-build-cta-button i {
    position: relative;
    z-index: 1;
}

.systems-build-cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, var(--ai-accent-purple) 0%, var(--ai-accent-blue) 100%);
}

.systems-build-cta-button:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Systems We Build */
@media (max-width: 768px) {
    .systems-we-build-section {
        padding: 60px 0;
    }

    .unified-platform-card {
        padding: 2rem 1.5rem;
    }

    .unified-platform-title {
        font-size: 1.75rem;
    }

    .unified-platform-description {
        font-size: 1rem;
    }

    .unified-platform-benefits {
        grid-template-columns: 1fr;
    }

    .unified-systems-diagram {
        min-height: 300px;
        margin-top: 2rem;
    }

    .unified-system-item {
        padding: 1.25rem 1.5rem;
        min-width: 120px;
    }

    .unified-system-icon {
        width: 50px;
        height: 50px;
    }

    .unified-system-icon i {
        font-size: 1.5rem;
    }

    .unified-center-core {
        padding: 1.25rem 1.5rem;
        font-size: 0.85rem;
    }

    .unified-center-core i {
        font-size: 1.5rem;
    }

    .system-build-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .system-build-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.25rem;
    }

    .system-build-icon i {
        font-size: 2rem;
    }

    .system-build-title {
        font-size: 1.3rem;
    }

    .system-build-description {
        font-size: 0.9rem;
    }

    .systems-build-cta {
        padding: 2.5rem 1.5rem;
    }

    .systems-build-cta-title {
        font-size: 1.7rem;
    }

    .systems-build-cta-description {
        font-size: 1rem;
    }

    .systems-build-cta-button {
        padding: 1rem 2.5rem;
        font-size: 1.1rem;
        width: 100%;
        max-width: 100%;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .hero-button-primary,
    .hero-button-secondary {
        width: 100%;
        justify-content: center;
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Technology Stack Preview Section */
.tech-stack-preview-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 17, 35, 0.95) 0%, rgba(30, 35, 60, 0.95) 100%);
}

.tech-stack-preview-card {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.tech-stack-preview-glow {
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

.tech-stack-preview-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.tech-stack-preview-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #FFFFFF;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

.tech-stack-preview-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tech-stack-preview-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.tech-stack-category {
    margin-bottom: 3rem;
}

.tech-stack-category:last-of-type {
    margin-bottom: 2.5rem;
}

.tech-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(59, 130, 246, 0.3);
}

.tech-category-title i {
    color: var(--ai-accent-blue);
    font-size: 1.3rem;
}

.tech-stack-preview-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.tech-badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem 2rem;
    background: rgba(15, 17, 35, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
    min-width: 120px;
}

.tech-badge-item:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
    background: rgba(15, 17, 35, 0.95);
}

.tech-badge-item i {
    font-size: 2.5rem;
    color: var(--ai-accent-blue);
    transition: var(--transition);
}

.tech-badge-item:hover i {
    transform: scale(1.2);
    color: var(--ai-accent-purple);
}

.tech-badge-item span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
}

.tech-stack-preview-cta {
    text-align: center;
}

.tech-stack-preview-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.tech-stack-preview-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.tech-stack-preview-button:hover::before {
    width: 400px;
    height: 400px;
}

.tech-stack-preview-button span,
.tech-stack-preview-button i {
    position: relative;
    z-index: 1;
}

.tech-stack-preview-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.5), 0 0 40px rgba(139, 92, 246, 0.3);
}

.tech-stack-preview-button:hover i {
    transform: translateX(5px);
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 17, 35, 0.98) 0%, rgba(20, 25, 45, 0.98) 100%);
}

.why-choose-card {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.why-choose-card-glow {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.why-choose-card:hover .why-choose-card-glow {
    opacity: 1;
    transform: scale(1.5);
}

.why-choose-card:hover {
    transform: translateY(-10px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
}

.why-choose-icon-wrapper {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #FFFFFF;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
    transition: var(--transition);
}

.why-choose-card:hover .why-choose-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(59, 130, 246, 0.5);
}

.why-choose-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.why-choose-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* European Hosting Section */
.european-hosting-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 17, 35, 0.98) 0%, rgba(20, 25, 45, 0.98) 100%);
}

.european-hosting-card {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3.5rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.european-hosting-glow {
    position: absolute;
    top: -30%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 5s ease-in-out infinite;
}

.european-hosting-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(139, 92, 246, 0.2);
    border: 1px solid rgba(139, 92, 246, 0.4);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ai-accent-purple);
    margin-bottom: 1.5rem;
}

.european-hosting-badge i {
    font-size: 1rem;
}

.european-hosting-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.european-hosting-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.european-hosting-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.european-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(15, 17, 35, 0.6);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 15px;
    transition: var(--transition);
}

.european-feature-item:hover {
    transform: translateX(10px);
    border-color: rgba(139, 92, 246, 0.4);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.2);
}

.european-feature-item i {
    color: var(--ai-accent-purple);
    font-size: 1.3rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.european-feature-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.european-feature-item p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    line-height: 1.6;
}

.european-hosting-cta {
    margin-top: 2rem;
}

.european-hosting-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--ai-accent-purple) 0%, var(--ai-accent-blue) 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

.european-hosting-button:hover::before {
    width: 400px;
    height: 400px;
}

.european-hosting-button span,
.european-hosting-button i {
    position: relative;
    z-index: 1;
}

.european-hosting-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5), 0 0 50px rgba(59, 130, 246, 0.3);
}

.european-hosting-button:hover i {
    transform: translateX(5px);
}

.european-hosting-visual {
    position: relative;
    padding: 2rem;
    text-align: center;
}

.european-visual-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2.5rem;
    background: linear-gradient(135deg, var(--ai-accent-purple) 0%, var(--ai-accent-blue) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #FFFFFF;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
    animation: float 3s ease-in-out infinite;
}

.european-compliance-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.compliance-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.5rem;
    background: rgba(15, 17, 35, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}

.compliance-badge:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.compliance-badge i {
    font-size: 2rem;
    color: var(--ai-accent-purple);
    transition: var(--transition);
}

.compliance-badge:hover i {
    transform: scale(1.2);
}

.compliance-badge span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-white);
}

/* Responsive Design for European Hosting Section */
@media (max-width: 768px) {
    .european-hosting-card {
        padding: 2.5rem 1.5rem;
    }

    .european-hosting-title {
        font-size: 2rem;
    }

    .european-hosting-description {
        font-size: 1rem;
    }

    .european-visual-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .european-compliance-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .compliance-badge {
        padding: 1rem;
    }

    .european-hosting-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
}

/* Partnership Section */
.partnership-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 17, 35, 0.95) 0%, rgba(30, 35, 60, 0.95) 100%);
}

.partnership-card {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 4rem;
    border: 1px solid rgba(139, 92, 246, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.partnership-glow {
    position: absolute;
    top: -30%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 5s ease-in-out infinite;
}

.partnership-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.partnership-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--ai-accent-purple) 0%, var(--ai-accent-blue) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #FFFFFF;
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.4);
    animation: float 3s ease-in-out infinite;
}

.partnership-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.partnership-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.partnership-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.partnership-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: rgba(15, 17, 35, 0.8);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}

.partnership-benefit-item:hover {
    transform: translateY(-3px);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.partnership-benefit-item i {
    color: var(--ai-accent-purple);
    font-size: 1.2rem;
}

.partnership-benefit-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-white);
}

.partnership-cta {
    margin-top: 2rem;
}

.partnership-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--ai-accent-purple) 0%, var(--ai-accent-blue) 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

.partnership-button:hover::before {
    width: 400px;
    height: 400px;
}

.partnership-button span,
.partnership-button i {
    position: relative;
    z-index: 1;
}

.partnership-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5), 0 0 50px rgba(59, 130, 246, 0.3);
}

.partnership-button:hover i {
    transform: translateX(5px);
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .tech-stack-preview-card {
        padding: 2rem 1.5rem;
    }

    .tech-stack-preview-title {
        font-size: 1.8rem;
    }

    .tech-stack-category {
        margin-bottom: 2rem;
    }

    .tech-category-title {
        font-size: 1.3rem;
    }

    .tech-stack-preview-badges {
        gap: 1rem;
    }

    .tech-badge-item {
        min-width: 100px;
        padding: 1rem 1.5rem;
    }

    .tech-badge-item i {
        font-size: 2rem;
    }

    .why-choose-card {
        padding: 2rem 1.5rem;
        margin-bottom: 1.5rem;
    }

    .why-choose-icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .why-choose-title {
        font-size: 1.2rem;
    }

    .partnership-card {
        padding: 2.5rem 1.5rem;
    }

    .partnership-title {
        font-size: 2rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.3;
        margin-bottom: 1.25rem;
        text-align: left;
    }

    .partnership-description {
        font-size: 1.1rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        text-align: left;
        max-width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
    
    .partnership-content {
        text-align: left;
    }

    .partnership-benefits {
        flex-direction: column;
        align-items: stretch;
    }

    .partnership-benefit-item {
        justify-content: center;
    }

    .partnership-button {
        width: 100%;
        justify-content: center;
        padding: 1rem 2rem;
    }
}

@media (max-width: 576px) {
    .partnership-title {
        font-size: 1.75rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.35;
        margin-bottom: 1rem;
        text-align: left;
    }

    .partnership-description {
        font-size: 0.95rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.75;
        margin-bottom: 1.25rem;
        text-align: left;
        max-width: 100%;
    }
    
    .partnership-content {
        text-align: left;
    }
}

/* ============================================
   CONSULTING SECTIONS
   ============================================ */

/* Consulting Preview Section (Home Page) */
.consulting-preview-section {
    padding: 80px 0;
    position: relative;
    background: linear-gradient(135deg, rgba(15, 17, 35, 0.98) 0%, rgba(20, 25, 45, 0.98) 100%);
}

.consulting-preview-card {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3.5rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.consulting-preview-card .row {
    align-items: stretch;
    margin-left: 0;
    margin-right: 0;
}

.consulting-preview-card .row > div {
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
}

/* Ensure columns stay side by side on wide screens */
@media (min-width: 992px) {
    .consulting-preview-card .row {
        flex-wrap: nowrap;
    }
}

.consulting-preview-glow {
    position: absolute;
    top: -30%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

.consulting-preview-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.4);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--ai-accent-blue);
    margin-bottom: 1.5rem;
}

.consulting-preview-badge i {
    font-size: 1rem;
}

.consulting-preview-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.consulting-preview-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.consulting-preview-description:last-of-type {
    margin-bottom: 1.5rem;
}

.consulting-preview-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.consulting-benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.consulting-benefit-item i {
    color: var(--ai-accent-blue);
    font-size: 1.1rem;
}

.consulting-preview-cta {
    margin-top: 2rem;
}

.consulting-preview-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
    border: none;
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

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

.consulting-preview-button:hover::before {
    width: 400px;
    height: 400px;
}

.consulting-preview-button span,
.consulting-preview-button i {
    position: relative;
    z-index: 1;
}

.consulting-preview-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5), 0 0 50px rgba(139, 92, 246, 0.3);
}

.consulting-preview-button:hover i {
    transform: translateX(5px);
}

.consulting-preview-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.consulting-preview-visual {
    position: relative;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 100%;
    align-self: stretch;
}

.consulting-visual-icon {
    width: 120px;
    height: 120px;
    margin: 0 auto 2.5rem;
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #FFFFFF;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    animation: float 3s ease-in-out infinite;
}

.consulting-visual-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.consulting-step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(15, 17, 35, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--transition);
}

.consulting-step:hover {
    transform: translateX(10px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.step-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.step-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Consulting Page Styles */
.consulting-intro-card {
    background: rgba(15, 17, 35, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.consulting-intro-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple), var(--ai-accent-cyan));
}

.consulting-intro-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.2);
}

.consulting-intro-icon i {
    font-size: 2.5rem;
    color: var(--ai-accent-blue);
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.5));
}

.consulting-intro-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.consulting-intro-description {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.consulting-intro-description:last-child {
    margin-bottom: 0;
}

.consulting-services-card,
.consulting-process-card,
.consulting-benefits-card {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(59, 130, 246, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
}

.consulting-section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.consulting-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.consulting-section-title i {
    color: var(--ai-accent-blue);
}

.consulting-section-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.consulting-service-card {
    background: rgba(15, 17, 35, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.consulting-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--ai-accent-blue), var(--ai-accent-purple));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.consulting-service-card:hover::before {
    transform: scaleX(1);
}

.consulting-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.consulting-service-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.consulting-service-icon i {
    font-size: 1.8rem;
    color: var(--ai-accent-blue);
}

.consulting-service-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.consulting-service-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.consulting-process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.consulting-process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem;
    background: rgba(15, 17, 35, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    transition: var(--transition);
}

.consulting-process-step:hover {
    transform: translateX(10px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.process-step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #FFFFFF;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.process-step-content {
    flex: 1;
}

.process-step-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.process-step-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.consulting-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(15, 17, 35, 0.8);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 20px;
    transition: var(--transition);
    height: 100%;
}

.consulting-benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(59, 130, 246, 0.4);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(59, 130, 246, 0.3);
    flex-shrink: 0;
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--ai-accent-blue);
}

.benefit-content {
    flex: 1;
}

.benefit-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 0.75rem;
}

.benefit-description {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.consulting-cta-card {
    background: rgba(15, 17, 35, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 3.5rem;
    border: 1px solid rgba(59, 130, 246, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.consulting-cta-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #FFFFFF;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4);
    animation: float 3s ease-in-out infinite;
}

.consulting-cta-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(255, 255, 255, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.consulting-cta-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.consulting-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.consulting-cta-button-primary,
.consulting-cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border: none;
}

.consulting-cta-button-primary {
    color: #FFFFFF;
    background: linear-gradient(135deg, var(--ai-accent-blue) 0%, var(--ai-accent-purple) 100%);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4);
}

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

.consulting-cta-button-primary:hover::before {
    width: 400px;
    height: 400px;
}

.consulting-cta-button-primary span,
.consulting-cta-button-primary i {
    position: relative;
    z-index: 1;
}

.consulting-cta-button-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.5), 0 0 50px rgba(139, 92, 246, 0.3);
}

.consulting-cta-button-secondary {
    color: var(--text-white);
    background: rgba(15, 17, 35, 0.6);
    border: 2px solid rgba(59, 130, 246, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.consulting-cta-button-secondary:hover {
    transform: translateY(-3px);
    background: rgba(15, 17, 35, 0.8);
    border-color: rgba(59, 130, 246, 0.6);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.consulting-cta-button-secondary:hover i {
    transform: translateX(5px);
}

/* Responsive Design for Consulting Sections */
@media (max-width: 768px) {
    .consulting-preview-card {
        padding: 2rem 1.5rem;
    }

    .consulting-preview-title {
        font-size: 2rem;
    }

    .consulting-visual-icon {
        width: 100px;
        height: 100px;
        font-size: 2.5rem;
    }

    .consulting-step {
        flex-direction: column;
        text-align: center;
    }

    .consulting-intro-card,
    .consulting-services-card,
    .consulting-process-card,
    .consulting-benefits-card {
        padding: 2rem 1.5rem;
    }

    .consulting-section-title {
        font-size: 1.6rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .consulting-process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .consulting-benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .consulting-cta-card {
        padding: 2.5rem 1.5rem;
    }

    .consulting-cta-title {
        font-size: 1.8rem;
    }

    .consulting-cta-buttons {
        flex-direction: column;
    }

    .consulting-cta-button-primary,
    .consulting-cta-button-secondary {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   Why Custom Solutions Section (Home Page)
   ============================================ */

.why-custom-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(15, 17, 35, 0.98) 0%, rgba(15, 17, 35, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.why-custom-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.why-custom-section .container {
    position: relative;
    z-index: 1;
}

.why-custom-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.9), rgba(15, 23, 42, 0.95));
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-custom-card .row {
    align-items: stretch;
    margin-left: 0;
    margin-right: 0;
}

.why-custom-card .row > div {
    display: flex;
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
}

/* Ensure columns stay side by side on wide screens */
@media (min-width: 768px) {
    .why-custom-card .row {
        flex-wrap: nowrap;
    }
}

.why-custom-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.why-custom-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.why-custom-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.15);
    color: var(--ai-accent-blue);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.why-custom-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.why-custom-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.why-custom-highlight {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(16, 185, 129, 0.05));
    border-left: 4px solid #10b981;
    padding: 1rem 1.25rem;
    border-radius: 0 10px 10px 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 1.5rem 0;
}

.why-custom-highlight i {
    color: #10b981;
    margin-right: 0.5rem;
}

.why-custom-cta {
    margin-top: 1.5rem;
}

.why-custom-button {
    background: linear-gradient(135deg, var(--ai-accent-blue), var(--ai-accent-purple));
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.why-custom-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
    color: white;
}

/* Visual comparison mini */
.why-custom-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    min-height: 100%;
    padding: 1rem;
    align-self: stretch;
}

.approach-comparison-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    height: 100%;
}

.approach-mini-item {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 1.25rem;
    text-align: center;
    width: 100%;
    max-width: 200px;
}

.approach-mini-fragmented {
    border: 1px dashed rgba(245, 158, 11, 0.3);
}

.approach-mini-unified {
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.approach-mini-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
}

.approach-mini-fragmented .approach-mini-icon {
    background: rgba(245, 158, 11, 0.15);
}

.approach-mini-fragmented .approach-mini-icon i {
    font-size: 1.25rem;
    color: #f59e0b;
}

.approach-mini-unified .approach-mini-icon {
    background: rgba(16, 185, 129, 0.15);
}

.approach-mini-unified .approach-mini-icon i {
    font-size: 1.25rem;
    color: #10b981;
}

.approach-mini-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

.approach-mini-dots {
    display: flex;
    justify-content: center;
    gap: 0.35rem;
}

.approach-mini-dots span {
    width: 8px;
    height: 8px;
    background: rgba(245, 158, 11, 0.5);
    border-radius: 50%;
}

.approach-mini-bar {
    height: 8px;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 4px;
}

.approach-mini-arrow {
    color: rgba(255, 255, 255, 0.4);
    font-size: 1.25rem;
}

.approach-mini-arrow i {
    transform: rotate(90deg);
}

@media (max-width: 991px) {
    .why-custom-visual {
        margin-top: 2rem;
    }
    .approach-comparison-mini {
        flex-direction: row;
        justify-content: center;
    }
    .approach-mini-arrow i {
        transform: rotate(0deg);
    }
}

@media (max-width: 768px) {
    .why-custom-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .why-custom-card {
        padding: 1.5rem;
    }
    .why-custom-title {
        font-size: 1.4rem;
    }
    .approach-comparison-mini {
        flex-direction: column;
    }
    .approach-mini-arrow i {
        transform: rotate(90deg);
    }
}

/* ============================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ============================================ */

/* General Mobile Utilities */
@media (max-width: 991.98px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Ensure all sections have proper spacing */
    section {
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Text alignment on mobile */
    .text-center-mobile {
        text-align: center !important;
    }
}

/* Header & Navigation Mobile */
@media (max-width: 991.98px) {
    .main-header {
        padding: 0.75rem 0;
    }
    
    .navbar-brand {
        font-size: 1.4rem;
        padding: 0.4rem 0.8rem;
    }
    
    .logo-box {
        font-size: 1.1rem;
        padding: 0.3rem 0.5rem;
    }
    
    .navbar-nav {
        margin-top: 1rem;
    }
    
    .nav-link {
        padding: 0.75rem 1rem !important;
        text-align: center;
    }
    
    .dropdown-menu {
        text-align: center;
    }
    
    .navbar-toggler {
        padding: 0.25rem 0.5rem;
        font-size: 1rem;
    }
}

/* Footer Mobile - Compact 2 Column Layout */
@media (max-width: 991.98px) {
    .main-footer {
        padding: 35px 15px 20px;
    }
    
    .main-footer .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .main-footer .row > div {
        margin-bottom: 1.5rem;
    }
    
    /* Brand section - full width, compact */
    .footer-brand {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-logo-text {
        justify-content: center;
    }
    
    .footer-brand p {
        text-align: center;
        max-width: 100%;
        margin: 0.75rem auto 0;
        font-size: 1rem;
    }
    
    /* Navigation and Company sections - Left column */
    .main-footer .row > div:nth-child(2),
    .main-footer .row > div:nth-child(3) {
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 1rem;
        padding-right: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links {
        text-align: left;
        margin-bottom: 0;
    }
    
    .footer-title {
        margin-bottom: 0.75rem;
        font-size: 1.1rem;
        font-weight: 600;
    }
    
    .footer-links li {
        margin-bottom: 0.5rem;
    }
    
    .footer-links a {
        display: inline-block;
        padding: 0.25rem 0;
        font-size: 1rem;
    }
    
    /* Contact section - Right column (full width on mobile, can be adjusted) */
    .main-footer .row > div:last-child {
        flex: 0 0 100%;
        max-width: 100%;
        margin-top: 0.5rem;
    }
    
    .footer-contact {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        margin-bottom: 1rem;
    }
    
    .footer-contact .footer-title {
        margin-bottom: 0.75rem;
    }
    
    .footer-contact li {
        justify-content: flex-start;
        text-align: left;
        flex-wrap: wrap;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }
    
    .footer-contact li i {
        flex-shrink: 0;
        width: 18px;
        min-width: 18px;
        font-size: 1rem;
    }
    
    .social-links {
        justify-content: center;
        margin-top: 1rem;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .social-links a {
        width: 44px;
        height: 44px;
        font-size: 1.15rem;
    }
    
    .footer-bottom {
        text-align: center;
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 30px 20px 18px;
    }
    
    .main-footer .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .main-footer .row > div {
        margin-bottom: 1.25rem;
    }
    
    .footer-brand {
        margin-bottom: 1.25rem;
    }
    
    .footer-logo-box {
        font-size: 1rem;
        padding: 0.25rem 0.45rem;
    }
    
    .footer-logo-apps {
        font-size: 1.2rem;
    }
    
    .footer-brand p {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-top: 0.5rem;
    }
    
    /* 2 Column layout for navigation and company */
    .main-footer .row > div:nth-child(2),
    .main-footer .row > div:nth-child(3) {
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-title {
        font-size: 1.05rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-links li {
        margin-bottom: 0.4rem;
    }
    
    .footer-links a {
        font-size: 0.95rem;
        padding: 0.2rem 0;
    }
    
    /* Contact section */
    .main-footer .row > div:last-child {
        margin-top: 0.25rem;
    }
    
    .footer-contact {
        margin-bottom: 0.75rem;
    }
    
    .footer-contact li {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
        gap: 0.4rem;
    }
    
    .footer-contact li i {
        font-size: 0.95rem;
        width: 18px;
        min-width: 18px;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.75rem;
        margin-top: 0.75rem;
    }
    
    .social-links a {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        margin-top: 1.25rem;
        padding-top: 0.875rem;
    }
    
    .footer-bottom p {
        font-size: 0.9rem;
        padding: 0 0.75rem;
        line-height: 1.4;
    }
}

@media (max-width: 576px) {
    .main-footer {
        padding: 25px 20px 15px;
    }
    
    .main-footer .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .main-footer .row > div {
        margin-bottom: 1rem;
    }
    
    .footer-brand {
        margin-bottom: 1rem;
    }
    
    .footer-logo-text {
        gap: 0.5rem;
    }
    
    .footer-logo-box {
        font-size: 0.95rem;
        padding: 0.2rem 0.4rem;
    }
    
    .footer-logo-apps {
        font-size: 1.1rem;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
        margin-top: 0.4rem;
        line-height: 1.5;
    }
    
    /* Keep 2 column layout even on small screens */
    .main-footer .row > div:nth-child(2),
    .main-footer .row > div:nth-child(3) {
        flex: 0 0 50%;
        max-width: 50%;
        padding-left: 0.75rem;
        padding-right: 0.75rem;
        margin-bottom: 0.6rem;
    }
    
    .footer-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-links li {
        margin-bottom: 0.35rem;
    }
    
    .footer-links a {
        font-size: 0.9rem;
        padding: 0.15rem 0;
    }
    
    .footer-contact {
        margin-bottom: 0.6rem;
    }
    
    .footer-contact li {
        font-size: 0.85rem;
        margin-bottom: 0.35rem;
        gap: 0.35rem;
    }
    
    .footer-contact li i {
        font-size: 0.9rem;
        width: 16px;
        min-width: 16px;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.75rem;
        margin-top: 0.6rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.05rem;
    }
    
    .footer-bottom {
        margin-top: 1rem;
        padding-top: 0.75rem;
    }
    
    .footer-bottom p {
        font-size: 0.85rem;
        padding: 0 0.5rem;
        line-height: 1.4;
    }
}

/* Hero Section Mobile */
@media (max-width: 991.98px) {
    .systems-showcase-section {
        padding: 80px 0 60px;
    }
    
    .hero-content {
        text-align: left;
        margin-bottom: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
    }
    
    .hero-cta {
        text-align: left;
    }
    
    .cta-text {
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        position: relative;
        z-index: 10;
        pointer-events: auto;
        margin-top: 1rem;
    }
    
    .hero-button-primary,
    .hero-button-secondary {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        z-index: 10;
        pointer-events: auto;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
    }
    
    .hero-image {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .systems-showcase-section {
        padding: 60px 0 40px;
    }
    
    .hero-content {
        text-align: left;
    }
    
    .hero-title {
        font-size: 1.75rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.35;
        text-align: left;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        line-height: 1.75;
        text-align: left;
    }
    
    .hero-cta {
        padding: 1rem;
    }
    
    .cta-text {
        font-size: 0.95rem;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: left;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.875rem;
        width: 100%;
        position: relative;
        z-index: 10;
        pointer-events: auto;
        margin-top: 1rem;
    }
    
    .hero-button-primary,
    .hero-button-secondary {
        width: 100%;
        justify-content: center;
        min-height: 48px;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        z-index: 10;
        pointer-events: auto;
        touch-action: manipulation;
        -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
    }
    
    .hero-image {
        margin-top: 0.75rem;
    }
    
    .hero-graphic {
        min-height: 400px;
    }
}

/* Data Process Diagram Mobile - Already handled above but ensuring consistency */
@media (max-width: 576px) {
    .data-process-diagram {
        padding: 30px 20px 40px 20px;
        gap: 18px;
    }
    
    .process-step {
        min-width: 100%;
        max-width: 100%;
        width: 100%;
        padding: 22px 18px;
    }
    
    .process-step-icon {
        width: 65px;
        height: 65px;
        font-size: 26px;
        margin-bottom: 14px;
    }
    
    .process-step-label {
        font-size: 17px;
        margin-bottom: 14px;
    }
    
    .process-step-items {
        gap: 9px;
    }
    
    .process-item {
        font-size: 12px;
        padding: 7px 12px;
    }
    
    .process-item i {
        font-size: 11px;
    }
}

/* Section Headers Mobile */
@media (max-width: 768px) {
    .section-header {
        margin-bottom: 2rem !important;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        display: block;
        word-wrap: break-word;
        overflow-wrap: break-word;
        text-align: center;
    }
    
    .section-header {
        text-align: center;
    }
    
    .section-header.text-center .section-title,
    .section-header.text-center .section-subtitle {
        text-align: center;
    }
}

/* Cards Mobile */
@media (max-width: 991.98px) {
    .service-card,
    .system-card,
    .system-build-card,
    .why-choose-card,
    .tech-stack-preview-card,
    .consulting-preview-card,
    .european-hosting-card,
    .partnership-card {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .service-card,
    .system-card,
    .system-build-card,
    .why-choose-card,
    .tech-stack-preview-card,
    .consulting-preview-card,
    .european-hosting-card,
    .partnership-card,
    .why-custom-card,
    .data-rescue-content,
    .ai-data-content,
    .excel-reporting-content {
        padding: 1.5rem;
    }
    
    .service-card-icon,
    .system-card-icon,
    .system-build-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .service-card-title,
    .system-card-title,
    .system-build-title {
        font-size: 1.3rem;
    }
}

/* Data Rescue Section Mobile */
@media (max-width: 768px) {
    .data-rescue-section,
    .ai-powered-data-section,
    .excel-to-reporting-section,
    .systems-we-build-section,
    .why-choose-us-section,
    .european-hosting-section,
    .partnership-section,
    .consulting-preview-section,
    .why-custom-section {
        padding: 40px 0;
    }
    
    .data-rescue-visual,
    .ai-data-visual,
    .excel-reporting-visual {
        margin-top: 1.5rem;
    }
}

@media (max-width: 576px) {
    .data-rescue-section,
    .ai-powered-data-section,
    .excel-to-reporting-section,
    .systems-we-build-section,
    .why-choose-us-section,
    .european-hosting-section,
    .partnership-section,
    .consulting-preview-section,
    .why-custom-section {
        padding: 30px 0;
    }
    
    .data-rescue-visual,
    .ai-data-visual,
    .excel-reporting-visual {
        margin-top: 1rem;
    }
}

/* Buttons Mobile */
@media (max-width: 768px) {
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-button-primary,
    .hero-button-secondary,
    .data-rescue-button,
    .ai-data-button,
    .excel-reporting-button,
    .systems-build-cta-button,
    .consulting-preview-button,
    .why-custom-button,
    .partnership-button,
    .european-hosting-button,
    .tech-stack-preview-button {
        width: 100%;
        justify-content: center;
    }
}

/* Forms Mobile */
@media (max-width: 768px) {
    .contact-form,
    .ticket-form {
        padding: 1.5rem;
    }
    
    .form-control,
    .form-select,
    textarea.form-control {
        font-size: 1rem;
        padding: 0.75rem;
    }
    
    .form-label {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
}

/* Grid Adjustments */
@media (max-width: 991.98px) {
    /* Ensure columns stack properly */
    .col-lg-6,
    .col-lg-4,
    .col-lg-3,
    .col-md-6,
    .col-md-4 {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Full width on mobile for better readability */
    .col-lg-6,
    .col-lg-4,
    .col-lg-3,
    .col-md-6,
    .col-md-4,
    .col-md-5,
    .col-md-7 {
        margin-bottom: 2rem;
    }
}

/* Typography Mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    h3 {
        font-size: 1.5rem;
        line-height: 1.4;
    }
    
    h4 {
        font-size: 1.25rem;
        line-height: 1.4;
    }
    
    h5 {
        font-size: 1.1rem;
        line-height: 1.5;
    }
    
    p {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Badges Mobile */
@media (max-width: 768px) {
    .data-rescue-badge,
    .ai-data-badge,
    .excel-reporting-badge,
    .why-custom-badge,
    .consulting-preview-badge,
    .european-hosting-badge,
    .tech-stack-preview-icon {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Feature Items Mobile */
@media (max-width: 768px) {
    .rescue-feature-item,
    .ai-feature-item,
    .reporting-feature-item {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .rescue-feature-icon,
    .ai-feature-icon,
    .reporting-feature-icon {
        margin: 0 auto 1rem;
    }
}

/* Visual Elements Mobile */
@media (max-width: 768px) {
    .data-chaos-visual,
    .data-clean-visual,
    .excel-chaos-visual,
    .system-clean-visual {
        gap: 0.5rem;
    }
    
    .chaos-item,
    .clean-item,
    .excel-item,
    .system-item {
        padding: 0.5rem;
        font-size: 0.7rem;
    }
    
    .transformation-icon,
    .reporting-transformation-arrow .transformation-icon {
        width: 50px;
        height: 50px;
    }
    
    .transformation-icon i {
        font-size: 1.2rem;
    }
}

/* Workflow Section Mobile */
@media (max-width: 768px) {
    .workflow-section {
        padding: 60px 0;
    }
    
    .workflow-intro-card,
    .workflow-step-card,
    .workflow-prebuild-card {
        padding: 1.5rem;
    }
    
    .workflow-step-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

/* Stacks/Technology Section Mobile */
@media (max-width: 768px) {
    .tech-stack-preview-badges {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .tech-badge-item {
        min-width: 90px;
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .tech-category-title {
        font-size: 1.2rem;
        text-align: center;
    }
}

/* Consulting Section Mobile */
@media (max-width: 768px) {
    .consulting-visual-steps {
        margin-top: 2rem;
    }
    
    .consulting-step {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
    }
    
    .step-number {
        margin: 0 auto 1rem;
    }
}

/* Compare Approach Mobile */
@media (max-width: 768px) {
    .comparison-container {
        padding: 1rem;
    }
    
    .comparison-card {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .comparison-card-title {
        font-size: 1.3rem;
    }
}

/* About Section Mobile */
@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }
    
    .about-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .about-chart {
        height: 300px;
    }
}

/* Contact Section Mobile */
@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .contact-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .team-member-card {
        margin-bottom: 2rem;
    }
}

/* Services Section Mobile */
@media (max-width: 768px) {
    .services-section {
        padding: 60px 0;
    }
    
    .service-card {
        text-align: center;
    }
}

/* Newsletter Component Mobile */
@media (max-width: 768px) {
    .newsletter-section {
        padding: 40px 0;
    }
    
    .newsletter-content {
        text-align: center;
        padding: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
        gap: 1rem;
    }
    
    .newsletter-input {
        width: 100%;
    }
    
    .newsletter-button {
        width: 100%;
    }
}


/* Tables Mobile */
@media (max-width: 768px) {
    .table-responsive {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    table {
        font-size: 0.9rem;
    }
    
    th, td {
        padding: 0.5rem;
    }
}

/* Images Mobile */
@media (max-width: 768px) {
    img {
        max-width: 100%;
        height: auto;
    }
    
    .team-member-image img,
    .hero-data-image {
        width: 100%;
        height: auto;
    }
}

/* Spacing Utilities Mobile */
@media (max-width: 768px) {
    .mb-5 {
        margin-bottom: 2rem !important;
    }
    
    .mt-5 {
        margin-top: 2rem !important;
    }
    
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

/* Prevent horizontal scroll */
@media (max-width: 991.98px) {
    body {
        overflow-x: hidden;
    }
    
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* Extra Small Devices */
@media (max-width: 576px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Reduce padding on very small screens */
    section {
        padding-top: 40px;
        padding-bottom: 40px;
    }
    
    .btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.95rem;
    }
}

