:root {
    /* Core Colors */
    --primary: #E53935;
    --primary-dark: #C62828;
    --primary-light: #EF5350;
    --secondary: #FF9800;
    --secondary-dark: #F57C00;
    --secondary-light: #FFB74D;
    --dark: #1E293B;
    --light: #F8FAFC;
    --gray-light: #F1F5F9;
    --gray: #CBD5E1;
    --gray-dark: #64748B;
    
    /* UI Elements */
    --background: #FFFFFF;
    --card-bg: #FFFFFF;
    --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    --hover-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    --text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    
    /* Animation */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
    --transition-slow: 0.8s ease;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 20px;
    --radius-circle: 50%;
}

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

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(99, 102, 241, 0); }
    100% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0); }
}

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

@keyframes revealText {
    from {
        clip-path: inset(0 100% 0 0);
    }
    to {
        clip-path: inset(0 0 0 0);
    }
}

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

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

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes glitch {
    0% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
                    0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    14% {
        text-shadow: 0.05em 0 0 rgba(255, 0, 0, 0.75),
                    -0.025em -0.05em 0 rgba(0, 255, 0, 0.75),
                    0.025em 0.05em 0 rgba(0, 0, 255, 0.75);
    }
    15% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    49% {
        text-shadow: -0.05em -0.025em 0 rgba(255, 0, 0, 0.75),
                    0.025em 0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.05em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    50% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(0, 255, 0, 0.75),
                    0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    99% {
        text-shadow: 0.025em 0.05em 0 rgba(255, 0, 0, 0.75),
                    0.05em 0 0 rgba(0, 255, 0, 0.75),
                    0 -0.05em 0 rgba(0, 0, 255, 0.75);
    }
    100% {
        text-shadow: -0.025em 0 0 rgba(255, 0, 0, 0.75),
                    -0.025em -0.025em 0 rgba(0, 255, 0, 0.75),
                    -0.025em -0.05em 0 rgba(0, 0, 255, 0.75);
    }
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--background);
    cursor: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* Custom Cursor - Disabled */

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.section-title {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.section-title.light {
    color: var(--light);
}

.section-title.text-left {
    text-align: left;
}

.section-subtitle {
    text-align: center;
    color: var(--gray-dark);
    margin-bottom: 3rem;
    font-size: 1.2rem;
    font-weight: 300;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 5s ease infinite;
    display: inline-block;
}

.gradient-text-alt {
    background: linear-gradient(90deg, var(--secondary) 0%, var(--primary-light) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 5s ease infinite;
    display: inline-block;
}

.reveal-text {
    overflow: hidden;
    position: relative;
}

.reveal-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--background);
    transform: translateX(-100%);
    animation: revealText 1.5s ease forwards;
}

.fade-in-text {
    opacity: 0;
    animation: fadeIn 1.5s forwards;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

.slide-in-text {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s forwards;
}

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

.fade-in-animation {
    opacity: 0;
    animation: fadeIn 1.5s forwards 0.5s;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

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

.btn-secondary:hover {
    background-color: rgba(99, 102, 241, 0.05);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.btn-glow {
    animation: pulse 2s infinite;
}

.btn-hover-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition-medium);
}

.btn-hover-slide:hover::before {
    left: 100%;
}

/* Link Effects */
.hover-underline {
    position: relative;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
}

.hover-underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.hover-underline:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Header & Navigation */
header {
    min-height: 100vh;
    background: url('../assets/images/hero-bg.svg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    width: 100%;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    position: fixed;
    width: 100%;
    top: 0;
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
    max-width: 100vw;
}

.nav-scrolled {
    padding: 1rem 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    position: relative;
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
}

.nav-links li {
    margin-left: 2.5rem;
}

.nav-links a {
    text-decoration: none;
    /* color: var(--dark); */
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.nav-links a:hover {
    color: var(--primary);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 5px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding-top: 8rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 100vh;
    width: 100%;
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
}

.hero-content {
    max-width: 600px;
    z-index: 2;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-content h1 {
    font-size: 3.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--gray-dark);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-image {
    flex: 1;
    max-width: 650px;
    height: 600px;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-graphic {
    width: 500px;
    height: 500px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-brain {
    width: 320px;
    height: 320px;
    position: relative;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(229, 57, 53, 0.1) 0%, rgba(229, 57, 53, 0.05) 100%);
    box-shadow: 0 10px 50px rgba(229, 57, 53, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.brain-icon {
    width: 180px;
    height: 180px;
    background-color: var(--primary);
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M208 96c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zM320 256c35.3 0 64-28.7 64-64c0-35.3-28.7-64-64-64H192c-35.3 0-64 28.7-64 64c0 35.3 28.7 64 64 64H320zM208 416c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zM380.8 425.4L352 380.1c-6.9-10.8-18.9-17.4-31.7-17.4h-69.5c-11.3 0-22.2 5.5-28.8 14.8l-35.3 49.4c-9.1 12.8-7.5 30.3 3.7 41.2l31.9 31c11.3 11 29.2 12.9 42.4 4.4l61.7-39.6c18.1-11.6 22.6-35.8 11-53.9c-11.6-18.1-35.8-22.6-53.9-11l-22.1 14.2l12-16.8c.4-.5 1-1 1.5-1.4l30.3-20.2c8.1-5.4 15.7-12 22.5-19.4l19.7 39.5c3.3 6.6 11.3 9.4 18 6.1s9.4-11.3 6.1-18zM429.5 122c-3.8-13.7-17.9-21.7-31.7-17.8l-104 28.9c-12.1 3.4-20.6 14.2-20.6 26.8c0 15.2 12.3 27.5 27.5 27.5c3 0 6-.5 8.9-1.5l71.7-20.2c-8.2 16.4-27.7 47.5-65.6 67.3c-1.2 .6-2.4 1.2-3.6 1.9l-59.4 31.7c-5.5 2.9-11.2 5.3-17.1 7.1l-57 17.1c-15 4.5-31 3.8-45.6-1.9L92.1 247.3c-4.5-1.7-9.3-2.3-14.1-1.6L41.8 252c-14.8 2.1-24.8 16-22.7 30.8s16 24.8 30.8 22.7L86 299.2c1.4-.2 2.9-.2 4.3-.1l30.9 3.1c12.4 1.2 25 0 36.8-3.7l44.5-13.3c4.8-1.4 9.4-3.6 13.5-6.4l39.2-27.3c29.5-20.6 53.7-46.2 71.4-76.3L388 193.9c13.7 3.8 27.9-4.1 31.7-17.8s-4.1-27.9-17.8-31.7l-128-35.6c-2.7-.8-5.5-.8-8.2 0l-44.8 12.5c-7.4 2.1-13.7 6.9-17.2 13.7c-5.3 10.4-1.1 23.1 9.3 28.4c2.9 1.5 6.1 2.2 9.2 2.2c7.7 0 15.1-4.4 18.7-11.9c.7-1.1 1.5-2.1 2.4-3l13.5-3.8c1-.3 2.1-.3 3.1 0l17.2 4.8c-1.8 1.7-3.6 3.3-5.5 4.9l-43.2 39.3c-10.6 9.6-13.7 24.9-7.7 37.8c4.2 9.1 12.2 15.1 21.3 17.2c5.6 1.3 11.4 .9 16.8-1.2c1.4-.5 2.7-1.2 4-1.9l54.2-28.9c1.7-1 3.4-1.8 5.2-2.6l10.8-4.3c35.8-14.3 62.9-42.8 74.9-78.3l11.4 3.2c-.9 3.5-1.3 7.2-1 11z'/%3E%3C/svg%3E");
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath d='M208 96c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zM320 256c35.3 0 64-28.7 64-64c0-35.3-28.7-64-64-64H192c-35.3 0-64 28.7-64 64c0 35.3 28.7 64 64 64H320zM208 416c26.5 0 48-21.5 48-48s-21.5-48-48-48s-48 21.5-48 48s21.5 48 48 48zM380.8 425.4L352 380.1c-6.9-10.8-18.9-17.4-31.7-17.4h-69.5c-11.3 0-22.2 5.5-28.8 14.8l-35.3 49.4c-9.1 12.8-7.5 30.3 3.7 41.2l31.9 31c11.3 11 29.2 12.9 42.4 4.4l61.7-39.6c18.1-11.6 22.6-35.8 11-53.9c-11.6-18.1-35.8-22.6-53.9-11l-22.1 14.2l12-16.8c.4-.5 1-1 1.5-1.4l30.3-20.2c8.1-5.4 15.7-12 22.5-19.4l19.7 39.5c3.3 6.6 11.3 9.4 18 6.1s9.4-11.3 6.1-18zM429.5 122c-3.8-13.7-17.9-21.7-31.7-17.8l-104 28.9c-12.1 3.4-20.6 14.2-20.6 26.8c0 15.2 12.3 27.5 27.5 27.5c3 0 6-.5 8.9-1.5l71.7-20.2c-8.2 16.4-27.7 47.5-65.6 67.3c-1.2 .6-2.4 1.2-3.6 1.9l-59.4 31.7c-5.5 2.9-11.2 5.3-17.1 7.1l-57 17.1c-15 4.5-31 3.8-45.6-1.9L92.1 247.3c-4.5-1.7-9.3-2.3-14.1-1.6L41.8 252c-14.8 2.1-24.8 16-22.7 30.8s16 24.8 30.8 22.7L86 299.2c1.4-.2 2.9-.2 4.3-.1l30.9 3.1c12.4 1.2 25 0 36.8-3.7l44.5-13.3c4.8-1.4 9.4-3.6 13.5-6.4l39.2-27.3c29.5-20.6 53.7-46.2 71.4-76.3L388 193.9c13.7 3.8 27.9-4.1 31.7-17.8s-4.1-27.9-17.8-31.7l-128-35.6c-2.7-.8-5.5-.8-8.2 0l-44.8 12.5c-7.4 2.1-13.7 6.9-17.2 13.7c-5.3 10.4-1.1 23.1 9.3 28.4c2.9 1.5 6.1 2.2 9.2 2.2c7.7 0 15.1-4.4 18.7-11.9c.7-1.1 1.5-2.1 2.4-3l13.5-3.8c1-.3 2.1-.3 3.1 0l17.2 4.8c-1.8 1.7-3.6 3.3-5.5 4.9l-43.2 39.3c-10.6 9.6-13.7 24.9-7.7 37.8c4.2 9.1 12.2 15.1 21.3 17.2c5.6 1.3 11.4 .9 16.8-1.2c1.4-.5 2.7-1.2 4-1.9l54.2-28.9c1.7-1 3.4-1.8 5.2-2.6l10.8-4.3c35.8-14.3 62.9-42.8 74.9-78.3l11.4 3.2c-.9 3.5-1.3 7.2-1 11z'/%3E%3C/svg%3E");
    mask-size: contain;
    -webkit-mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-position: center;
    opacity: 0.8;
    animation: pulse 3s infinite ease-in-out;
}

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

.circuit-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23E53935' stroke-width='1'%3E%3Cpath d='M10 10h80M10 30h80M10 50h80M10 70h80M10 90h80M30 10v80M50 10v80M70 10v80M90 10v80'/%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.pulse-rings {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid rgba(229, 57, 53, 0.5);
    border-radius: 50%;
    opacity: 0;
    animation: ringPulse 3s infinite;
}

.ring-1 {
    width: 100px;
    height: 100px;
    animation-delay: 0s;
}

.ring-2 {
    width: 150px;
    height: 150px;
    animation-delay: 0.5s;
}

.ring-3 {
    width: 200px;
    height: 200px;
    animation-delay: 1s;
}

@keyframes ringPulse {
    0% { 
        transform: translate(-50%, -50%) scale(0.5); 
        opacity: 0.5; 
    }
    100% { 
        transform: translate(-50%, -50%) scale(2); 
        opacity: 0; 
    }
}

.connection-dots {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.connection-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--primary);
    border-radius: 50%;
}

.dot-1 { top: 25%; left: 20%; }
.dot-2 { top: 70%; left: 25%; }
.dot-3 { top: 40%; left: 80%; }
.dot-4 { top: 65%; left: 70%; }
.dot-5 { top: 15%; left: 60%; }

.connection-line {
    position: absolute;
    height: 2px;
    background-color: var(--primary);
    opacity: 0.3;
    transform-origin: left center;
}

.line-1 {
    top: 25%;
    left: 20%;
    width: 60%;
    transform: rotate(25deg);
}

.line-2 {
    top: 70%;
    left: 25%;
    width: 45%;
    transform: rotate(-15deg);
}

.line-3 {
    top: 40%;
    left: 80%;
    width: 35%;
    transform: rotate(150deg);
}

.line-4 {
    top: 65%;
    left: 70%;
    width: 40%;
    transform: rotate(-120deg);
}

.line-5 {
    top: 15%;
    left: 60%;
    width: 30%;
    transform: rotate(-60deg);
}

/* Solutions Section */
.solutions {
    padding: 8rem 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.solution-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    width: 100%;
}

.solution-card {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.solution-card .icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 2;
}

.solution-card .icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: 50%;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.7;
    transform: scale(0.8);
    transition: var(--transition-medium);
}

.solution-card:hover .icon::before {
    transform: scale(1.2);
    opacity: 0.9;
}

.solution-card .icon i {
    font-size: 1.8rem;
    color: white;
}

.card-content {
    position: relative;
    z-index: 2;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.solution-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.solution-card p {
    color: var(--gray-dark);
    flex: 1;
}

.learn-more {
    margin-top: 1.5rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    position: relative;
    cursor: pointer;
    padding: 0.3rem 0.1rem;
}

.learn-more::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.learn-more i {
    transition: transform 0.3s ease;
}

.learn-more:hover {
    color: var(--primary-dark);
}

.learn-more:hover i {
    transform: translateX(5px);
}

.learn-more:hover::after {
    width: 100%;
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    z-index: 0;
    opacity: 0;
    transition: var(--transition-medium);
}

.solution-card:hover .card-bg {
    opacity: 1;
}

/* Process Section */
.process {
    padding: 8rem 0;
    background-color: var(--background);
    position: relative;
    overflow: hidden;
}

.process-steps {
    margin-top: 3rem;
    position: relative;
}

.process-steps::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(60px + 25px);
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-light) 0%, var(--primary) 100%);
    z-index: 1;
}

.process-step {
    display: flex;
    margin-bottom: 5rem;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.process-icon {
    flex: 0 0 120px;
    position: relative;
    display: flex;
    justify-content: center;
    z-index: 2; /* Ensure icon stays above any other elements */
}

.icon-circle {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    position: relative;
    box-shadow: 0 10px 20px rgba(229, 57, 53, 0.3);
}

.icon-circle i {
    font-size: 1.5rem;
    color: white;
}

.step-number {
    position: absolute;
    top: -10px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    z-index: 3;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.3);
}

.process-content {
    flex: 1;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.process-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.process-content p {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.process-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.process-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--dark);
}

.process-features li i {
    color: var(--primary);
    font-size: 0.9rem;
}

.process-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 2.5rem;
    background-color: var(--light);
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
}

.process-cta p {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .process-steps::before {
        display: none; /* Hide the vertical line on mobile */
    }
    
    .process-step {
        flex-direction: column;
        position: relative;
        padding-left: 15px;
        border-left: 2px solid var(--primary-light);
        margin-left: 15px;
    }
    
    .process-icon {
        flex: 0;
        margin-bottom: 1rem;
        align-self: flex-start;
        margin-left: -32px; /* Pull the icon to overlap the border */
    }
    
    .icon-circle {
        width: 50px;
        height: 50px;
    }
    
    .step-number {
        top: -5px;
        right: auto;
        left: 38px; /* Position number to the right of the icon */
        width: 25px;
        height: 25px;
        font-size: 0.9rem;
    }
    
    .process-content {
        padding: 0 0 0 10px;
        margin-top: 15px; /* Add space between icon and content */
    }
    
    .process-features {
        grid-template-columns: 1fr;
        margin-top: 10px;
    }
    
    /* Extra space for the last process step */
    .process-step:last-child {
        padding-bottom: 20px;
    }
}

/* Benefits Section */
.benefits {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E"), linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 2;
}

.benefit {
    text-align: center;
    padding: 1rem;
    transition: transform 0.5s ease;
}

.benefit-inner {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: var(--transition-medium);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.benefit:hover .benefit-inner {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}

.counter-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit h3 {
    font-size: 3.5rem;
    margin-bottom: 0.2rem;
    background: linear-gradient(90deg, #ffffff 0%, var(--secondary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.counter-wrapper span {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-light);
    margin-left: 0.2rem;
}

.benefit p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
}

.benefits-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.circle-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    left: -150px;
    animation: rotateCircle 30s linear infinite;
}

.circle-2 {
    width: 500px;
    height: 500px;
    bottom: -250px;
    right: -250px;
    background: rgba(255, 255, 255, 0.05);
    animation: rotateCircle 40s linear infinite reverse;
}

.circle-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    left: 30%;
    background: rgba(255, 255, 255, 0.03);
    animation: float 20s ease-in-out infinite;
}

/* Case Studies Section */
.case-studies {
    padding: 8rem 0;
    background-color: var(--background);
    position: relative;
}

.case-study-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.case-study-card {
    background-color: var(--card-bg);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--card-shadow);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid var(--gray-light);
}

.case-study-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--hover-shadow);
}

.card-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0) 30%, 
        rgba(255, 255, 255, 0.4) 50%, 
        rgba(255, 255, 255, 0) 70%);
    background-size: 200% 200%;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-study-card:hover .card-shine {
    opacity: 1;
    animation: shimmer 1.5s infinite;
}

.company-logo {
    height: 60px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.company-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: var(--radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-icon i {
    font-size: 1.5rem;
    color: white;
}

.case-study-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.case-study-card p {
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.metric {
    flex: 1;
    min-width: 100px;
    padding: 0.75rem;
    background-color: var(--gray-light);
    border-radius: var(--radius-sm);
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.metric-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray-dark);
}

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition-fast);
    position: relative;
    cursor: pointer;
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    margin-top: 0.5rem;
}

.read-more i {
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: white;
    background-color: var(--primary);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* About Section */
.about {
    padding: 8rem 0;
    background-color: var(--light);
    position: relative;
    overflow: hidden;
}

.about .container {
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.about-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.about-image {
    flex: 1;
    height: 450px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-graphic {
    width: 350px;
    height: 350px;
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(229, 57, 53, 0.3);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.about-inner {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 30px;
}

.about-logo {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.about-tagline {
    font-size: 16px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.about-features {
    width: 100%;
    position: relative;
    z-index: 2;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.feature-icon {
    font-size: 18px;
    margin-right: 10px;
    color: var(--secondary);
}

.feature-text {
    font-weight: 500;
}

.about-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.about-glow {
    position: absolute;
    top: -30%;
    right: -30%;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowFloat 5s infinite ease-in-out;
}

@keyframes glowFloat {
    0%, 100% { transform: translateY(0); opacity: 0.3; }
    50% { transform: translateY(-15px); opacity: 0.5; }
}

.shape {
    position: absolute;
    border-radius: var(--radius-circle);
    filter: blur(30px);
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 20%;
    left: 10%;
    background: rgba(99, 102, 241, 0.2);
    animation: float 12s ease-in-out infinite;
}

.shape-2 {
    width: 200px;
    height: 200px;
    bottom: 10%;
    right: 5%;
    background: rgba(20, 184, 166, 0.2);
    animation: float 15s ease-in-out infinite reverse;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background-color: var(--background);
    position: relative;
}

.contact-container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    margin-top: 3rem;
    width: 100%;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.form-group {
    position: relative;
}

.animated-input {
    width: 100%;
    padding: 1.2rem;
    border: 1px solid var(--gray);
    border-radius: var(--radius-md);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    background: transparent;
    transition: border-color 0.3s ease;
    position: relative;
    z-index: 2;
}

.animated-input:focus {
    outline: none;
    border-color: var(--primary);
}

.input-focus-effect {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 100%);
    transition: width 0.3s ease;
    z-index: 1;
}

.animated-input:focus + .input-focus-effect {
    width: 100%;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    padding-left: 2rem;
    position: relative;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.info-item i {
    font-size: 1.8rem;
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.info-item p {
    margin: 0;
    font-size: 1.1rem;
}

.contact-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.shape-3 {
    width: 180px;
    height: 180px;
    top: 10%;
    right: 10%;
    background: rgba(99, 102, 241, 0.1);
    animation: float 18s ease-in-out infinite;
}

.shape-4 {
    width: 120px;
    height: 120px;
    bottom: 20%;
    left: 5%;
    background: rgba(20, 184, 166, 0.1);
    animation: float 15s ease-in-out infinite reverse;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: white;
    padding: 6rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
}

.footer-logo h2 {
    font-size: 2rem;
    text-align: left;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.8rem;
}

.social-icons a {
    width: 45px;
    height: 45px;
    border-radius: var(--radius-circle);
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-medium);
    overflow: hidden;
    position: relative;
}

.social-icon-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 0;
}

.social-icon-hover:hover::before {
    opacity: 1;
}

.social-icons a i {
    position: relative;
    z-index: 1;
    font-size: 1.2rem;
}

.footer-links h3 {
    margin-bottom: 1.8rem;
    font-size: 1.3rem;
    position: relative;
    display: inline-block;
}

.footer-links h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
}

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

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

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 1rem;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a {
    color: var(--gray);
    text-decoration: none;
    transition: var(--transition-fast);
}

.legal-links a:hover {
    color: white;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
    padding: 20px;
    -webkit-overflow-scrolling: touch;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background-color: white;
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    width: calc(100% - 40px);
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    margin: 20px;
}

.modal-overlay.active .modal-container {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease;
}

.modal-close:hover {
    background-color: var(--gray);
}

.modal-close i {
    font-size: 1.2rem;
    color: var(--gray-dark);
}

.modal-content {
    padding: 40px;
}

.modal-header {
    margin-bottom: 30px;
}

.modal-header h2 {
    font-size: 2.2rem;
    text-align: left;
    margin-bottom: 10px;
}

.modal-header p {
    color: var(--gray-dark);
    font-size: 1.1rem;
}

.modal-body {
    margin-bottom: 30px;
}

.modal-section {
    margin-bottom: 30px;
}

.modal-section h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.modal-section p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.feature-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.feature-item i {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-top: 3px;
}

.modal-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin: 25px 0;
    background-color: var(--light);
    padding: 20px;
    border-radius: var(--radius-md);
}

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

.modal-metric-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 5px;
}

.modal-metric-label {
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.modal-footer {
    text-align: center;
    margin-top: 30px;
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    h1 {
        font-size: 3rem;
    }
    
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .modal-container {
        max-width: 95%;
    }
}

@media screen and (max-width: 1024px) {
    h1 {
        font-size: 2.8rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .about .container,
    .contact-container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
    
    .contact-info {
        padding-left: 0;
    }
}

@media screen and (max-width: 1024px) {
    .about .container {
        flex-direction: column;
        gap: 4rem;
    }

    .contact-container {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem 2rem;
    }
}

@media screen and (max-width: 768px) {
    
    .nav-links {
        position: fixed;
        right: 0;
        top: 70px;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        height: calc(100vh - 70px);
        width: 80%;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 2rem 0;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: -5px 0px 10px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .nav-links li {
        margin: 1.5rem 0;
    }
    
    .burger {
        display: block;
        z-index: 1000;
    }
    
    .nav-active {
        transform: translateX(0%);
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 6rem;
        height: auto;
        min-height: 100vh;
    }
    
    .hero-content {
        margin-bottom: 4rem;
        padding: 2rem 1.5rem;
        width: 90%;
        max-width: 500px;
    }
    
    .cta-buttons {
        justify-content: center;
    }
    
    .hero-image {
        height: 400px;
        max-width: 100%;
    }

    .hero-graphic {
        width: 100%;
        max-width: 350px;
        height: auto;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .solution-cards,
    .case-study-cards {
        grid-template-columns: 1fr;
    }
    
    .solution-card,
    .case-study-card {
        max-width: 450px;
        margin: 0 auto;
    }

    .process-steps::before {
        left: 30px;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .process-icon {
        flex: 0;
        margin-bottom: 2rem;
        align-self: flex-start;
    }
    
    .process-content {
        padding: 0;
    }
    
    .process-features {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .legal-links {
        justify-content: center;
    }

    .about-image {
        height: auto;
    }

    .about-graphic {
        width: 100%;
        max-width: 350px;
    }

    .modal-metrics {
        grid-template-columns: 1fr 1fr;
    }

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

@media screen and (max-width: 480px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-logo {
        text-align: center;
    }
    
    .footer-logo h2,
    .footer-links h3 {
        text-align: center;
    }
    
    .footer-links h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-links ul {
        text-align: center;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .benefit h3 {
        font-size: 2.8rem;
    }
    
    .metrics {
        flex-direction: column;
    }

    .modal-metrics {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 20px;
    }

    .contact-form {
        padding: 1rem;
    }
    
    /* Further adjust process steps for very small screens */
    .process-step {
        padding-left: 10px;
        margin-left: 10px;
    }
    
    .process-icon {
        margin-left: -27px;
    }
    
    .step-number {
        left: 33px;
    }
    
    .process-content h3 {
        font-size: 1.4rem;
    }
}

/* Animations */
.fade-in {
    opacity: 1;
    transform: translateY(0);
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.burger.toggle .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.burger.toggle .line2 {
    opacity: 0;
}

.burger.toggle .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
}

.error {
    border-color: #EF4444 !important;
}

.success-message {
    animation: fadeSlideUp 0.5s ease forwards;
}

/* Page styles for inner pages */
.page-header {
    background: url('../assets/images/hero-bg.svg');
    background-size: cover;
    background-position: center;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
}

.page-title {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.page-description {
    font-size: 1.2rem;
    color: var(--gray-dark);
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.page-content {
    padding: 5rem 0;
    background-color: var(--background);
}

.breadcrumbs {
    display: flex;
    list-style: none;
    margin-bottom: 2rem;
}

.breadcrumbs li {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.breadcrumbs li:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: var(--gray);
}

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

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

.content-section {
    margin-bottom: 4rem;
}

.content-section:last-child {
    margin-bottom: 0;
}

.content-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.content-section p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.content-card {
    padding: 2rem;
    background-color: var(--light);
    border-radius: var(--radius-md);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.content-card h3 {
    margin-bottom: 1rem;
    color: var(--primary);
}

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

.team-image {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.team-role {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.blog-card {
    margin-bottom: 2rem;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.05);
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    font-size: 0.8rem;
    color: var(--gray-dark);
    margin-bottom: 0.5rem;
}

.blog-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.blog-excerpt {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
}

.blog-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(3px);
}

.whitepaper-card, .webinar-card {
    display: flex;
    margin-bottom: 2rem;
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.whitepaper-image, .webinar-image {
    flex: 0 0 250px;
    background-color: var(--gray-light);
    position: relative;
}

.whitepaper-image img, .webinar-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.webinar-date {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.9rem;
}

.whitepaper-content, .webinar-content {
    flex: 1;
    padding: 2rem;
}

.whitepaper-title, .webinar-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.whitepaper-excerpt, .webinar-excerpt {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
}

.job-card {
    padding: 2rem;
    margin-bottom: 2rem;
    background: white;
    border-radius: var(--radius-md);
    box-shadow: var(--card-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--hover-shadow);
}

.job-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.job-location {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.job-location i {
    margin-right: 0.5rem;
    color: var(--primary);
}

.job-description {
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-right: 1rem;
    margin-top: 0.2rem;
}

.contact-item-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--dark);
}

.contact-item-content p {
    color: var(--gray-dark);
    margin-bottom: 0;
}

.contact-item-content a {
    color: var(--primary);
    text-decoration: none;
}

.contact-item-content a:hover {
    text-decoration: underline;
}

.contact-map {
    height: 400px;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 3rem;
    box-shadow: var(--card-shadow);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.privacy-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.privacy-section p {
    margin-bottom: 1rem;
}

.privacy-section ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-section ul li {
    margin-bottom: 0.5rem;
}

.content-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-image {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--card-shadow);
}

.content-image img {
    width: 100%;
    height: auto;
    display: block;
}

@media screen and (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .content-two-col {
        grid-template-columns: 1fr;
    }
    
    .whitepaper-card, .webinar-card {
        flex-direction: column;
    }
    
    .whitepaper-image, .webinar-image {
        height: 200px;
        flex: none;
    }
}

@media screen and (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }
    
    .page-description {
        font-size: 1rem;
    }
    
    .page-header {
        padding: 120px 0 60px;
    }
}