:root {
    --color-bg: #ffffff;
    --color-text: #000000;
    --font-primary: 'Inter', sans-serif;
    --transition-slow: 1.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Setup */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    min-height: 100vh;
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
}

/* Smooth Scroll Container */
body.has-smooth-scroll {
    overflow-x: hidden;
}

body.has-smooth-scroll #smooth-content {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    will-change: transform;
}

::selection {
    background-color: var(--color-text);
    color: var(--color-bg);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.9rem 4rem;
    z-index: 100;
    transition: 
        transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        padding 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        background-color 0.6s cubic-bezier(0.16, 1, 0.3, 1),
        backdrop-filter 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scrolled state: compact and glassmorphic */
.header.header--scrolled {
    padding: 0.55rem 4rem;
    background-color: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

/* Hidden state: slides up smoothly out of view */
.header.header--hidden {
    transform: translateY(-100%);
}

.header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: -0.03em;
    opacity: 0;
    animation: fadeReveal var(--transition-slow) forwards 0.2s;
}

.nav {
    display: flex;
    gap: 2.2rem;
}

.nav__link {
    color: var(--color-text);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeReveal var(--transition-slow) forwards;
}

.nav__link:nth-child(1) { animation-delay: 0.3s; }
.nav__link:nth-child(2) { animation-delay: 0.4s; }
.nav__link:nth-child(3) { animation-delay: 0.5s; }

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--color-text);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-fast);
}

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

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4rem;
    position: relative;
    text-align: center;
}

.hero__content {
    max-width: 100%;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    will-change: transform;
}

.hero__title {
    font-size: clamp(2rem, 5vw, 5rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 2rem;
    position: relative;
    max-width: 1200px;
}

.animated-title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    flex-direction: column;
}

.line-container {
    display: block;
    white-space: nowrap;
}

.word {
    display: inline-block;
    white-space: nowrap;
}

.animated-title .char,
.animated-title .char-space {
    display: inline-block;
    opacity: 0;
}

.cursor {
    display: inline-block;
    width: clamp(2px, 0.4vw, 4px);
    height: 1.1em;
    background-color: var(--color-text);
    vertical-align: middle;
    animation: blink 1s infinite;
    margin-left: 2px;
}


.hero__subtitle {
    font-size: clamp(1rem, 1.25vw, 1.25rem);
    font-weight: 300;
    line-height: 1.6;
    max-width: 700px;
    margin-bottom: 3rem;
    opacity: 0;
    color: #444; /* Slightly softer black for subtitle */
}

body.page-loaded .hero__subtitle {
    animation: fadeReveal var(--transition-slow) forwards 0.2s;
}

.hero__actions {
    opacity: 0;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

body.page-loaded .hero__actions {
    animation: fadeReveal var(--transition-slow) forwards 0.4s;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
    text-decoration: none;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 50px; /* Rounded pill shape */
}

.btn i, .btn svg {
    font-size: 1.1em;
    width: 1.1em;
    height: 1.1em;
    display: inline-block;
    vertical-align: middle;
    transition: transform var(--transition-fast);
}

.icon-svg {
    width: 1em;
    height: 1em;
    display: inline-block;
    fill: currentColor;
    vertical-align: middle;
    transition: transform var(--transition-fast);
}

.btn--primary {
    background-color: var(--color-text);
    color: var(--color-bg);
    border-color: var(--color-text);
}

.btn--primary:hover {
    background-color: transparent;
    color: var(--color-text);
}

.btn--primary:hover i, .btn--primary:hover svg {
    transform: scale(1.1);
}

.btn--header {
    opacity: 0;
    animation: fadeReveal var(--transition-slow) forwards 0.6s;
    padding: 0.5rem 1.1rem;
    font-size: 0.8rem;
}

.btn--secondary {
    background-color: #f3f4f6;
    color: var(--color-text);
    border-color: transparent;
}

.btn--secondary:hover {
    background-color: #e5e7eb;
    color: var(--color-text);
}

/* Scroll Indicator */
.scroll-wrapper {
    position: absolute;
    bottom: 3.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    opacity: 0;
}

body.page-loaded .scroll-wrapper {
    animation: fadeRevealCentered var(--transition-slow) forwards 0.6s;
}

.scroll-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 300;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background-color: var(--color-text);
    transform-origin: top;
    animation: pulseLineVertical 2.5s cubic-bezier(0.4, 0, 0.2, 1) infinite alternate;
}

