/* Components CSS File */

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gray-light);
    transition: var(--transition);
}

body.dark-mode .navbar {
    background-color: rgba(17, 22, 33, 0.9);
    border-bottom: 1px solid var(--gray-dark);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: var(--primary-color);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-color);
}

body.dark-mode .logo-text {
    color: white;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    color: #4d6499;
    transition: var(--transition);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    font-size: 1.5rem;
    color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 640px;
    display: flex;
    align-items: center;
    justify-content: center; /* Add this line */
    overflow: hidden;
    padding: 0 2rem; /* Add padding for better mobile experience */
    
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1280px; /* Increase max-width */
    margin: 0 auto; /* Center the content */
    padding: 0 2rem; /* Add padding */
    text-align: lef; /* Center align text */
    flex-direction: column;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 800px; /* Limit text width for better readability */
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px; /* Limit width for better readability */
}

.hero-actions {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center; /* Center the buttons */
}

/* Make badge center itself */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.25rem 0.75rem;
    background-color: rgba(76, 175, 80, 0.2);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-section {
        height: auto;
        min-height: 500px;
        padding: 4rem 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
}

/* Stats Section */
.stats-section {
    position: relative;
    margin-top: -4rem; /* -mt-16 = -4rem */
    z-index: 20;
    max-width: 80rem;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .stats-section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .stats-section {
        padding-left: 2rem;
        padding-right: 2rem;
    }
}

.stats-container {
    background-color: white;
    border-radius: 1rem; /* rounded-2xl */
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); /* shadow-2xl */
    border: 1px solid #f3f4f6; /* border border-gray-100 */
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr; /* grid-cols-1 */
}

@media (min-width: 768px) {
    .stats-container {
        grid-template-columns: repeat(3, 1fr); /* md:grid-cols-3 */
    }
}

body.dark-mode .stats-container {
    background-color: #111827; /* dark:bg-gray-900 */
    border-color: #1f2937; /* dark:border-gray-800 */
}

.stat-card {
    padding: 2rem; /* p-8 */
    border-bottom: 1px solid #f3f4f6; /* border-b border-gray-100 */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .stat-card {
        border-bottom: none;
        border-right: 1px solid #f3f4f6; /* md:border-r */
    }
    
    .stat-card:last-child {
        border-right: none;
    }
}

body.dark-mode .stat-card {
    border-color: #1f2937; /* dark:border-gray-800 */
}

.stat-number {
    font-size: 2.25rem; /* text-4xl = 2.25rem */
    font-weight: 800; /* font-extrabold */
    margin-bottom: 0.5rem; /* mb-2 */
}

.stat-card:nth-child(1) .stat-number,
.stat-card:nth-child(3) .stat-number {
    color: var(--accent-color); /* text-accent-green */
}

.stat-card:nth-child(2) .stat-number {
    color: var(--primary-color); /* text-primary */
}

body.dark-mode .stat-card:nth-child(2) .stat-number {
    color: white; /* dark:text-white */
}

.stat-label {
    color: #6b7280; /* text-gray-500 */
    font-size: 0.875rem; /* text-sm */
    font-weight: 600; /* font-semibold */
    text-transform: uppercase; /* uppercase */
    letter-spacing: 0.05em; /* tracking-wider */
}

body.dark-mode .stat-label {
    color: #9ca3af; /* dark:text-gray-400 */
}

.stat-trend {
    margin-top: 0.5rem; /* mt-2 */
    font-size: 0.75rem; /* text-xs */
    font-weight: 700; /* font-bold */
    color: var(--accent-color); /* text-accent-green */
    display: flex;
    align-items: center;
    gap: 0.25rem; /* gap-1 */
}

/* Services Preview */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.service-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

body.dark-mode .service-card {
    background-color: #1a202c;
    border-color: var(--gray-dark);
}

