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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background: #FDFDFD;
    min-height: 100vh;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    overflow-x: hidden;
}

/* Header */
.header {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    z-index: 1000;
    padding: 0rem 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.08),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
    width: min(1240px, calc(100% - 2rem));
    transform: translateX(-50%);
}

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 56px;
    width: auto;
}

.nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

/* Mobile Header Links */
.mobile-header-buttons {
    display: none;
    gap: 1.5rem;
    align-items: center;
}

.mobile-header-btn {
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.mobile-header-btn:hover {
    color: #EE5209;
}

/* Mobile Language Selector */
.mobile-language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 0.5rem;
    padding-left: 1rem;
    border-left: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-language-link {
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.mobile-language-link:hover {
    color: #EE5209;
    background: rgba(238, 82, 9, 0.1);
}

.mobile-language-link.active {
    color: #EE5209;
    font-weight: 600;
}

.mobile-language-separator {
    color: #9ca3af;
    font-size: 0.875rem;
}

.nav-link {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    color: #1f2937;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #EE5209;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
}

.language-link {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s ease;
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
}

.language-link:hover {
    color: #EE5209;
    background: rgba(238, 82, 9, 0.1);
}

.language-link.active {
    color: #EE5209;
    font-weight: 600;
}

.language-separator {
    color: #9ca3af;
    font-size: 0.9rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    padding-top: calc(1.5rem + 72px + 2rem);
    /* Header top margin (1.5rem) + header height (~72px) + extra spacing (2rem) */
    position: relative;
    overflow: visible;
    z-index: 0;
    background: radial-gradient(circle at 50% 0%, rgba(234, 140, 101, 0.15) 0%, transparent 60%);
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

.hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
}

/* Animations */
@keyframes slideUpFadeIn {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUpFromBottom {
    from {
        opacity: 0;
        transform: translateY(60px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(3rem, 8vw, 3rem);
    font-weight: 400;
    color: #1f2937;
    text-align: center;
    line-height: 1.1;
    letter-spacing: -0.03em;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    max-width: 1200px;
    margin: 0 auto 1.5rem auto;
    animation: slideUpFadeIn 0.8s ease-out forwards;
    opacity: 0;
}

.hero-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 400;
    color: #4b5563;
    text-align: center;
    line-height: 1.6;
    max-width: 800px;
    position: relative;
    z-index: 1;
    margin: 0;
    margin-bottom: 1.5rem;
    animation: slideUpFadeIn 0.8s ease-out 0.3s forwards;
    opacity: 0;
}

/* Reassurance Section */
.reassurance-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    animation: slideUpFadeIn 0.8s ease-out 0.45s forwards;
    opacity: 0;
}

.reassurance-item {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    font-weight: 100;
    color: #4b5563;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.reassurance-item:not(:last-child)::after {
    content: '•';
    margin-left: 1.5rem;
    color: #9ca3af;
}

@media (max-width: 480px) {
    .reassurance-item:not(:last-child)::after {
        margin-left: 0.75rem;
    }
}

.reassurance-item:hover {
    color: #EE5209;
}

/* CTA Button */
.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    width: 100%;
}

.cta-button {
    width: 100%;
    max-width: 300px;
}

.cta-button {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #1f2937;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 16px 0 rgba(0, 0, 0, 0.08),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
    position: relative;
    z-index: 1;
    animation: slideUpFadeIn 0.8s ease-out 0.6s forwards;
    opacity: 0;
    margin-top: 1rem;
    overflow: hidden;
    white-space: nowrap;
}

.cta-primary {
    background: linear-gradient(135deg,
            #FDFDFD 0%,
            #F5F5F5 50%,
            #FDFDFD 100%);
    color: #1f2937;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow:
        0 4px 16px 0 rgba(0, 0, 0, 0.08),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
}

.cta-primary:hover {
    background: linear-gradient(135deg,
            #F5F5F5 0%,
            #FDFDFD 50%,
            #F5F5F5 100%);
    box-shadow:
        0 6px 20px 0 rgba(0, 0, 0, 0.12),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.7);
    color: #1f2937;
}

.cta-primary::before {
    display: none;
}

.cta-arrow {
    margin-left: 0.5rem;
    display: inline;
    transition: transform 0.3s ease;
    vertical-align: baseline;
}

.cta-primary:hover .cta-arrow {
    transform: translateX(4px);
}

.cta-secondary {
    background: transparent;
    border: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 1rem 0;
}

.cta-secondary:hover {
    background: transparent;
    box-shadow: none;
    transform: none;
    color: #EE5209;
}

.cta-secondary::before {
    display: none;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.15) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0.15) 100%);
    pointer-events: none;
    border-radius: 12px;
    z-index: -1;
}

.cta-button:active {
    transform: translateY(0);
}

/* Hero Metrics */
.hero-metrics {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3.5rem;
    position: relative;
    z-index: 1;
    animation: slideUpFadeIn 0.8s ease-out 0.9s forwards;
    opacity: 0;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 2rem;
}

.hero-metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    position: relative;
}

/* Vertical separator between items */
.hero-metric-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1.5rem;
    top: 50%;
    transform: translateY(-50%);
    height: 70%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.1);
}

.metric-value {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 800;
    color: #1f2937;
    white-space: nowrap;
    line-height: 1.2;
}

.metric-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    white-space: nowrap;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .hero-metrics {
        gap: 2rem;
    }

    .hero-metric-item:not(:last-child)::after {
        right: -1rem;
    }
}

@media (max-width: 768px) {
    .hero-metrics {
        gap: 1.5rem;
        margin-top: 2.5rem;
        flex-direction: column;
        align-items: center;
    }

    .hero-metric-item:not(:last-child)::after {
        display: none;
    }

    .hero-metric-item {
        width: 100%;
    }

    .metric-value {
        font-size: 1.125rem;
    }
}

/* Section Divider */
.section-divider {
    width: 80%;
    height: 1px;
    background: linear-gradient(to right,
            transparent 0%,
            rgba(0, 0, 0, 0.08) 20%,
            rgba(0, 0, 0, 0.08) 80%,
            transparent 100%);
    margin: 0 auto;
    border: none;
}

@media (max-width: 768px) {
    .section-divider {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .section-divider {
        width: 95%;
    }
}

/* Section Glows - Dégradés latéraux pour remplacer les orbes */
.section-glow {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    width: 600px;
    height: 600px;
}

@media (max-width: 768px) {
    .section-glow {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 480px) {
    .section-glow {
        width: 300px;
        height: 300px;
    }
}

.section-glow::before,
.section-glow::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 30%, rgba(234, 140, 101, 0.55) -10%, transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(179, 183, 225, 0.45) 30%, transparent 65%);
    filter: blur(110px);
    opacity: 0.5;
}

/* Positions des dégradés latéraux */
.section-glow-top-left {
    top: -300px;
    left: -300px;
}

.section-glow-top-right {
    top: -300px;
    right: -300px;
}

.section-glow-bottom-left {
    bottom: -300px;
    left: -300px;
}

.section-glow-bottom-right {
    bottom: -300px;
    right: -300px;
}

/* About Section */
.about-section {
    padding: 8rem 4rem;
    position: relative;
    overflow: visible;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.about-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 500;
    color: #1f2937;
    text-align: left;
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-synthesis: none;
}

.about-wrapper {
    display: flex;
    gap: 10rem;
    align-items: center;
}

.about-text {
    flex: 1.5;
    max-width: 600px;
}

.about-description {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    font-weight: 100;
    color: #4b5563;
    line-height: 1.8;
    margin: 0;
}

.about-image-container {
    flex: 0.8;
    max-width: 450px;
}

.about-image-placeholder {
    background: linear-gradient(135deg,
            rgba(238, 82, 9, 0.15) 0%,
            rgba(179, 183, 225, 0.12) 40%,
            rgba(230, 231, 245, 0.15) 60%,
            rgba(1, 16, 156, 0.12) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.08),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: visible;
    aspect-ratio: 4 / 3;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
    padding: 1.25rem;
}

.about-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(238, 82, 9, 0.08) 0%,
            rgba(179, 183, 225, 0.06) 40%,
            rgba(230, 231, 245, 0.08) 60%,
            rgba(1, 16, 156, 0.06) 100%);
    pointer-events: none;
    border-radius: 24px;
    z-index: 2;
    mix-blend-mode: overlay;
}

.about-image-placeholder span {
    font-family: 'Manrope', sans-serif;
    font-size: 1.125rem;
    color: #9ca3af;
    position: relative;
    z-index: 1;
}

.about-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    position: relative;
    z-index: 1;
    opacity: 0.9;
    margin: auto;
}

/* Services Section */
.services-section {
    padding: 8rem 4rem;
    position: relative;
    overflow: visible;
    background: radial-gradient(circle at 50% 50%, rgba(234, 140, 101, 0.12) 0%, transparent 60%);
}

.services-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.services-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: bold;
    color: #1f2937;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-synthesis: none;
}

.services-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 100;
    color: #4b5563;
    text-align: center;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
}

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

/* Why Section */
.why-section {
    padding: 8rem 6rem 6rem 8rem;
    position: relative;
    overflow: visible;
    text-align: center;
    scroll-margin-top: 120px;
}

.why-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    position: relative;
    z-index: 1;
}

.why-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    width: 100%;
}

.why-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: bold;
    color: #1f2937;
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-synthesis: none;
    margin: 0 auto 0.5rem auto;
    text-align: center;
    width: 100%;
    max-width: 1000px;
}

.why-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: #4b5563;
    line-height: 1.7;
    margin: 0 auto;
    text-align: center;
    max-width: 1000px;
    width: 100%;
}

.why-stats {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
}

.why-stats li {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    color: #1f2937;
    line-height: 1.6;
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 280px;
    display: flex;
    align-items: flex-end;
}

.why-stats li>span,
.why-stats li {
    position: relative;
}

.why-stat-content {
    padding: 1rem 1.25rem;
    margin: 1.25rem 1.5rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    max-width: calc(100% - 2rem);
    box-sizing: border-box;
}

.why-stat-top-left .why-stat-content {
    align-self: flex-start;
    margin-top: 1.5rem;
    transform: translate(-120px, 55px);
    margin-left: max(0px, calc(120px - 1.5rem));
    margin-right: -3.5rem;
}

.why-stat-bottom-left .why-stat-content {
    align-self: flex-end;
    margin-bottom: 1.75rem;
    transform: translate(-43px, 80px);
}

.why-stat-top-right .why-stat-content {
    align-self: flex-start;
    margin-top: 1.5rem;
    margin-left: auto;
    margin-right: 1.75rem;
    transform: translate(70px, -60px);

}

.why-stat-badge {
    display: inline;
    padding: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    font-size: inherit;
    font-weight: inherit;
    margin-bottom: 0.25rem;
}

.why-stat-accent {
    font-weight: 100;
    color: #EE5209;
    margin-right: 0.35rem;
    display: inline-block;
    font-size: 1.15em;
}

.why-stats li:nth-child(1) {
    background-image: url("../images/problems/manual_process_fragility.jpg");
}

.why-stats li:nth-child(2) {
    background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=800&h=600&fit=crop");
}

.why-stats li:nth-child(3) {
    background-image: url("../images/problems/it_workshop_disconnect.jpg");
}

/* Values Section */
.values-section {
    padding: 8rem 4rem;
    position: relative;
    overflow: visible;
}

.values-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.values-eyebrow {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #9ca3af;
    margin: 0;
}

.values-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: bold;
    color: #1f2937;
    margin: 0;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-synthesis: none;
}

.values-description {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    color: #4b5563;
    margin: 0 auto;
    max-width: 730px;
    line-height: 1.7;
}

.values-grid {
    display: flex;
    justify-content: center;
}

.values-panel {
    position: relative;
    width: 100%;
    max-width: 1400px;
    border-radius: 44px;
    background: #ffffff;
    padding: 7.5rem 3.75rem 5.75rem;
    box-shadow: 0 0px 100px rgba(0, 26, 75, 0.11);
    overflow: hidden;
}

.values-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.values-glow::before,
.values-glow::after {
    content: '';
    position: absolute;
    width: 98%;
    height: 78%;
    background: radial-gradient(circle at 20% 30%, rgba(234, 140, 101, 0.55) -10%, transparent 60%), radial-gradient(circle at 80% 20%, rgba(179, 183, 225, 0.45) 30%, transparent 65%);
    filter: blur(110px);
    opacity: 0.5;
}

.values-glow::before {
    bottom: -50%;
    left: 0%;
}

.values-glow::after {
    bottom: -20%;
    right: -5%;
    opacity: 0.4;
}

.values-panel-header {
    position: relative;
    text-align: center;
    margin-bottom: 2rem;
}

.values-panel-eyebrow {
    font-family: 'Manrope', sans-serif;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #a0a7c1;
    font-size: 0.85rem;
    margin: 0 0 0.75rem 0;
}

.values-panel-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    color: #0f172a;
    margin: 0;
}

.values-rows {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    column-gap: 1.5rem;
    row-gap: 1.5rem;
    margin-top: 3.5rem;
    margin-bottom: 0.5rem;
}

.value-row {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    padding: 1.5rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.value-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.15rem;
    font-weight: 100;
    color: #1f2937;
    margin: 0 0 0.35rem 0;
    position: relative;
    padding-bottom: 0.5rem;
}

.value-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, #ffffffcc, #d1d5db 20%, #d1d5db 80%, #ffffffcc);
}

.value-text {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

.service-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 2rem;
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.08),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-column:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 40px 0 rgba(0, 0, 0, 0.12),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
}

.service-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    border-radius: 24px;
}

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

@media (max-width: 1024px) {
    .services-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .services-grid-4 {
        grid-template-columns: 1fr;
    }
}

.service-card-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
}

.service-header {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    border: none;
    padding: 0;
    padding-bottom: 1.5rem;
    box-shadow: none;
    position: relative;
    overflow: visible;
}

.service-header::before {
    display: none;
}

.service-header-it .service-column-title {
    color: rgba(179, 183, 225, 1);
}

.service-header-cloud .service-column-title {
    color: rgba(179, 183, 225, 1);
}

.service-header-cyber .service-column-title {
    color: rgba(179, 183, 225, 1);
}

.service-header-ai .service-column-title {
    color: rgba(179, 183, 225, 1);
}

.service-icon-container {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

.service-column:hover .service-icon-container {
    transform: scale(1.1);
}

.service-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: filter 0.3s ease;
}

.service-column:hover .service-icon {
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.15));
}

.service-column-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 100;
    color: #1f2937;
    margin: 0;
    position: relative;
    z-index: 1;
    text-align: center;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.service-item {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 100;
    color: #4b5563;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.service-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #EE5209;
    font-weight: 600;
}

/* Who We Are Section */
.who-we-are-section {
    padding: 8rem 4rem;
    position: relative;
    overflow: visible;
}

.who-we-are-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
    position: relative;
    z-index: 1;
}

.who-we-are-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: bold;
    color: #1f2937;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-synthesis: none;
}

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

.team-profile {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 2rem;
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.08),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.5),
        0 0 0 1px rgba(234, 140, 101, 0.15),
        0 0 0 2px rgba(179, 183, 225, 0.1);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-profile:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 40px 0 rgba(0, 0, 0, 0.12),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
}

.team-profile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    border-radius: 24px;
    z-index: 0;
}

.team-profile::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg,
            rgba(234, 140, 101, 0.2) 0%,
            rgba(179, 183, 225, 0.15) 50%,
            rgba(234, 140, 101, 0.2) 100%);
    border-radius: 24px;
    z-index: -1;
    pointer-events: none;
}

.profile-image-container {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg,
            rgba(238, 82, 9, 0.15) 0%,
            rgba(179, 183, 225, 0.12) 40%,
            rgba(230, 231, 245, 0.15) 60%,
            rgba(1, 16, 156, 0.12) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    z-index: 1;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease, filter 0.35s ease;
}

.profile-image-container:hover .profile-image {
    transform: scale(1.03);
    filter: brightness(0.6);
}

.profile-overlay {
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: left;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.profile-image-container:hover .profile-overlay {
    opacity: 1;
    transform: translateY(0);
}

.profile-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.profile-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.3rem;
}

.profile-name {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.125rem, 1.5vw, 1.5rem);
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

.profile-role {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 500;
    color: #EE5209;
    margin: 0;
    line-height: 1.4;
}

.profile-description {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 400;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.profile-experience {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    z-index: 1;
}

.profile-experience li {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 400;
    color: #1f2937;
    line-height: 1.6;
    padding-left: 0;
}

.profile-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    color: #1f2937;
    transition: color 0.2s ease, transform 0.2s ease;
}

.profile-linkedin-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #0A66C2;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.35);
}

.profile-linkedin-text {
    font-weight: 500;
}

.profile-linkedin:hover {
    color: #0A66C2;
    transform: translateY(-1px);
}

.senior-advisors-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.senior-advisors-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    margin: 0;
    line-height: 1.3;
}

.senior-advisors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.senior-advisor {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 2rem;
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.08),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.senior-advisor:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 40px 0 rgba(0, 0, 0, 0.12),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
}

.senior-advisor::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.04) 50%,
            rgba(255, 255, 255, 0.08) 100%);
    pointer-events: none;
    border-radius: 24px;
}

.advisor-image-container {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg,
            rgba(238, 82, 9, 0.15) 0%,
            rgba(179, 183, 225, 0.12) 40%,
            rgba(230, 231, 245, 0.15) 60%,
            rgba(1, 16, 156, 0.12) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.advisor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.advisor-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    position: relative;
    z-index: 1;
}

.advisor-name {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1rem, 1.3vw, 1.25rem);
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

.advisor-role {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 500;
    color: #EE5209;
    margin: 0;
    line-height: 1.4;
}

.advisor-description {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 400;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.networks-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 0rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.networks-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #1f2937;
    text-align: center;
    margin: 0;
    line-height: 1.3;
}

.networks-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: #4b5563;
    line-height: 1.7;
    margin: 0 auto;
    text-align: center;
    max-width: 1000px;
    width: 100%;
}

.networks-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.network-logo {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    padding: 2rem;
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.08),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.network-logo:hover {
    transform: translateY(-4px);
    box-shadow:
        0 12px 40px 0 rgba(0, 0, 0, 0.12),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
}

.network-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.04) 50%,
            rgba(255, 255, 255, 0.08) 100%);
    pointer-events: none;
    border-radius: 24px;
}

.network-logo-container {
    width: 100%;
    max-width: 200px;
    aspect-ratio: 1;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg,
            rgba(238, 82, 9, 0.15) 0%,
            rgba(179, 183, 225, 0.12) 40%,
            rgba(230, 231, 245, 0.15) 60%,
            rgba(1, 16, 156, 0.12) 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin: 0 auto;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.network-logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

/* join Us Section */
.join-us-section {
    padding: 8rem 4rem;
    position: relative;
    overflow: visible;
}

.join-us-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.join-us-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: bold;
    color: #1f2937;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-synthesis: none;
}

.join-us-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 400;
    color: #4b5563;
    text-align: center;
    line-height: 1.6;
    max-width: 1000px;
    margin: 0 auto;
}

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

.join-us-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2rem;
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.08),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.join-us-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.04) 50%,
            rgba(255, 255, 255, 0.08) 100%);
    pointer-events: none;
    border-radius: 24px;
}


.join-us-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #EE5209 0%, #d14708 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
    box-shadow: 0 4px 12px 0 rgba(238, 82, 9, 0.3);
}

.join-us-header {
    background: rgba(1, 16, 156, 0.15);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 1.5rem;
    position: relative;
    z-index: 1;
    box-shadow:
        0 4px 16px 0 rgba(0, 0, 0, 0.06),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
}

.join-us-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(1, 16, 156, 0.1) 0%,
            rgba(179, 183, 225, 0.08) 50%,
            rgba(1, 16, 156, 0.1) 100%);
    pointer-events: none;
    border-radius: 12px;
}

.join-us-header-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.9rem, 1.3vw, 1.1rem);
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

.join-us-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.join-us-item {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 400;
    color: #4b5563;
    line-height: 1.6;
    padding-left: 1.5rem;
    position: relative;
}

.join-us-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #EE5209;
    font-weight: 600;
}

.join-us-text {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 400;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Contact Section */
.contact-section {
    padding: 8rem 4rem;
    position: relative;
    overflow: visible;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.contact-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: bold;
    color: #1f2937;
    text-align: center;
    line-height: 1.3;
    letter-spacing: -0.02em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-synthesis: none;
}

.contact-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    font-weight: 400;
    color: #4b5563;
    text-align: center;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

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

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

.contact-info-item {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 2rem;
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.08),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.contact-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    border-radius: 24px;
}

.contact-info-label {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
    position: relative;
    z-index: 1;
}

.contact-info-value {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 500;
    color: #EE5209;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
    z-index: 1;
    display: block;
    margin: 0;
}

.contact-info-value:hover {
    color: #d14708;
}

.contact-info-item p.contact-info-value {
    color: #4b5563;
    cursor: default;
}

.contact-info-item p.contact-info-value:hover {
    color: #4b5563;
}

.contact-info-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

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

.contact-info-label-small {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    font-weight: 500;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 2.5rem;
    box-shadow:
        0 8px 32px 0 rgba(0, 0, 0, 0.08),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.contact-form-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.1) 0%,
            rgba(255, 255, 255, 0.05) 50%,
            rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
    border-radius: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 600;
    color: #1f2937;
}

.form-label .required {
    color: #EE5209;
    margin-left: 2px;
}

.form-input,
.form-textarea {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    padding: 0.875rem 1.25rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.6);
    color: #1f2937;
    transition: all 0.3s ease;
    outline: none;
}

.form-input:focus,
.form-textarea:focus {
    border-color: #EE5209;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 0 0 3px rgba(238, 82, 9, 0.1);
}

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

.contact-submit-button {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #1f2937;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px) saturate(180%);
    -webkit-backdrop-filter: blur(10px) saturate(180%);
    padding: 1rem 2.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 16px 0 rgba(0, 0, 0, 0.08),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
    align-self: flex-start;
}

.contact-submit-button:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.75);
    color: #EE5209;
    box-shadow:
        0 6px 20px 0 rgba(0, 0, 0, 0.12),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.7);
}

.contact-submit-button:active {
    transform: translateY(0);
}

.contact-submit-button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    animation: slideUpFadeIn 0.3s ease-out;
}

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

.form-message-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: #dc2626;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    position: relative;
    overflow: visible;
}

.faq-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

.faq-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 5vw, 2.5rem);
    font-weight: bold;
    color: #1f2937;
    text-align: center;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 16px;
    border: 1px solid rgba(179, 183, 225, 0.5);
    padding: 0;
    box-shadow:
        0 4px 16px 0 rgba(0, 0, 0, 0.08),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow:
        0 6px 20px 0 rgba(0, 0, 0, 0.12),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    cursor: pointer;
    gap: 1.5rem;
}

.faq-question-text {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 600;
    color: #1f2937;
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.faq-toggle {
    background: #B3B7E1;
    border: none;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background-color 0.3s ease, transform 0.3s ease;
    padding: 0;
}

.faq-toggle:hover {
    background: #EE5209;
    transform: scale(1.05);
}

.faq-toggle:active {
    transform: scale(0.95);
}

.faq-icon {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1;
    display: block;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.expanded .faq-answer {
    padding: 0 2rem 1.5rem 2rem;
    max-height: 500px;
}

.faq-item .faq-icon {
    content: '+';
}

.faq-item.expanded .faq-icon {
    content: '−';
}

.faq-answer p {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 400;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Trust Partners Section */
.trust-partners-section {
    padding: 6rem 2rem;
    position: relative;
    overflow: visible;
    background:
        radial-gradient(ellipse 1200px 900px at center,
            rgba(179, 183, 225, 0.2) 0%,
            rgba(230, 231, 245, 0.15) 35%,
            rgba(253, 253, 253, 0.1) 65%,
            transparent 100%),
        #FDFDFD;
}

.trust-partners-content {
    max-width: 1400px;
    margin: 0 auto;
    background:
        radial-gradient(ellipse 800px 600px at top left,
            rgba(234, 140, 101, 0.4) 30%,
            rgba(234, 140, 101, 0.25) 43%,
            rgba(179, 183, 225, 0.2) 64%,
            rgba(179, 183, 225, 0.1) 91%,
            transparent 100%),
        radial-gradient(ellipse 800px 600px at bottom right,
            rgba(234, 140, 101, 0.4) 0%,
            rgba(234, 140, 101, 0.25) 25%,
            rgba(179, 183, 225, 0.2) 50%,
            rgba(179, 183, 225, 0.1) 75%,
            transparent 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 3rem 4rem;
    box-shadow:
        0 4px 16px 0 rgba(0, 0, 0, 0.04),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.trust-partners-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 0.08) 0%,
            rgba(255, 255, 255, 0.04) 50%,
            rgba(255, 255, 255, 0.08) 100%);
    pointer-events: none;
    border-radius: 24px;
}

.trust-partners-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
    letter-spacing: -0.02em;
}

.trust-partners-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.trust-partners-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: center;
    justify-items: center;
}

.trust-partner-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
    width: 100%;
}

.trust-partner-logo:hover {
    transform: translateY(-4px);
    opacity: 0.8;
}

.trust-partner-logo img {
    max-height: 60px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.6);
    transition: filter 0.3s ease;
}

.trust-partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

/* Trust Section */
.trust-section {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-radius: 0;
    border: none;
    padding: 1rem 0;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    max-width: 1200px;
    width: 100%;
    margin: 4rem auto 0 auto;
    /* Margin top to push it down from CTA */
    animation: slideUpFadeIn 0.8s ease-out 0.6s forwards;
    opacity: 0;
}



.trust-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.875rem, 1.5vw, 1.125rem);
    font-weight: 600;
    color: #1f2937;
    text-align: left;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.trust-logos {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.trust-logo {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.trust-logo:hover {
    transform: translateY(-4px);
    opacity: 0.8;
}

.logo-placeholder {
    width: 120px;
    height: 60px;
    background: rgba(229, 231, 235, 0.5);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    color: #6b7280;
    border: 1px solid rgba(229, 231, 235, 0.8);
}

.trust-logo img {
    max-height: 60px;
    max-width: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.trust-logo:hover img {
    transform: scale(1.05);
}

/* Problems Section */
/* Problems Section */
.problems-section {
    padding: 8rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.problems-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: bold;
    color: #1f2937;
    text-align: center;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.3;
}

.problems-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: left;
}

.problem-item {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    color: #1f2937;
    line-height: 1.6;
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 400px;
    display: flex;
    align-items: flex-end;
}

.problem-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 24px;
}

.problem-item:nth-child(1) {
    background-image: url("../images/problems/excel_chaos.png");
}

.problem-item:nth-child(2) {
    background-image: url("../images/problems/expensive_project.png");
}

.problem-item:nth-child(3) {
    background-image: url("../images/problems/factory_disconnect.png");
}

.problem-content {
    position: relative;
    padding: 1.5rem;
    margin: 1.5rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    width: 100%;
    box-sizing: border-box;
}

/* Specific positioning matching existing design inspiration */
.problem-item:nth-child(1) .problem-content {
    align-self: flex-start;
    transform: translate(-30px, 40px);
    margin-top: 2rem;
    width: calc(100% + 20px);
}

.problem-item:nth-child(2) .problem-content {
    align-self: flex-end;
    transform: translateY(40px);
    margin-bottom: 2rem;
}

.problem-item:nth-child(3) .problem-content {
    align-self: flex-start;
    transform: translate(30px, -40px);
    margin-top: 2rem;
    width: calc(100% + 20px);
}

.problem-card-header {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.problem-tag {
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #EE5209;
    background: rgba(238, 82, 9, 0.1);
    padding: 0.35rem 0.75rem;
    border-radius: 100px;
}

.problem-card-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.3;
}

.problem-card-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

/* Case Study Section */
.case-study-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.case-study-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.case-study-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}

.case-study-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 1.125rem;
    color: #4b5563;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem auto;
}

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

.cs-metric {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.cs-metric-value {
    display: block;
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #EE5209;
    /* Using the orange accent for metrics */
    margin-bottom: 0.5rem;
}

.cs-metric-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.5;
}

.case-study-block {
    text-align: left;
}

.case-study-heading {
    font-family: 'Manrope', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.case-study-text {
    font-family: 'Manrope', sans-serif;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #374151;
}

.case-study-carousel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0 0.5rem 0;
}

.case-study-carousel img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.case-study-carousel img:hover {
    transform: scale(1.02);
}

.case-study-caption {
    text-align: center;
    font-family: 'Manrope', sans-serif;
    font-size: 0.9rem;
    color: #6b7280;
    font-style: italic;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .case-study-metrics {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .case-study-carousel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .problems-list {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .problem-item {
        min-height: 300px;
    }

    .problem-content,
    .problem-item:nth-child(1) .problem-content,
    .problem-item:nth-child(2) .problem-content,
    .problem-item:nth-child(3) .problem-content {
        transform: none;
        width: auto;
        margin: 1rem;
        align-self: flex-end;
    }
}

.trust-logo:hover img {
    filter: grayscale(0%) opacity(1);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #1f2937;
    text-align: center;
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-item.active {
    background: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem;
    background: none;
    border: none;
    font-family: 'Manrope', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq-icon {
    font-size: 1.5rem;
    color: #EE5209;
    /* Accent color */
    font-weight: 400;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0, 1, 0, 1);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    /* Arbitrary large height */
    transition: max-height 0.3s ease-in-out;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    margin: 0;
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4b5563;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

/* Sticky Wrapper for Approach/Method Stacking */
.sticky-wrapper {
    position: relative;
    /* Optional: Add some padding or margin if needed */
}

/* Approach Section */
.approach-section {
    padding: 8rem 2rem;
    position: sticky;
    top: 5vh;
    /* Stick slightly below top to center vertically or allow header space */
    z-index: 1;
    /* Lower z-index so it stays behind */
    margin-bottom: 0;
    /* Sticky element needs to sit flush */
    overflow: visible;
}

/* Method Section */
.method-section {
    padding: 6rem 1rem;
    /* Reduced horizontal padding for full width feel */
    width: 100%;
    margin: 0;
    position: relative;
    z-index: 2;
    /* Higher z-index to cover Approach */
    overflow: hidden;
    /* Mask the sticky section behind */
}

.method-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
}

.method-panel {
    position: relative;
    width: 100%;
    border-radius: 44px;
    background: #ffffff;
    padding: 4rem 2rem;
    box-shadow: 0 0px 100px rgba(0, 26, 75, 0.11);
    overflow: hidden;
}

/* Background Grid Effect within visual panel */
.method-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(31, 41, 55, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(31, 41, 55, 0.05) 1px, transparent 1px);
    background-size: 40px 40px;
    z-index: 0;
    mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to bottom, transparent, black 10%, black 90%, transparent);
    pointer-events: none;
}

.method-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.method-glow::before,
.method-glow::after {
    content: '';
    position: absolute;
    width: 98%;
    height: 78%;
    background: radial-gradient(circle at 20% 30%, rgba(234, 140, 101, 0.35) -10%, transparent 60%), radial-gradient(circle at 80% 20%, rgba(179, 183, 225, 0.35) 30%, transparent 65%);
    filter: blur(110px);
    opacity: 0.5;
}

.method-glow::before {
    bottom: -50%;
    left: 0%;
}

.method-glow::after {
    bottom: -20%;
    right: -5%;
    opacity: 0.4;
}

.method-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: bold;
    color: #1f2937;
    text-align: center;
    margin-bottom: 0.5rem;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.method-subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    font-weight: 400;
    color: #4b5563;
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.method-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: min-content;
    /* Allow minimal height */
    gap: 0;
    /* Remove gap to tighter fit or use small gap */
    row-gap: 1rem;
    /* Small vertical gap */
    position: relative;
    padding: 1rem 0;
    width: 100%;
    max-width: 100%;
    /* Full width */
    margin: 0 auto;
}

/* Connector Line */
.method-grid::after {
    content: '';
    position: absolute;
    top: 2rem;
    bottom: 2rem;
    left: 1rem;
    width: 2px;
    background: linear-gradient(to bottom, #EE5209, rgba(238, 82, 9, 0.1));
    display: none;
    /* Hide vertical connector for now as we want Gantt waterfall */
}

.method-step {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow:
        0 2px 4px rgba(0, 0, 0, 0.02),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.8);
    grid-column: span 5;
}

.method-step:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 16px -4px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.8);
    z-index: 5;
    background: #fff;
}

/* Staircase positions */
.method-step:nth-child(1) {
    grid-column: 1 / span 5;
    margin-right: -20px;
    /* Slight overlap or tight fitting */
}

.method-step:nth-child(2) {
    grid-column: 3 / span 5;
    margin-top: 0;
}

.method-step:nth-child(3) {
    grid-column: 5 / span 5;
    margin-top: 0;
}

.method-step:nth-child(4) {
    grid-column: 7 / span 5;
    margin-top: 0;
}

.method-step-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
    width: 100%;
}

.method-step-number {
    width: 1.5rem;
    height: 1.5rem;
    background: #EE5209;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Manrope', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.method-step-title {
    font-family: 'Manrope', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    line-height: 1.2;
    white-space: nowrap;
    /* Keep title on one line */
    overflow: hidden;
    text-overflow: ellipsis;
}

.method-duration {
    font-weight: 400;
    color: #6b7280;
    font-size: 0.875rem;
    margin-left: 0.25rem;
}

.method-step-desc {
    font-family: 'Manrope', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #4b5563;
    margin: 0;
    line-height: 1.4;
    padding-left: 2.25rem;
    /* Align with text start */
}

@media (max-width: 900px) {
    .method-grid {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        max-width: 100%;
    }

    .method-step {
        width: 100%;
        margin: 0 !important;
    }

    .method-step-desc {
        padding-left: 0;
        margin-top: 0.5rem;
    }

    .method-step-header {
        flex-wrap: wrap;
    }

    .method-step-title {
        white-space: normal;
    }
}

@media (max-width: 600px) {
    .method-grid {
        grid-template-columns: 1fr;
    }

    .method-section {
        padding: 4rem 1.5rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(to top, rgba(234, 140, 101, 0.1) 0%, rgba(255, 255, 255, 1) 40%);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding: 4rem 2rem 2rem;
    margin-top: 4rem;
    position: relative;
    overflow: hidden;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 3;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-logo img {
    height: 40px;
    width: auto;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 400;
    color: #4b5563;
    line-height: 1.6;
    margin: 0;
}

.footer-title {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(1rem, 1.5vw, 1.25rem);
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 0.5rem 0;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 400;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: #EE5209;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact-item {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 400;
    color: #4b5563;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-contact-item:hover {
    color: #EE5209;
}

.footer-cta-button {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.875rem, 1.2vw, 1rem);
    font-weight: 600;
    color: #1f2937;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 16px 0 rgba(0, 0, 0, 0.08),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
    width: 100%;
    white-space: nowrap;
}

.footer-cta-button:hover {
    background: rgba(255, 255, 255, 0.75);
    color: #EE5209;
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px 0 rgba(0, 0, 0, 0.12),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 3;
}

.footer-copyright {
    font-family: 'Manrope', sans-serif;
    font-size: clamp(0.75rem, 1vw, 0.875rem);
    font-weight: 400;
    color: #6b7280;
    text-align: center;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header {
        padding: 1rem 1.5rem;
        top: 1rem;
        width: min(900px, calc(100% - 2rem));
    }

    .nav {
        gap: 1.5rem;
    }

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

    .services-section {
        padding: 4rem 1.5rem;
    }

    .services-content {
        gap: 2rem;
    }

    .why-content {
        gap: 2rem;
    }

    .why-section {
        padding: 4rem 1.5rem 4rem 6rem;
        scroll-margin-top: 100px;
    }

    .why-stat-top-left .why-stat-content {
        transform: translate(-80px, 55px);
        margin-left: max(0px, calc(80px - 1.5rem));
    }

    .why-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .values-rows {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        row-gap: 1.5rem;
    }

    .join-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .join-us-section {
        padding: 4rem 1rem !important;
    }

    .join-us-content {
        gap: 2rem;
    }

    .contact-section {
        padding: 4rem 1rem !important;
    }

    .contact-content {
        gap: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .faq-section {
        padding: 4rem 1rem !important;
    }

    .faq-content {
        gap: 2rem;
    }

    .faq-question {
        padding: 1.25rem 1.5rem;
    }

    .faq-answer {
        padding: 0 1.5rem;
    }

    .faq-item.expanded .faq-answer {
        padding: 0 1.5rem 1.25rem 1.5rem;
    }

    .footer {
        padding: 3rem 1.5rem 1.5rem;
    }

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

    .trust-partners-section {
        padding: 4rem 1.5rem;
    }

    .trust-partners-content {
        padding: 2.5rem 3rem;
    }

    .trust-partners-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {

    html,
    body {
        width: 100%;
        overflow-x: hidden;
        margin: 0;
        padding: 0;
    }

    .hero {
        padding: 1.5rem 1rem;
        padding-top: calc(0.75rem + 56px + 1.5rem);
        /* Header top margin (0.75rem) + header height (~56px) + extra spacing (1.5rem) */
    }

    .hero-content {
        padding: 0;
        width: 100%;
    }

    .header {
        padding: 0.75rem 1rem;
        top: 0.75rem;
        border-radius: 16px;
        width: calc(100% - 1.5rem);
        left: 50%;
        transform: translateX(-50%);
        margin-left: 0;
        margin-right: 0;
        box-sizing: border-box;
    }

    .header-content {
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        height: 40px;
    }

    /* Hide desktop navigation on mobile */
    .nav {
        display: none;
    }

    /* Show mobile header buttons */
    .mobile-header-buttons {
        display: flex;
        margin-left: auto;
    }

    .logo-link {
        flex-shrink: 0;
    }

    .about-section {
        padding: 4rem 1.5rem;
    }

    .about-content {
        gap: 1.5rem;
    }

    .about-wrapper {
        flex-direction: column;
        gap: 2rem;
    }

    .who-we-are-section {
        padding: 4rem 1rem !important;
    }

    .who-we-are-content {
        gap: 3rem;
    }

    .team-profiles {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .senior-advisors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .networks-section {
        margin-top: 3rem;
        padding-top: 3rem;
    }

    .networks-logos {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .network-logo-container {
        max-width: 150px;
    }

    .about-text {
        max-width: 100%;
    }

    .about-image-container {
        max-width: 100%;
        width: 100%;
    }

    .about-image-placeholder {
        min-height: 250px;
    }

    .about-title {
        font-size: clamp(1.75rem, 5vw, 2.5rem);
    }

    .about-description {
        font-size: clamp(1rem, 2vw, 1.25rem);
    }

    .services-section {
        padding: 4rem 1rem !important;
    }

    .services-content {
        gap: 2rem;
    }

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

    .service-column {
        padding: 1.5rem;
    }

    .service-icon-container {
        width: 60px;
        height: 60px;
    }

    .why-section {
        padding: 4rem 1.5rem !important;
        scroll-margin-top: 90px;
    }

    .why-stat-top-left .why-stat-content {
        transform: translate(0, 55px);
        margin-left: 1.5rem;
    }

    .why-stat-bottom-left .why-stat-content {
        transform: translate(0, 80px);
        margin-left: 1.5rem;
    }

    .why-stat-top-right .why-stat-content {
        transform: translate(0, -60px);
        margin-right: 1.5rem;
    }

    .why-stats {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .why-stats li {
        min-height: 200px;
    }

    .why-stat-content {
        transform: none !important;
        margin: 1rem !important;
        position: relative;
    }

    .values-panel {
        padding: 3rem 1.9rem 2.8rem;
        border-radius: 28px;
    }

    .values-rows {
        grid-template-columns: 1fr;
        row-gap: 1.5rem;
    }

    .join-us-section {
        padding: 4rem 1rem !important;
    }

    .join-us-content {
        gap: 2rem;
    }

    .join-us-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .join-us-column {
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .join-us-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 4rem);
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 1.8vw, 1.25rem);
        margin-bottom: 1rem;
    }

    .reassurance-section {
        gap: 1rem;
        margin-bottom: 1.25rem;
    }

    .reassurance-item {
        font-size: clamp(0.8rem, 1.5vw, 1rem);
    }

    .reassurance-item:not(:last-child)::after {
        margin-left: 1rem;
    }

    .cta-button {
        padding: 0.875rem 2rem;
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        margin-top: 0.75rem;
    }

    .trust-section {
        padding: 1.5rem 2rem;
        margin-top: 0.5rem;
    }

    .trust-title {
        margin-bottom: 1.25rem;
    }

    .trust-logos {
        gap: 1.5rem;
    }

    .logo-placeholder {
        width: 100px;
        height: 50px;
    }

    .trust-logo img {
        max-height: 50px;
        max-width: 100px;
    }

    .footer {
        padding: 3rem 1.5rem 1.5rem;
        margin-top: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-section {
        gap: 1.25rem;
    }

    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .trust-partners-section {
        padding: 4rem 1.5rem;
    }

    .trust-partners-content {
        padding: 2rem 2.5rem;
    }

    .trust-partners-title {
        margin-bottom: 2rem;
    }

    .trust-partners-grid {
        gap: 1.5rem;
    }

    .trust-partners-row {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }

    .trust-partner-logo img {
        max-height: 50px;
        max-width: 100px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 3rem 1rem;
    }

    .about-content {
        gap: 1.25rem;
    }

    .about-wrapper {
        gap: 1.5rem;
    }

    .about-image-placeholder {
        min-height: 200px;
    }

    .about-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .about-description {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
    }

    .who-we-are-section {
        padding: 3rem 1rem;
    }

    .who-we-are-content {
        gap: 2.5rem;
    }

    .who-we-are-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }

    .team-profiles {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .team-profile {
        padding: 1.5rem;
    }

    .senior-advisors-section {
        gap: 1.5rem;
        margin-top: 1.5rem;
    }

    .senior-advisors-title {
        font-size: clamp(1.25rem, 3vw, 1.75rem);
    }

    .senior-advisors-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .senior-advisor {
        padding: 1.5rem;
    }

    .advisor-image-container {
        max-width: 150px;
    }

    .networks-section {
        margin-top: 2rem;
        padding-top: 2rem;
        gap: 1.5rem;
    }

    .networks-title {
        font-size: clamp(1.25rem, 3vw, 1.75rem);
    }

    .networks-logos {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .network-logo {
        padding: 1.5rem;
    }

    .network-logo-container {
        max-width: 150px;
    }

    .services-section {
        padding: 3rem 1rem;
    }

    .services-content {
        gap: 1.5rem;
    }

    .services-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }

    .services-subtitle {
        font-size: clamp(1rem, 1.8vw, 1.25rem);
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-column {
        padding: 1.5rem;
    }

    .service-icon-container {
        width: 60px;
        height: 60px;
    }

    .service-column-title {
        font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    }

    .service-item {
        font-size: clamp(0.8rem, 1.2vw, 0.95rem);
    }

    .why-section {
        padding: 3rem 1rem !important;
        scroll-margin-top: 80px;
    }

    /* Assurer que toutes les sections ont des paddings réduits sur mobile */
    .services-section,
    .values-section,
    .who-we-are-section,
    .join-us-section,
    .contact-section,
    .faq-section,
    .about-section {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .hero {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .hero-content {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .why-stat-top-left .why-stat-content,
    .why-stat-bottom-left .why-stat-content,
    .why-stat-top-right .why-stat-content {
        transform: none !important;
        margin: 1rem !important;
        position: relative;
    }

    .why-stats li {
        min-height: 180px;
    }

    .why-stat-content {
        padding: 1rem;
        margin: 1rem !important;
    }

    .join-us-section {
        padding: 3rem 1rem;
    }

    .join-us-content {
        gap: 1.5rem;
    }

    .join-us-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }

    .join-us-subtitle {
        font-size: clamp(1rem, 1.8vw, 1.25rem);
    }

    .join-us-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .join-us-column {
        padding: 1.5rem;
        gap: 1.25rem;
    }

    .join-us-number {
        width: 45px;
        height: 45px;
        font-size: 1.125rem;
    }

    .join-us-header {
        padding: 0.875rem 1.25rem;
    }

    .join-us-header-title {
        font-size: clamp(0.85rem, 1.3vw, 1rem);
    }

    .join-us-item {
        font-size: clamp(0.8rem, 1.2vw, 0.95rem);
    }

    .contact-section {
        padding: 3rem 1rem;
    }

    .contact-content {
        gap: 1.5rem;
    }

    .contact-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
    }

    .contact-subtitle {
        font-size: clamp(1rem, 1.8vw, 1.25rem);
    }

    .contact-wrapper {
        gap: 1.5rem;
    }

    .contact-info {
        gap: 1.5rem;
    }

    .contact-info-item {
        padding: 1.5rem;
    }

    .contact-form-container {
        padding: 1.5rem;
    }

    #my-cal-inline-secret {
        width: 100% !important;
        height: 400px !important;
    }

    .contact-form {
        gap: 1.25rem;
    }

    .contact-submit-button {
        width: 100%;
        align-self: stretch;
    }

    .faq-section {
        padding: 3rem 1rem;
    }

    .faq-content {
        gap: 1.5rem;
    }

    .faq-list {
        gap: 1.25rem;
    }

    .faq-question {
        padding: 1rem 1.25rem;
        gap: 1rem;
    }

    .faq-question-text {
        font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    }

    .faq-toggle {
        width: 32px;
        height: 32px;
    }

    .faq-icon {
        font-size: 1.25rem;
    }

    .faq-answer {
        padding: 0 1.25rem;
    }

    .faq-item.expanded .faq-answer {
        padding: 0 1.25rem 1rem 1.25rem;
    }

    .hero {
        padding: 1rem;
        padding-top: calc(0.5rem + 48px + 1rem);
        /* Header top margin (0.5rem) + header height (~48px) + extra spacing (1rem) */
    }

    .header {
        padding: 0.5rem 1rem;
        top: 0.5rem;
        border-radius: 12px;
        width: calc(100% - 1rem);
    }

    .header-content {
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        height: 34px;
    }

    .mobile-header-buttons {
        gap: 0.75rem;
    }

    .mobile-header-btn {
        font-size: 0.8rem;
    }

    .mobile-language-selector {
        gap: 0.25rem;
        margin-left: 0.25rem;
        padding-left: 0.75rem;
    }

    .mobile-language-link {
        font-size: 0.75rem;
        padding: 0.15rem 0.35rem;
    }

    .mobile-language-separator {
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: clamp(1.75rem, 8vw, 3rem);
        margin-bottom: 0.75rem;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 2vw, 1.1rem);
        margin-bottom: 0.75rem;
    }

    .reassurance-section {
        gap: 0.75rem;
        margin-bottom: 1rem;
    }

    .reassurance-item {
        font-size: clamp(0.75rem, 1.5vw, 0.9rem);
    }

    .reassurance-item:not(:last-child)::after {
        margin-left: 0.75rem;
    }

    .cta-button {
        padding: 0.75rem 1.75rem;
        font-size: clamp(0.85rem, 2vw, 1rem);
        margin-top: 0.5rem;
        width: 100%;
        max-width: 280px;
    }

    .trust-section {
        padding: 1.25rem 1.5rem;
        margin-top: 0.5rem;
        border-radius: 16px;
    }

    .trust-title {
        font-size: clamp(0.8rem, 1.5vw, 1rem);
        margin-bottom: 1rem;
    }

    .trust-logos {
        gap: 1rem;
    }

    .logo-placeholder {
        width: 80px;
        height: 40px;
        font-size: 0.75rem;
    }

    .trust-logo img {
        max-height: 40px;
        max-width: 80px;
    }

    .trust-partners-section {
        padding: 3rem 1rem;
    }

    .trust-partners-content {
        padding: 2rem 1.5rem;
    }

    .trust-partners-title {
        margin-bottom: 1.5rem;
        font-size: clamp(1.25rem, 3vw, 2rem);
    }

    .trust-partners-grid {
        gap: 1.25rem;
    }

    .trust-partners-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .trust-partner-logo img {
        max-height: 40px;
        max-width: 80px;
    }

    .logo-placeholder {
        width: 80px;
        height: 40px;
    }

    .footer {
        padding: 2.5rem 1rem 1.25rem;
        margin-top: 2rem;
    }

    .footer-content {
        gap: 1.5rem;
    }

    .footer-section {
        gap: 1rem;
    }

    .footer-logo img {
        height: 32px;
    }

    .footer-bottom {
        margin-top: 1.5rem;
        padding-top: 1.25rem;
    }
}