/* Animations */
@keyframes fadeRevealCentered {
    from {
        opacity: 0;
        transform: translate(-50%, 10px);
    }
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

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

@keyframes pulseLineVertical {
    0% {
        transform: scaleY(0.3);
    }
    100% {
        transform: scaleY(1);
    }
}

@keyframes blink {
    0%, 75% { opacity: 1; }
    76%, 100% { opacity: 0; }
}

/* Media Queries */
@media (max-width: 768px) {
    .header {
        display: none !important;
    }
    
    .hero {
        padding: 0 1.25rem;
    }
    
    .hero__title {
        font-size: clamp(1.6rem, 8vw, 2.5rem);
        line-height: 1.15;
        letter-spacing: -0.04em;
        margin-bottom: 2rem;
    }
    
    .scroll-wrapper {
        bottom: 2.5rem;
    }
}



/* Expertise Section */
.expertise-section {
    padding: 10rem 4rem;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    position: relative;
    border-top: 1px solid #f3f4f6;
    z-index: 10;
}

.expertise__container {
    max-width: 1200px;
    width: 100%;
}

.expertise__header {
    margin-bottom: 6rem;
    max-width: 800px;
}

.expertise__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #595959;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.expertise__title {
    font-size: clamp(2.25rem, 4vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--color-text);
}

.expertise__list {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.expertise__row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #e5e7eb;
    padding: 4.5rem 0;
    transition: border-color var(--transition-fast);
    cursor: pointer;
    text-decoration: none;
}

.expertise__row:last-child {
    border-bottom: 1px solid #e5e7eb;
}

.expertise__num {
    font-size: 0.85rem;
    font-weight: 400;
    color: #9ca3af;
    width: 10%;
    transition: color var(--transition-fast);
}

.expertise__label {
    font-size: clamp(1.75rem, 2.5vw, 2.5rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    color: var(--color-text);
    width: 40%;
    transition: transform var(--transition-fast), color var(--transition-fast);
}

.expertise__text {
    font-size: clamp(1rem, 1.15vw, 1.15rem);
    font-weight: 300;
    line-height: 1.5;
    color: #4b5563;
    width: 50%;
    max-width: 550px;
    transition: color var(--transition-fast);
}

/* Hover interactions */
.expertise__row:hover {
    border-top-color: var(--color-text);
}

.expertise__row:hover .expertise__num {
    color: var(--color-text);
}

.expertise__row:hover .expertise__label {
    transform: translateX(15px);
}

.expertise__row:hover .expertise__text {
    color: var(--color-text);
}

/* Performance Section */
.performance-section {
    position: relative;
    height: 300vh; /* Scroll room for vertical-to-horizontal animation */
    background-color: #ffffff;
    border-top: 1px solid #f3f4f6;
    z-index: 10;
}

.performance__sticky-wrapper {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    will-change: transform;
}

.performance__container {
    max-width: 100%;
    width: 100%;
    padding: 0 8rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.performance__header {
    margin-bottom: 4rem;
    max-width: 800px;
    padding-left: 2rem;
}

.performance__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #595959;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.performance__title {
    font-size: clamp(2.25rem, 4vw, 4rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--color-text);
}

.performance__track-wrapper {
    position: relative;
    width: 100%;
    overflow: visible; /* Let cards slide out to the right */
    padding: 2rem;
}

.performance__track {
    display: flex;
    gap: 3rem;
    width: max-content;
    will-change: transform;
    transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
}

.performance__card {
    flex: 0 0 380px;
    height: 420px;
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 3.5rem 3rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.01);
    transition: 
        transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
        border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
}

.performance__card-value {
    font-size: clamp(3.5rem, 5vw, 5.5rem);
    font-weight: 300;
    letter-spacing: -0.05em;
    color: var(--color-text);
    line-height: 1;
}

.performance__card-label {
    font-size: clamp(1.4rem, 1.75vw, 1.75rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--color-text);
    margin-top: auto;
    margin-bottom: 1rem;
}

.performance__card-text {
    font-size: clamp(0.95rem, 1vw, 1.05rem);
    font-weight: 300;
    line-height: 1.5;
    color: #4b5563;
    margin: 0;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover effects */
.performance__card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
    border-color: var(--color-text);
    background-color: #ffffff;
}

.performance__card:hover .performance__card-text {
    color: var(--color-text);
}

/* Scroll Reveal classes */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Approche Section */
.approche-section {
    padding: 12rem 4rem;
    background-color: #ffffff;
    border-top: 1px solid #f3f4f6;
    z-index: 10;
    position: relative;
    display: flex;
    justify-content: center;
}

.approche__container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 8rem;
    align-items: start;
}

.approche__left {
    position: relative;
}