.service-card:hover {
    border-color: var(--accent-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(10, 36, 97, 0.05);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.service-card:hover .service-icon {
    background-color: rgba(76, 175, 80, 0.1);
}

.service-icon span {
    font-size: 2rem;
    color: var(--primary-color);
}

.service-card:hover .service-icon span {
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

body.dark-mode .service-card h3 {
    color: white;
}

.service-card p {
    font-size: 0.875rem;
    color: #4d6499;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.service-link:hover {
    gap: 0.75rem;
}

/* Updated Services Preview Section */
.services-preview {
    padding: 6rem 2rem;
}

.services-section-header {
    padding: 0 0 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto 3rem;
}

@media (min-width: 768px) {
    .services-section-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.services-section-header .services-header-content {
    flex: 1;
}

.services-section-header .services-badge {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
}

.services-section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

body.dark-mode .services-section-header h2 {
    color: white;
}

.services-section-header .services-divider {
    height: 6px;
    width: 6rem;
    background-color: var(--accent-orange);
    border-radius: 9999px;
}

.services-section-header .services-description {
    color: #6b7280;
    max-width: 28rem;
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 0;
}

body.dark-mode .services-section-header .services-description {
    color: #9ca3af;
}

/* Modern Services Grid for Preview Section */
.services-preview .services-grid-modern {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .services-preview .services-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-preview .services-grid-modern {
        grid-template-columns: repeat(4, 1fr);
    }
}

.services-preview .service-card-modern {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid #f3f4f6;
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

body.dark-mode .services-preview .service-card-modern {
    background-color: #111827;
    border-color: #1f2937;
}

.services-preview .service-card-modern:hover {
    border-color: var(--accent-color);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.services-preview .service-icon-modern {
    width: 3.5rem;
    height: 3.5rem;
    background-color: rgba(10, 36, 97, 0.05);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

body.dark-mode .services-preview .service-icon-modern {
    background-color: rgba(10, 36, 97, 0.2);
}

.services-preview .service-card-modern:hover .service-icon-modern {
    background-color: var(--accent-color);
}

.services-preview .service-icon-modern span {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.services-preview .service-card-modern:hover .service-icon-modern span {
    color: white;
}

.services-preview .service-card-modern h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

body.dark-mode .services-preview .service-card-modern h4 {
    color: white;
}

.services-preview .service-card-modern p {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

body.dark-mode .services-preview .service-card-modern p {
    color: #9ca3af;
}

.services-preview .service-link-modern {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
    text-decoration: none;
    transition: var(--transition);
    margin-top: auto;
}

.services-preview .service-link-modern:hover {
    gap: 0.75rem;
}

.services-preview .service-link-modern span {
    font-size: 1rem;
}

/* Divider for Services Section */
.services-header-content {
    flex: 1;
}
.services-badge {
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.75rem;
}
.services-divider {
    height: 6px;
    width: 6rem;
    background-color: var(--accent-orange);
    border-radius: 9999px;
}

.section-header {
    padding: 6rem 0 3rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .section-header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
    }
}

.section-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

body.dark-mode .section-header h2 {
    color: white;
}
.services-description {
    color: #6b7280;
    max-width: 28rem;
    font-size: 1.125rem;
    line-height: 1.6;
}

body.dark-mode .services-description {
    color: #9ca3af;
}
/* Value Chain */
.value-chain {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 3rem 0;
}

.chain-step {
    text-align: center;
    padding: 1.5rem;
    background-color: white;
    border-radius: var(--border-radius);
    border-bottom: 4px solid var(--primary-color);
    opacity: 0.6;
    transition: var(--transition);
    cursor: pointer;
}

body.dark-mode .chain-step {
    background-color: #1a202c;
}

.chain-step.active {
    opacity: 1;
    border-bottom-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.chain-step:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.step-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(10, 36, 97, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.chain-step:hover .step-icon {
    background-color: var(--primary-color);
}

.step-icon span {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.chain-step:hover .step-icon span {
    color: white;
}

.chain-step h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.chain-step p {
    font-size: 0.75rem;
    color: #4d6499;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Detailed Services */
/* Detailed Services Grid */
.detailed-services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin: 3rem 0;
}

@media (min-width: 768px) {
    .detailed-services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.detailed-service-card {
    position: relative;
    height: 350px;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.detailed-service-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

.detailed-service-card:hover .detailed-service-image {
    transform: scale(1.1);
}

.detailed-service-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, 
        rgba(10, 36, 97, 0.95) 0%, 
        rgba(10, 36, 97, 0.8) 30%, 
        rgba(10, 36, 97, 0.4) 60%, 
        rgba(10, 36, 97, 0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.detailed-service-content {
    margin-bottom: 1.5rem;
}

.detailed-service-content span {
    font-size: 3rem;
    color: white;
    margin-bottom: 0.5rem;
    display: block;
}

.detailed-service-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.detailed-service-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    max-width: 24rem;
    margin-bottom: 0;
}

.detailed-service-button {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: white;
    color: var(--primary-color);
    padding: 0.625rem 1.5rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.detailed-service-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.detailed-service-button span {
    font-size: 0.875rem;
}

/* Remove old detailed services styles */
.detailed-services {
    display: none;
}

.service-detail-card,
.service-detail-image,
.service-detail-content {
    display: none;
}

/* About Section */
.about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin: 4rem 0;
}

.about-content h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin: 1rem 0;
}

body.dark-mode .about-content h1 {
    color: white;
}

.about-content p {
    font-size: 1.125rem;
    color: #4d6499;
    line-height: 1.6;
    margin: 1.5rem 0;
}

.about-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.about-image {
    position: relative;
}

.image-container {
    height: 400px;
    border-radius: 1rem;
    background-size: cover;
    background-position: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* DNA Section */
.dna-section {
    margin: 6rem 0;
}

.dna-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.dna-card {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-light);
    transition: var(--transition);
}

body.dark-mode .dna-card {
    background-color: #1a202c;
    border-color: var(--gray-dark);
}

.dna-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.dna-icon {
    width: 3rem;
    height: 3rem;
    background-color: rgba(10, 36, 97, 0.1);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.dna-icon span {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.dna-card h3 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

body.dark-mode .dna-card h3 {
    color: white;
}

.dna-card p {
    font-size: 0.875rem;
    color: #4d6499;
    line-height: 1.6;
}

/* Timeline */
.timeline-section {
    margin: 6rem 0;
    padding: 3rem;
    background-color: rgba(10, 36, 97, 0.05);
    border-radius: 1.5rem;
}

body.dark-mode .timeline-section {
    background-color: rgba(10, 36, 97, 0.1);
}

.timeline-section h2 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

body.dark-mode .timeline-section h2 {
    color: white;
}

.timeline-section > p {
    color: #4d6499;
    margin-bottom: 2rem;
}

.timeline {
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 2rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: rgba(10, 36, 97, 0.2);
}

.timeline-item {
    position: relative;
    padding-left: 4rem;
    margin-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    left: 1.875rem;
    top: 1.5rem;
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--primary-color);
    border-radius: 50%;
    border: 4px solid white;
    z-index: 2;
}

body.dark-mode .timeline-dot {
    border-color: var(--background-dark);
}

.timeline-date {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.timeline-content {
    background-color: white;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-light);
}

body.dark-mode .timeline-content {
    background-color: #1a202c;
    border-color: var(--gray-dark);
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

body.dark-mode .timeline-content h3 {
    color: white;
}

.timeline-content p {
    color: #4d6499;
    line-height: 1.6;
}

/* Projects */
.projects-hero {
    text-align: center;
    padding: 4rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.projects-hero h1 {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

body.dark-mode .projects-hero h1 {
    color: white;
}

.projects-hero p {
    font-size: 1.25rem;
    color: #4d6499;
    line-height: 1.6;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 3rem;
    margin: 3rem 0;
}

.project-card {
    background-color: white;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

body.dark-mode .project-card {
    background-color: #1a202c;
}

.project-image {
    height: 300px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.project-stats {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    padding: 1rem;
    border-radius: var(--border-radius);
    display: flex;
    gap: 2rem;
}

body.dark-mode .project-stats {
    background-color: rgba(17, 22, 33, 0.9);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.625rem;
    font-weight: 700;
    color: #4d6499;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.project-content {
    padding: 2rem;
}

.project-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.project-category {
    padding: 0.25rem 0.75rem;
    background-color: rgba(10, 36, 97, 0.1);
    color: var(--primary-color);
    font-size: 0.625rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 9999px;
}

.project-duration {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
}

.project-content h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

body.dark-mode .project-content h3 {
    color: white;
}

.project-content p {
    color: #4d6499;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.project-solutions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.project-solutions span {
    padding: 0.5rem 0.75rem;
    background-color: rgba(243, 244, 246, 1);
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    font-weight: 700;
    color: #4d6499;
}

body.dark-mode .project-solutions span {
    background-color: rgba(31, 41, 55, 1);
}

/* Contact Section */
.contact-header {
    max-width: 800px;
    margin: 0 auto 4rem;
}

.contact-header h1 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

body.dark-mode .contact-header h1 {
    color: white;
}

.contact-header p {
    font-size: 1.125rem;
    color: #4d6499;
    line-height: 1.6;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.contact-form {
    background-color: white;
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-light);
}

body.dark-mode .contact-form {
    background-color: #1a202c;
    border-color: var(--gray-dark);
}

.contact-form h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

body.dark-mode .contact-form h3 {
    color: white;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

body.dark-mode .form-group label {
    color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    background-color: var(--background-light);
    color: var(--text-light);
    transition: var(--transition);
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
    background-color: var(--background-dark);
    border-color: var(--gray-dark);
    color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(10, 36, 97, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background-color: white;
    border-radius: var(--border-radius);
    border: 1px solid var(--gray-light);
    overflow: hidden;
}

body.dark-mode .info-card {
    background-color: #1a202c;
    border-color: var(--gray-dark);
}

.info-header {
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid var(--gray-light);
}

body.dark-mode .info-header {
    border-bottom-color: var(--gray-dark);
}

.info-header span {
    color: var(--primary-color);
}

.info-header h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
}

body.dark-mode .info-header h4 {
    color: white;
}

.info-card p {
    padding: 1.5rem;
    font-size: 0.875rem;
    color: #4d6499;
    line-height: 1.6;
}

.map-placeholder {
    height: 12rem;
    background-color: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

body.dark-mode .map-placeholder {
    background-color: var(--gray-dark);
}

.map-placeholder span {
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.calendar-widget {
    padding: 1.5rem;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
    text-align: center;
    font-size: 0.625rem;
    font-weight: 700;
    color: #4d6499;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.calendar-dates {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.25rem;
}

.calendar-dates button {
    aspect-ratio: 1;
    background: none;
    border: 1px solid var(--gray-light);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.75rem;
    color: #4d6499;
}

body.dark-mode .calendar-dates button {
    border-color: var(--gray-dark);
    color: #94a3b8;
}

.calendar-dates button:hover {
    background-color: rgba(10, 36, 97, 0.1);
}

.calendar-dates button.selected {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.time-slots {
    padding: 1.5rem;
    border-top: 1px solid var(--gray-light);
}

body.dark-mode .time-slots {
    border-top-color: var(--gray-dark);
}

.time-slots p {
    font-size: 0.75rem;
    font-weight: 700;
    color: #4d6499;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.slot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.time-slot {
    padding: 0.5rem;
    border: 1px solid var(--primary-color);
    background: none;
    color: var(--primary-color);
    border-radius: var(--border-radius);
    font-size: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.time-slot:hover {
    background-color: rgba(10, 36, 97, 0.1);
}

/* CTA Banner */
.cta-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    z-index: 90;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.cta-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cta-content span {
    color: white;
}

.cta-content p {
    color: white;
    font-weight: 600;
}

.cta-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cta-actions p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.875rem;
    font-style: italic;
}

/* Footer */
.footer {
    background-color: white;
    border-top: 1px solid var(--gray-light);
    padding: 3rem 0 1.5rem;
}

body.dark-mode .footer {
    background-color: #1a202c;
    border-top-color: var(--gray-dark);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-logo span {
    font-weight: 800;
    color: var(--primary-color);
}

body.dark-mode .footer-logo span {
    color: white;
}

.footer-section p {
    font-size: 0.875rem;
    color: #4d6499;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section h5 {
    font-size: 0.875rem;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

body.dark-mode .footer-section h5 {
    color: white;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    font-size: 0.875rem;
    color: #4d6499;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    font-size: 0.75rem;
    color: #4d6499;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    color: var(--primary-color);
}

.footer-bottom {
    max-width: 1280px;
    margin: 3rem auto 0;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid var(--gray-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

body.dark-mode .footer-bottom {
    border-top-color: var(--gray-dark);
}

.footer-bottom p {
    font-size: 0.75rem;
    color: #4d6499;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    font-size: 0.75rem;
    color: #4d6499;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    body.dark-mode .nav-menu {
        background-color: var(--background-dark);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero-section {
        height: auto;
        padding: 4rem 0;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .about-hero {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cta-banner {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* CTA Feature Section */
.cta-feature-section {
    background-color: var(--primary-color);
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

.cta-gradient-overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 33.333%;
    height: 100%;
    opacity: 0.1;
    background: radial-gradient(circle at center, var(--accent-color) 0%, transparent 70%);
    pointer-events: none;
}

.cta-feature-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .cta-feature-content {
        flex-direction: row;
        gap: 3rem;
    }
}

.cta-text {
    flex: 1;
    color: white;
}

.cta-text h2 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: white;
}

.cta-text p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.cta-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.cta-features li:last-child {
    margin-bottom: 0;
}

.cta-features li span {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.cta-button {
    background-color: var(--accent-orange);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--border-radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #e85b2a;
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.cta-media {
    flex: 1;
    position: relative;
}

.cta-media-container {
    background-color: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-video-placeholder {
    width: 100%;
    aspect-ratio: 16/9;
    background-color: #1f2937;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('https://lh3.googleusercontent.com/aida-public/AB6AXuCV7xLcAo---TfYsB2EMzC5rNYbofK52UWLw56mVS8TLLmqpmD7Fih10PlflAbTsOQvQxWJuDWHur6-6nGxql8lTbCxau9o4C3KUCfsPpFfOJ6lDuUznbEAUv9HNL0JI6Q3spO4__Jx1rlixLMBt4sKJEDgd0xwcV8YgHnilOYvLlfQVezH5PajjoUEeEz6LDGa7Fcv1ITQoJT-gyeJFw5by-xgya-m18Jxg8gbA4ce1Abiw9QnNQhxjiXVFNDhxWrkaOPXR9ksG_3F');
    background-size: cover;
    background-position: center;
}

.video-overlay {
    background-color: rgba(10, 36, 97, 0.8);
    padding: 1rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    cursor: pointer;
}

.video-overlay:hover {
    background-color: var(--primary-color);
    transform: scale(1.1);
}

.video-overlay span {
    font-size: 3rem;
    color: white;
}

/* Client Logo Carousel */
.client-logos-section {
    padding: 4rem 0;
    background-color: white;
}

body.dark-mode .client-logos-section {
    background-color: var(--background-dark);
}

.clients-title {
    text-align: center;
    color: #6b7280;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
}

body.dark-mode .clients-title {
    color: #9ca3af;
}

.client-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition);
}

@media (min-width: 768px) {
    .client-logos {
        gap: 5rem;
    }
}

.client-logos:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.client-logo {
    height: 2.5rem;
    width: 8rem;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
}

@media (min-width: 768px) {
    .client-logo {
        height: 3rem;
        width: 10rem;
    }
}

/* Founder Profile Section */
.founder-profile-section {
    padding: 6rem 0;
}

.founder-profile-content {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 1024px) {
    .founder-profile-content {
        flex-direction: row;
        gap: 6rem;
    }
}

.founder-image-container {
    width: 100%;
    position: relative;
}

@media (min-width: 1024px) {
    .founder-image-container {
        width: 33.333%;
    }
}

.founder-image-frame {
    position: relative;
}

.founder-image-frame::before {
    content: '';
    position: absolute;
    inset: -1rem;
    background-color: rgba(10, 36, 97, 0.1);
    border-radius: 1rem;
    z-index: -1;
    transition: var(--transition);
}

.founder-image-frame:hover::before {
    inset: -1.5rem;
}

.founder-image {
    width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    filter: grayscale(100%);
    transition: var(--transition);
}

.founder-image:hover {
    filter: grayscale(0%);
}

.founder-info {
    flex: 1;
}

.founder-info h2 {
    font-size: 2.25rem;
    color: var(--primary-color);
    font-weight: 800;
    margin-bottom: 0.5rem;
}

body.dark-mode .founder-info h2 {
    color: white;
}

.founder-title {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.founder-description {
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 2rem;
}

body.dark-mode .founder-description {
    color: #9ca3af;
}

.founder-description p {
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.founder-description p:last-child {
    margin-bottom: 0;
}

.founder-social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.founder-social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.founder-social-link:hover {
    background-color: rgba(10, 36, 97, 0.8);
    transform: translateY(-2px);
}

/* Coverage Map Section */
.coverage-map-section {
    padding: 4rem 0;
    border-top: 1px solid #f3f4f6;
}

body.dark-mode .coverage-map-section {
    border-top-color: #1f2937;
}

.coverage-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
}

@media (min-width: 1024px) {
    .coverage-content {
        flex-direction: row;
        gap: 3rem;
    }
}

.coverage-map-container {
    width: 100%;
}

@media (min-width: 1024px) {
    .coverage-map-container {
        width: 50%;
    }
}

.map-placeholder {
    aspect-ratio: 1;
    background-color: #f3f4f6;
    border-radius: var(--border-radius);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

body.dark-mode .map-placeholder {
    background-color: #1f2937;
}

.map-background {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    background-size: 300px;
}

.map-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content span {
    font-size: 12rem;
    color: rgba(10, 36, 97, 0.1);
    user-select: none;
}

body.dark-mode .map-content span {
    color: rgba(255, 255, 255, 0.1);
}

.map-dot {
    position: absolute;
    cursor: pointer;
}

.dot-ping {
    width: 1rem;
    height: 1rem;
    background-color: var(--primary-color);
    border-radius: 9999px;
    position: absolute;
    inset: 0;
    animation: ping 2s infinite;
}

.dot-core {
    width: 1rem;
    height: 1rem;
    background-color: var(--primary-color);
    border-radius: 9999px;
    position: relative;
    z-index: 10;
}

.dot-label {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    font-size: 0.625rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.map-dot:hover .dot-label {
    opacity: 1;
}

/* Dot positions */
.marseille-dot {
    bottom: 20%;
    right: 30%;
}

.marseille-dot .dot-core {
    background-color: var(--primary-color);
}

.sud-dot {
    bottom: 25%;
    right: 40%;
}

.sud-dot .dot-core {
    width: 0.75rem;
    height: 0.75rem;
    background-color: rgba(10, 36, 97, 0.6);
}

.rhone-alpes-dot {
    bottom: 45%;
    right: 35%;
}

.rhone-alpes-dot .dot-core {
    width: 0.75rem;
    height: 0.75rem;
    background-color: rgba(10, 36, 97, 0.6);
}

.coverage-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.coverage-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.coverage-item span {
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.coverage-item h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

body.dark-mode .coverage-item h4 {
    color: white;
}

.coverage-item p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 0.875rem;
}

body.dark-mode .coverage-item p {
    color: #9ca3af;
}

/* Final CTA Section */
.final-cta-section {
    padding: 6rem 0;
}

.final-cta-content {
    background-color: var(--primary-color);
    border-radius: 1.5rem;
    padding: 3rem 1.5rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
    .final-cta-content {
        padding: 5rem 3rem;
    }
}

@media (min-width: 1024px) {
    .final-cta-content {
        padding: 5rem 5rem;
    }
}

.cta-circle-1 {
    position: absolute;
    top: 0;
    right: 0;
    width: 16rem;
    height: 16rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    right: -8rem;
    top: -8rem;
}

.cta-circle-2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 12rem;
    height: 12rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    left: -6rem;
    bottom: -6rem;
}

.final-cta-content h2 {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

@media (min-width: 1024px) {
    .final-cta-content h2 {
        font-size: 3rem;
        max-width: 48rem;
        margin-left: auto;
        margin-right: auto;
    }
}

.final-cta-content p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
    max-width: 36rem;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (min-width: 640px) {
    .cta-actions {
        flex-direction: row;
    }
}

.cta-primary {
    background-color: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.cta-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Ping animation */
@keyframes ping {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

/* Mobile Optimizations */
        @media (max-width: 768px) {
            .hero-section {
                min-height: 90vh;
                padding: 4rem 1rem;
                align-items: flex-start;
                padding-top: 6rem;
            }

            .hero-title {
                font-size: 2rem;
                margin-bottom: 1.25rem;
            }

            .hero-description {
                font-size: 1rem;
                margin-bottom: 2rem;
            }

            .hero-actions {
                width: 100%;
                max-width: 300px;
                margin: 0 auto 2rem;
            }

            .btn {
                width: 100%;
                justify-content: center;
            }

            .btn-large {
                padding: 0.875rem 1.5rem;
                font-size: 1rem;
            }

            .stats-section {
                margin: -2rem auto 0;
                padding: 0 0.5rem;
            }

            .stat-card {
                padding: 1.5rem 1rem;
            }

            .stat-number {
                font-size: 2rem;
            }
        }

        @media (min-width: 768px) {
            .hero-title {
                font-size: 3.5rem;
            }

            .hero-actions {
                flex-direction: row;
                justify-content: center;
            }

            .stats-container {
                grid-template-columns: repeat(3, 1fr);
            }

            .stat-card {
                border-bottom: none;
                border-right: 1px solid var(--gray-light);
            }

            .stat-card:last-child {
                border-right: none;
            }

            body.dark-mode .stat-card {
                border-color: var(--gray-dark);
            }
        }

        @media (min-width: 1024px) {
            .hero-section {
                padding: 6rem 2rem;
            }

            .hero-content {
                text-align: left;
                margin: 0;
            }

            .hero-actions {
                justify-content: flex-start;
            }
        }

        /* Extra small devices */
        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.75rem;
            }

            .hero-description {
                font-size: 0.9375rem;
            }

            .badge {
                padding: 0.375rem 0.75rem;
                font-size: 0.75rem;
            }

            .stat-card {
                padding: 1.25rem 0.75rem;
            }

            .stat-number {
                font-size: 1.75rem;
            }

            .stat-label {
                font-size: 0.75rem;
            }
        }

        /* Touch device optimizations */
        @media (hover: none) and (pointer: coarse) {
            .btn {
                min-height: 48px; /* Minimum touch target size */
            }

            .stat-card:hover {
                transform: none;
            }
        }

        /* Reduced motion */
        @media (prefers-reduced-motion: reduce) {
            * {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }