/* Variables CSS - Palette de couleurs ESN Tech */
:root {
    --color-primary: #1B1F3A; /* Dark navy */
    --color-primary-dark: #151829; /* Darker navy */
    --color-secondary: #00D2FF; /* Cyan tech */
    --color-accent: #6C5CE7; /* Purple moderne */
    --color-success: #00B894; /* Vert tech */
    --color-warning: #FDCB6E; /* Jaune tech */
    --color-light: #FFFFFF; /* blanc */
    --color-grey-light: #F8F9FA; /* gris très clair */
    --color-grey: #E9ECEF; /* gris moyen */
    --color-grey-dark: #6C757D; /* gris foncé */
    --color-text: #2D3748; /* texte principal */
    --color-text-light: #718096; /* texte secondaire */
    --color-heading: #1A202C; /* titres */
    --color-dark: #1A202C; /* très foncé */
    --color-error: #E53E3E;
    
    /* Gradients tech */
    --gradient-primary: linear-gradient(135deg, #1B1F3A 0%, #2D3748 100%);
    --gradient-secondary: linear-gradient(135deg, #00D2FF 0%, #6C5CE7 100%);
    --gradient-accent: linear-gradient(135deg, #6C5CE7 0%, #00B894 100%);
    
    /* Typographies modernes */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'Fira Code', 'Monaco', 'Consolas', monospace;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 8rem;
    
    /* Transitions */
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease-out;
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-primary);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-text);
    background-color: var(--color-light);
    overflow-x: hidden;
    width: 100%;
}

/* Typographie */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-heading);
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    font-weight: 600;
}

h4 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-sm);
}

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

a:hover {
    color: var(--color-secondary);
}

/* Container et layout - PLEINE LARGEUR */
.container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 var(--spacing-lg);
}

/* Container limité pour certains contenus */
.container-limited {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section {
    padding: var(--spacing-xxl) 0;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.section__header {
    text-align: center;
    margin: 0 auto var(--spacing-lg);
    max-width: 800px;
    padding: 0 var(--spacing-lg);
}

.section__title {
    color: var(--color-heading);
    margin-bottom: var(--spacing-sm);
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--color-text);
    opacity: 0.8;
}

.section__cta {
    text-align: center;
    margin-top: var(--spacing-lg);
}

/* Sections sombres et claires avec nouvelle charte tech - PLEINE LARGEUR */
.section-light {
    background: linear-gradient(135deg, #F8F9FA 0%, #FFFFFF 100%);
    position: relative;
    width: 100%;
}

.section-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(0, 210, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(108, 92, 231, 0.03) 0%, transparent 50%);
    z-index: 0;
}

.section-light .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

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

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

.section-dark {
    background: var(--gradient-primary);
    color: var(--color-light);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -20%;
    width: 140%;
    height: 140%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 210, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 70% 70%, rgba(108, 92, 231, 0.1) 0%, transparent 60%);
    transform: rotate(25deg);
    z-index: 0;
}

.section-dark .container {
    position: relative;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

.section-dark .section__title,
.section-dark h1, .section-dark h2, .section-dark h3 {
    color: var(--color-light);
}

.section-dark .section__subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.section-cta {
    background: var(--gradient-secondary);
    color: var(--color-light);
    position: relative;
}

.section-cta .section__title,
.section-cta h1, .section-cta h2, .section-cta h3 {
    color: var(--color-light);
}

/* Boutons - Nouvelle charte tech */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-family: var(--font-primary);
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
    z-index: 1;
}

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

.btn-primary {
    background: var(--gradient-secondary);
    color: var(--color-light);
    box-shadow: 0 4px 20px rgba(0, 210, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-light);
    border: 2px solid var(--color-secondary);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--color-secondary);
    color: var(--color-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.4);
}

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

.btn-outline:hover {
    background: var(--gradient-secondary);
    color: var(--color-light);
}

/* Header et Navigation */
.header {
    background-color: var(--color-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem var(--spacing-lg);
    width: 100%;
    max-width: none;
}

.navbar__logo .logo {
    font-family: var(--font-heading);
    color: var(--color-primary);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-tagline {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-accent);
    margin-top: 0.2rem;
    font-family: var(--font-primary);
}

.navbar__menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.navbar__item {
    position: relative;
}

.navbar__link {
    color: var(--color-text);
    font-weight: 500;
    text-decoration: none;
    transition: color var(--transition-base);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.navbar__link:hover {
    color: var(--color-secondary);
}

.dropdown-arrow {
    font-size: 0.8rem;
    transition: transform var(--transition-base);
}

.navbar__item--dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--color-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 1rem 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    list-style: none;
}

.navbar__item--dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu__link {
    display: block;
    padding: 0.5rem 1.5rem;
    color: var(--color-text);
    text-decoration: none;
    transition: background-color var(--transition-base);
}

.dropdown-menu__link:hover {
    background-color: var(--color-grey-light);
    color: var(--color-secondary);
}

.navbar__toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger {
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 3px 0;
    transition: all var(--transition-base);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .navbar__toggle {
        display: flex;
    }
    
    .navbar__menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: var(--color-light);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        transition: left var(--transition-base);
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    .navbar__menu.active {
        left: 0;
    }
    
    .navbar__item {
        margin: 1rem 0;
        width: 100%;
        text-align: center;
    }
    
    .navbar__link {
        padding: 1rem;
        font-size: 1.1rem;
        width: 100%;
        display: block;
    }
    
    .dropdown-menu {
        position: static;
        box-shadow: none;
        background: var(--color-grey-light);
        margin-top: 0.5rem;
        border-radius: 0;
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .navbar__item--dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
    
    /* Hamburger animation */
    .navbar__toggle.active .hamburger:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .navbar__toggle.active .hamburger:nth-child(2) {
        opacity: 0;
    }
    
    .navbar__toggle.active .hamburger:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 80px; /* Compenser le header fixe */
    padding-bottom: var(--spacing-xl);
}

.hero__content {
    max-width: 800px;
    margin: 0 auto;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: var(--spacing-xxl); /* Descendre le contenu */
}

.hero__title {
    margin-bottom: var(--spacing-md);
}

.hero__subtitle {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.9;
}

.hero__cta {
    font-size: 1.125rem;
    padding: 1.25rem 2.5rem;
}

/* Hero Section Responsive */
@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding-top: 60px;
        padding-bottom: var(--spacing-lg);
    }
    
    .hero__content {
        padding-top: var(--spacing-lg);
        max-width: 100%;
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }
    
    .hero__title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: var(--spacing-sm);
    }
    
    .hero__subtitle {
        font-size: 1.1rem;
        margin-bottom: var(--spacing-md);
    }
    
    .hero__cta {
        font-size: 1rem;
        padding: 1rem 2rem;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 70vh;
        padding-top: 50px;
    }
    
    .hero__content {
        padding-top: var(--spacing-md);
    }
    
    .hero__title {
        font-size: clamp(1.6rem, 8vw, 2.2rem);
    }
    
    .hero__subtitle {
        font-size: 1rem;
    }
    
    .hero__cta {
        font-size: 0.95rem;
        padding: 0.875rem 1.75rem;
    }
}

/* Services */
/* Services - Disposition 2x2 */
.services-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.service-card {
    background-color: var(--color-light);
    padding: 1.25rem;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all var(--transition-base);
    border: 2px solid var(--color-secondary);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.15);
    border-color: var(--color-accent);
}

.service-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--color-secondary);
    flex-shrink: 0;
    background: transparent;
    border: 2px solid var(--color-secondary);
}

.service-content {
    flex: 1;
}

.service-title {
    color: var(--color-heading);
    margin-bottom: 0.25rem;
    font-size: 1rem;
    font-weight: 600;
}

.service-description {
    color: var(--color-text);
    margin-bottom: 0.75rem;
    opacity: 0.8;
    font-size: 0.85rem;
    line-height: 1.4;
}

.service-link {
    color: var(--color-secondary);
    font-weight: 600;
    text-decoration: none;
    transition: color var(--transition-base);
    font-size: 0.85rem;
}

.service-link:hover {
    color: var(--color-primary);
}

/* Services Container Responsive */
@media (max-width: 768px) {
    .services-container {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: var(--spacing-md);
        margin-top: var(--spacing-md);
    }
    
    .service-card {
        padding: 1rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .service-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .service-title {
        font-size: 0.95rem;
    }
    
    .service-description {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .services-container {
        margin-top: var(--spacing-sm);
        gap: var(--spacing-sm);
    }
    
    .service-card {
        padding: 0.875rem;
    }
}

/* Projets */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.project-card {
    background-color: var(--color-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.project-card__image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.project-card__cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.project-card:hover .project-card__cover {
    transform: scale(1.05);
}

.project-card__body {
    padding: var(--spacing-md);
}

.project-card__sector {
    background-color: var(--color-secondary);
    color: var(--color-light);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-card__title {
    margin: var(--spacing-sm) 0;
    color: var(--color-heading);
}

.project-card__summary {
    color: var(--color-text);
    opacity: 0.8;
    margin-bottom: var(--spacing-md);
}

/* ===== PROJECTS PORTFOLIO PAGE ===== */
.projects-filter {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--color-light);
    border: 2px solid var(--color-grey);
    color: var(--color-text);
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 0.9rem;
}

.filter-btn:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: var(--gradient-secondary);
    border-color: var(--color-secondary);
    color: var(--color-light);
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
}

.projects-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.portfolio-project {
    background: var(--color-light);
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid var(--color-grey);
    transition: all var(--transition-base);
}

.portfolio-project:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 210, 255, 0.15);
    border-color: var(--color-secondary);
}

.project-image {
    height: 250px;
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.project-placeholder {
    color: var(--color-light);
    font-size: 4rem;
    opacity: 0.8;
    transition: all var(--transition-base);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(27, 31, 58, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-base);
}

.portfolio-project:hover .project-overlay {
    opacity: 1;
}

.portfolio-project:hover .project-placeholder {
    transform: scale(1.1);
}

.project-overlay-content {
    text-align: center;
    color: var(--color-light);
    padding: var(--spacing-md);
}

.project-overlay-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--spacing-xs);
}

.project-overlay-content p {
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
}

.project-tech {
    display: flex;
    gap: var(--spacing-xs);
    justify-content: center;
    flex-wrap: wrap;
}

.tech-tag {
    background: rgba(0, 210, 255, 0.2);
    color: var(--color-secondary);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(0, 210, 255, 0.3);
}

.project-info {
    padding: var(--spacing-xl);
}

.project-category {
    background: var(--color-grey-light);
    color: var(--color-secondary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: var(--spacing-sm);
    border: 1px solid rgba(0, 210, 255, 0.2);
}

.project-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: var(--spacing-sm);
    line-height: 1.3;
}

.project-description {
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.project-results {
    display: flex;
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-grey);
}

.result-item {
    text-align: center;
    flex: 1;
}

.result-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.result-label {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* ===== PERFORMANCE SECTION ===== */
.performance-features {
    max-width: 1400px;
    margin: 0 auto var(--spacing-lg);
    padding: 0 var(--spacing-lg);
}

.performance-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding: var(--spacing-md) 0;
}

/* Alternance : éléments impairs (1, 3, 5) - texte à gauche, visuel à droite */
.performance-feature:nth-child(odd) {
    grid-template-areas: "content visual";
}

.performance-feature:nth-child(odd) .performance-feature__content {
    grid-area: content;
}

.performance-feature:nth-child(odd) .performance-feature__visual {
    grid-area: visual;
}

/* Alternance : éléments pairs (2, 4) - visuel à gauche, texte à droite */
.performance-feature:nth-child(even) {
    grid-template-areas: "visual content";
}

.performance-feature:nth-child(even) .performance-feature__content {
    grid-area: content;
}

.performance-feature:nth-child(even) .performance-feature__visual {
    grid-area: visual;
}

.performance-feature__content h3 {
    color: var(--color-light);
    margin-bottom: var(--spacing-sm);
}

.performance-feature__content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.performance-feature__visual {
    min-height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 3rem;
}

/* ===== METHODOLOGY SECTION ===== */
.methodology-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.methodology-step {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: var(--spacing-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-md);
}

.step-title {
    color: var(--color-light);
    margin-bottom: var(--spacing-xs);
    font-size: 1.5rem;
}

.step-subtitle {
    color: var(--color-secondary);
    margin-bottom: var(--spacing-md);
    font-size: 1.1rem;
    font-weight: 600;
}

.step-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 0;
}

/* ===== HOME PROJECTS SECTION ===== */
.home-projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.home-project-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
}

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

.home-project-card .project-image {
    height: 200px;
    background: var(--gradient-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.project-content {
    padding: var(--spacing-lg);
}

.project-tags {
    display: flex;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.tag {
    background: var(--color-grey-light);
    color: var(--color-secondary);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.project-title {
    color: var(--color-heading);
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.project-description {
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
}

.project-results {
    display: flex;
    gap: var(--spacing-md);
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--color-grey);
}

.result-item {
    text-align: center;
    flex: 1;
}

.result-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-secondary);
}

.result-label {
    font-size: 0.8rem;
    color: var(--color-text-light);
}

/* Projects CTA */
.projects-cta {
    text-align: center;
    margin-top: var(--spacing-xl);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .projects-portfolio-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .project-metrics {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
    
    .metric {
        text-align: left;
        padding: var(--spacing-xs) 0;
        border-bottom: 1px solid var(--color-grey);
    }
    
    .metric:last-child {
        border-bottom: none;
    }
    
    .projects-filter {
        gap: var(--spacing-xs);
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }
    
    .performance-feature {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .methodology-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    .step-team {
        flex-direction: column;
    }
    
    .home-projects-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }
    
    .project-results {
        flex-direction: column;
        gap: var(--spacing-sm);
    }
}

/* Media query pour tablettes */
@media (max-width: 1024px) {
    .home-projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

/* ===== RESPONSIVE MOBILE ===== */
@media (max-width: 600px) {
    .methodology-grid {
        flex-direction: column;
        gap: var(--spacing-lg);
        padding: 0 var(--spacing-md);
    }
    
    .methodology-card {
        width: 100%;
        padding: 1.5rem;
    }
    
    .card-visual {
        height: 150px;
        margin-bottom: 1rem;
    }
    
    .card-team {
        gap: 0.75rem;
    }
    
    .member-photo {
        width: 50px;
        height: 50px;
    }
    
    .member-name {
        font-size: 0.8rem;
    }
    
    .member-role {
        font-size: 0.75rem;
    }
}

/* ===== RESPONSIVE TABLET ===== */
@media (max-width: 1024px) {
    .methodology-grid {
        flex-direction: column;
        gap: var(--spacing-lg);
    }
    
    .methodology-card {
        width: 100%;
        max-width: 600px;
        margin: 0 auto;
    }
}

/* ===== STATS SECTION ===== */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
    max-width: 1400px;
    margin: 0 auto var(--spacing-xl);
    padding: 0 var(--spacing-lg);
}

.stat-item {
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--color-light);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.1);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

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

.stat-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 210, 255, 0.15);
    border-color: var(--color-secondary);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--spacing-sm);
    font-family: var(--font-heading);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-heading);
    margin-bottom: var(--spacing-sm);
}

.stat-description {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin: 0;
}

/* ===== CTA FINAL SECTION ===== */
.cta-final {
    background: var(--gradient-primary);
    color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.cta-final::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 210, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(108, 92, 231, 0.1) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

.cta-final__content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    position: relative;
    z-index: 1;
}

.cta-final__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.cta-final__subtitle {
    font-size: 1.25rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-final__button {
    font-size: 1.125rem;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px rgba(0, 210, 255, 0.3);
}

.cta-final__button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 45px rgba(0, 210, 255, 0.4);
}

/* Responsive pour stats */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-final__title {
        font-size: 2rem;
    }
    
    .cta-final__subtitle {
        font-size: 1.1rem;
    }
}

/* Footer */
.footer {
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer__content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--spacing-xxl);
    margin-bottom: var(--spacing-xl);
}

.footer__column {
    display: flex;
    flex-direction: column;
}

.footer__brand {
    max-width: 400px;
}

.footer__logo {
    margin-bottom: var(--spacing-md);
}

.footer__title {
    color: var(--color-accent);
    margin-bottom: var(--spacing-md);
    font-size: 1.2rem;
    font-weight: 600;
}

.footer__description {
    opacity: 0.85;
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer__links {
    list-style: none;
    margin-bottom: var(--spacing-lg);
}

.footer__links li {
    margin-bottom: var(--spacing-xs);
}

.footer__links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-base);
    font-size: 0.9rem;
}

.footer__links a:hover {
    color: var(--color-accent);
}

.footer__contact {
    margin-bottom: var(--spacing-lg);
}

.contact-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--color-accent);
    width: 16px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-base);
}

.contact-item a:hover {
    color: var(--color-accent);
}

.footer__hours {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer__hours p {
    margin-bottom: var(--spacing-xs);
}

.footer__social {
    display: flex;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.footer__social a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    text-decoration: none;
    transition: all var(--transition-base);
}

.footer__social a:hover {
    color: var(--color-accent);
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: var(--spacing-lg);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-md);
}

.footer__copyright {
    opacity: 0.7;
    font-size: 0.85rem;
}

.footer__copyright p {
    margin-bottom: var(--spacing-xs);
}

.footer__legal {
    display: flex;
    gap: var(--spacing-lg);
}

.footer__legal a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color var(--transition-base);
}

.footer__legal a:hover {
    color: var(--color-accent);
}

/* Footer responsive */
@media (max-width: 768px) {
    .footer__content {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__legal {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Messages flash */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 20px;
    z-index: 1001;
    max-width: 400px;
}

.flash-message {
    padding: 1rem 1.5rem;
    margin-bottom: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    position: relative;
    animation: slideIn 0.3s ease-out;
}

.flash-message--success {
    background-color: var(--color-success);
    color: var(--color-light);
}

.flash-message--error {
    background-color: var(--color-error);
    color: var(--color-light);
}

.flash-message__close {
    position: absolute;
    top: 0.5rem;
    right: 1rem;
    background: none;
    border: none;
    color: inherit;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity var(--transition-base);
}

.flash-message__close:hover {
    opacity: 1;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Page d'erreur 404 */
.error-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    text-align: center;
}

.error-content {
    max-width: 600px;
    margin: 0 auto;
}

.error-number {
    font-size: 8rem;
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1;
    margin-bottom: var(--spacing-md);
}

.error-title {
    margin-bottom: var(--spacing-md);
}

.error-message {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-lg);
    opacity: 0.8;
}

.error-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
}