.approche__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #595959;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.approche__title {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--color-text);
    margin-bottom: 2.5rem;
}

.approche__intro {
    font-size: clamp(1rem, 1.1vw, 1.15rem);
    font-weight: 300;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 3.5rem;
    max-width: 440px;
}

.approche__cta-wrapper {
    display: flex;
}

.approche__right {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.approche__step {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #f3f4f6;
    padding-top: 2.5rem;
    transition: border-color var(--transition-fast);
    cursor: pointer;
}

.approche__step-num {
    font-size: clamp(3rem, 4vw, 4.5rem);
    font-weight: 200;
    letter-spacing: -0.05em;
    color: #e5e7eb;
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.approche__step-title {
    font-size: clamp(1.4rem, 1.8vw, 1.8rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.approche__step-text {
    font-size: clamp(0.95rem, 1vw, 1.05rem);
    font-weight: 300;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
    max-width: 520px;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.approche__mobile-cta {
    display: none; /* Hidden on desktop */
}

/* Hover interactions */
.approche__step:hover {
    border-top-color: var(--color-text);
}

.approche__step:hover .approche__step-num {
    color: var(--color-text);
}

.approche__step:hover .approche__step-text {
    color: var(--color-text);
}

/* Responsive */
@media (max-width: 768px) {
    .expertise-section {
        padding: 6rem 2rem;
    }
    
    .expertise__header {
        margin-bottom: 4rem;
    }
    
    .expertise__row {
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem 0;
        gap: 1rem;
    }
    
    .expertise__num {
        width: auto;
        margin-bottom: 0.5rem;
    }
    
    .expertise__label {
        width: 100%;
    }
    
    .expertise__text {
        width: 100%;
        max-width: 100%;
    }
    
    .expertise__row:hover .expertise__label {
        transform: none; /* Disable shift on mobile for stability */
    }

    /* Responsive Performance Section */
    .performance-section {
        height: 180vh; /* Scroll room for mobile sticky translation */
        border-top: 1px solid #f3f4f6;
    }
    
    .performance__sticky-wrapper {
        position: sticky;
        top: 0;
        height: 100dvh;
        width: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
        transform: none !important; /* Ignore JS vertical offsets on mobile */
    }
    
    .performance__container {
        padding: 0 2rem;
        box-sizing: border-box;
        width: 100%;
    }
    
    .performance__header {
        margin-bottom: 2rem;
        padding-left: 0;
    }
    
    .performance__track-wrapper {
        position: relative;
        width: 100%;
        overflow: hidden;
        padding: 1rem 0;
    }
    
    .performance__track {
        display: flex;
        gap: 1.5rem;
        width: max-content;
        will-change: transform;
        transition: transform 0.15s cubic-bezier(0.25, 1, 0.5, 1);
    }
    
    .performance__card {
        flex: 0 0 280px;
        height: 320px;
        padding: 2.25rem 1.75rem;
        border-radius: 20px;
        box-sizing: border-box;
    }
    
    .performance__card-value {
        font-size: clamp(2.5rem, 8vw, 3.5rem);
    }
    
    .performance__card:hover {
        transform: none; /* Disable hovering offsets on mobile */
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
        border-color: #e5e7eb;
        background-color: #f9fafb;
    }

    /* Responsive Approche Section */
    .approche-section {
        padding: 8rem 2rem;
    }
    
    .approche__container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .approche__left {
        order: 1;
    }
    
    .approche__right {
        order: 2;
    }
    
    .approche__intro {
        margin-bottom: 0;
        max-width: 100%;
    }
    
    .approche__cta-wrapper {
        display: none; /* Hide left CTA on mobile */
    }
    
    .approche__right {
        gap: 4.5rem;
    }
    
    .approche__step {
        padding-top: 2rem;
        cursor: default;
    }
    
    .approche__mobile-cta {
        display: flex;
        margin-top: 2rem;
    }
    
    /* Disable hover highlight on mobile for touch stability */
    .approche__step:hover {
        border-top-color: #f3f4f6;
    }
    
    .approche__step:hover .approche__step-num {
        color: #e5e7eb;
    }
    
    .approche__step:hover .approche__step-text {
        color: #4b5563;
    }
}

/* ──────────────────────────────────────────────────────────────────────────
   Pricing Section
   ────────────────────────────────────────────────────────────────────────── */
.pricing-section {
    padding: 12rem 4rem;
    background-color: #ffffff;
    border-top: 1px solid #f3f4f6;
    z-index: 10;
    position: relative;
    display: flex;
    justify-content: center;
}

.pricing__container {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8rem;
    align-items: start;
}

.pricing__left {
    position: relative;
}

.pricing__tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    color: #595959;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.pricing__title {
    font-size: clamp(2.5rem, 4vw, 4.5rem);
    font-weight: 500;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: var(--color-text);
    margin-bottom: 2.5rem;
}

.pricing__intro {
    font-size: clamp(1rem, 1.1vw, 1.15rem);
    font-weight: 300;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 3.5rem;
    max-width: 440px;
}

.pricing__intro-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin: 1.2rem 0;
    padding-left: 0.5rem;
}

.pricing__intro-highlights span {
    font-weight: 400;
    color: var(--color-text);
}

.pricing__cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
}

.pricing__cta-sub {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.pricing__cta-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: var(--color-text);
    text-transform: uppercase;
}

.pricing__cta-desc {
    font-size: 0.88rem;
    font-weight: 300;
    color: #4b5563;
    line-height: 1.4;
}

.pricing__right {
    display: flex;
    flex-direction: column;
    gap: 6rem;
}

.pricing__step {
    display: flex;
    flex-direction: column;
    border-top: 1px solid #f3f4f6;
    padding-top: 2.5rem;
    transition: border-color var(--transition-fast);
    cursor: pointer;
}

.pricing__step-tag {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #9ca3af;
    margin-bottom: 1rem;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing__step-title {
    font-size: clamp(1.4rem, 1.8vw, 1.8rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    color: var(--color-text);
    margin-bottom: 1rem;
}

.pricing__step-text {
    font-size: clamp(0.95rem, 1vw, 1.05rem);
    font-weight: 300;
    line-height: 1.6;
    color: #4b5563;
    margin: 0;
    max-width: 520px;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing__bullet-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 1rem 0;
    padding-left: 0.5rem;
}

.pricing__bullet-list span {
    font-weight: 300;
    color: #4b5563;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing__highlights {
    display: block;
    margin-top: 1rem;
    font-weight: 500;
    color: #4b5563;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    transition: color 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing__mobile-cta {
    display: none; /* Hidden on desktop */
}

/* Hover interactions */
.pricing__step:hover {
    border-top-color: var(--color-text);
}

.pricing__step:hover .pricing__step-tag {
    color: var(--color-text);
}

.pricing__step:hover .pricing__step-text {
    color: var(--color-text);
}

.pricing__step:hover .pricing__bullet-list span {
    color: var(--color-text);
}

.pricing__step:hover .pricing__highlights {
    color: var(--color-text);
}

/* Responsive Pricing Section */
@media (max-width: 768px) {
    .pricing-section {
        padding: 8rem 2rem;
    }
    
    .pricing__container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .pricing__intro {
        margin-bottom: 0;
        max-width: 100%;
    }
    
    .pricing__cta-wrapper {
        display: none; /* Hide left CTA on mobile */
    }
    
    .pricing__right {
        gap: 4.5rem;
    }
    
    .pricing__step {
        padding-top: 2rem;
        cursor: default;
    }
    
    .pricing__mobile-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
        margin-top: 3rem;
        padding-top: 3rem;
        border-top: 1px solid #f3f4f6;
        width: 100%;
    }

    .pricing__mobile-cta .pricing__cta-sub {
        align-items: center;
    }
    
    /* Disable hover highlight on mobile for touch stability */
    .pricing__step:hover {
        border-top-color: #f3f4f6;
    }
    
    .pricing__step:hover .pricing__step-tag {
        color: #9ca3af;
    }
    
    .pricing__step:hover .pricing__step-text {
        color: #4b5563;
    }

    .pricing__step:hover .pricing__bullet-list span {
        color: #4b5563;
    }

    .pricing__step:hover .pricing__highlights {
        color: #4b5563;
    }
}

/* ──────────────────────────────────────────────────────────────────────────
   CTA Section (Carte Noire Arrondie sur Fond Blanc - Style Antigravity)
   ────────────────────────────────────────────────────────────────────────── */
.cta-section {
    background-color: #ffffff;
    padding: 2.5rem 0; /* Marge blanche verticale réduite de 2.5rem (marge haut/bas) */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 10;
    width: 100%;
    overflow: hidden;
}

.cta-card {
    width: calc(100% - 2.5rem); /* Marge latérale fine de 1.25rem (20px de chaque côté) */
    max-width: 1720px; /* Élargi pour occuper la quasi-totalité des grands écrans */
    height: clamp(650px, 92vh, 1080px); /* Hauteur immersive à 92% de l'écran (jusqu'à 1080px) */
    background-color: #000000;
    border-radius: 48px; /* Angles très arrondis */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 6rem 8rem;
    box-sizing: border-box;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.12);
    transition: box-shadow var(--transition-slow), border-radius 0.25s ease-out;
    will-change: transform, border-radius;
    transform: scale3d(0.85, 0.85, 1); /* Légèrement plus petit au départ pour l'effet de grandissement */
}

.cta-card:hover {
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.22);
}

/* Texture de fond stellaire (optionnelle mais extrêmement premium) */
.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(white, rgba(255,255,255,.2) 2px, transparent 40px),
        radial-gradient(white, rgba(255,255,255,.15) 1px, transparent 30px),
        radial-gradient(white, rgba(255,255,255,.1) 2px, transparent 40px);
    background-size: 550px 550px, 350px 350px, 250px 250px;
    background-position: 0 0, 40px 60px, 130px 270px;
    opacity: 0.12;
    z-index: 1;
    pointer-events: none;
}

/* Contenu */
.cta-card__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    text-align: left;
}

.cta-card__title {
    font-size: clamp(2.4rem, 4.8vw, 4.8rem);
    font-weight: 500;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 3.5rem;
}

.cta-card__actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* Boutons specifiques (Bouton Blanc et Bouton Outline) */
.btn--white {
    background-color: #ffffff !important;
    color: #000000 !important;
    border-color: #ffffff !important;
}

.btn--white:hover {
    background-color: transparent !important;
    color: #ffffff !important;
    border-color: #ffffff !important;
}

.btn--outline-white {
    background-color: transparent !important;
    color: #ffffff !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
}

.btn--outline-white:hover {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border-color: #ffffff !important;
}

/* Adaptation Responsive */
@media (max-width: 768px) {
    .cta-section {
        padding: 1.5rem 0; /* Marge verticale fine sur mobile */
    }
    
    .cta-card {
        border-radius: 32px; /* Très arrondi également sur mobile */
        padding: 4rem 2rem;
        height: auto;
        min-height: 540px;
        width: calc(100% - 1.5rem); /* Marge latérale fine de 12px sur mobile */
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        transform: scale3d(0.88, 0.88, 1);
    }
    
    .cta-card__glow {
        width: 400px;
        height: 400px;
        left: 50%;
        top: 60%;
    }
    
    .cta-card__title {
        margin-bottom: 2.5rem;
    }
    
    .cta-card__actions {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
        gap: 1rem;
    }
    
    .cta-card__actions .btn {
        width: 100%;
        text-align: center;
    }
}
/* ──────────────────────────────────────────────────────────────────────────
   CTA Card Menu Trigger & Dropdown
   ────────────────────────────────────────────────────────────────────────── */
.cta-card__menu-wrapper {
    position: absolute;
    bottom: 56px;
    right: 56px;
    z-index: 10;
}

.cta-card__menu-trigger {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background-color: rgba(255, 255, 255, 0.03);
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    outline: none;
    transition: background-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                border-color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                color 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-card__arrow {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}


.cta-card__menu-trigger:hover {
    background-color: #000000;
    border-color: #ffffff;
    color: #ffffff;
    transform: scale(1.05);
}

.cta-card__menu-trigger.is-active {
    background-color: #000000;
    border-color: #ffffff;
    color: #ffffff;
}

.cta-card__menu-trigger.is-active .cta-card__arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu - Sleek Dark Glassmorphism matching the Black Card */
.cta-card__dropdown {
    position: absolute;
    bottom: calc(100% + 16px);
    right: 0;
    transform: translateY(10px) scale(0.95);
    transform-origin: bottom right;
    background: rgba(15, 15, 15, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem 2rem;
    min-width: 220px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 110;
}

.cta-card__dropdown.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.cta-card__dropdown-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cta-card__dropdown-link {
    font-size: 0.95rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.cta-card__dropdown-link i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.cta-card__dropdown-link:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.cta-card__dropdown-link:hover i {
    transform: translate(2px, -2px);
}

/* Responsive adjustment for Mobile positioning */
@media (max-width: 768px) {
    .cta-card__menu-wrapper {
        bottom: 24px;
        right: 24px;
    }
}


/* Custom Cursor Design inspired by Lenne Dominique logo */
@media (hover: hover) and (pointer: fine) {
    html, body {
        cursor: url("data:image/svg+xml;base64,${b64_svg1}") 0 0, auto;
    }

    a, button, .btn, .expertise__row, .performance__card, .approche__step, .pricing__step, [role="button"], input[type="submit"], input[type="button"] {
        cursor: url("data:image/svg+xml;base64,${b64_svg2}") 0 0, pointer;
    }
}