/* Filtres projets */
.filters {
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.filters h3 {
    margin-bottom: var(--spacing-md);
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
}

.filter-button {
    padding: 0.5rem 1.5rem;
    background-color: var(--color-light);
    border: 2px solid var(--color-primary);
    border-radius: 25px;
    color: var(--color-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
}

.filter-button:hover,
.filter-button--active {
    background-color: var(--color-primary);
    color: var(--color-light);
}

/* Équipe */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.team-member {
    text-align: center;
    background-color: var(--color-light);
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.team-member__avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto var(--spacing-md);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-grey-light);
    font-size: 3rem;
}

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

.team-member__name {
    color: var(--color-heading);
    margin-bottom: var(--spacing-xs);
}

.team-member__role {
    color: var(--color-secondary);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.team-member__bio {
    color: var(--color-text);
    opacity: 0.8;
    margin: 0;
}

/* Valeurs */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.value-item {
    text-align: center;
    padding: var(--spacing-md);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-md);
}

.value-item h3 {
    color: var(--color-light);
    margin-bottom: var(--spacing-sm);
}

.value-item p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

/* NOUVEAUX STYLES INSPIRÉS D'ESKIMOZ */

/* Hero avec actions multiples */
.hero__actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.clients-logos {
    margin-top: 0;
    opacity: 0.8;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    width: 100%;
}

.clients-carousel {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.clients-carousel::before,
.clients-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.clients-carousel::before {
    left: 0;
    background: linear-gradient(to right, var(--color-primary), transparent);
}

.clients-carousel::after {
    right: 0;
    background: linear-gradient(to left, var(--color-primary), transparent);
}

.clients-track {
    display: flex;
    animation: scroll-clients 30s linear infinite;
    width: fit-content;
    gap: var(--spacing-sm);
}

.clients-logos__item {
    padding: var(--spacing-sm) var(--spacing-lg);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    min-width: 120px;
    text-align: center;
    transition: all 0.3s ease;
}

.clients-logos__item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    animation-play-state: paused;
}

.clients-track:hover {
    animation-play-state: paused;
}

@keyframes scroll-clients {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% / 2));
    }
}

/* Tagline section */
.tagline-section {
    background: var(--color-light);
}

.tagline-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 var(--spacing-lg);
}

.tagline-title {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 800;
}

.tagline-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text);
    opacity: 0.9;
}

/* ===== EXPERTISES SECTION ===== */
.expertises-layout {
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 3rem;
    align-items: start;
    margin-top: 6rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

.expertises-visual {
    position: relative;
}

.dashboard-simple {
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 2rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.dashboard-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0;
}

.status-indicator {
    color: var(--color-success);
    font-size: 0.9rem;
    font-weight: 500;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.metric-card {
    text-align: center;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

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

.metric-label {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-bottom: 0.25rem;
}

.metric-trend {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--color-success);
}

.chart-container {
    margin-top: 1.5rem;
}

.chart-header {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 1rem;
}

.simple-chart {
    height: 120px;
    display: flex;
    align-items: end;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    width: 100%;
    height: 80px;
}

.bar {
    background: var(--gradient-secondary);
    border-radius: 3px 3px 0 0;
    flex: 1;
    min-height: 10px;
    transition: all 0.3s ease;
}

.bar:hover {
    opacity: 0.8;
}

/* Cards expertises droite */
.expertises-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--color-secondary);
}

.service-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 0.5rem 0;
}

.service-description {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin: 0 0 1rem 0;
}

.service-link {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color var(--transition-base);
}

.service-link:hover {
    color: var(--color-primary);
}

/* Responsive pour expertises */
@media (max-width: 968px) {
    .expertises-layout {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .dashboard-simple {
        margin-bottom: 2rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

.doc {
    padding: 0.25rem 0;
    color: var(--color-text);
}

/* ===========================
   ABOUT PAGE - CUSTOM STYLES
   =========================== */

/* About Hero - Unique Design */
.about-hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 50%, #0a0e1a 100%);
    min-height: 70vh;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 6rem;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 210, 255, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(108, 92, 231, 0.1) 0%, transparent 60%);
}

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

.about-hero__content {
    text-align: center;
    max-width: 900px;
    padding-top: 80px;
    margin: 0 auto;
}

.about-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--color-light);
    margin-bottom: 2rem;
    line-height: 1.1;
    font-family: var(--font-heading);
}

.about-hero__subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

.about-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: var(--gradient-secondary);
    color: var(--color-light);
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
    box-shadow: 0 8px 30px rgba(0, 210, 255, 0.3);
}

.about-hero__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 210, 255, 0.4);
}

/* About Company Section */
.about-company {
    padding: 6rem 0;
    background: var(--color-light);
}

.about-company__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-company__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-company__text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-primary);
    margin-bottom: 2rem;
    font-weight: 800;
}

.about-company__text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.about-company__stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.about-stat {
    text-align: center;
    padding: 2rem;
    background: var(--color-grey-light);
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all var(--transition-base);
}

.about-stat:hover {
    border-color: var(--color-secondary);
    transform: translateY(-5px);
}

.about-stat__number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-secondary);
    display: block;
    margin-bottom: 0.5rem;
}

.about-stat__label {
    font-weight: 600;
    color: var(--color-primary);
}

.about-company__visual {
    position: relative;
}

.about-visual-card {
    background: var(--gradient-primary);
    border-radius: 20px;
    padding: 3rem;
    color: var(--color-light);
    position: relative;
    overflow: hidden;
}

.about-visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    opacity: 0.1;
    transform: translate(30px, -30px);
}

.about-visual-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--color-light);
}

.about-visual-card p {
    opacity: 0.9;
    line-height: 1.6;
}

/* Values Section */
.about-values {
    padding: 6rem 0;
    background: var(--color-grey-light);
}

.about-values__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-values__header {
    text-align: center;
    margin-bottom: 5rem;
}

.about-values__header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 800;
}

.about-values__header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

.about-values__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.about-value-card {
    background: var(--color-light);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid transparent;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.about-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-secondary);
    transform: scaleX(0);
    transition: transform var(--transition-base);
}

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

.about-value-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-secondary);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-value-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: var(--color-light);
}

.about-value-card h3 {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-value-card p {
    color: var(--color-text);
    line-height: 1.6;
}

/* Team Section */
.about-team {
    padding: 6rem 0;
    background: var(--color-primary);
    color: var(--color-light);
}

.about-team__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-team__header {
    text-align: center;
    margin-bottom: 5rem;
}

.about-team__header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-light);
    margin-bottom: 1rem;
    font-weight: 800;
}

.about-team__header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
}

.about-team__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about-team__text h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--color-secondary);
}

.about-team__text p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-team__features {
    list-style: none;
    padding: 0;
}

.about-team__features li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.about-team__features li::before {
    content: '✓';
    color: var(--color-secondary);
    font-weight: bold;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.about-team__visual {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-expertise-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}

.about-expertise-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.2rem;
}

.about-expertise-content h4 {
    color: var(--color-light);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.about-expertise-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* CTA Section */
.about-cta {
    padding: 6rem 0;
    min-height: 700px;
    background: var(--gradient-primary);
    text-align: center;
    position: relative;
    overflow: hidden;
    
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 210, 255, 0.1) 0%, transparent 70%),
        radial-gradient(circle at 70% 60%, rgba(108, 92, 231, 0.1) 0%, transparent 70%);
}

.about-cta__container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
    margin-top: 80px;
}

.about-cta h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-light);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.about-cta p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
}

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

.about-cta__btn {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all var(--transition-base);
    font-size: 1rem;
}

.about-cta__btn--primary {
    background: var(--color-light);
    color: var(--color-primary);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
}

.about-cta__btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.3);
}

.about-cta__btn--secondary {
    background: transparent;
    color: var(--color-light);
    border: 2px solid var(--color-light);
}

.about-cta__btn--secondary:hover {
    background: var(--color-light);
    color: var(--color-primary);
    transform: translateY(-3px);
}

/* ===== ABOUT PAGE RESPONSIVE DESIGN ===== */

/* Mobile styles for About page */
@media (max-width: 768px) {
    .about-hero {
        min-height: 60vh;
        padding: 6rem 0 4rem;
    }
    
    .about-hero__content {
        padding-top: 60px;
    }
    
    .about-hero__title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }
    
    .about-hero__subtitle {
        font-size: 1.1rem;
    }
    
    .about-company__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-company__stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-values__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-value-card {
        padding: 2rem 1.5rem;
    }
    
    .about-team__content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-team__text {
        order: 2;
    }
    
    .about-team__visual {
        order: 1;
    }
    
    .about-cta {
        padding: 4rem 0;
        min-height: auto;
    }
    
    .about-cta__container {
        margin-top: 40px;
    }
    
    .about-cta__buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .about-cta__btn {
        width: 100%;
        text-align: center;
    }
}

/* Tablet styles for About page */
@media (min-width: 769px) and (max-width: 1024px) {
    .about-company__grid {
        gap: 4rem;
    }
    
    .about-values__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .about-team__content {
        gap: 4rem;
    }
}

/* ===========================================
   CONTACT PAGE STYLES - STARTUP PREMIUM
   =========================================== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}



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

.contact-hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--color-light);
    margin-bottom: 2rem;
    line-height: 1.1;
    font-family: var(--font-heading);
}

.contact-hero__subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}


/* Contact Form Section */
.contact-form-section {
    padding: 8rem 0;
    position: relative;
}

.contact-form__content {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 6rem;
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-form__header h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-heading);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.contact-form__header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.contact-form__header p {
    font-size: 1.1rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 3rem;
}

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

.contact-benefit {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--color-light);
    border-radius: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-grey);
    transition: all var(--transition-base);
}

.contact-benefit:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.1);
    border-color: var(--color-secondary);
}

.contact-benefit i {
    color: var(--color-success);
    margin-right: 1rem;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.contact-benefit span {
    color: var(--color-text);
    font-weight: 500;
}

.contact-form__trust {
    background: var(--color-grey-light);
    padding: 2rem;
    border-radius: 1.5rem;
    border-left: 4px solid var(--color-secondary);
}

.contact-form__trust h4 {
    color: var(--color-heading);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-weight: 600;
}

.trust-item {
    background: var(--color-light);
    padding: 1.5rem;
    border-radius: 1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 4rem;
    color: var(--color-secondary);
    opacity: 0.3;
    font-family: serif;
}

.trust-item strong {
    color: var(--color-heading);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.trust-item p {
    color: var(--color-text-light);
    font-style: italic;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Contact Form Styling */
.contact-form {
    background: var(--color-light);
    padding: 3rem;
    border-radius: 2rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--color-grey);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-secondary);
}

/* Multi-step Form */
.form-step {
    display: none;
    animation: fadeInUp 0.4s ease;
}

.form-step--active {
    display: block;
}

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

.form-step h3 {
    color: var(--color-heading);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.form-step h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    background: var(--color-secondary);
    border-radius: 2px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-heading);
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.5rem;
    border: 2px solid var(--color-grey);
    border-radius: 0.75rem;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all var(--transition-base);
    background: var(--color-light);
    position: relative;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 4px rgba(0, 210, 255, 0.1);
    transform: translateY(-2px);
}

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

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.form-next,
.form-prev,
.btn-submit {
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    font-family: var(--font-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-next,
.btn-submit {
    background: var(--gradient-secondary);
    color: var(--color-light);
    box-shadow: 0 4px 20px rgba(0, 210, 255, 0.3);
}

.form-next:hover,
.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 210, 255, 0.4);
}

.form-prev {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-grey);
}

.form-prev:hover {
    background: var(--color-grey-light);
    transform: translateY(-2px);
}

/* Progress Bar */
.form-progress {
    margin-top: 2rem;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--color-grey);
    border-radius: 3px;
    margin-bottom: 1rem;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-secondary);
    transition: width 0.4s ease;
    border-radius: 3px;
    position: relative;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-steps {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.progress-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--color-grey);
    color: var(--color-text-light);
    font-weight: 700;
    font-size: 0.9rem;
    transition: all var(--transition-base);
    position: relative;
}

.progress-step.active {
    background: var(--gradient-secondary);
    color: var(--color-light);
    box-shadow: 0 4px 15px rgba(0, 210, 255, 0.3);
    transform: scale(1.1);
}

.progress-step.active::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border: 2px solid var(--color-secondary);
    border-radius: 50%;
    opacity: 0.5;
    animation: pulse 2s infinite;
}

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

/* Checkbox Styling */
.checkbox-label,
.required-label {
    display: flex !important;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--color-text);
}

.checkbox-label input[type="checkbox"],
.required-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.75rem;
    transform: scale(1.2);
    margin-top: 2px;
}


/* FAQ Section */
.contact-info {
    padding: 5rem 0;
}

.contact-info h3 {
    font-size: 2.5rem;
    color: var(--color-heading);
    text-align: center;
    margin-bottom: 4rem;
    font-weight: 700;
    position: relative;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
    border-radius: 2px;
}

.contact-info__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info__left,
.contact-info__right {
    display: flex;
    flex-direction: column;
}

.contact-info__right h3 {
    font-size: 2rem;
    color: var(--color-heading);
    margin-bottom: 2rem;
    font-weight: 700;
}

.faq-item {
    background: var(--color-light);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-grey);
    margin-bottom: 1rem;
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: 0 12px 40px rgba(0, 210, 255, 0.1);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: var(--color-heading);
    font-size: 1.1rem;
    transition: all var(--transition-base);
}

.faq-question:hover {
    background: var(--color-grey-light);
}

.faq-question i {
    transition: transform 0.3s ease;
    color: var(--color-secondary);
    font-size: 1rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: var(--color-grey-light);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text);
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-form__content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .contact-info__grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        min-height: 70vh;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ===== SERVICES PAGE STYLES ===== */

/* Services Hero Section */
.services-hero {
    position: relative;
    overflow: hidden;
    min-height: 70vh;
    display: flex;
    align-items: center;
}



@keyframes heroGlow {
    0% { opacity: 0.5; }
    100% { opacity: 0.8; }
}

.services-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
}

.services-hero__title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, #ffffff, #f0f9ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.services-hero__subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
}

/* Service Domain Sections */
.service-domain {
    padding: 6rem 0;
    position: relative;
}

.service-domain__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.service-domain__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    border-radius: 50%;
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.3);
}

.service-domain__title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-heading);
    margin-bottom: 1.5rem;
}

.service-domain__description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-text);
    opacity: 0.8;
}

/* Sub-services Grid */
.sub-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.sub-service-card {
    background: var(--color-light);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--color-grey);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.sub-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
}

.sub-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 210, 255, 0.15);
    border-color: var(--color-secondary);
}

.sub-service__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    border-radius: 16px;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.sub-service-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 1rem;
}

.sub-service-card p {
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.sub-service__features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sub-service__features li {
    padding: 0.5rem 0;
    color: var(--color-text);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.sub-service__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.5rem;
    color: var(--color-secondary);
    font-weight: bold;
    font-size: 0.8rem;
}

/* Process Section */
.service-process {
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.service-process::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 210, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(108, 92, 231, 0.1) 0%, transparent 50%);
}

.process-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.process-content .section__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.process-content .section__subtitle {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.3);
}

.step-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* CTA Section */

/* Dark sections styling */
.service-domain.section-dark {
    background: var(--color-primary);
    color: white;
}

.service-domain.section-dark .service-domain__title,
.service-domain.section-dark .sub-service-card h3 {
    color: white;
}

.service-domain.section-dark .service-domain__description,
.service-domain.section-dark .sub-service-card p,
.service-domain.section-dark .sub-service__features li {
    color: rgba(255, 255, 255, 0.8);
}

.service-domain.section-dark .sub-service-card {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.service-domain.section-dark .sub-service-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--color-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-hero__title {
        font-size: 2.8rem;
    }
    
    .service-domain__title {
        font-size: 2.5rem;
    }
    
    .sub-services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .services-hero__title {
        font-size: 2.2rem;
    }
    
    .services-hero__stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-domain {
        padding: 4rem 0;
    }
    
    .service-domain__title {
        font-size: 2rem;
    }
    
    .sub-services-grid {
        grid-template-columns: 1fr;
    }
    
    .sub-service-card {
        padding: 2rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .services-hero__title {
        font-size: 1.8rem;
    }
    
    .service-domain__title {
        font-size: 1.6rem;
    }
    
    .service-domain__header {
        margin-bottom: 3rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-next,
    .form-prev,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-item__icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* ===== PROJECTS PAGE STYLES ===== */

/* Projects Hero Section */
.projects-hero {
    
    min-height: 70vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

@keyframes heroFloat {
    0% { transform: translateY(0px) scale(1); }
    100% { transform: translateY(-20px) scale(1.05); }
}

.projects-hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 1000px;
    margin: 0 auto;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.projects-hero__title {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    background: linear-gradient(45deg, #ffffff, #f0f9ff, #dbeafe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShine 4s ease-in-out infinite alternate;
}

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

.projects-hero__subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}


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

/* Projects Filter */
.projects-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--color-light);
    border: 2px solid var(--color-grey);
    border-radius: 50px;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.filter-btn:hover {
    background: var(--color-secondary);
    color: white;
    border-color: var(--color-secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.3);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: white;
    border-color: transparent;
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.4);
}

.filter-btn i {
    font-size: 1.1rem;
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2.5rem;
}

.project-card {
    background: var(--color-light);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--color-grey);
    transition: all var(--transition-base);
    position: relative;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.project-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 210, 255, 0.15);
    border-color: var(--color-secondary);
}

.project-card__image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.project-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    position: relative;
}

.ai-gradient {
    background: linear-gradient(135deg, #6C5CE7, #A29BFE);
}

.data-gradient {
    background: linear-gradient(135deg, #00D2FF, #3742FA);
}

.web-gradient {
    background: linear-gradient(135deg, #2ED573, #7BED9F);
}

.automation-gradient {
    background: linear-gradient(135deg, #FF6B9D, #FFA07A);
}

.project-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all var(--transition-base);
}

.project-card:hover .project-card__overlay {
    opacity: 1;
}

.project-overlay__content {
    text-align: center;
    color: white;
    padding: 2rem;
}

.project-overlay__content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.project-overlay__content p {
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.tech-tag {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-view-project {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-base);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-view-project:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 210, 255, 0.4);
}

/* Project Card Content */
.project-card__content {
    padding: 2rem;
}

.project-category {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.project-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-heading);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.project-description {
    color: var(--color-text);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* Pagination */
.pagination-container {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.pagination {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.pagination-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(0, 210, 255, 0.3);
}

.pagination-btn:hover:not(:disabled) {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 12px 35px rgba(0, 210, 255, 0.4);
}

.pagination-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    background: linear-gradient(135deg, #cbd5e0, #a0aec0);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.pagination-btn:disabled:hover {
    transform: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-dots {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.page-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
}

.page-dot:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.page-dot.active {
    background: linear-gradient(135deg, var(--color-secondary), var(--color-accent));
    box-shadow: 0 0 20px rgba(0, 210, 255, 0.6);
    transform: scale(1.3);
}

.page-dot.active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: transparent;
    border: 2px solid rgba(0, 210, 255, 0.3);
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.7;
    }
}

.automation-gradient {
    background: linear-gradient(135deg, #FF6B9D, #FFA07A);
}

/* Testimonials Section */
.projects-testimonials {
    background: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.projects-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(0, 210, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(108, 92, 231, 0.1) 0%, transparent 50%);
}

.projects-testimonials .section__header {
    position: relative;
    z-index: 2;
    color: white;
}

.projects-testimonials .section__title {
    color: white;
}

.projects-testimonials .section__subtitle {
    color: rgba(255, 255, 255, 0.8);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all var(--transition-base);
}

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

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: var(--color-accent);
}

.testimonial-text {
    color: white;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-info h4 {
    color: white;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Projects CTA */


.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-text p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-benefit i {
    color: var(--color-accent);
    font-size: 1.1rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .projects-hero__title {
        font-size: 3rem;
    }
    
    .projects-hero__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .projects-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
    
    .projects-cta .cta-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .projects-hero {
        min-height: 70vh;
    }
    
    .projects-hero__title {
        font-size: 2.5rem;
    }
    
    .projects-hero__stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .projects-filter {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .pagination {
        gap: 1rem;
        padding: 0.75rem 1.5rem;
    }
    
    .pagination-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .page-dot {
        width: 10px;
        height: 10px;
    }
    
    .page-dots {
        gap: 0.5rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .projects-hero__title {
        font-size: 2rem;
    }
    
    .projects-hero__subtitle {
        font-size: 1.1rem;
    }
    
    .project-card__content {
        padding: 1.5rem;
    }
    
    .process-step {
        padding: 2rem;
    }
    
    .cta-text h2 {
        font-size: 2rem;
    }
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Mobile responsive fixes */
@media (max-width: 480px) {
    .social-links {
        flex-direction: column;
    }
    
    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }
    
    .cta-actions {
        flex-direction: column;
    }
    
    .faq-answer p {
        padding: 0 1rem 1rem;
    }
}

/* ========== COMPLETE RESPONSIVE SYSTEM ========== */

/* ========== PROJECTS PAGE - ENHANCED RESPONSIVE ========== */
@media (max-width: 1024px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .project-card {
        min-height: 350px;
    }
    
    .project-filters {
        gap: 1rem;
        padding: 0 1rem;
    }
}

@media (max-width: 768px) {
    .projects-filters {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
        padding: 0 1rem;
    }
    
    .filter-btn {
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
        text-align: center;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .project-card {
        min-height: auto;
    }
    
    .project-card__content {
        padding: 1.5rem;
    }
    
    .project-card__title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .project-card__description {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .project-card__tags {
        gap: 0.5rem;
        margin-bottom: 1rem;
        flex-wrap: wrap;
    }
    
    .project-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
    
    .project-card__cta {
        margin-top: auto;
    }
}

/* ========== CONTACT PAGE - ENHANCED RESPONSIVE ========== */
@media (max-width: 1024px) {
    .contact-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .contact-form {
        order: 1;
    }
    
    .contact-info {
        order: 2;
    }
    
    .contact-info__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
        text-align: center;
    }
    
    .contact-hero__title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        margin-bottom: 1rem;
    }
    
    .contact-hero__description {
        font-size: clamp(0.875rem, 3vw, 1rem);
    }
    
    .contact-main {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .contact-info__grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .form-step {
        padding: 1.5rem;
        margin: 0;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-input,
    .form-textarea,
    .form-select {
        padding: 0.875rem;
        font-size: 0.875rem;
    }
    
    .form-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .form-actions {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.875rem;
        font-size: 0.875rem;
    }
    
    .contact-info__item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
        padding: 1.5rem;
    }
    
    .contact-info__icon {
        align-self: center;
        margin-bottom: 0.5rem;
    }
    
    .contact-info__content h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .contact-info__content p {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .form-step {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .progress-bar {
        margin: 0 1rem 2rem;
    }
    
    .progress-steps {
        gap: 0.5rem;
    }
    
    .progress-step {
        width: 12px;
        height: 12px;
        font-size: 0.625rem;
    }
    
    .contact-info__item {
        padding: 1rem;
    }
}

/* ========== FOOTER - ENHANCED RESPONSIVE ========== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-brand {
        grid-column: 1;
        margin-bottom: 1.5rem;
    }
    
    .footer-brand__logo {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-brand__description {
        font-size: 0.875rem;
        max-width: 100%;
    }
    
    .footer-section h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-link {
        font-size: 0.875rem;
        padding: 0.5rem 0;
        display: block;
    }
    
    .footer-social {
        justify-content: center;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .footer-social__link {
        width: 40px;
        height: 40px;
    }
    
    .footer-bottom {
        padding: 1.5rem 0;
        text-align: center;
    }
    
    .footer-bottom__content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-bottom__text {
        font-size: 0.75rem;
    }
    
    .footer-bottom__links {
        gap: 1rem;
        justify-content: center;
    }
    
    .footer-bottom__link {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 2rem 0 1.5rem;
    }
    
    .footer-content {
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .footer-social {
        gap: 0.75rem;
    }
    
    .footer-social__link {
        width: 36px;
        height: 36px;
    }
    
    .footer-bottom__links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* ========== GENERAL RESPONSIVE UTILITIES ========== */
@media (max-width: 768px) {
    /* Typography adjustments */
    h1 {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }
    
    h2 {
        font-size: clamp(1.5rem, 4vw, 2rem);
    }
    
    h3 {
        font-size: clamp(1.25rem, 3.5vw, 1.75rem);
    }
    
    h4 {
        font-size: clamp(1.125rem, 3vw, 1.5rem);
    }
    
    /* Container adjustments */
    .container {
        padding: 0 1rem;
    }
    
    /* Section spacing */
    .section {
        padding: 4rem 0;
    }
    
    /* Button adjustments */
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .btn--large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Card adjustments */
    .card {
        margin: 0 1rem;
    }
    
    /* Grid utilities */
    .grid {
        gap: 1.5rem;
    }
    
    .grid--2 {
        grid-template-columns: 1fr;
    }
    
    .grid--3 {
        grid-template-columns: 1fr;
    }
    
    .grid--4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    /* Extra small screen adjustments */
    .section {
        padding: 3rem 0;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    .grid--4 {
        grid-template-columns: 1fr;
    }
    
    /* Text size adjustments */
    body {
        font-size: 0.875rem;
    }
    
    .text-small {
        font-size: 0.75rem;
    }
}

/* ========== HOME PAGE RESPONSIVE DESIGN ========== */

/* ========== HERO SECTION - HOME PAGE ========== */
@media (max-width: 1024px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero__content {
        max-width: 700px;
    }
    
    .hero__actions {
        gap: 1rem;
    }
    
    .clients-section {
        margin-top: 3rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px;
        text-align: center;
    }
    
    .hero__content {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    .hero__title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero__subtitle {
        font-size: clamp(1rem, 3vw, 1.125rem);
        margin-bottom: 2rem;
        line-height: 1.5;
    }
    
    .hero__actions {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero__cta {
        width: 100%;
        max-width: 280px;
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .clients-section {
        margin-top: 2rem;
        padding: 0 1rem;
    }
    
    .clients-title {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .clients-logos__item {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
        min-width: 120px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 40px 0 30px;
    }
    
    .hero__title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .hero__subtitle {
        font-size: clamp(0.875rem, 4vw, 1rem);
        margin-bottom: 1.5rem;
    }
    
    .hero__cta {
        max-width: 100%;
        padding: 1rem;
    }
    
    .clients-logos__item {
        font-size: 0.6875rem;
        padding: 0.375rem 0.75rem;
        min-width: 100px;
    }
}

/* ========== TAGLINE SECTION ========== */
@media (max-width: 768px) {
    .tagline-section {
        padding: 3rem 0;
    }
    
    .tagline-content {
        padding: 0 1rem;
        text-align: center;
    }
    
    .tagline-title {
        font-size: clamp(1.5rem, 4vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .tagline-description {
        font-size: clamp(0.875rem, 3vw, 1rem);
        line-height: 1.6;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .tagline-section {
        padding: 2rem 0;
    }
    
    .tagline-description {
        font-size: 0.875rem;
    }
}

/* ========== EXPERTISES SECTION ========== */
@media (max-width: 1024px) {
    .expertises-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .expertises-visual {
        order: 2;
    }
    
    .expertises-cards {
        order: 1;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .dashboard-simple {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .expertises {
        padding: 4rem 0;
    }
    
    .expertises-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
        text-align: center;
    }
    
    .service-icon {
        margin-bottom: 1rem;
    }
    
    .service-icon i {
        font-size: 2rem;
    }
    
    .service-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .service-description {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .service-link {
        font-size: 0.875rem;
    }
    
    .dashboard-simple {
        padding: 1rem;
        margin: 0 1rem;
    }
    
    .dashboard-header h3 {
        font-size: 1rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .metric-card {
        padding: 1rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .metric-label {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .expertises {
        padding: 3rem 0;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-icon i {
        font-size: 1.75rem;
    }
    
    .dashboard-simple {
        margin: 0 0.5rem;
    }
}

/* ========== PERFORMANCE SECTION ========== */
@media (max-width: 1024px) {
    .performance-features {
        gap: 3rem;
    }
    
    .performance-feature {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .performance-section {
        padding: 4rem 0;
    }
    
    .performance-features {
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .performance-feature {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .performance-feature:nth-child(odd) .performance-feature__content,
    .performance-feature:nth-child(even) .performance-feature__content {
        order: 1;
    }
    
    .performance-feature:nth-child(odd) .performance-feature__visual,
    .performance-feature:nth-child(even) .performance-feature__visual {
        order: 2;
    }
    
    .performance-feature__title {
        font-size: clamp(1.25rem, 4vw, 1.5rem);
        margin-bottom: 1rem;
    }
    
    .performance-feature__description {
        font-size: clamp(0.875rem, 3vw, 1rem);
        line-height: 1.6;
    }
    
    .performance-feature__visual {
        min-height: 200px;
        margin: 0 auto;
        max-width: 400px;
    }
}

@media (max-width: 480px) {
    .performance-section {
        padding: 3rem 0;
    }
    
    .performance-features {
        gap: 1.5rem;
    }
    
    .performance-feature__visual {
        min-height: 150px;
        max-width: 300px;
    }
}

/* ========== METHODOLOGY SECTION ========== */
@media (max-width: 1024px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .methodology-section {
        padding: 4rem 0;
    }
    
    .process-content {
        padding: 0 1rem;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .process-step {
        padding: 1.5rem;
        text-align: center;
    }
    
    .step-number {
        font-size: 1.5rem;
        width: 50px;
        height: 50px;
        margin: 0 auto 1rem;
    }
    
    .step-content h4 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .step-content p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .methodology-section {
        padding: 3rem 0;
    }
    
    .process-step {
        padding: 1rem;
    }
    
    .step-number {
        font-size: 1.25rem;
        width: 40px;
        height: 40px;
    }
}

/* ========== PROJECTS PREVIEW SECTION ========== */
@media (max-width: 1024px) {
    .home-projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .projects-preview {
        padding: 4rem 0;
    }
    
    .home-projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .home-project-card {
        flex-direction: column;
        text-align: center;
    }
    
    .project-image {
        width: 100%;
        height: 200px;
        margin-bottom: 1rem;
    }
    
    .project-content {
        width: 100%;
        padding: 1.5rem;
    }
    
    .project-tags {
        justify-content: center;
        gap: 0.5rem;
        margin-bottom: 1rem;
    }
    
    .tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.75rem;
    }
    
    .project-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .project-description {
        font-size: 0.875rem;
        line-height: 1.5;
        margin-bottom: 1rem;
    }
    
    .project-results {
        justify-content: center;
        gap: 2rem;
    }
    
    .result-item {
        text-align: center;
    }
    
    .result-number {
        font-size: 1.5rem;
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .result-label {
        font-size: 0.75rem;
    }
    
    .projects-cta {
        margin-top: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .projects-preview {
        padding: 3rem 0;
    }
    
    .project-content {
        padding: 1rem;
    }
    
    .project-results {
        gap: 1rem;
    }
    
    .result-number {
        font-size: 1.25rem;
    }
}

/* ========== STATS SECTION ========== */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .stats-section {
        padding: 4rem 0;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .stat-item {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .stat-number {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 0.75rem;
    }
    
    .stat-label {
        font-size: clamp(1rem, 3vw, 1.25rem);
        margin-bottom: 0.75rem;
    }
    
    .stat-description {
        font-size: clamp(0.875rem, 2.5vw, 0.9375rem);
        line-height: 1.5;
        max-width: 300px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .stats-section {
        padding: 3rem 0;
    }
    
    .stat-item {
        padding: 1.5rem 0.75rem;
    }
    
    .stat-number {
        font-size: clamp(1.75rem, 10vw, 2.5rem);
    }
    
    .stat-description {
        max-width: 250px;
    }
}

/* ========== CTA FINAL SECTION ========== */
@media (max-width: 768px) {
    .cta-final {
        padding: 4rem 0;
    }
    
    .cta-final__content {
        padding: 0 1rem;
        text-align: center;
    }
    
    .cta-final__title {
        font-size: clamp(1.5rem, 5vw, 2rem);
        margin-bottom: 1rem;
    }
    
    .cta-final__subtitle {
        font-size: clamp(0.875rem, 3vw, 1rem);
        line-height: 1.6;
        margin-bottom: 2rem;
        max-width: 100%;
    }
    
    .cta-final__button {
        padding: 1rem 2rem;
        font-size: 0.875rem;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .cta-final {
        padding: 3rem 0;
    }
    
    .cta-final__button {
        max-width: 100%;
    }
}