@font-face {
    font-family: "Syne";
    src: url("assets/Syne.ttf") format("truetype");
}

/* ==========================================================================
   # Basics
========================================================================== */

:root {
/* --- All --- */
    --Primary: #207EDE; --PrimaryRGB: 32, 126, 222;
    --DarkPrimary: #134C85; --DarkPrimaryRGB: 19, 76, 133;
    
    --PureBlack: #000; --PureBlackRGB: 0, 0, 0;
    --Charcoal: #1c1c1e; --CharcoalRGB: 28, 28, 30;

    --PureWhite: #fff; --PureWhiteRGB: 255, 255, 255;
    --Background: #e8e2d8; --BackgroundRGB: 232, 226, 216;

    --Muted: #3B3B3B; --MutedRGB: 108, 130, 147;
    --MinMuted: #777777; --MinMutedRGB: 160, 179, 193;
    --LightMuted: #A3A3A3; --LightMutedRGB: 163, 163, 163;

/* --- Infos --- */
    --Online: #4ade80; --OnlineRGB: 74, 222, 128;
    --Success: #22c55e; --SuccessRGB: 34, 197, 94;
    --Danger: #e53e3e; --DangerRGB: 229, 62, 62;

/* --- Hero section --- */
    --Rotation: 0deg;
    --Thickness: 20px;
    --Border: 8px;
    --Gap: 30px;
    --Scale: 0.9;

/* --- Simu Page --- */
    --Borders: #d4cdc4;
    --DarkBorders: #b8b1a8;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none !important;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: clip;
    background: var(--Background);
    font-family: "Syne", sans-serif;

    scrollbar-width: none;
    -ms-overflow-style: none;
    &::-webkit-scrollbar, body::-webkit-scrollbar {display: none;}
}

/* ==========================================================================
   # JS Functions
========================================================================== */

#CursorDot {
    width: 8px;
    height: 8px;
    background: var(--PureWhite);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9999;
    transition: width 0.15s, height 0.15s, background 0.2s, opacity 0.15s;
}
 
#CursorBall {
    width: 28px;
    height: 28px;
    border: 1.5px solid rgba(var(--PureWhiteRGB), 0.6);
    border-radius: 50%;
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 9998;
    background: transparent;
    transition: border-color 0.35s ease;
}

.ReadingProgress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(to right, var(--DarkPrimary), var(--Primary));
    z-index: 1100;
    transition: width 0.08s linear;
    pointer-events: none;
    transition: width 0.2s, height 0.2s, border-color 0.2s, border-radius 0.2s, background 0.2s, opacity 0.2s;
}

/* ==========================================================================
   # NavBar / Footer
========================================================================== */
.NavBar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--PureWhite);
    padding-left: 200px;
    height: 64px;
    font-size: 1rem;
    font-weight: 600;
    box-shadow: rgba(var(--PureBlackRGB), 0.15) 2.4px 2.4px 3.2px;

    .NavLogo {
        display: flex;
        align-items: center;
        flex-shrink: 0;
        text-decoration: none;

        img {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            object-fit: cover;
        }
    }

    .NavLinks {
        display: flex;
        align-items: center;
        gap: 36px;
        list-style: none;
        margin: 0;
        padding: 0;

        li>a{
            position:relative;
            display:inline-block;
            font-size:1.2em;
            background:transparent;
            transition:0.3s ease-in-out; -webkit-transition:0.3s ease-in-out;
            z-index:2;
            color:var(--Primary);
            text-decoration:none;

            &:hover>div{transform:scale(1.3); -webkit-transform:scale(1.3);}
            &:hover>div:after{transition-delay:0.15s; -webkit-transition-delay:0.15s;}
            &:hover>div:before, &:hover>div:after{transform:translateY(16px); -webkit-transform:translateY(16px); opacity:1;}

            &>div {
                font-size:1em;
                text-align:center;
                position:relative;
                z-index:2;
                color:var(--Primary);
                text-decoration:none;
                transition:0.3s ease-in-out; -webkit-transition:0.3s ease-in-out;

                &:after{
                    opacity:0;
                    position:absolute;
                    top:5px;
                    left:0px; 
                    width:100%;
                    content:attr(data-text);
                    color:var(--DarkPrimary);
                    font-size:0.45em;
                    transform:translateY(36px); -webkit-transform:translateY(36px);
                    transition:0.3s ease-in-out; -webkit-transition:0.3s ease-in-out;
                }
            }
        }
    }

    .NavCTA {
        display: flex;
        align-items: center;
        gap: 16px;
        text-decoration: none;

        .SwitchBtn, .SimBtn {height: 44px;}
        .SwitchBtn {
            background: linear-gradient(135deg, var(--Primary) 0%, var(--DarkPrimary) 100%);

            &::before {background-color: var(--PureWhite);}

            .BtnTexts {
                .DefaultText {color: var(--PureWhite);}
                .HoverText {color: var(--Primary);}
            }

            .BtnIcon {
                .Dot {background-color: var(--PureWhite);}
                .Arrow {
                    background: var(--Primary);
                    svg {stroke: var(--PureWhite);}
                }
            }
        }
    }

    .HamburgerBtn {
        display: none;
        background: none;
        border: none;
        cursor: pointer;
        padding: 6px;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 5px;
        width: 38px;
        height: 38px;
        border-radius: 8px;
        transition: background 0.2s ease;

        &:hover {background: rgba(var(--PureBlackRGB), 0.07);}

        &.open .HamburgerLine:nth-child(1) {transform: translateY(7px) rotate(-45deg);}
        &.open .HamburgerLine:nth-child(2) {opacity: 0;}
        &.open .HamburgerLine:nth-child(3) {transform: translateY(-7px) rotate(45deg);}

        .HamburgerLine {
            display: block;
            width: 22px;
            height: 2px;
            background-color: var(--Primary);
            border-radius: 2px;
            transition: transform 0.3s ease, opacity 0.3s ease;
        }
    }
    
    .MobileNav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-sizing: border-box;
        max-width: 100vw;
        background-color: var(--PureWhite);
        box-shadow: 0 12px 40px rgba(var(--PureBlackRGB), 0.12);
        z-index: 999;
        padding: 12px 16px 20px;
        flex-direction: column;
        gap: 2px;
        border-top: 1px solid rgba(var(--PrimaryRGB), 0.5);
        animation: mobileNavIn 0.5s cubic-bezier(0.22, 1, 0.36, 1);

        &.open {display: flex;}

        a {
            display: block;
            padding: 11px 16px;
            text-decoration: none;
            color: var(--Primary);
            font-weight: 800;
            font-size: 0.9rem;
            border-radius: 8px;
            transition: background 0.18s, color 0.18s;

            &:hover {background: rgba(var(--PureBlackRGB), 0.05);}
        }

        .Divider {
            height: 1px;
            background: rgba(var(--PrimaryRGB), 0.5);
            margin: 8px 0;
        }

        .CTA {
            display:flex;
            flex-direction: row;
            margin-top: 6px;
            justify-content: space-between;

            a {
                text-decoration: none;
                padding: 10px 24px;
                border-radius: 50px;
                box-shadow: 0 2px 2px rgba(var(--PureBlackRGB), 0.25);
                font-weight: 800;
                font-size: 0.9rem;
                transition: all 0.3s ease;
                border: none;              

                &.BtnOutline {
                    color: var(--Primary);
                    border: 1px solid var(--Primary);
                }

                &.BtnSolid {
                    color: var(--PureWhite);
                    background-color: var(--Primary);
                }
            }
        }
    }
}

@keyframes mobileNavIn {
    from {opacity: 0; transform: translateY(-6px);}
    to   {opacity: 1; transform: translateY(0);}
}

.Footer {
    background-color: #071C32;
    color: var(--PureWhite);
    padding: 60px 20px 20px;
    margin-top: auto;

    .FooterAccent {
        height: 2px;
        background: linear-gradient(to right, transparent, var(--Primary) 20%, var(--Primary) 50%, var(--Primary) 80%, transparent);
        margin-bottom: 60px;
        opacity: 0.6;
    }

    .FooterContainer {
        max-width: 1200px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 40px;
        padding-bottom: 40px;
        border-bottom: 1px solid rgba(var(--PureWhiteRGB), 0.1);

        .FooterCol {
            .FooterLogo {
                font-size: 2rem;
                font-weight: 900;
                color: var(--PureWhite);
                margin-bottom: 15px;
            }

            .FooterBadge {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                background-color: rgba(var(--PureWhiteRGB), 0.12);
                border: 1px solid rgba(var(--PureWhiteRGB), 0.32);
                color: var(--PureWhite);
                font-size: 0.8rem;
                font-weight: 600;
                padding: 5px 12px;
                border-radius: 50px;
                margin-bottom: 16px;

                .FooterBadgeDot {
                    width: 7px;
                    height: 7px;
                    border-radius: 50%;
                    background-color: var(--Online);
                    box-shadow: 0 0 0 0 rgba(var(--OnlineRGB), 0.6);
                    animation: Pulse 2s infinite;
                    flex-shrink: 0;
                }
            }

            .FooterDesc {
                font-size: 0.95rem;
                line-height: 1.6;
                color: var(--LightMuted);
                text-transform: none;
                margin-bottom: 20px;
            }

            .FooterTitle {
                font-size: 1.2rem;
                font-weight: 700;
                margin-bottom: 20px;
                color: var(--PureWhite);
            }

            .FooterLinks {
                list-style: none;
                padding: 0;

                li {
                    margin-bottom: 12px;

                    >a {
                        color: var(--LightMuted);
                        text-decoration: none;
                        font-size: 0.95rem;
                        transition: color 0.3s ease, padding-left 0.3s ease;

                        &:hover {
                            color: var(--Primary);
                            padding-left: 5px;

                            span.FooterLinkArrow {
                                opacity: 1;
                                transform: translateX(0);
                            }
                        }

                        span.FooterLinkArrow {
                            display: inline-block;
                            margin-right: 7px;
                            color: var(--Primary);
                            opacity: 0;
                            transform: translateX(-6px);
                            transition: opacity 0.25s ease, transform 0.25s ease;
                            font-style: normal;
                        }
                    }
                }
            }

            .FooterSocialLinks a {
                display: flex;
                align-items: center;
                gap: 10px;

                &:hover .FooterIcon {
                    background-color: var(--Primary);

                    svg {stroke: var(--PureWhite);}
                }

                .FooterIcon {
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    width: 30px;
                    height: 30px;
                    border-radius: 8px;
                    background-color: rgba(var(--PrimaryRGB), 0.1);
                    flex-shrink: 0;
                    transition: background-color 0.3s ease;

                    svg {
                        width: 14px;
                        height: 14px;
                        stroke: var(--Primary); 
                        fill: none;
                        stroke-width: 2;
                        stroke-linecap: round;
                        stroke-linejoin: round;
                    }
                }
            }
        }
    }

    .FooterBottom {
        text-align: center;
        padding-top: 10px;
        font-size: 0.85rem;
        color: var(--MinMuted);
        display: flex;
        align-items: center;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;

        p {
            text-transform: none;
            font-size: 0.85rem;
        }

        .FooterTerms {
            display: flex;
            gap: 20px;

            .FooterLinks {
                list-style: none;
                align-items: center;
                display: flex;
                gap: 20px;
                padding: 0;
                pointer-events: auto;

                li>a {
                    color: var(--MinMuted);
                    position: relative;
                    text-decoration: none;
                    font-size: 0.8rem;
                    line-height: 1.6;
                    width: fit-content;
                    transition: all 0.3s ease;

                    &:hover {
                        color: var(--Primary);

                        &::before {transform: scaleX(1);}
                    }

                    &::before {
                        content: "";
                        position: absolute;
                        display: block;
                        width: 100%;
                        height: 2px;
                        bottom: 0;
                        left: 0;
                        background-color: var(--Primary);
                        transform: scaleX(0);
                        transform-origin: top right;
                        transition: transform 0.3s ease;
                    }
                }
            }
        }
        
        .FooterBackTop {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            border: 1px solid rgba(var(--PureWhiteRGB), 0.15);
            background-color: rgba(var(--PureWhiteRGB), 0.05);
            cursor: pointer;
            transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.25s ease;
            flex-shrink: 0;

            &:hover {
                background-color: var(--Primary);
                border-color: var(--Primary);
                transform: translateY(-3px);

                svg {stroke: var(--PureWhite);}
            }

            svg {
                width: 16px;
                height: 16px;
                stroke: var(--MinMuted);
                fill: none;
                stroke-width: 2.5;
                stroke-linecap: round;
                stroke-linejoin: round;
                transition: stroke 0.3s ease;
            }
        }
    }
}

@keyframes Pulse {
    0%   {box-shadow: 0 0 0 0 rgba(var(--OnlineRGB), 0.6);}
    70%  {box-shadow: 0 0 0 8px rgba(var(--OnlineRGB), 0);}
    100% {box-shadow: 0 0 0 0 rgba(var(--OnlineRGB), 0);}
}

@keyframes PulsePrimary {
    0%   {box-shadow: 0 0 0 0 rgba(var(--PrimaryRGB), 0.5);}
    70%  {box-shadow: 0 0 0 8px rgba(var(--PrimaryRGB), 0);}
    100% {box-shadow: 0 0 0 0 rgba(var(--PrimaryRGB), 0);}
}

/* ==========================================================================
   # Global Styles
========================================================================== */
section {
    max-width: 1400px;
    margin: 100px auto 0;
}

.SectionTitle {
    text-align: center;
    margin: 0 auto 64px;

    &.Left {
        text-align: left;
        margin: 0 0 36px;
    }

    span.Eyebrow {
        display: block;
        font-size: 0.82rem;
        font-weight: 800;
        text-transform: uppercase;
        color: var(--Primary);
        margin-bottom: 12px;
    }

    h2.Title {
        font-size: clamp(2rem, 4vw, 2.75rem);
        font-weight: 800;
        color: var(--Charcoal);
    }

    p.Subtitle {
        font-size: 1.05rem;
        color: var(--Muted);
        line-height: 1.6;
        margin-top: 12px;
    }
}

.Card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-radius: 20px;
    background: rgba(var(--PrimaryRGB), 0.025);
    border: 1px solid rgba(var(--PureBlackRGB), 0.1);
    padding: 32px;
    box-shadow: 0 4px 24px rgba(var(--PureBlackRGB), 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;

    &:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 32px rgba(var(--PureBlackRGB), 0.1);

        .ArrowLink svg {transform: rotate(360deg);}
    }

    h3 {
        font-size: 1.2rem;
        font-weight: 800;
        color: var(--PureBlack);
    }

    > p {
        flex: 1;
        font-size: 0.92rem;
        line-height: 1.6;
        color: var(--Muted);
    }

    .CardHead {
        display: flex;
        align-items: center;
        gap: 18px;
        margin-bottom: 22px;

        h3 {
            font-size: 1.15rem;
            font-weight: 800;
            color: var(--Charcoal);
            margin-bottom: 4px;
        }

        p {
            font-size: 0.95rem;
            color: var(--Muted);
        }
    }

    .Link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        font-size: 0.85rem;
        font-weight: 700;
        color: var(--Primary);
        text-decoration: none;

        .Arrow {display: inline-block; transition: transform 0.3s cubic-bezier(.22,1,.36,1);}
        &:hover .Arrow {transform: translateX(4px);}
    }

    .ArrowLink {
        color: var(--Primary);
        flex-shrink: 0;
        display: flex;
        align-items: center;
        gap: 6px;

        svg {width: 18px; height: 18px; stroke: currentColor; transition: transform 0.5s cubic-bezier(.22,1,.36,1);}
    }
}

.IconBox {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--Primary) 0%, var(--DarkPrimary) 100%);
    box-shadow: 0 8px 20px rgba(var(--PrimaryRGB), 0.3);
    display: flex;
    align-items: center;
    justify-content: center;

    svg {width: 24px; height: 24px; stroke: var(--PureWhite);}
}

.BtnMain, .BtnSolid, .BtnGhost, .SimBtn, .SwitchBtn, .SlideBtn, .ArrowBtn {
    width: auto;
    height: auto;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    font-size: inherit;
    text-decoration: none;
    border: none;
    border-radius: 999px;
    cursor: pointer;
}

.SwitchBtn {
    position: relative;
    justify-content: space-between;
    gap: 8px;
    padding: 0 10px 0 32px;
    background: var(--PureWhite);
    overflow: hidden;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    box-shadow: rgba(var(--PureBlackRGB), 0.15) 2.4px 2.4px 3.2px;

    &:hover::before {clip-path: circle(150% at calc(100% - 34px) 50%);}

    &::before {
        content: '';
        position: absolute;
        inset: 0;
        background: var(--Primary);
        border-radius: inherit;
        clip-path: circle(0% at calc(100% - 34px) 50%);
        transition: clip-path 0.6s cubic-bezier(0.76, 0, 0.24, 1);
        z-index: 0;
    }

    .BtnTexts {
        position: relative;
        z-index: 1;
        height: 28px;
        overflow: hidden;
    
        span {
            display: block;
            font-size: 1.15rem;
            font-weight: 500;
            line-height: 28px;
            white-space: nowrap;
            transition: transform 0.45s cubic-bezier(0.76, 0, 0.24, 1), color 0.3s ease;
        }

        .DefaultText {
            color: var(--Primary);
            transform: translateY(0);
        }

        .HoverText {
            color: var(--PureWhite);
            position: absolute;
            top: 0;
            left: 0;
            transform: translateY(100%);
        }
    }

    &:hover .DefaultText {transform: translateY(-100%);}
    &:hover .HoverText {transform: translateY(0);}

    .BtnIcon {
        position: relative;
        z-index: 1;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        flex-shrink: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: background 0.35s ease, transform 0.35s ease;

        .Dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--Primary);
            flex-shrink: 0;
            transition: opacity 0.25s ease, transform 0.25s ease;
            position: absolute;
        }

        .Arrow {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--PureWhite);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: scale(0.4);
            transition: opacity 0.3s ease 0.1s, transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s;
    
            svg {
                width: 20px;
                height: 20px;
                stroke: var(--Primary);
                stroke-width: 2;
                fill: none;
                stroke-linecap: round;
                stroke-linejoin: round;
            }
        }
    }

    &:hover .Dot {opacity: 0; transform: scale(0);}
    &:hover .Arrow {opacity: 1; transform: scale(1);}
}

.SlideBtn {
    align-self: flex-start;
    gap: 12px;
    outline: none;
    color: var(--Primary);
    background: var(--PureWhite);
    border: 2px solid var(--Primary);
    position: relative;
    overflow: hidden;
    z-index: 0;
    box-shadow: 0 4px 14px rgba(var(--PureBlackRGB), 0.12);
    transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, color .4s ease-in-out, border-color .4s ease-in-out;

    &:before {
        content: '';
        position: absolute;
        inset: -2px;
        background: linear-gradient(135deg, var(--Primary) 0%, var(--DarkPrimary) 100%);
        transform: scaleX(0);
        transform-origin: left;
        transition: transform .45s cubic-bezier(.65,0,.35,1);
        z-index: -1;
    }

    .Arrow {
        display: inline-block;
        transition: transform .4s cubic-bezier(.22,1,.36,1);
    }

    &:hover {
        color: var(--PureWhite);
        border-color: transparent;
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(var(--PrimaryRGB), 0.35);

        &:before {transform: scaleX(1);}
        .Arrow {transform: translateX(5px);}
    }

    &:active {
        transform: translateY(-1px);
        box-shadow: 0 6px 16px rgba(var(--PrimaryRGB), 0.3);
    }
} 

.BtnMain {
    width: 100%;
    background: linear-gradient(135deg, var(--Primary) 0%, var(--DarkPrimary) 100%);
    color: var(--PureWhite);
    font-weight: 700;
    transition: transform 0.15s, box-shadow 0.15s;

    &:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(var(--PrimaryRGB), 0.30);
    }

    &:active {transform: translateY(0);}
    &:disabled {opacity: 0.5; cursor: not-allowed; transform: none;}
}

.BtnSolid {
    gap: 8px;
    background-color : var(--Primary);
    color: var(--PureWhite);
    font-weight: 800;
    transition: all 0.3s ease;
    
    &:hover {
        background-color: var(--PureWhite);
        border: 1.5px solid var(--Primary);
        color: var(--Primary);
        transform: translateY(-2px);
        box-shadow: 0 8px 20px rgba(var(--PrimaryRGB), 0.3);
    }
}

.BtnGhost {
    background: transparent;
    color: var(--Muted);
    font-weight: 500;
    border: 1px solid var(--Borders);
    transition: all 0.15s;

    &:hover {
        border-color: var(--Primary);
        color: var(--Primary);
        background: rgba(var(--PrimaryRGB) 0.2);
    }
}

.SimBtn {
    display: flex;
    justify-content: center;
    line-height: 35px;
    border: 1px solid var(--Primary);
    color: var(--Primary);
    text-align: center;
    transition: all 0.35s;
    transition-delay: 0.3s;
    position: relative;
    overflow: hidden;
    box-shadow: rgba(var(--PureBlackRGB), 0.15) 2.4px 2.4px 3.2px;

    &:hover {
        border-color: var(--Primary);
        color: rgba(var(--PrimaryRGB), 0);

        &::before {
            opacity: 1;
            transform: translateX(0);
            transition-delay: 0.15s;
        }
    }

    &::before {
        width: 100%;
        position: absolute;
        top: 3px;
        left: 0;
        opacity: 0;
        content: attr(data-hover);
        color: var(--Primary);
        transform: translateX(-60%);
        transition: all 0.4s;
        z-index: 1;
    }
}

.ArrowBtn {
    display: inline-flex;
    gap: 10px;
    background: var(--PureWhite);
    color: var(--Charcoal);
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 14px rgba(var(--PureBlackRGB), 0.2);
    transition: transform 0.3s cubic-bezier(.22,1,.36,1), box-shadow 0.3s ease, color .4s ease-in-out;

    .Arrow {display: inline-block; transition: transform 0.3s cubic-bezier(.22,1,.36,1);}

    &:hover {
        color: var(--Primary);
        box-shadow: 0 12px 28px rgba(var(--PureWhiteRGB), 0.25);

        .Arrow {transform: translate(3px, -3px);}
    }
}

.SecondaryHero {
    max-width: 100%;
    min-height: 400px;
    margin: 0;
    display: flex;
    position: relative;
    background-color: var(--Charcoal);
    overflow: hidden;
    padding: 160px 40px 90px;
    align-items: center;

    &::before {
        content: "";
        position: absolute;
        inset: 0;
        background:
            radial-gradient(ellipse 60% 80% at 85% 20%, rgba(var(--PrimaryRGB), 0.2) 0%, transparent 70%),
            radial-gradient(ellipse 45% 60% at 5% 90%, rgba(var(--DarkPrimaryRGB), 0.28) 0%, transparent 60%);
        pointer-events: none;
    }

    .Decor {
        position: absolute;
        right: -20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
        pointer-events: none;
        user-select: none;
        display: flex;
        flex-direction: column;
        align-items: flex-end;

        span {
            font-size: clamp(5rem, 12vw, 11rem);
            font-weight: 900;
            line-height: 0.9;
            color: transparent;
            -webkit-text-stroke: 1.5px rgba(var(--PrimaryRGB), 0.15);
            white-space: nowrap;
        }
    }

    .HeroInner {
        position: relative;
        z-index: 2;
        max-width: 1400px;
        margin: 0 auto;
        text-align: center;

        .Breadcrumb {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 0.78rem;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--MinMuted);
            margin-bottom: 24px;

            a {color: var(--MinMuted); text-decoration: none; transition: color 0.2s ease;}
            a:hover {color: var(--Primary);}
            .Sep {opacity: 0.5;}
            .Current {color: var(--Primary);}
        }

        .Category {
            display: inline-block;
            padding: 6px 18px;
            border-radius: 50px;
            background: rgba(var(--PrimaryRGB), 0.14);
            color: var(--Primary);
            font-size: 0.72rem;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 24px;
        }

        h1.Title {
            font-size: clamp(2.8rem, 7vw, 5.5rem);
            font-weight: 900;
            color: var(--PureWhite);
            line-height: 1;
            margin-bottom: 20px;
        }

        p.SubTitle {
            font-size: 0.95rem;
            font-weight: 500;
            color: var(--MinMuted);
            line-height: 1.65;
            text-transform: none;
        }

        .Meta {
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 14px;
            font-size: 0.88rem;
            font-weight: 600;
            color: var(--MinMuted);

            .Dot {width: 4px; height: 4px; border-radius: 50%; background: var(--MinMuted); flex-shrink: 0;}
        }
    }
}

/* ==========================================================================
   # Calls To Action
========================================================================== */
section.CallToAction {
    margin: 100px auto;

    .Design {
        flex-direction: row;
        position: relative;
        overflow: hidden;
        background: var(--Charcoal);
        border-radius: 32px;
        padding: 72px 64px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 60px;
        box-shadow: 0 24px 70px rgba(var(--PureBlackRGB), 0.16);

        &::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 55% 80% at 12% 20%, rgba(var(--PrimaryRGB), 0.35) 0%, transparent 70%),
                radial-gradient(ellipse 45% 65% at 95% 90%, rgba(var(--DarkPrimaryRGB), 0.45) 0%, transparent 60%);
            pointer-events: none;
        }

        .Text, .Action {
            position: relative;
            z-index: 2;
        }

        .Text h2 {
            font-size: clamp(1.9rem, 3.6vw, 2.8rem);
            font-weight: 900;
            color: var(--PureWhite);
            line-height: 1.18;

            em {
                font-style: italic;
                background: linear-gradient(90deg, var(--PureWhite) 0%, var(--Primary) 100%);
                -webkit-background-clip: text;
                background-clip: text;
                color: transparent;
            }
        }

        .Action {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
            flex-shrink: 0;
            max-width: 320px;

            p {
                font-size: 0.92rem;
                line-height: 1.6;
                color: rgba(var(--PureWhiteRGB), 0.7);
            }
        }
    }
}

section.DesignedCTA {
    max-width: 100%;
    margin: 0;

    .Waves {
        display: block;
        width: 100%;
        height: 120px;

        &.WaveBottom {transform: scaleX(-1) scaleY(-1);}

        .WaveEchos {
            fill-opacity: 0.4;
            transform-box: fill-box;

            &.WaveEchoFar {
                transform-origin: center bottom;
                animation: waveDriftFar 9s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
                animation-delay: -3.2s;
            }

            &.WaveEchoNear {
                fill-opacity: 0.65;
                transform-origin: center bottom;
                animation: waveDriftNear 6.5s cubic-bezier(0.45, 0.05, 0.55, 0.95) infinite;
                animation-delay: -1.4s;
            }
        }
    }

    section.CTA {
        max-width: 100%;
        margin: 0;
        position: relative;
        overflow: hidden;
        background: linear-gradient(90deg, var(--Charcoal) 0%, var(--DarkPrimary) 100%);
        padding: 20px 40px;
        text-align: center;

        .Content {
            position: relative;
            z-index: 1;
            max-width: 800px;
            margin: 0 auto;
        }

        .Badge {
            display: inline-flex;
            align-items: center;
            gap: 9px;
            background-color: rgba(var(--PureWhiteRGB), 0.12);
            border: 1px solid rgba(var(--PureWhiteRGB), 0.3);
            color: var(--PureWhite);
            font-size: 0.8rem;
            font-weight: 800;
            padding: 7px 18px;
            border-radius: 50px;
            margin-bottom: 24px;

            &::before {
                content: "";
                width: 7px;
                height: 7px;
                border-radius: 50%;
                background-color: var(--Online);
                box-shadow: 0 0 0 0 rgba(var(--OnlineRGB), 0.6);
                animation: Pulse 2s infinite;
                flex-shrink: 0;
            }
        }

        h2 {
            color: var(--PureWhite);
            font-size: clamp(1.8rem, 3.5vw, 2.5rem);
            font-weight: 900;
            margin-bottom: 16px;
        }

        p {
            color: var(--LightMuted);
            font-size: 1rem;
            line-height: 1.7;
            margin: 0 auto 34px;
        }

        .Buttons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;

            a {
                text-decoration: none;
                padding: 15px 34px;
                border-radius: 50px;
                font-size: 0.85rem;
                font-weight: 800;
                transition: all 0.3s ease;

                &:hover {box-shadow: 0 12px 14px rgba(var(--PureWhiteRGB), 0.25);}
            }  
        }
    }
}


@keyframes waveDriftFar {
    0%   {transform: translate(0px, 0px) scale(1.03) skewX(0deg);}
    25%  {transform: translate(-9px, -4px) scale(1.045) skewX(-0.5deg);}
    50%  {transform: translate(-15px, 3px) scale(1.06) skewX(0deg);}
    75%  {transform: translate(-6px, 5px) scale(1.045) skewX(0.5deg);}
    100% {transform: translate(0px, 0px) scale(1.03) skewX(0deg);}
}

@keyframes waveDriftNear {
    0%   {transform: translate(0px, 0px) scale(1.03) skewX(0deg);}
    25%  {transform: translate(9px, 4px) scale(1.05) skewX(0.5deg);}
    50%  {transform: translate(16px, -3px) scale(1.07) skewX(0deg);}
    75%  {transform: translate(6px, -5px) scale(1.05) skewX(-0.5deg);}
    100% {transform: translate(0px, 0px) scale(1.03) skewX(0deg);}
}

/* ==========================================================================
   # JS Multiblocks
========================================================================== */
section.Merge {
    max-width: 1400px;
    margin: 10rem auto;
    padding: 0 20px;

    .ListContainer {
        position: relative;
        display: flex;
        gap: 2rem;

        .ListText {
            height: max-content;
            position: sticky;
            top: 50vh;
            color: var(--PureBlack);
            font-size: clamp(2.5rem, 6vw, 6rem);
            font-weight: 600;
            margin: 0;
            transform: translateY(-50%);
            white-space: nowrap;
        }

        .List {
            list-style: none;
            font-size: clamp(2.5rem, 6vw, 6rem);
            font-weight: 600;
            margin: 0;
            padding: 0;
            padding-top: 50vh;
            padding-bottom: 50vh;
            text-transform: capitalize;

            li {
                color: var(--Primary);
                line-height: 1.2;
                opacity: 0.15;
                margin-bottom: 10px;
                transition: opacity 0.3s ease-in-out;
            }
        }
    }
}   

@supports (animation-timeline: view()) {
    section.Merge .List li {
        animation: Bright both linear;
        animation-timeline: view();
        animation-range: cover calc(50% - 9rem) calc(50% + 9rem);
    }
}

@keyframes fadeInLetter {to {opacity: 1; transform: translateY(0);}}
@keyframes drawCircle {to {stroke-dashoffset: 0;}}

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

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

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

@keyframes Bright {
    0% {opacity: 0.15;}
    50% {opacity: 1;}
    100% {opacity: 0.15;}
}

section.Me {
    max-width: 1400px;
    margin: 0 auto 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;

    svg {
    	width: 70vw;
	    height: auto;
    	aspect-ratio: 1/1;

	    #LennouilleClip {
            transform-origin: center;
    		transition: ease-out transform .4s;
	    }

	    &:hover {
		    #LennouilleClip {transform: scale(1.15) translate(0%, 0%);}

    		.TextContent{
	    		fill: var(--PureWhite);
		    	mix-blend-mode: overlay;
    		}
	    }

        .TextContent {
    	    font-weight: 900; 
            font-size: 0.38rem;
	        letter-spacing: 1.5px;
    	    fill: var(--DarkPrimary);
	        mix-blend-mode: normal;
	        transition: ease fill .5s;
        }
    }
    
    .Text {
        display: flex;
        flex-direction: column;
        gap: 20px;
        font-weight: 400; 
        font-size: 1.1em;

        .Desc {
            display: flex;
            flex-direction: column;
            gap: 10px;

            p {text-align: justify ;}

            ul {
                margin-top: 10px;
                list-style: disc;
                padding-left: 20px;

                li {
                    margin-bottom: 5px;

                    &::marker, strong {color: var(--DarkPrimary)}
                }
            }
        } 
    }
}

/* ==========================================================================
   # All Pages
========================================================================== */
main.Index {
    section.Hero {
        max-width: 100%;
        margin: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        visibility: hidden;
        width: 100vw;
        height: 100vh;

        .Box {
            position: absolute;
            display: flex;
            align-items: center;
            justify-content: center;
            width: 150vw;
            height: 150vh;
            transform: translate(-10vw, 20px);

            &#Ground {
                z-index: 5;
                backGround: linear-gradient(var(--Rotation), transparent 50%, var(--Primary) 50%);
            }

            &#Air {
                z-index: 10;
                backGround:
                    linear-gradient(var(--Rotation), transparent calc(50% - var(--Thickness) - var(--Border)),
                    var(--Background) calc(50% - var(--Thickness) - var(--Border)),
                    var(--Background) calc(50% - var(--Thickness)),
                    color-mix(in oklab, var(--Background), var(--Primary) 40%) calc(50% - var(--Thickness)),
                    color-mix(in oklab, var(--Background), var(--Primary) 40%) calc(50% + var(--Thickness)),
                    var(--Primary) calc(50% + var(--Thickness)),
                    var(--Primary) calc(50% + var(--Thickness) + var(--Border)), transparent calc(50% + var(--Thickness) + var(--Border)));
                backGround-repeat: no-repeat;
            }

            &#Text {
                z-index: 15;
        
                .SubBox {
                    display: flex;
                    flex-direction: column;
                    gap: var(--Gap);
                    text-align: center;
                    font-size: 20px;
                    transform: rotate(var(--Rotation)) scale(var(--Scale));

                    .SubText {
                        display: inline;
                        width: fit-content;
                        position: relative;
                        overflow: visible;
                        padding: 15px;
                        margin: 0px;
                        font-weight: 800;
                        font-size: 80px;
                        line-height: 65px;
                        border-radius: 5px;
                        paint-order: stroke fill;

                        &#SubT1 {
                            margin-right: 150px;
                            padding-top: 10px;
                            padding-bottom: 0px;
                            -webkit-text-stroke: 18px var(--Primary);
                            color: var(--Background);

                            h1 {
                                font-size: inherit;
                                line-height: inherit;
                                font-weight: inherit;
                            }
                        
                            span {
                                &.T1A {right: -50px; bottom: 0px;}
                                &.T1B {right: 15px; bottom: 60px;}
                                &.T1C {right: -90px; bottom: 0px;}
                                &.T1D {right: 45px; bottom: 120px;}
                                &.T1E {right: -5px; bottom: 120px;}
                            }
                        }

                        &#SubT2 {
                            margin-left: 110px;
                            padding-bottom: 10px;
                            padding-top: 0px;
                            -webkit-text-stroke: 18px var(--Background);
                            color: var(--Primary);

                            h1 {
                                font-size: inherit;
                                line-height: inherit;
                                font-weight: inherit;
                                text-transform: uppercase;
                            }

                            span {
                                &.T2A {left: -50px; top: 0px;}
                                &.T2B {left: 15px; top: 60px;}
                                &.T2C {left: -100px; top: 0px;}
                                &.T2D {left: 45px; top: 120px}
                                &.T2E {left: -5px; top: 120px;}
                            }
                        }

                        span {
                            position: absolute;
                            line-height: auto;
                            -webkit-Text-stroke-width: 9px;
                            white-space: nowrap;
                            text-transform: uppercase;

                            div {transform: rotate(90deg);}

                            &.TS26 {font-size: 26px; font-weight: 400;}
                            &.TS30 {font-size: 30px; font-weight: 600;}
                            &.TS46 {
                                font-size: 46px; font-weight: 900;
                                div {transform: rotate(0deg);}
                            }

                            &.VT {
                                writing-mode: vertical-rl;
                                text-orientation: upright;
                            }
                        }
                    }
                }
            }
        }
    }

    section.Scroll {
        height: 400vh;
        position: relative;
        background-color: var(--Background);

        .Wrapper {
            height: 100vh;
            position: sticky;
            top: 0;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;

            .TextReveal {
                max-width: 900px;
                text-align: center;
                font-size: clamp(1.5rem, 3vw, 2.5rem);
                font-weight: 700;
                line-height: 1.4;
                margin: 0;
                padding: 20px;
            }

            .Word {
                display: inline-block;
                background-color: var(--Background);
                color: transparent;
                border-radius: 3px;
                margin: 2px;
                padding: 0 4px;
                transition:
                    background-color 0.1s,
                    color 0.1s;

                &.Revealed {
                    background-color: transparent;
                    color: var(--DarkPrimary);
                }
            }
        }
    }

    section.Impact {
        position: relative;
        overflow: hidden;
        padding: 56px 48px;
        text-align: center;
        border-radius: 28px;
        background: var(--Charcoal);
        box-shadow: 0 24px 70px rgba(var(--PureBlackRGB), 0.16);

        &::before {
            content: "";
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 55% 80% at 12% 20%, rgba(var(--PrimaryRGB), 0.35) 0%, transparent 70%),
                radial-gradient(ellipse 45% 65% at 95% 90%, rgba(var(--DarkPrimaryRGB), 0.45) 0%, transparent 60%);
            pointer-events: none;
        }

        .SectionTitle .Title {color: var(--PureWhite);}

        .StatsGrid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-bottom: 36px;
        }

        .Card {
            position: relative;
            overflow: hidden;
            text-align: left;
            background: var(--PureWhite);

            .Deco {
                position: absolute;
                top: 0;
                right: 0;
                width: 68px;
                height: 68px;
                background: linear-gradient(135deg, var(--Primary) 0%, var(--DarkPrimary) 100%);
                border-radius: 0 20px 0 100%;
            }

            .Stat {
                .Number {
                    font-size: clamp(1.7rem, 2.6vw, 2.1rem);
                    font-weight: 900;
                    color: var(--Primary);
                    line-height: 1;
                }

                .StatLabel {
                    display: block;
                    font-size: 0.95rem;
                    font-weight: 800;
                    color: var(--Charcoal);
                    margin-top: 4px;
                }
            }
        }
    }

    section.Why {
        background-color: var(--Background);
        display: flex;
        flex-direction: column;

        h2 {
            display: block;
            font-size: clamp(2rem, 4.5vw, 4rem);;
            font-weight: 900;
            color: var(--Charcoal);
            line-height: 1.10;
            margin-bottom: 36px;
        }

        .Layout {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            column-gap: 50px;
            justify-content: space-between;

            .Card {
                display: flex;
                flex-direction: column;
                gap: 10px;

                h4 {
                    font-size: 0.8rem;
                    font-weight: 800;
                    color: var(--DarkPrimary);
                    text-transform: uppercase;
                    line-height: 1.2;
                }

                p {
                    font-size: 1rem;
                    font-weight: 400;
                    color: var(--Charcoal);
                    line-height: 1.5;
                    text-align: justify;
                }

                .CardImg {
                    overflow: hidden;
                    background-color: var(--Background);
                    border: 3px solid var(--Primary);

                    img {
                        width: 100%;
                        height: auto;
                        object-fit: cover;
                        display: block;
                        transition: filter 0.4s ease;
                    }
                }

                &:nth-of-type(2) {justify-content: center;}
                &:nth-of-type(3) {justify-content: flex-end;}
            }
        }
    }

    section.Benefits {
        background-color: var(--Background);

        .Layout {
            display: grid;
            grid-template-columns: 1fr auto 1fr;
            column-gap: 60px;
            align-items: start;
        }

        .Column {
            max-width: 340px;

            .Eyebrow {
                display: block;
                font-size: 0.82rem;
                font-weight: 800;
                text-transform: uppercase;
                color: var(--Primary);
                margin-bottom: 14px;
            }

            p {
                font-size: 0.95rem;
                font-weight: 400;
                line-height: 1.6;
                color: var(--Charcoal);
                text-align: justify;
            }

            &:last-child {
                justify-self: end;
                text-align: left;
            }
        }

        .Stat {
            text-align: center;
            padding-top: 6px;

            .Number {
                font-size: clamp(2.4rem, 4vw, 3.2rem);
                font-weight: 900;
                color: var(--Primary);
                line-height: 1;
                white-space: nowrap;
            }

            .Label {
                font-size: 0.9rem;
                font-weight: 800;
                text-transform: uppercase;
                color: var(--Charcoal);
                margin-top: 10px;
            }
        }
    }

    section.Gallery {
        .SectionTitle h2.Title {font-size: 2.71rem;}
        
        .Grid {
            column-count: 3;
            column-gap: 24px;

            img {
                display: block;
                width: 100%;
                margin-bottom: 24px;
                border-radius: 16px;
                object-fit: cover;
                box-shadow: 0 8px 30px rgba(var(--PureBlackRGB), 0.08);
                break-inside: avoid;
                transition: transform 0.4s ease;

                &:hover {transform: translateY(-4px);}
            }
        }
    }

    section.LatestPosts {
        .SectionHeader {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 40px;
            margin-bottom: 40px;
        }

        .BlogGrid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
        }

        .BlogCard {
            display: flex;
            flex-direction: column;
            background: var(--PureWhite);
            border-radius: 18px;
            padding: 28px 26px;
            text-decoration: none;
            box-shadow: 0 4px 24px rgba(var(--PureBlackRGB), 0.06);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;

            &::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: var(--Primary);
            }

            &:hover {
                transform: translateY(-6px);
                box-shadow: 0 16px 40px rgba(var(--PureBlackRGB), 0.12);

                .CardFooter .Arrow {transform: translateX(4px);}
            }

            .CardTop {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 12px;
                margin-bottom: 16px;

                .Category {
                    font-size: 0.68rem;
                    font-weight: 800;
                    text-transform: uppercase;
                    color: var(--Primary);
                }

                .ReadTime {
                    font-size: 0.72rem;
                    font-weight: 600;
                    color: var(--MinMuted);
                    flex-shrink: 0;
                }
            }

            h3 {
                font-size: 1.15rem;
                font-weight: 800;
                color: var(--Charcoal);
                line-height: 1.35;
                margin-bottom: 10px;
            }

            p {
                font-size: 0.86rem;
                line-height: 1.6;
                color: var(--Muted);
                margin-bottom: 20px;
                flex-grow: 1;
                overflow: hidden;
            }

            .CardFooter {
                display: flex;
                align-items: center;
                justify-content: space-between;
                font-size: 0.78rem;
                font-weight: 700;
                color: var(--DarkPrimary);
                margin-top: auto;

                time {color: inherit;}

                .Arrow {transition: transform 0.25s ease;}
            }

            &.ComingSoon {
                cursor: default;
                align-items: center;
                text-align: center;
                background: var(--Background);
                box-shadow: none;
                border: 1.5px dashed var(--Borders);

                &::before {display: none;}

                &:hover {transform: none; box-shadow: none;}

                .CardTop {justify-content: center;}

                .CardTop .Category {
                    background: rgba(var(--PrimaryRGB), 0.1);
                    padding: 5px 14px;
                    border-radius: 50px;
                }

                h3 {color: var(--Muted);}

                p {flex-grow: 0; margin-bottom: 0;}
            }
        }
    }
}

main.Services {

    section.Why {
        max-width: 1400px;
        margin: 200px auto 0;

        .Header {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            gap: 60px;
            margin-bottom: 56px;

            .Lead {
                max-width: 380px;
                font-size: 1rem;
                line-height: 1.6;
                color: var(--Muted);
                padding-bottom: 6px;
            }
        }

        .Grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;

            .Card {
                position: relative;
                &:first-of-type {border-color: rgba(var(--PrimaryRGB), 0.5);}
                &.Featured {margin-top: -32px;}
                &:nth-child(2), &:nth-child(3) {margin-top: 16px;}

                .Link::after {
                    content: "";
                    position: absolute;
                    inset: 0;
                    z-index: 1;
                }
            }
        }
    }

    section.Grid {
        background: var(--Background);
        max-width: 1400px;
        margin: 200px auto 0;

        .Grid {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;

            .Card:nth-child(1) {grid-column: span 2; grid-row: span 2;}
            .Card:nth-child(2) {grid-column: 3 / 4; grid-row: span 2;}
        }

        .Card {
            position: relative;

            &.Featured {
                grid-column: span 2;
                grid-row: span 2;
                border-color: rgba(var(--PrimaryRGB), 0.5);
            }

            .ArrowLink::after {
                content: "";
                position: absolute;
                inset: 0;
                z-index: 1;
            }

            .Top {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                gap: 12px;
                margin-bottom: 20px;
            }

            .Badge {
                font-size: 0.78rem;
                font-weight: 600;
                color: var(--PureWhite);
                background: linear-gradient(135deg, var(--Primary) 0%, var(--DarkPrimary) 100%);
                padding: 6px 14px;
                border-radius: 50px;
                white-space: nowrap;
                box-shadow: 0 4px 14px rgba(var(--PureBlackRGB), 0.12);
            }

            > ul.FeatureList {flex: 1;}

            .SFooter {
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 12px;
                margin-top: 24px;
                padding-top: 18px;
                border-top: 1px solid rgba(var(--PureBlackRGB), 0.08);

                .Meta {
                    font-size: 0.82rem;
                    color: var(--Primary);
                    display: flex;
                    align-items: baseline;
                    gap: 8px;
                    flex-wrap: wrap;

                    strong {color: var(--PureBlack); font-weight: 700;}
                }
            }

            .Body {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 32px;
                flex: 1;
            }

            &.Featured .Text {
                h3 {color: var(--Charcoal); font-size: 1.7rem;}
                p {color: var(--Muted);}
            }
        }

        .List {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 14px 16px;
            margin-top: 20px;

            li {
                display: flex;
                align-items: flex-start;
                gap: 8px;
                font-size: 0.85rem;
                line-height: 1.4;
                color: var(--Muted);

                svg {width: 15px; height: 15px; stroke: var(--Primary); flex-shrink: 0; margin-top: 2px;}
            }
        }

        .BrowserMock {
            border-radius: 14px;
            overflow: hidden;
            border: 1px solid rgba(var(--PureBlackRGB), 0.08);

            .Chrome {
                display: flex;
                align-items: center;
                gap: 6px;
                padding: 10px 14px;
                background: rgba(var(--PureBlackRGB), 0.04);

                .Dot {width: 8px; height: 8px; border-radius: 50%;}
                .Dot.Red {background: #e5534b;}
                .Dot.Yellow {background: #e5a63b;}
                .Dot.Green {background: #3bb273;}

                .UrlBar {
                    margin-left: 8px;
                    font-size: 0.7rem;
                    color: var(--LightMuted);
                    background: rgba(var(--PureWhiteRGB), 0.5);
                    padding: 4px 10px;
                    border-radius: 50px;
                }
            }

            .MockBody {
                padding: 16px;
                background: rgba(var(--PureWhiteRGB), 0.25);
                display: flex;
                flex-direction: column;
                gap: 10px;
            }

            .MockRow {display: flex; gap: 8px; align-items: center;}
            .MockRow.MockTop {justify-content: space-between;}
            .MockNavGroup {display: flex; gap: 6px;}

            .MockBar {
                display: block;
                height: 8px;
                border-radius: 4px;
                background: rgba(var(--PureBlackRGB), 0.14);
            }
            .MockBar.Accent {width: 44px; height: 10px; background: var(--Primary);}
            .MockBar.Wide {width: 100%; height: 10px;}
            .MockBar.Medium {width: 65%; height: 10px;}
            .MockBar.Nav {width: 18px; height: 8px; background: rgba(var(--PureBlackRGB), 0.12);}

            .MockBtn {
                width: 56px;
                height: 22px;
                border-radius: 6px;
                background: rgba(var(--PureBlackRGB), 0.1);
            }
            .MockBtn.Accent {background: var(--Primary); width: 64px;}

            .MockImages {margin-top: 4px;}
            .MockImg {
                flex: 1;
                aspect-ratio: 1 / 0.7;
                border-radius: 8px;
                background: rgba(var(--PureBlackRGB), 0.06);
            }
        }

        .StatsRow {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 10px;
            margin-top: 16px;
        }

        .Stat {
            background: rgba(var(--PureBlackRGB), 0.04);
            border-radius: 10px;
            padding: 10px 8px;
            text-align: center;
        }

        .StatValue {display: block; font-size: 1.1rem; font-weight: 800; color: var(--PureBlack);}
        .StatValue.Accent {color: var(--Primary);}
        .StatLabel {display: block; font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--LightMuted); margin-top: 2px;}
    }
}

main.Reals {
    margin-top: 10vh;

    section.Why {
        background-color: var(--Background);
        display: flex;
        flex-direction: column;
        margin: 200px auto 100px;

        .Layout {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;

            .Card {
                .CardIndex {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    width: 42px;
                    height: 42px;
                    border-radius: 12px;
                    background: linear-gradient(135deg, var(--Primary) 0%, var(--DarkPrimary) 100%);
                    color: var(--PureWhite);
                    font-size: 1rem;
                    font-weight: 800;
                    box-shadow: 0 8px 20px rgba(var(--PrimaryRGB), 0.25);
                    margin-bottom: 4px;
                }

                h4 {
                    font-size: 1.1rem;
                    font-weight: 800;
                    color: var(--Charcoal);
                    line-height: 1.3;
                }

                p {
                    font-size: 0.95rem;
                    font-weight: 400;
                    color: var(--Muted);
                    line-height: 1.6;
                }
            }
        }
    }

    .ProjectSection {
        max-width: 1400px;
        margin: 0 auto 100px;

        .ProjectGrid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(360px, 1fr));
            gap: 32px;

            .ProjectCard {
                position: relative;
                display: block;
                border-radius: 16px;
                overflow: hidden;
                background: var(--PureWhite);
                text-decoration: none;
                box-shadow: 0 4px 24px rgba(var(--PureBlackRGB), 0.06);
                transition: transform 0.3s ease, box-shadow 0.3s ease;

                &:hover {
                    transform: translateY(-6px);
                    box-shadow: 0 12px 32px rgba(var(--PureBlackRGB), 0.12);

                    .ProjectImage img {transform: scale(1.05);}
                }

                .ProjectImage {
                    position: relative;
                    width: 100%;
                    aspect-ratio: 4/3;
                    overflow: hidden;
                    background-color: var(--Background);

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

                    .ProjectOverlay {
                        position: absolute;
                        inset: 0;
                        background: linear-gradient(to top, rgba(var(--DarkPrimaryRGB), 0.85) 0%, rgba(var(--DarkPrimaryRGB), 0) 60%);
                        display: flex;
                        align-items: flex-end;
                        padding: 24px;
                        opacity: 0;
                        transition: opacity 0.3s ease;

                        .ProjectCard:hover & {opacity: 1;}

                        p {
                            color: var(--PureWhite);
                            font-size: 1.25rem;
                            font-weight: 700;
                            margin: 0;
                            transform: translateY(10px);
                            transition: transform 0.3s ease;

                            .ProjectCard:hover & {transform: translateY(0);}
                        }
                    }
                }
            }
        }
    }

    #ComingSoonModal {
        position: fixed;
        inset: 0;
        background: rgba(var(--CharcoalRGB), 0.25);
        backdrop-filter: blur(10px);
        z-index: 200;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: fadeIn 0.3s ease;

        &.Hidden {display: none !important;}

        .Card {
            background: var(--PureWhite);
            border: 1px solid var(--Borders);
            border-radius: 20px;
            padding: 40px 36px;
            max-width: 550px;
            width: 90%;
            text-align: center;
            animation: zoomIn 0.3s ease;

            .ModalTitle {
                font-size: 20px;
                font-weight: 700;
                color: var(--Charcoal);
                margin: 0 0 8px;
            }

            .ModalDesc {
                color: var(--Muted);
                font-size: 14px;
                line-height: 1.6;
                margin: 0 0 28px;
            }
        }
    }

    &.SubPage {
        color: var(--Charcoal);

        .TopBanner {
            position: relative;
            max-width: 1200px;
            height: 520px;
            margin: 0 auto 80px;
            overflow: hidden;
            border-radius: 28px;
            box-shadow: 0 24px 70px rgba(var(--PureBlackRGB), 0.16);

            img {
                position: absolute;
                inset: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
            }
        }

        .Title {
            max-width: 800px;
            margin: 0 auto 56px;
            padding: 0 24px;
            text-align: center;

            span {
                display: inline-block;
                font-size: 0.78rem;
                font-weight: 800;
                text-transform: uppercase;
                color: var(--Primary);
                margin-bottom: 20px;
            }

            h1 {
                font-size: clamp(2.6rem, 6vw, 4.4rem);
                font-weight: 900;
                color: var(--Charcoal);
                line-height: 1.05;
                margin: 0 0 28px;
            }
            
            hr {
                width: 56px;
                height: 4px;
                border: none;
                background: var(--Primary);
                margin: 0 auto;
                border-radius: 2px;
            }
        }

        .Intro {
            max-width: 1200px;
            margin: 0 auto 80px;
            padding: 0 24px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 20px;

            p {
                background: var(--PureWhite);
                border-radius: 16px;
                padding: 26px 24px;
                box-shadow: 0 4px 24px rgba(var(--PureBlackRGB), 0.06);
                font-size: 0.92rem;
                line-height: 1.6;
                color: var(--Muted);
                font-weight: 500;
                margin: 0;
                transition: transform 0.3s ease, box-shadow 0.3s ease;

                &:hover {
                    transform: translateY(-4px);
                    box-shadow: 0 12px 32px rgba(var(--PureBlackRGB), 0.1);
                }

                >b {
                    display: block;
                    font-size: 0.68rem;
                    font-weight: 800;
                    text-transform: uppercase;
                    color: var(--Primary);
                    margin-bottom: 10px;
                }
            }
        }

        hr {
            display: block;
            max-width: 1200px;
            margin: 0 auto 80px;
            border: none;
            height: 1px;
            background: var(--Primary);
        }

        .ProjectSplit {
            max-width: 1200px;
            margin: 0 auto 100px;
            padding: 0 24px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;

            >.SplitItem {width: 100%;}

            .ProjectBloc {
                max-width: 100%;
                padding: 0;
                margin: 0 0 44px;

                &:last-child {margin-bottom: 0;}
            }
        }

        .ProjectBloc {
            max-width: 1200px;
            margin: 0 auto 90px;
            padding: 0 24px;

            h4 {
                position: relative;
                padding-left: 22px;
                font-size: clamp(1.5rem, 3vw, 2rem);
                font-weight: 900;
                color: var(--Charcoal);
                margin-bottom: 22px;

                &::before {
                    content: "";
                    position: absolute;
                    left: 0;
                    top: 4px;
                    bottom: 4px;
                    width: 4px;
                    background: var(--Primary);
                    border-radius: 2px;
                }
            }

            p {
                font-size: 1rem;
                line-height: 1.75;
                color: var(--Muted);
                font-weight: 400;
                margin-bottom: 16px;
                text-align: justify;

                &:last-child {margin-bottom: 0;}
            }

            ul {
                list-style: none;
                max-width: 820px;
                padding: 0;
                margin: 20px 0 0;
                display: flex;
                flex-direction: column;
                gap: 14px;

                li {
                    position: relative;
                    padding-left: 26px;
                    font-size: 1rem;
                    line-height: 1.7;
                    color: var(--Muted);

                    &::before {
                        content: "→";
                        position: absolute;
                        left: 0;
                        color: var(--Primary);
                        font-weight: 700;
                    }

                    b {
                        color: var(--Charcoal);
                        font-weight: 800;
                    }
                }
            }
        }

        .Label {
            max-width: 1200px;
            margin: 0 auto 18px;
            padding: 0 24px;

            span {
                font-size: 0.72rem;
                font-weight: 800;
                text-transform: uppercase;
                color: var(--DarkPrimary);

                &:last-child {color: var(--Primary);}
            }
        }

        .Comparaisons {
            position: relative;
            width: 100%;
            max-width: 800px;
            height: auto;
            overflow: hidden;
            margin: 0 auto 60px;
            user-select: none;
            background-color: var(--PureWhite);
            border-radius: 20px;
            box-shadow: 0 12px 40px rgba(var(--PureBlackRGB), 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;

            &:hover {
                transform: scale(1.015);
                box-shadow: 0 20px 50px rgba(var(--PureBlackRGB), 0.14);
            }
        }

        .Overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 50%;
            height: 100%;
            overflow: hidden;
            border-right: 2px solid var(--PureWhite);
            background-color: var(--PureWhite);

            .OldImage {
                display: block;
                position: absolute;
                top: 0;
                left: 0;
                width: 200%;
                max-width: none;
                height: 100%;
                object-fit: contain;
                object-position: center;
            }
        }

        .Comparaisons img.NewImage {
            display: block;
            width: 100%;
            height: 100%;
            object-fit: contain;
            object-position: center;
        }

        .Slider {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 44px;
            height: 44px;
            background-color: var(--Primary);
            border: 3px solid var(--PureWhite);
            border-radius: 50%;
            cursor: ew-resize;
            z-index: 10;
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 4px 16px rgba(var(--PrimaryRGB), 0.4);

            &::before {
                content: '\25C0 \25B6';
                color: var(--PureWhite);
                font-size: 12px;
            }
        }

        .FullWidthBanner {
            max-width: 1200px;
            margin: 0 auto 90px;
            padding: 0 24px;

            .Label {padding: 0; margin: 0 0 20px;}

            img {
                width: 100%;
                height: auto;
                display: block;
                border-radius: 20px;
                box-shadow: 0 16px 50px rgba(var(--PureBlackRGB), 0.1);
            }
        }

        .ProjectGallery {
            max-width: 1200px;
            margin: 0 auto 90px;
            padding: 0 24px;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;

            &.Item2 {grid-template-columns: repeat(2, 1fr);}
            &.Row {grid-template-columns: none; grid-template-rows: repeat(1, 1fr);}

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                display: block;
                border-radius: 16px;
                box-shadow: 0 8px 30px rgba(var(--PureBlackRGB), 0.08);
                transition: transform 0.4s ease;

                &:hover {transform: translateY(-4px);}
            }
        }

        .ComparisonsGrid {
            max-width: 1200px;
            margin: 0 auto 100px;
            padding: 0 24px;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
            gap: 56px 40px;

            .CompItem {
                display: flex;
                flex-direction: column;

                .ProjectVisual {
                    max-width: 820px;
                    margin: 0 auto 50px;
                    padding: 0 32px;

                    img {
                        width: 100%;
                        height: auto;
                        display: block;
                        border-radius: 10px;
                        box-shadow: 0 4px 24px rgba(0,0,0,0.08);
                    }
                }
            }

            .Label {
                padding: 0;
                margin: 0 0 16px;
                text-align: left;
                max-width: 100%;
            }

            .Comparaisons {
                max-width: 100%;
                width: 100%;
                margin-bottom: 0;
            }
        }

        .RelatedProjects {
            max-width: 1200px;
            margin: 120px auto 100px;
            padding: 0 24px;

            .RelatedBlock {

                +.RelatedBlock {margin-top: 72px;}

                .RelatedHeader {
                    text-align: center;
                    margin-bottom: 48px;

                    .RelatedEyebrow {
                        display: block;
                        font-size: 0.75rem;
                        font-weight: 800;
                        text-transform: uppercase;
                        color: var(--Primary);
                        margin-bottom: 14px;
                    }

                    .RelatedTitle {
                        font-size: clamp(1.8rem, 3.5vw, 2.6rem);
                        font-weight: 900;
                        color: var(--Charcoal);
                        margin: 0;
                    }
                }

                .RelatedGrid {
                    display: grid;
                    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
                    gap: 28px;

                    .RelatedCard {
                        text-decoration: none;
                        display: flex;
                        flex-direction: column;
                        gap: 14px;

                        &:hover {
                            .RelatedImage {
                                box-shadow: 0 12px 32px rgba(var(--PureBlackRGB), 0.12);

                                img {transform: scale(1.05);}
                            }

                            .RelatedOverlay {
                                opacity: 1;

                                span {transform: translateY(0);}
                            }

                            .RelatedName {color: var(--Primary);}
                        }

                        .RelatedImage {
                            position: relative;
                            overflow: hidden;
                            border-radius: 16px;
                            aspect-ratio: 4/3;
                            background: var(--PureWhite);
                            box-shadow: 0 4px 24px rgba(var(--PureBlackRGB), 0.06);
                            transition: box-shadow 0.3s ease;

                            img {
                                position: absolute;
                                inset: 0;
                                width: 100%;
                                height: 100%;
                                object-fit: cover;
                                display: block;
                                transition: transform 0.5s ease;
                            }

                            .RelatedOverlay {
                                position: absolute;
                                inset: 0;
                                background: linear-gradient(to top, rgba(var(--DarkPrimaryRGB), 0.85) 0%, rgba(var(--DarkPrimaryRGB), 0) 60%);
                                display: flex;
                                align-items: flex-end;
                                padding: 20px;
                                opacity: 0;
                                transition: opacity 0.3s ease;

                                span {
                                    color: var(--PureWhite);
                                    font-size: 1rem;
                                    font-weight: 700;
                                    transform: translateY(8px);
                                    transition: transform 0.3s ease;
                                }
                            }
                        }

                        .RelatedMeta {
                            padding: 0 2px;

                            .RelatedCategory {
                                font-size: 0.68rem;
                                font-weight: 700;
                                text-transform: uppercase;
                                color: var(--Primary);
                                margin: 0 0 6px;
                            }

                            .RelatedName {
                                font-size: 1.05rem;
                                font-weight: 800;
                                color: var(--Charcoal);
                                margin: 0;
                                transition: color 0.2s ease;
                            }
                        }
                    }
                }
            }

            .RelatedFooter {
                text-align: center;
                margin-top: 44px;
            }
        }

        a:focus-visible, .Slider:focus-visible {
            outline: 2px solid var(--Primary);
            outline-offset: 3px;
        }    
    }
}

main.Blog {
    color: var(--Charcoal);

    &.Index {
        .BlogHero .HeroInner .Meta {justify-content: center;}

        .BlogListing {
            background-color: var(--Background);
            padding: 80px 40px 100px;

            .Wrap {
                max-width: 1240px;
                margin: 0 auto;
            }
        }

        .BlogGrid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-bottom: 56px;
        }

        .BlogCard {
            display: flex;
            flex-direction: column;
            background: var(--PureWhite);
            border-radius: 18px;
            padding: 28px 26px;
            text-decoration: none;
            box-shadow: 0 4px 24px rgba(var(--PureBlackRGB), 0.06);
            position: relative;
            overflow: hidden;
            transition: transform 0.3s ease, box-shadow 0.3s ease;

            &::before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: var(--Primary);
            }

            &:hover {
                transform: translateY(-6px);
                box-shadow: 0 16px 40px rgba(var(--PureBlackRGB), 0.12);

                .CardFooter .Arrow {transform: translateX(4px);}
            }

            .CardTop {
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 12px;
                margin-bottom: 16px;

                .Category {
                    font-size: 0.68rem;
                    font-weight: 800;
                    text-transform: uppercase;
                    color: var(--Primary);
                }

                .ReadTime {
                    font-size: 0.72rem;
                    font-weight: 600;
                    color: var(--MinMuted);
                    flex-shrink: 0;
                }
            }

            h3 {
                font-size: 1.15rem;
                font-weight: 800;
                color: var(--Charcoal);
                line-height: 1.35;
                margin-bottom: 10px;
            }

            p {
                font-size: 0.86rem;
                line-height: 1.6;
                color: var(--Muted);
                margin-bottom: 20px;
                flex-grow: 1;
                overflow: hidden;
            }

            .CardFooter {
                display: flex;
                align-items: center;
                justify-content: space-between;
                font-size: 0.78rem;
                font-weight: 700;
                color: var(--DarkPrimary);
                margin-top: auto;

                time {color: inherit;}

                .Arrow {transition: transform 0.25s ease;}
            }

            &.Featured {
                grid-column: span 2;
                padding: 40px 38px;
                background: linear-gradient(135deg, var(--Charcoal) 0%, var(--DarkPrimary) 130%);

                &::before {display: none;}

                .CardTop .Category {
                    color: var(--PureWhite);
                    background: rgba(var(--PureWhiteRGB), 0.14);
                    padding: 5px 14px;
                    border-radius: 50px;
                }

                .CardTop .ReadTime {color: rgba(var(--PureWhiteRGB), 0.55);}

                h3 {color: var(--PureWhite); font-size: clamp(1.4rem, 2.2vw, 1.8rem);}

                p {color: rgba(var(--PureWhiteRGB), 0.75); font-size: 0.95rem;}

                .CardFooter {color: var(--PureWhite);}
            }

            &.ComingSoon {
                cursor: default;
                align-items: center;
                text-align: center;
                background: var(--PureWhite);
                box-shadow: none;
                border: 1.5px dashed var(--Borders);

                &::before {display: none;}

                &:hover {transform: none; box-shadow: none;}

                .CardTop {justify-content: center;}

                .CardTop .Category {
                    background: rgba(var(--PrimaryRGB), 0.1);
                    padding: 5px 14px;
                    border-radius: 50px;
                }

                h3 {color: var(--Muted);}

                p {flex-grow: 0; margin-bottom: 0;}

                &.Wide {
                    grid-column: 1 / -1;
                    padding: 64px 40px;

                    h3 {font-size: 1.4rem; margin-bottom: 12px;}

                    p {max-width: 480px; margin: 0 auto;}
                }
            }
        }

        .Pagination {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;

            button {
                min-width: 42px;
                height: 42px;
                padding: 0 14px;
                border: none;
                border-radius: 50px;
                background: var(--PureWhite);
                color: var(--Charcoal);
                font-weight: 800;
                font-size: 0.9rem;
                cursor: pointer;
                box-shadow: 0 2px 12px rgba(var(--PureBlackRGB), 0.06);
                transition: all 0.2s ease;

                &:hover:not(:disabled) {background: rgba(var(--PrimaryRGB), 0.1); color: var(--Primary);}

                &.active {background: var(--Primary); color: var(--PureWhite);}

                &:disabled {opacity: 0.35; cursor: not-allowed;}
            }
        }
    }

    .BlogContent {
        background-color: var(--Background);

        .Container {
            display: grid;
            grid-template-columns: 240px 1fr;
            column-gap: 70px;
            align-items: start;

            .Nav {
                position: sticky;
                top: 88px;
                background-color: var(--PureWhite);
                border-radius: 16px;
                padding: 28px 24px;
                box-shadow: 0 4px 24px rgba(var(--PureBlackRGB), 0.07);

                .Title {
                    font-size: 0.7rem;
                    font-weight: 800;
                    text-transform: uppercase;
                    color: var(--PureBlack);
                    margin-bottom: 16px;
                    padding-bottom: 12px;
                    border-bottom: 1px solid rgba(var(--PureBlackRGB), 0.07);
                }

                ul {
                    list-style: none;
                    padding: 0;
                    margin: 0 0 20px;
                    display: flex;
                    flex-direction: column;
                    gap: 4px;

                    li a {
                        display: block;
                        font-size: 0.8rem;
                        font-weight: 600;
                        color: var(--Charcoal);
                        text-decoration: none;
                        padding: 7px 10px;
                        border-radius: 8px;
                        border-left: 2px solid transparent;
                        transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;

                        &:hover {background: rgba(var(--PrimaryRGB), 0.06); color: var(--Primary);}

                        &.active {
                            background: rgba(var(--PrimaryRGB), 0.1);
                            color: var(--Primary);
                            border-left-color: var(--Primary);
                        }
                    }
                }

                .SideCTA {
                    padding-top: 18px;
                    border-top: 1px solid rgba(var(--PureBlackRGB), 0.07);

                    p {
                        font-size: 0.8rem;
                        line-height: 1.5;
                        color: var(--Muted);
                        margin-bottom: 14px;
                        text-align: left;
                    }

                    a {
                        display: block;
                        text-align: center;
                        padding: 10px 14px;
                        border-radius: 10px;
                        background: var(--Primary);
                        color: var(--PureWhite);
                        font-size: 0.78rem;
                        font-weight: 800;
                        text-decoration: none;
                        transition: background 0.2s ease;

                        &:hover {background: var(--DarkPrimary);}
                    }
                }
            }
        }
    }

    .BlogArticle {
        h2 {
            font-size: clamp(1.55rem, 2.6vw, 1.95rem);
            font-weight: 900;
            color: var(--Charcoal);
            margin: 98px 0 22px;
            scroll-margin-top: 100px;
            position: relative;
            padding-left: 20px;

            &::before {
                content: "";
                position: absolute;
                left: 0;
                top: 4px;
                bottom: 4px;
                width: 4px;
                background: var(--Primary);
                border-radius: 2px;
            }
        }

        h3 {
            font-size: 1.18rem;
            font-weight: 800;
            color: var(--Primary);
            margin: 52px 0 14px;
            scroll-margin-top: 100px;
        }

        p {
            font-size: 0.98rem;
            line-height: 1.8;
            color: var(--Muted);
            font-weight: 500;
            margin-bottom: 18px;
            text-align: justify;

            &:last-child {margin-bottom: 0;}
        }

        .Lead {
            font-size: 1.15rem;
            line-height: 1.75;
            color: var(--Charcoal);
            font-weight: 600;
            margin-bottom: 24px;
        }

        strong, b {color: var(--Charcoal); font-weight: 800;}

        .Highlight {
            display: flex;
            gap: 14px;
            align-items: flex-start;
            background: rgba(var(--PrimaryRGB), 0.07);
            border-left: 3px solid var(--Primary);
            border-radius: 0 10px 10px 0;
            padding: 18px 22px;
            margin: 8px 0 28px;

            svg {
                width: 18px;
                height: 18px;
                stroke: var(--Primary);
                flex-shrink: 0;
                margin-top: 3px;
            }

            p {
                margin: 0;
                font-size: 0.92rem;
                line-height: 1.65;
                color: var(--Charcoal);
                font-weight: 600;
                text-align: left;
            }
        }

        a {
            color: var(--Primary);
            font-weight: 700;
            text-decoration: none;
            position: relative;
            transition: color 0.2s ease;
            box-shadow: 0 1.5px 0 0 currentColor;

            &:hover {color: var(--DarkPrimary);}
        }

        > ul {
            list-style: none;
            padding: 0;
            margin: 4px 0 24px;
            display: flex;
            flex-direction: column;
            gap: 10px;

            li {
                position: relative;
                padding-left: 24px;
                font-size: 0.96rem;
                line-height: 1.65;
                color: var(--Muted);
                font-weight: 500;

                &::before {
                    content: "\2192";
                    position: absolute;
                    left: 0;
                    color: var(--Primary);
                    font-weight: 700;
                }
            }
        }
    }

    .PriceTable {
        margin: 8px 0 32px;
        border-radius: 14px;
        overflow-x: auto;
        box-shadow: 0 4px 24px rgba(var(--PureBlackRGB), 0.06);
        background: var(--PureWhite);

        table {
            width: 100%;
            min-width: 460px;
            border-collapse: collapse;
        }

        thead th {
            background: var(--DarkPrimary);
            color: var(--PureWhite);
            font-size: 0.72rem;
            font-weight: 800;
            text-transform: uppercase;
            text-align: left;
            padding: 14px 20px;
        }

        tbody tr:nth-child(even) {background: rgba(var(--PrimaryRGB), 0.045);}

        tbody tr.Total td {
            font-weight: 800;
            color: var(--Primary);
            background: rgba(var(--PrimaryRGB), 0.09);
        }

        td {
            padding: 13px 20px;
            font-size: 0.9rem;
            font-weight: 600;
            color: var(--Charcoal);
            border-top: 1px solid rgba(var(--PureBlackRGB), 0.05);

            &:last-child {color: var(--DarkPrimary); font-weight: 800; text-align: right;}
        }
    }

    .TableCaption {
        font-size: 0.72rem;
        font-weight: 800;
        text-transform: uppercase;
        color: var(--Primary);
        margin: 28px 0 10px;
    }

    .TrapGrid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 12px 0 32px;

        .TrapCard {
            background: var(--PureWhite);
            border-radius: 14px;
            padding: 24px 22px;
            box-shadow: 0 4px 20px rgba(var(--PureBlackRGB), 0.05);
            border-left: 3px solid var(--Danger);

            h3 {
                margin: 0 0 10px;
                font-size: 1rem;
                font-weight: 800;
                color: var(--Charcoal);
            }

            p {
                font-size: 0.88rem;
                line-height: 1.65;
                color: var(--Muted);
                margin: 0;
                text-align: left;
            }

            ul {
                list-style: none;
                padding: 0;
                margin: 10px 0 0;
                display: flex;
                flex-direction: column;
                gap: 6px;

                li {
                    font-size: 0.86rem;
                    color: var(--Muted);
                    padding-left: 16px;
                    position: relative;

                    &::before {
                        content: "\2022";
                        position: absolute;
                        left: 0;
                        color: var(--Danger);
                    }
                }
            }
        }
    }

    .BudgetGrid {
        display: flex;
        flex-direction: column;
        gap: 48px;
        margin: 12px 0 32px;

        .BudgetCard {
            .CardImage {
                aspect-ratio: 4/3;
                overflow: hidden;
                margin: 18px 0 0;

                img {
                    display: block;
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }
            }

            h3 {
                margin: 0 0 12px;
                font-size: 1.05rem;
                font-weight: 800;
                color: var(--Charcoal);
            }

            .Pill {
                display: inline-block;
                padding: 6px 16px;
                border-radius: 50px;
                background: rgba(var(--PrimaryRGB), 0.12);
                color: var(--Primary);
                font-size: 0.82rem;
                font-weight: 800;
                margin-bottom: 14px;
            }

            p {
                font-size: 0.9rem;
                line-height: 1.6;
                color: var(--Muted);
                margin: 0;
                text-align: left;
            }
        }
    }

    .HarmonyGrid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin: 12px 0 32px;

        .HarmonyCard {
            background: var(--PureWhite);
            border-radius: 16px;
            padding: 26px 24px;
            box-shadow: 0 4px 24px rgba(var(--PureBlackRGB), 0.06);

            h3 {
                margin: 0 0 14px;
                font-size: 1.05rem;
                font-weight: 800;
                color: var(--Charcoal);
            }

            .SwatchRow {
                display: flex;
                gap: 8px;
                margin-bottom: 16px;
            }

            .Swatch {
                width: 38px;
                height: 38px;
                border-radius: 10px;
                flex-shrink: 0;
                box-shadow: inset 0 0 0 1px rgba(var(--PureBlackRGB), 0.08);
            }

            p {
                font-size: 0.88rem;
                line-height: 1.6;
                color: var(--Muted);
                margin: 0;
                text-align: left;
            }
        }
    }

    .ColorWheelVisual {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 14px;
        margin: 26px 0 36px;

        .Wheel {
            width: 220px;
            height: 220px;
            border-radius: 50%;
            flex-shrink: 0;
            background: conic-gradient(
                hsl(0, 72%, 52%), hsl(30, 78%, 54%), hsl(60, 75%, 55%),
                hsl(100, 55%, 45%), hsl(150, 55%, 42%), hsl(190, 60%, 45%),
                hsl(210, 72%, 50%), hsl(250, 60%, 52%), hsl(285, 55%, 50%),
                hsl(320, 60%, 52%), hsl(350, 68%, 52%), hsl(360, 72%, 52%)
            );
            box-shadow: 0 10px 34px rgba(var(--PureBlackRGB), 0.16), inset 0 0 0 5px var(--PureWhite);
        }

        .Caption {
            font-size: 0.82rem;
            font-weight: 600;
            font-style: italic;
            color: var(--Muted);
            text-align: center;
            max-width: 340px;
        }
    }

    .RatioBar {
        display: flex;
        height: 48px;
        border-radius: 12px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(var(--PureBlackRGB), 0.08);
        margin: 8px 0 22px;

        span {
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--PureWhite);
            font-size: 0.78rem;
            font-weight: 800;
        }

        .Dominant {background: var(--Primary);}
        .Secondary {background: var(--Charcoal);}
        .Accent {background: var(--DarkPrimary);}
    }

    .ColorDot {
        display: inline-block;
        width: 14px;
        height: 14px;
        border-radius: 50%;
        margin-right: 8px;
        vertical-align: -2px;
        box-shadow: inset 0 0 0 1px rgba(var(--PureBlackRGB), 0.12);
    }

    .LoopFlow {
        display: flex;
        align-items: stretch;
        gap: 16px;
        margin: 26px 0 14px;

        .LoopStep {
            flex: 1;
            background: var(--PureWhite);
            border-radius: 16px;
            padding: 24px 20px;
            box-shadow: 0 4px 24px rgba(var(--PureBlackRGB), 0.06);
            text-align: center;

            .Num {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 32px;
                height: 32px;
                border-radius: 50%;
                background: var(--Primary);
                color: var(--PureWhite);
                font-weight: 800;
                font-size: 0.9rem;
                margin-bottom: 12px;
            }

            h3 {
                margin: 0 0 8px;
                font-size: 1rem;
                font-weight: 800;
                color: var(--Charcoal);
            }

            p {
                font-size: 0.85rem;
                line-height: 1.5;
                color: var(--Muted);
                margin: 0;
                text-align: center;
            }
        }

        .Arrow {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--Primary);
            flex-shrink: 0;
        }
    }

    .LoopCaption {
        font-size: 0.82rem;
        font-weight: 600;
        font-style: italic;
        color: var(--Muted);
        text-align: center;
        margin: 0 0 32px;
    }

    .FAQList {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin: 12px 0 32px;

        details {
            background: var(--PureWhite);
            border-radius: 14px;
            padding: 6px 22px;
            box-shadow: 0 2px 16px rgba(var(--PureBlackRGB), 0.05);

            &[open] summary {color: var(--Primary); margin-bottom: 6px;}
            &[open] summary::after {transform: rotate(45deg);}

            summary {
                list-style: none;
                cursor: pointer;
                padding: 16px 0;
                font-size: 0.98rem;
                font-weight: 800;
                color: var(--Charcoal);
                display: flex;
                align-items: center;
                justify-content: space-between;
                gap: 16px;
                transition: color 0.2s ease;

                &::-webkit-details-marker {display: none;}

                &::after {
                    content: "+";
                    flex-shrink: 0;
                    width: 24px;
                    height: 24px;
                    border-radius: 50%;
                    background: rgba(var(--PrimaryRGB), 0.12);
                    color: var(--Primary);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 1.1rem;
                    font-weight: 700;
                    transition: transform 0.25s ease;
                }
            }

            p {
                font-size: 0.9rem;
                line-height: 1.7;
                color: var(--Muted);
                padding-bottom: 18px;
                margin: 0;
                text-align: left;
            }
        }
    }

    .BlogCTA {
        position: relative;
        max-width: 800px;
        margin: 100px auto;
        padding: 48px 40px;
        border-radius: 24px;
        background: linear-gradient(135deg, var(--Charcoal) 0%, var(--DarkPrimary) 130%);
        overflow: hidden;
        text-align: center;

        &::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 60% 80% at 80% 0%, rgba(var(--PrimaryRGB), 0.3) 0%, transparent 70%);
            pointer-events: none;
        }

        > * {position: relative; z-index: 1;}

        h2 {
            color: var(--PureWhite);
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 900;
            margin-bottom: 14px;
            padding-left: 0;

            &::before {display: none;}
        }

        p {
            color: var(--MinMuted);
            font-size: 0.95rem;
            line-height: 1.7;
            max-width: 560px;
            margin: 0 auto 26px;
            text-align: center;
        }

        .Recap {
            list-style: none;
            padding: 0;
            margin: 0 0 30px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;

            li {
                font-size: 0.8rem;
                font-weight: 700;
                color: var(--PureWhite);
                background: rgba(var(--PureWhiteRGB), 0.08);
                border: 1px solid rgba(var(--PureWhiteRGB), 0.15);
                padding: 8px 16px;
                border-radius: 50px;
            }
        }

        .CTAButtons {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 14px;
            flex-wrap: wrap;

            a {
                text-decoration: none;
                padding: 14px 30px;
                border-radius: 50px;
                font-size: 0.85rem;
                font-weight: 800;
                text-transform: uppercase;
                transition: all 0.3s ease;
            }

            .ButtonSolid {
                background: var(--Primary);
                color: var(--PureWhite);

                &:hover {background: var(--PureWhite); color: var(--DarkPrimary); transform: translateY(-2px);}
            }

            .ButtonGhost {
                border: 1.5px solid rgba(var(--PureWhiteRGB), 0.3);
                color: var(--PureWhite);

                &:hover {border-color: var(--PureWhite); transform: translateY(-2px);}
            }
        }
    }
}

main.About {
    section.Me {
        margin-top: 164px;

        .Text .Header .Eyebrow {
            display: block;
            font-size: 0.82rem;
            font-weight: 800;
            text-transform: uppercase;
            color: var(--Primary);
            margin-bottom: 14px;
        }
    }

    .Subtitle {
        font-size: 1.05rem;
        color: var(--Muted);
        line-height: 1.6;
    }

    section.Timeline {
        position: relative;
        background-color: var(--Background);
        overflow: hidden;
        padding: 160px 40px 160px;

        /* &::before {
            content: "";
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 55% 45% at 50% 0%, rgba(var(--PrimaryRGB), 0.12) 0%, transparent 70%);
            pointer-events: none;
        } */

        .TimelineList {
            position: relative;
            z-index: 1;
            max-width: 1080px;
            margin: 0 auto;
            list-style: none;
        }

        .TimelineItem {
            display: grid;
            grid-template-columns: 1fr 90px 1fr;
            column-gap: 48px;
            position: relative;

            &:not(:last-child) {padding-bottom: 64px;}

            .Rail {
                grid-column: 2;
                grid-row: 1;
                position: relative;
                display: flex;
                justify-content: center;
            }

            .Line {
                position: absolute;
                top: -64px;
                bottom: -64px;
                left: 50%;
                width: 2px;
                background: var(--Primary);
                transform: translateX(-50%);
                z-index: 0;
            }

            &:first-child .Line {top: 0;}
            &:last-child .Line {bottom: 50%;}

            .Circle {
                position: relative;
                z-index: 1;
                width: 56px;
                height: 56px;
                flex-shrink: 0;
                border-radius: 50%;
                background: var(--Primary);
                display: flex;
                align-items: center;
                justify-content: center;
                box-shadow: 0 0 0 10px rgba(var(--PrimaryRGB), 0.1), 0 0 38px 4px rgba(var(--PrimaryRGB), 0.45);

                svg {
                    width: 22px;
                    height: 22px;
                    stroke: var(--PureWhite);
                }
            }

            .Content {
                grid-row: 1;
                align-self: center;
            }

            .Badge {
                display: inline-block;
                padding: 5px 16px;
                border-radius: 50px;
                background: rgba(var(--PrimaryRGB), 0.12);
                border: 1px solid rgba(var(--PrimaryRGB), 0.3);
                color: var(--Primary);
                font-size: 0.8rem;
                font-weight: 700;
                margin-bottom: 14px;
            }

            h3 {
                font-size: 1.5rem;
                font-weight: 800;
                color: var(--Charcoal);
                margin-bottom: 10px;
            }

            p {
                font-size: 0.98rem;
                line-height: 1.6;
                color: var(--Muted);
            }

            &:nth-child(odd) .Content {
                grid-column: 1;
                text-align: right;
                margin-left: auto;
                max-width: 420px;
            }

            &:nth-child(even) .Content {
                grid-column: 3;
                text-align: left;
                margin-right: auto;
                max-width: 420px;
            }
        }
    }

    section.Skills {
        position: relative;
        background-color: var(--Background);
        padding: 100px 40px;

        .Grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }

        .Card {
            &:nth-of-type(1), &:nth-of-type(2) {border-color: rgba(var(--PrimaryRGB), 0.5);}

            .Tags {
                list-style: none;
                display: flex;
                flex-wrap: wrap;
                gap: 10px;

                li {
                    font-size: 0.8rem;
                    font-weight: 700;
                    color: var(--DarkPrimary);
                    background: rgba(var(--PrimaryRGB), 0.08);
                    border: 1px solid rgba(var(--PrimaryRGB), 0.2);
                    padding: 6px 15px;
                    border-radius: 50px;
                }
            }
        }

        .Footnote {
            text-align: center;
            color: var(--MinMuted);
            font-size: 0.95rem;
            max-width: 1200px;
            margin: 48px auto 0;
        }
    }

    section.Values {
        position: relative;
        background-color: var(--Background);
        padding: 40px 40px 120px;

        .Grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }

        .Card {&:first-of-type, &:last-of-type {border-color: rgba(var(--PrimaryRGB), 0.5);}}
    }

    section.Recommendations {
        position: relative;
        background-color: var(--Background);
        padding: 40px 40px 140px;

        .Marquee {
            width: 100vw;
            max-width: 100vw;
            margin-left: calc(50% - 50vw);
            margin-right: calc(50% - 50vw);
            overflow: hidden;
            padding: 8px 0 24px;
            mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);
            -webkit-mask-image: linear-gradient(to right, transparent, black 6%, black 94%, transparent);

            &:hover .MarqueeTrack {
                animation-play-state: paused;
            }
        }

        .MarqueeTrack {
            display: flex;
            align-items: stretch;
            gap: 28px;
            width: max-content;
            animation: MarqueeScroll 130s linear infinite;
            will-change: transform;
        }

        .Card {
            position: relative;
            display: flex;
            flex-direction: column;
            flex: 0 0 420px;
            width: 420px;
            background: var(--PureWhite);
            box-shadow: 0 4px 24px rgba(var(--PureBlackRGB), 0.06);
            border-radius: 20px;
            border-top: 5px solid var(--Primary);
            padding: 40px 40px 36px;
            overflow: hidden;

            &::before {
                content: "\201C";
                position: absolute;
                top: 6px;
                left: 24px;
                font-family: Georgia, serif;
                font-size: 5.5rem;
                font-weight: 700;
                line-height: 1;
                color: rgba(var(--PrimaryRGB), 0.16);
                pointer-events: none;
            }

            .QuoteText {
                position: relative;
                font-size: 1.05rem;
                line-height: 1.6;
                color: var(--Charcoal);
                margin: 10px 0 28px;
                font-style: italic;
            }

            .Author {
                display: flex;
                align-items: center;
                gap: 14px;
                margin-top: auto;

                .Avatar {
                    flex-shrink: 0;
                    width: 46px;
                    height: 46px;
                    border-radius: 50%;
                    background: var(--Primary);
                    color: var(--PureWhite);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-weight: 800;
                    font-size: 1rem;
                }

                h3 {
                    font-size: 1rem;
                    font-weight: 800;
                    color: var(--Charcoal);
                }

                p {
                    font-size: 0.85rem;
                    color: var(--Muted);
                }
            }

            &:nth-child(even) {
                border-top-color: var(--DarkPrimary);

                &::before {color: rgba(var(--DarkPrimaryRGB), 0.16);}

                .Author .Avatar {background: var(--DarkPrimary);}
            }
        }
    }

    section.Anchor {
        position: relative;
        background-color: var(--Background);
        padding: 40px 40px 100px;

        .Grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }
    }
}

main.Contact {
    position: relative;
    margin: 100px 0 0;
    width: 100vw;
    min-height: 100vh;
    background-color: var(--Background);

    .ContactLayout {
        position: relative;
        inset: 0;
        z-index: 10;
        display: flex;
        min-height: 91vh;
        pointer-events: none;

        .SocialSidebar {
            align-self: center;
            margin-left: 28px;
            display: flex;
            flex-direction: column;
            gap: 30px;
            align-items: center;
            pointer-events: auto;

            a {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 34px;
                height: 34px;
                color: var(--Primary);
                transition: opacity 0.25s ease, transform 0.25s ease;
                text-decoration: none;

                &:hover {
                    opacity: 0.75;
                    transform: scale(1.2);
                }
            }

            svg {
                width: 24px;
                height: 24px;
                fill: currentColor;
            }
        }

        .ContactLeft {
            width: 58%;
            min-width: 500px;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 60px 64px 60px 64px;
            pointer-events: auto;
            position: relative;

            .ContactTitle {
                font-size: clamp(2.8rem, 5vw, 4.5rem);
                font-weight: 800;
                color: var(--Charcoal);
                line-height: 1;
                margin-bottom: 18px;
            }

            .ContactSubtitle {
                display: inline-flex;
                align-items: center;
                gap: 0;
                margin-bottom: 36px;
            
                span {
                    position: relative;
                    display: inline-block;
                    text-decoration: none;
                    font-size: 0.8rem;
                    font-weight: 700;
                    text-transform: uppercase;
                    color: rgba(var(--PureBlackRGB), 0.8);
                    line-height: 1.6;
                    transition: color 0.3s ease;
                    padding: 0 2px 4px;

                    &:hover::before {transform: scaleX(0);}

                    &::before {
                        content: "";
                        position: absolute;
                        display: block;
                        width: 100%;
                        height: 2px;
                        bottom: 0;
                        left: 0;
                        background-color: var(--Primary);
                        transform: scaleX(1); 
                        transform-origin: left; 
                        transition: transform 0.3s ease;
                    }
                }
            }

            .Form {
                display: flex;
                flex-direction: column;
                gap: 14px;
                width: 100%;
                max-width: 600px;

                .InputGroup {
                    position: relative;
                    margin-bottom: 6px;
                    width: 100%;
                    color: var(--Primary);
                    background: transparent;

                    .Input {
                        width: 100%;
                        box-sizing: border-box;
                        padding: 12px 15px;
                        border: 1px solid var(--PureBlack);
                        border-radius: 8px;
                        background: transparent;
                        color: var(--PureBlack);
                        font-size: 1rem;
                        outline: none;
                        transition: all 0.3s ease;

                        &:focus~.Label,
                        &:valid~.Label,
                        &:autofill~.Label,
                        &:-webkit-autofill~.Label {
                            top: 0;
                            background-color: var(--Primary);
                            color: var(--PureWhite);
                            border-radius: 4px;
                            font-size: 0.8rem;
                            font-weight: bold;
                        }
                    }

                    .Label {
                        position: absolute;
                        left: 15px;
                        top: 50%;
                        transform: translateY(-50%);
                        color: var(--PureBlack);
                        background-color: transparent;
                        padding: 0 5px;
                        pointer-events: none;
                        transition: all 0.3s ease;
                    }

                    textarea.Input+.Label {top: 22px;}

                    input[type="text"]:focus, input[type="email"]:focus, textarea:focus,
                    input[type="text"].HasValue, input[type="email"].HasValue, textarea.HasValue,
                    input[type="text"]:autofill, input[type="email"]:autofill, textarea:autofill,
                    input[type="text"]:-webkit-autofill, input[type="email"]:-webkit-autofill, textarea:-webkit-autofill {border-color: var(--Primary);}
                }

                .FormRow {
                    display: flex;
                    gap: 14px;
                    width: 100%;

                    .InputGroup {
                        margin-bottom: 0;
                        flex: 1;
                    }
                }

                .FormActions {
                    display: flex;
                    justify-content: space-between;
                    width: 600px;
                    gap: 1rem;
                    margin-top: 1rem;
                    flex-wrap: wrap;
                    top: -10px;
                    font-size: 0.85rem;
                    color: var(--Primary);

                    button[type="submit"] {
                        flex: 1;
                        min-width: 160px;
                        padding: 14px 28px;
                        background: var(--Primary);
                        color: var(--PureWhite);
                        border: none;
                        border-radius: 50px;
                        font-size: 0.78rem;
                        font-weight: 700;

                        text-transform: uppercase;
                        cursor: pointer;
                        transition: filter 0.25s ease, transform 0.2s ease;

                        &:hover {
                            filter: brightness(0.88);
                            transform: translateY(-2px);
                        }
                    }

                    button[type="reset"] {
                        padding: 14px 24px;
                        background: transparent;
                        color: rgba(var(--PureBlackRGB),0.4);
                        border: 1px solid rgba(var(--PureBlackRGB),0.18);
                        border-radius: 50px;
                        font-size: 0.78rem;
                        font-weight: 600;
                        text-transform: uppercase;
                        cursor: pointer;
                        transition: border-color 0.25s ease, color 0.25s ease;
    
                        &:hover {
                            border-color: var(--Primary);
                            color: var(--Primary);
                        }
                    }
                }
            }

            .ContactCoords {
                margin-top: 28px;
                display: flex;
                gap: 24px;
                flex-wrap: wrap;

                a {
                    position: relative;
                    text-decoration: none;
                    font-size: 0.8rem;
                    color: rgba(var(--PureBlackRGB),0.45);
                    line-height: 1.6;
                    width: fit-content;
                    transition: all 0.3s ease;

                    &:hover {
                        color: var(--Primary);

                        &::before {transform: scaleX(1);}
                    }

                    &::before {
                        content: "";
                        position: absolute;
                        display: block;
                        width: 100%;
                        height: 2px;
                        bottom: 0;
                        left: 0;
                        background-color: var(--Primary);
                        transform: scaleX(0);
                        transform-origin: top left;
                        transition: transform 0.3s ease;
                    }
                }
    
                .CoordDot {color: var(--Primary); font-size: 0.8rem;}
            }
        }
    }

    section.ContactBooking {
        position: relative;
        background-color: var(--Background);
        margin: 0 auto 100px;

        .SectionTitle {margin-bottom: 40px;}

        .ContactBookingFrame {
            position: relative;
            background-color: var(--PureWhite);
            border-radius: 16px;
            padding: 16px;
            box-shadow: 0 4px 24px rgba(var(--PureBlackRGB), 0.07);

            iframe {
                display: block;
                width: 100%;
                height: 700px;
                border: 0;
                border-radius: 10px;
            }
        }

        .ContactBookingFallback {
            display: inline-block;
            margin-top: 16px;
            text-decoration: none;
            font-size: 0.8rem;
            color: rgba(var(--PureBlackRGB), 0.45);
            transition: color 0.3s ease;

            &:hover {color: var(--Primary);}
        }
    }
}

main.Simu {
    margin: 0;
    padding: 0;
    background-color: var(--Background);
    color: var(--Charcoal);
    min-height: 100vh;
    overflow-x: Hidden;

    nav.NavBar {display: none !important;}

    .Glow {
        background:
            radial-gradient(ellipse 700px 500px at 85% 15%, rgba(var(--PrimaryRGB), 0.16) 0%, transparent 70%),
            radial-gradient(ellipse 520px 420px at 8% 95%, rgba(var(--DarkPrimaryRGB), 0.10) 0%, transparent 72%);
        position: fixed;
        inset: 0;
        pointer-events: none;
        z-index: 0;
    }

    .PriceGradient {
        background: linear-gradient(135deg, var(--Primary), var(--DarkPrimary));
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .Layout {
        position: relative;
        z-index: 10;
        min-height: 100vh;
        display: flex;
        flex-direction: row;
        justify-content: center;
        padding-right: 360px;

        .Form {
            flex: 1;
            max-width: 820px;
            width: 100%;
            padding: 56px 56px 56px;
            margin: 0 auto;

            .Brand {
                margin-bottom: 40px;

                .LogoRow {
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    margin-bottom: 28px;

                    .LogoIcon {
                        width: 36px;
                        height: 36px;
                        border-radius: 10px;
                        background: linear-gradient(135deg, var(--Primary) 0%, var(--DarkPrimary) 100%);
                        box-shadow: 0 4px 14px rgba(var(--PrimaryRGB), 0.35);
                        display: flex;
                        align-items: center;
                        justify-content: center;
                        flex-shrink: 0;
                    }

                    .LogoName {
                        font-size: 14px;
                        font-weight: 800;
                        color: var(--Primary);
                    }
                }

                .MainTitle {
                    font-size: 30px;
                    font-weight: 900;
                    color: var(--Charcoal);
                    line-height: 1.2;
                    margin: 0 0 12px;
                }

                .MainDesc {
                    color: var(--Muted);
                    font-size: 14px;
                    line-height: 1.65;
                    margin: 0;
                }
            }

            .ProgressBar {
                display: flex;
                align-items: center;
                margin-bottom: 40px;

                .Dots {
                    width: 30px;
                    height: 30px;
                    border-radius: 50%;
                    border: 1.5px solid var(--Borders);
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 14px;
                    font-weight: 700;
                    color: var(--MinMuted);
                    flex-shrink: 0;
                    transition: all 0.3s ease;

                    &.Active {
                        border-color: var(--Primary);
                        color: var(--Primary);
                        box-shadow: 0 0 0 5px rgba(var(--PrimaryRGB), 0.14), 0 0 16px 2px rgba(var(--PrimaryRGB), 0.25);
                    }

                    &.Done {
                        background: var(--Primary);
                        border-color: var(--Primary);
                        color: var(--PureWhite);
                        box-shadow: 0 2px 8px rgba(var(--PrimaryRGB), 0.3);
                    }

                    .Num {
                        display: inline-block;
                        transform: translateY(-1px);
                    }
                }

                .Lines {
                    flex: 1;
                    height: 1px;
                    background: var(--Borders);
                    transition: background 0.4s ease;

                    &.Done {background: var(--Primary);}
                }
            }

            .Steps {
                .Panel {
                    display: none;

                    &.Active {
                        display: block;
                        animation: fadeUp 0.35s ease forwards;
                    }

                    .StepHead {
                        margin-bottom: 28px;

                        .StepLabel {
                            font-size: 10px;
                            font-weight: 700;
                            text-transform: uppercase;
                            color: var(--Primary);
                        }

                        .StepTitle {
                            font-size: 20px;
                            font-weight: 800;
                            color: var(--Charcoal);
                            margin: 4px 0 0;
                        }

                        .StepDesc {
                            color: var(--Muted);
                            font-size: 14px;
                            margin: 4px 0 0;
                        }
                    }

                    .FormGrid {
                        display: grid;
                        grid-template-columns: 1fr 1fr;
                        gap: 16px;

                        .InputGroup {
                            position: relative;
                            margin-bottom: 6px;
                            width: 100%;
                            color: var(--Primary);
                            background: transparent;

                            &.ColFull {grid-column: 1 / -1;}

                            .Input {
                                width: 100%;
                                box-sizing: border-box;
                                padding: 12px 15px;
                                border: 1px solid var(--Borders);
                                border-radius: 10px;
                                background: transparent;
                                color: var(--PureBlack);
                                font-size: 1rem;
                                outline: none;
                                transition: all 0.3s ease;

                                &:focus~.Label,
                                &.HasValue~.Label {
                                    top: 0;
                                    background-color: var(--Primary);
                                    color: var(--PureWhite);
                                    border-radius: 6px;
                                    font-size: 0.8rem;
                                    font-weight: bold;

                                    .Accent {color: var(--PureWhite);}
                                }
                            }

                            .Label {
                                position: absolute;
                                left: 15px;
                                top: 50%;
                                transform: translateY(-50%);
                                color: var(--Muted);
                                background-color: transparent;
                                padding: 0 5px;
                                pointer-events: none;
                                transition: all 0.3s ease;
                            }

                            textarea.Input+.Label {top: 22px;}

                            input[type="text"]:focus, input[type="email"]:focus, textarea:focus,
                            input[type="text"].HasValue, input[type="email"].HasValue, textarea.HasValue,
                            input[type="text"]:autofill, input[type="email"]:autofill, textarea:autofill,
                            input[type="text"]:-webkit-autofill, input[type="email"]:-webkit-autofill, textarea:-webkit-autofill {
                                border-color: var(--Primary);
                                box-shadow: 0 0 0 3px rgba(var(--PrimaryRGB), 0.10);
                            }

                            &:has(.Error.Show) {
                                .Input {
                                    border-color: var(--Danger);
                                    box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.10);
                                }

                                .Label {color: var(--Danger);}

                                .Input:focus~.Label,
                                .Input.HasValue~.Label {
                                    background-color: var(--Danger);
                                    color: var(--PureWhite);

                                    .Accent {color: var(--PureWhite);}
                                }
                            }
                        }
                    } 

                    .Error {
                        color: var(--Danger);
                        font-size: 12px;
                        margin-top: 5px;
                        display: none;

                        &.Show {display: block;}
                    }

                    .CodeFeedback {
                        font-size: 12px;
                        font-weight: 600;
                        margin-top: 7px;
                        display: none;

                        &.Show {display: block;}
                        &.Valid {color: var(--Success);}
                        &.Invalid {color: var(--Danger);}
                    }

                    .ChoiceList {
                        display: flex;
                        flex-direction: column;
                        gap: 12px;

                        &.ChoiceListGrid {
                            display: grid;
                            grid-template-columns: 1fr 1fr;
                        }

                        .ChoiceCard {
                            position: relative;

                            .Locked {
                                label {
                                    cursor: default;
                                    pointer-events: none;
                                }

                                input:checked + label {
                                    border-color: var(--Primary);
                                    background: rgba(var(--PrimaryRGB), 0.09);
                                    box-shadow: 0 0 0 1px rgba(var(--PrimaryRGB), 0.18);
                                }
                            }

                            input[type="radio"],
                            input[type="checkbox"] {
                                position: absolute;
                                opacity: 0;
                                width: 0;
                                height: 0;
                            }

                            input[type="checkbox"] + label::after {border-radius: 4px;}

                            input {
                                &:hover + label .LabelIcon {background: rgba(var(--PrimaryRGB), 0.14);}

                                &:checked + label .LabelIcon {
                                    background: linear-gradient(135deg, var(--Primary) 0%, var(--DarkPrimary) 100%);
                                    border-color: transparent;
                                    color: var(--PureWhite);
                                    box-shadow: 0 4px 14px rgba(var(--PrimaryRGB), 0.35);

                                    svg {transform: scale(1.08);}
                                }

                                &:checked + label {
                                    border-color: var(--Primary);
                                    background: rgba(var(--PrimaryRGB), 0.07);

                                    &::after {
                                        background: var(--Primary);
                                        border-color: var(--Primary);
                                        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='8' viewBox='0 0 10 8'%3E%3Cpath d='M1 4l3 3 5-6' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
                                        background-repeat: no-repeat;
                                        background-position: center;
                                    }
                                
                                    .LabelMain {color: var(--DarkPrimary);}
                                }
                            }

                            label {
                                display: flex;
                                align-items: center;
                                gap: 14px;
                                padding: 14px 18px;
                                border: 1px solid var(--Borders);
                                border-radius: 14px;
                                cursor: pointer;
                                transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
                                background: var(--PureWhite);
                                box-shadow: 0 2px 10px rgba(var(--PureBlackRGB), 0.04);
                                user-select: none;

                                &:hover {
                                    border-color: var(--Primary);
                                    background: rgba(var(--PrimaryRGB), 0.1);
                                    transform: translateY(-2px);
                                    box-shadow: 0 8px 20px rgba(var(--PureBlackRGB), 0.08);

                                    &::after {border-color: var(--Primary);}
                                }

                                &::after {
                                    content: '';
                                    margin-left: auto;
                                    width: 18px;
                                    height: 18px;
                                    border-radius: 50%;
                                    border: 1.5px solid rgba(var(--PrimaryRGB), 0.4);
                                    flex-shrink: 0;
                                    transition: all 0.2s ease;
                                }

                                .LabelIcon {
                                    width: 36px;
                                    height: 36px;
                                    border-radius: 10px;
                                    background: var(--PureWhite);
                                    border: 1px solid var(--Primary);
                                    color: var(--Primary);
                                    display: flex;
                                    align-items: center;
                                    justify-content: center;
                                    flex-shrink: 0;
                                    font-size: 15px;
                                    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, transform 0.2s ease;

                                    svg {
                                        width: 18px;
                                        height: 18px;
                                        stroke: currentColor;
                                        transition: transform 0.2s ease;
                                    }
                                }

                                .LabelIconText {
                                    font-size: 16px;
                                    font-weight: 800;
                                    color: inherit;
                                }

                                .LabelMain {
                                    font-weight: 500;
                                    font-size: 14px;
                                    color: var(--Charcoal);
                                    transition: color 0.2s ease;

                                    .LockBadge {
                                        display: inline-flex;
                                        align-items: center;
                                        gap: 3px;
                                        font-size: 9px;
                                        font-weight: 700;
                                        text-transform: uppercase;
                                        background: rgba(var(--PrimaryRGB), 0.14);
                                        color: var(--DarkPrimary);
                                        border: 1px solid rgba(var(--PrimaryRGB), 0.28);
                                        border-radius: 4px;
                                        padding: 2px 6px;
                                        margin-left: 7px;
                                        vertical-align: middle;
                                        line-height: 1;
                                    }
                                }

                                .LabelSub {
                                    font-size: 12px;
                                    color: var(--Muted);
                                    margin-top: 2px;
                                }
                            }
                        }
                    }

                    .UrgenceCard {
                        padding: 20px;
                        border-radius: 16px;
                        border: 1px solid var(--Borders);
                        background: var(--PureWhite);
                        box-shadow: 0 4px 20px rgba(var(--PureBlackRGB), 0.05);
                        margin-bottom: 20px;

                        .UrgenceRow {
                            display: flex;
                            align-items: center;
                            justify-content: space-between;
                            gap: 16px;

                            .UrgenceLabel {
                                font-weight: 500;
                                font-size: 14px;
                                color: var(--Charcoal); 
                                margin-bottom: 3px;
                            }

                            .UrgenceDesc {
                                font-size: 12px;
                                color: var(--Muted);
                            }

                            .Toggle input[type="checkbox"] {
                                position: relative;
                                width: 50px;
                                height: 26px;
                                appearance: none;
                                background: var(--Borders);
                                border-radius: 13px;
                                cursor: pointer;
                                transition: background 0.3s;
                                outline: none;
                                flex-shrink: 0;

                                &:checked {
                                    background: var(--Primary);

                                    &::after {left: 27px;}
                                }

                                &::after {
                                    content: '';
                                    position: absolute;
                                    width: 20px;
                                    height: 20px;
                                    background: var(--PureWhite);
                                    border-radius: 50%;
                                    top: 3px;
                                    left: 3px;
                                    transition: left 0.25s ease;
                                }
                            }
                        }

                        .BadgeRow {
                            display: flex;
                            align-items: center;
                            gap: 8px;
                            margin-top: 16px;

                            .Badge {
                                display: flex;
                                font-size: 11px;
                                width: 84px;
                                height: 24px;
                                text-align: center;
                                align-items: center;
                                justify-content: center;
                                gap: 4px;
                                border-radius: 999px;
                                font-weight: 600;
                                line-height: 1;

                                svg {
                                    width: 12px;
                                    height: 12px;
                                    stroke: currentColor;
                                    flex-shrink: 0;
                                }

                                &.Standard {
                                    border: 1px solid var(--Borders);
                                    color: var(--Muted);
                                }

                                &.Urgent {
                                    background: var(--Primary);
                                    color: var(--PureWhite);
                                    font-weight: 700;
                                }
                            }
                        }   
                    }

                    .FormGroup {
                        margin-bottom: 20px;

                        .Label {
                            display: block;
                            font-size: 11px;
                            font-weight: 600;
                            text-transform: uppercase;
                            color: var(--Muted);
                            margin-bottom: 7px;
                        }

                        .Input {
                            width: 100%;
                            background: var(--PureWhite);
                            border: 1px solid var(--Borders);
                            border-radius: 10px;
                            padding: 11px 14px;
                            color: var(--Charcoal);
                            font-size: 14px;
                            transition: border-color 0.2s, box-shadow 0.2s;
                            outline: none;
                            appearance: none;

                            &:focus {
                                border-color: var(--Primary);
                                box-shadow: 0 0 0 3px rgba(var(--PrimaryRGB), 0.10);
                            }

                            &::placeholder {color: var(--MinMuted);}
                            option {background: var(--PureWhite);}
                        }
                    }

                    .RadioBlock {
                        padding: 20px;
                        border-radius: 16px;    
                        border: 1px solid var(--Borders);
                        background: var(--PureWhite);
                        box-shadow: 0 4px 20px rgba(var(--PureBlackRGB), 0.05);

                        .Title {
                            font-size: 14px;
                            font-weight: 800;
                            color: var(--Charcoal);
                            margin-bottom: 16px;
                        }

                        .RadioList {
                            display: flex;
                            flex-direction: column;
                            gap: 12px;

                            .RadioItem {
                                display: flex;
                                align-items: flex-start;
                                gap: 12px;
                                cursor: pointer;

                                input[type="radio"] {
                                    margin-top: 3px;
                                    width: 16px;
                                    height: 16px;
                                    flex-shrink: 0;
                                    accent-color: var(--Primary);
                                }

                                .RadioItemMain {
                                    font-size: 14px;
                                    font-weight: 500;
                                    color: var(--Charcoal); 
                                }

                                .RadioItemSub {
                                    font-size: 12px;
                                    color: var(--Muted);
                                    margin-top: 2px;
                                }
                            }
                        }
                    }
                }

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

            .FormNav {
                display: flex;
                align-items: center;
                justify-content: space-between;
                margin-top: 40px;
                padding-top: 24px;
                border-top: 1px solid var(--Borders);

                .ArrowBtn {
                    padding: 12px 32px;
                    background: linear-gradient(135deg, var(--Primary) 0%, var(--DarkPrimary) 100%);
                    color: var(--PureWhite);

                    &:hover {
                        box-shadow: 0 12px 28px rgba(var(--PrimaryRGB), 0.25);

                        .Arrow {transform: translate(3px);}
                    }
                }
            }

            .NavError {
                display: none;
                margin: 14px 0 0;
                padding: 12px 16px;
                border-radius: 10px;
                background: rgba(229, 62, 62, 0.08);
                border: 1px solid rgba(229, 62, 62, 0.25);
                color: var(--Danger);
                font-size: 13px;
                font-weight: 500;
                text-align: center;
                animation: fadeUp 0.35s ease;

                &.Show {display: block;}
            }
        }

        #PriceSidebar {
            width: 360px;
            flex-shrink: 0;
            background: var(--PureWhite);
            box-shadow: -16px 0 40px rgba(var(--PureBlackRGB), 0.05);
            position: fixed;
            right: 0;
            top: 0;
            height: 100vh;
            overflow-y: auto;
            padding: 28px;
            display: flex;
            flex-direction: column;
            z-index: 20;

            .PriceHeader {
                margin-bottom: 24px;

                .SidebarEyebrow {
                    font-size: 0.78rem;
                    font-weight: 800;
                    text-transform: uppercase;
                    letter-spacing: 0.02em;
                    color: var(--Primary);
                    margin-bottom: 8px;
                }

                .PriceDisplay {
                    font-size: 30px;
                    font-weight: 800;
                    line-height: 1.2;
                }

                .PriceNote {
                    font-size: 11px;
                    color: var(--Muted);
                    margin-top: 4px;
                }
            }

            .Breakdown {
                margin-bottom: 20px;
                flex: 1;

                .BreakdownEyebrow {
                    font-size: 0.72rem;
                    font-weight: 800;
                    text-transform: uppercase;
                    letter-spacing: 0.02em;
                    color: var(--Primary);
                    margin-bottom: 12px;
                }

                .BreakdownPlaceholder {
                    font-size: 12px;
                    color: var(--Muted);
                    font-style: italic;
                }

                .Details {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding: 7px 0;
                    border-bottom: 1px solid rgba(var(--PrimaryRGB), 0.2);
                    font-size: 12px;

                    &:last-child {border-bottom: none;}

                    .DetailsLabel {color: var(--Muted);}
                    .DetailsValue {font-weight: 500; color: var(--Muted);}
                    .DetailsValue--multiplicateur {color: #E8A020;}
                    .DetailsValue--urgence {color: #F56565;}
                    .DetailsValue--remise {color: var(--Success); font-weight: 700;}
                }
            }

            .PriceTable {
                padding: 16px;
                border-radius: 16px;
                background: rgba(var(--PrimaryRGB), 0.03);
                border: 1px solid rgba(var(--PrimaryRGB), 0.25);
                margin-bottom: 16px;

                .PriceRow {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    font-size: 12px;
                    margin-bottom: 10px;

                    &:last-of-type {margin-bottom: 0;}

                    .Label {color: var(--Muted);}

                    .Value {
                        font-weight: 500;
                        color: var(--Charcoal);
                    }
                }

                .Separator {
                    height: 1px;
                    background: var(--Borders);
                    margin: 8px 0;
                }

                .PriceTotalRow {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin-top: 8px;

                    .TotalLabel {
                        font-size: 10px;
                        font-weight: 900;
                        color: var(--Charcoal);
                    }

                    .TotalValue {    
                        font-weight: 700;
                        font-size: 14px;
                        color: var(--Primary);
                    }
                }
            }

            .DaysNote {
                text-align: center;
                font-size: 11px;
                color: var(--Muted);
            }
        }
    }

    #MobileDrawerOverlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(var(--CharcoalRGB), 0.65);
        z-index: 48;
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);

        &.Open {
            display: block;
            animation: fadeIn 0.25s ease;
        }
    }

    #MobileDrawer {
        position: fixed;
        bottom: 62px;
        left: 0;
        right: 0;
        background: var(--PureWhite);
        box-shadow: 0 -12px 40px rgba(var(--PureBlackRGB), 0.08);
        border-radius: 20px 20px 0 0;
        z-index: 49;
        transform: translateY(100%);
        transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
        max-height: 82vh;
        display: flex;
        flex-direction: column;
        will-change: transform;
        padding-bottom: env(safe-area-inset-bottom, 0px);

        &.Open {
            transform: translateY(0);

            ~ #MobileBar .Arrow {transform: rotate(180deg);}
        }

        #MobileDrawerHandle {
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 10px 0 6px;
            cursor: pointer;
            flex-shrink: 0;
                
            &:active .DrawerPill {background: var(--Primary);}

            .DrawerPill {
                width: 36px;
                height: 4px;
                border-radius: 2px;
                background: var(--DarkBorders);
                transition: background 0.2s;
            }
        }

        .DrawerContent {
            overflow-y: auto;
            padding: 4px 20px 24px;
            flex: 1;
            -webkit-overflow-scrolling: touch;

            .DrawerHeader {
                margin-bottom: 18px;
                padding-bottom: 16px;
                border-bottom: 1px solid var(--Borders);

                .Estimation {
                    font-size: 0.72rem;
                    font-weight: 800;
                    text-transform: uppercase;
                    letter-spacing: 0.02em;
                    color: var(--Primary);
                    margin-bottom: 6px;
                }

                .Title {
                    background: linear-gradient(135deg, var(--Primary), var(--DarkPrimary));
                    background-clip: text;
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    font-size: 26px;
                    font-weight: 800;
                    line-height: 1.15;
                }

                .PriceNote {
                    font-size: 11px;
                    color: var(--Muted);
                    margin-top: 3px;
                }
            }

            .SectionLabel {
                font-size: 0.72rem;
                font-weight: 800;
                text-transform: uppercase;
                letter-spacing: 0.02em;
                color: var(--Primary);
                margin: 20px 0 10px;
            }

            .BreakdownPlaceholder {
                font-size: 12px;
                color: var(--MinMuted);
                font-style: italic;
            }

            .Details {
                display: flex;
                justify-content: space-between;
                align-items: center;
                padding: 7px 0;
                border-bottom: 1px solid rgba(var(--PrimaryRGB), 0.15);
                font-size: 12px;

                &:last-child {border-bottom: none;}

                .DetailsLabel {color: var(--Muted);}
                .DetailsValue {font-weight: 500; color: var(--Muted);}
                .DetailsValue--multiplicateur {color: #E8A020;}
                .DetailsValue--urgence {color: #F56565;}
                .DetailsValue--remise {color: var(--Success); font-weight: 700;}
            }

            .PriceTable {
                padding: 16px;
                border-radius: 16px;
                background: rgba(var(--PrimaryRGB), 0.04);
                border: 1px solid rgba(var(--PrimaryRGB), 0.18);
                margin-bottom: 16px;

                .PriceRow {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    font-size: 12px;
                    margin-bottom: 10px;

                    &:last-of-type {margin-bottom: 0;}

                    .Label {color: var(--Muted);}

                    .Value {
                        font-weight: 500;
                        color: var(--Charcoal);
                    }
                }

                .Separator {
                    height: 1px;
                    background: var(--Borders);
                    margin: 8px 0;
                }

                .PriceTotalRow {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    margin-top: 8px;

                    .TotalLabel {
                        font-size: 12px;
                        font-weight: 900;
                        color: var(--Charcoal);
                    }

                    .TotalValue {    
                        font-weight: 700;
                        font-size: 14px;
                        color: var(--Primary);
                    }
                }
            }

            .DaysNote {
                text-align: center;
                font-size: 11px;
                color: var(--Muted);
                margin-top:12px;
            }
        }
    }

    #MobileBar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: var(--PureWhite);
        box-shadow: 0 -6px 24px rgba(var(--PureBlackRGB), 0.08);
        padding: 14px 16px;
        z-index: 50;
        user-select: none;
        -webkit-tap-highlight-color: transparent;

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

            .Label {
                font-size: 10px;
                color: var(--Muted);
                text-transform: uppercase;
                margin-bottom: 2px;
            }

            .Price {
                font-weight: 800;
                font-size: 16px;
            }

            .PriceNote {
                text-align: right;

                .Label {
                    font-size: 10px;
                    color: var(--Muted);
                    text-transform: uppercase;
                    margin-bottom: 2px;
                }

                .MobileTTC {
                    font-weight: 600;
                    font-size: 14px;
                    color: var(--Primary);
                }
            }

            .Hint {
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 2px;
                margin-left: 8px;

                .Arrow {
                    font-size: 14px;    
                    color: var(--Muted);
                    line-height: 1;
                    transition: transform 0.2s ease;
                }

                .Label {
                    font-size: 9px;
                    color: var(--MinMuted);
                    text-transform: uppercase;
                    white-space: nowrap;
                }
            }
        }
    }

    #ModalSuccess {
        position: fixed;
        inset: 0;
        background: rgba(var(--CharcoalRGB), 0.88);
        backdrop-filter: blur(10px);
        z-index: 200;
        display: flex;
        align-items: center;
        justify-content: center;
        animation: fadeIn 0.3s ease;

        &.Hidden {display: none !important;}

        .Card {
            background: var(--PureWhite);
            border: 1px solid var(--Borders);
            border-radius: 20px;
            box-shadow: 0 24px 60px rgba(var(--PureBlackRGB), 0.25);
            padding: 40px 36px;
            max-width: 440px;
            width: 90%;
            text-align: center;
            animation: zoomIn 0.3s ease;

            .ModalIcon {
                width: 56px;
                height: 56px;
                border-radius: 50%;
                background: rgba(var(--OnlineRGB), 0.12);
                margin: 0 auto 24px;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .ModalTitle {
                font-size: 20px;
                font-weight: 800;
                color: var(--Charcoal);
                margin: 0 0 8px;
            }

            .ModalDesc {
                color: var(--Muted);
                font-size: 14px;
                line-height: 1.6;
                margin: 0 0 28px;
            }

            .ModalActions {
                display: flex;
                flex-direction: column;
                gap: 12px; 
            }
        }
    }

    .Accent {color: var(--Primary);}
    .Hidden {display: none !important;}

    #s-remise-row .Label, #s-remise-row .Value, #md-remise-row .Label, #md-remise-row .Value {color: var(--Success); font-weight: 700;}
}

@keyframes fadeIn {
    from {opacity: 0;}
    to   {opacity: 1;}
}

@keyframes zoomIn {
    from {transform: scale(0.92); opacity: 0;}
    to   {transform: scale(1); opacity: 1;}
}

main.Terms {
    .TermsContent {
        background-color: var(--Background);
        padding: 80px 40px 120px;

        .Container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 240px 1fr;
            gap: 80px;
            align-items: start;

            .Nav {
            position: sticky;
            top: 88px;
            background-color: var(--PureWhite);
            border-radius: 16px;
            padding: 28px 24px;
            box-shadow: 0 4px 24px rgba(var(--PureBlackRGB), 0.07);

                .Title {
                    font-size: 0.7rem;
                    font-weight: 800;
                    text-transform: uppercase;
                    color: var(--PureBlack);
                    margin-bottom: 16px;
                    padding-bottom: 12px;
                    border-bottom: 1px solid rgba(var(--PureBlackRGB), 0.07);
                }

                ul {
                    list-style: none;
                    padding: 0;
                    margin: 0;
                    display: flex;
                    flex-direction: column;
                    gap: 4px;

                    li a {
                        display: block;
                        font-size: 0.82rem;
                        font-weight: 600;
                        color: var(--Charcoal);
                        text-decoration: none;
                        padding: 7px 0;
                        border-radius: 8px;
                        transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
                        border-left: 2px solid transparent;

                        &:hover {
                            background: rgba(var(--PrimaryRGB), 0.06);
                            color: var(--Primary);
                            padding-left: 10px;
                        }

                        &.active {
                            background: rgba(var(--PrimaryRGB), 0.1);
                            color: var(--Primary);
                            border-left-color: var(--Primary);
                            padding-left: 10px;
                        }
                    }
                }
            }

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

            .TermsArticle {
                display: grid;
                grid-template-columns: 56px 1fr;
                gap: 24px;
                padding: 48px 0;
                border-bottom: 1px solid rgba(var(--PureBlackRGB), 0.08);

                &:first-child {padding-top: 0;}
                &:last-child  {border-bottom: none;}

                .Num {
                    font-size: 1rem;
                    font-weight: 800;
                    color: var(--Primary);
                    padding-top: 6px;
                }

                .SecondContainer {
                    h2 {
                        font-size: 1.55rem;
                        font-weight: 800;
                        color: var(--Primary);
                        margin-bottom: 20px;
                    }

                    h3 {
                        font-size: 1rem;
                        font-weight: 700;
                        color: var(--DarkPrimary);
                        margin: 24px 0 10px;
                    }

                    p {
                        font-size: 0.95rem;
                        line-height: 1.75;
                        color: var(--Charcoal);
                        margin-bottom: 14px;
                        font-weight: 500;
                        text-transform: none;
                        text-align: justify;

                        &:last-child {margin-bottom: 0;}
                    }

                    a {
                        color: var(--Primary);
                        position: relative;
                        text-decoration: none;
                        width: fit-content;
                        transition: all 0.3s ease;

                        &:hover::before {transform: scaleX(1);}

                        &::before {
                            content: "";
                            position: absolute;
                            display: block;
                            width: 100%;
                            height: 2px;
                            bottom: 0;
                            left: 0;
                            background-color: var(--Primary);
                            transform: scaleX(0);
                            transition: transform 0.3s ease;
                        }
                    }

                    strong {color: var(--Charcoal);}

                    .Card {
                        background-color: var(--PureWhite);
                        border-radius: 12px;
                        padding: 6px 0;
                        margin: 20px 0;
                        box-shadow: 0 2px 16px rgba(var(--PureBlackRGB), 0.06);
                        overflow: hidden;

                        .CardRow {
                            display: flex;
                            align-items: baseline;
                            gap: 16px;
                            padding: 12px 20px;
                            border-bottom: 1px solid rgba(var(--PureBlackRGB), 0.05);
                            transition: background 0.2s ease;

                            &:last-child {border-bottom: none;}
                            &:hover {background: rgba(var(--PrimaryRGB), 0.04);}

                            .Label {
                                font-size: 0.78rem;
                                font-weight: 800;
                                text-transform: uppercase;
                                color: var(--Primary);
                                flex-shrink: 0;
                                width: 200px;
                            }

                            .Value {
                                font-size: 0.9rem;
                                font-weight: 600;
                                color: var(--PureBlack);
                                text-transform: none;

                                a {color: var(--Primary);}
                            }
                        }
                    }

                    .List {
                        list-style: none;
                        padding: 0;
                        margin: 12px 0 16px;
                        display: flex;
                        flex-direction: column;
                        gap: 6px;

                        li {
                            font-size: 0.92rem;
                            font-weight: 500;
                            color: var(--Charcoal);
                            padding-left: 20px;
                            position: relative;
                            text-transform: none;
                            line-height: 1.65;

                            >a {color: inherit; text-decoration: none;}

                            &::before {
                                content: "";
                                position: absolute;
                                left: 0;
                                top: 10px;
                                width: 6px;
                                height: 6px;
                                border-radius: 50%;
                                background-color: var(--Charcoal);
                            }
                        }
                    }

                    .Highlight {
                        display: flex;
                        gap: 14px;
                        align-items: flex-start;
                        background: rgba(var(--PrimaryRGB), 0.07);
                        border-left: 3px solid var(--Primary);
                        border-radius: 0 10px 10px 0;
                        padding: 16px 20px;
                        margin: 20px 0;

                        svg {
                            width: 18px;
                            height: 18px;
                            stroke: var(--Primary);
                            flex-shrink: 0;
                            margin-top: 2px;
                        }

                        p {
                            margin: 0;
                            font-size: 0.9rem;
                            color: var(--Charcoal);
                            font-weight: 600;
                        }
                    }

                    .Button {
                        display: inline-block;
                        padding: .75rem 1.25rem;
                        border-radius: 10rem;
                        color: var(--PureWhite);
                        text-transform: uppercase;
                        font-size: 1rem;
                        text-decoration: none;
                        transition: all .3s;
                        position: relative;
                        overflow: hidden;
                        z-index: 1;

                        &::after {
                            content: '';
                            position: absolute;
                            bottom: 0;
                            left: 0;
                            width: 100%;
                            height: 100%;
                            background-color: var(--Primary);
                            border-radius: 10rem;
                            z-index: -2;
                        }

                        &::before {
                            content: '';
                            position: absolute;
                            bottom: 0;
                            left: 0;
                            width: 0%;
                            height: 100%;
                            background-color: var(--DarkPrimary);
                            transition: all .3s;
                            border-radius: 10rem;
                            z-index: -1;
                        }

                        &:hover {
                            color: var(--PureWhite);

                            &::before {width: 100%;}
                        }
                    }

                    .Update {
                        font-size: 0.8rem ;
                        color: var(--PureBlack);
                        font-style: italic;
                        margin-top: 20px;

                        strong {color: var(--Primary);}
                    }
                }
            }
        }
    }
}

/* ==========================================================================
   # Responsive Design
========================================================================== */

@media (min-width: 1024px) {
    main.Simu {
        #MobileBar, #MobileDrawer, #MobileDrawerOverlay {display: none !important;}
    }
}

@media (max-width: 1023px) {
    main.Blog.Index .BlogGrid {grid-template-columns: repeat(2, 1fr);}

    main.Simu {
        .Layout {padding-right: 0;}

        .Layout {
            .Form {
                padding-top: 44px;
                padding-right: 32px;
                padding-bottom: 130px;
                padding-left: 32px;

                .Steps .Panel .FormGroup .Input {font-size: 16px;}
            }

            #PriceSidebar {display: none !important;}
        }


        #MobileBar {padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));}
    }
}

@media (min-width: 951px) {
    .HamburgerBtn {display: none !important;}
    .MobileNav    {display: none !important;}
}

@media (max-width: 950px) {
    #CursorDot, #CursorBall {display: none;}
    .NavBar {
        padding: 0 24px;

        .NavLinks {display: none;}
        .NavCTA   {display: none;}
        .HamburgerBtn {display: flex;}
    }

    .Footer {
        .FooterContainer {
            grid-template-columns: 1fr 1fr;

            .FooterCol {
                &:first-child {
                    grid-column: 1 / -1;
                    align-items: center;
                    text-align: center;
                }
            }
        }

        .FooterBottom {
            flex-direction: column;
            gap: 12px;
            text-align: center;

            .FooterTerms {gap: 40px}
        }
    }

    main.Index section.Why {
        padding: 60px 20px 80px;

        .Layout {
            grid-template-columns: 1fr;
            gap: 48px;

            .Card:nth-of-type(2) {
                display: flex;
                flex-direction: column;

                h4 {order: 1;}
                p {order: 2;}
                .CardImg {order: 3;}
            }
        }
    }

    main.Index section.TeamGallery {
        .GalleryGrid {column-count: 2;}
    }

    main.Reals {
        section.Why {
            padding: 0 20px;

            .Layout {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        &.SubPage .ProjectSplit {grid-template-columns: 1fr; gap: 48px; margin-bottom: 70px;}
    }

    main.Blog .BlogContent .Container {grid-template-columns: 200px 1fr; gap: 48px;}

    main.Contact {
        .ContactLayout {
            flex-direction: column;

            .SocialSidebar {margin-left: 16px}

            .ContactLeft {
                width: 100%;
                min-width: unset;
                padding: 50px 32px 40px 64px;
                height: auto;

                .Form .FormActions {
                    width:100%;
                }
            }

            .ContactRight {display: none;}
        }
    }

    main.Terms .TermsContent .Container {grid-template-columns: 200px 1fr; gap: 48px;}
}

@media (max-width: 768px) {
    main.Services {
        section.Why {
            padding: 130px 24px 50px;

            .WhyHeader {
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;

                h2 {font-size: 2.1rem;}

                .WhyLead {max-width: 100%;}
            }

            .WhyGrid {
                grid-template-columns: 1fr;
                gap: 20px;

                .WhyCard.Featured, .WhyCard:nth-child(2), .WhyCard:nth-child(3) {margin-top: 0;}
            }
        }

        section.Grid {
            padding: 40px 24px 80px;

            .Grid {grid-template-columns: 1fr; gap: 20px;}

            .Card {
                padding: 26px;

                &.Featured {grid-column: span 1; grid-row: span 1;}
            }

            .FeaturedBody {grid-template-columns: 1fr !important;}
            .FeaturedBody .FeaturedPreview {margin-top: 24px;}
        }

        section.CTA {
            padding: 0 24px 70px;

            .CTACard {
                flex-direction: column;
                align-items: flex-start;
                gap: 32px;
                padding: 48px 32px;
                border-radius: 24px;
            }

            .CTAAction {max-width: 100%;}
        }
    }

    main.Blog {
        .BlogHero {
            padding: 130px 24px 60px;

            .Decor {display: none;}
        }

        .BlogContent {
            padding: 48px 24px 80px;

            .Container {
                grid-template-columns: 1fr;
                gap: 0;

                .Nav {
                    position: static;
                    margin-bottom: 40px;
                }
            }
        }

        .TrapGrid, .HarmonyGrid {grid-template-columns: 1fr;}

        .LoopFlow {
            flex-direction: column;

            .Arrow {transform: rotate(90deg);}
        }
    }

    main.About {
        section.Timeline {
            padding: 130px 24px 100px;

            .TimelineHeader {margin-bottom: 64px;}
            .TimelineList {max-width: 440px;}

            .TimelineItem {
                grid-template-columns: 56px 1fr;
                column-gap: 24px;

                .Rail {grid-column: 1;}
                .Line {left: 50%;}

                .Circle {width: 48px; height: 48px;}

                &:nth-child(odd) .Content, &:nth-child(even) .Content {
                grid-column: 2;
                text-align: left;
                margin: 0;
                max-width: none;
                }
            }
        }

        section.Skills, section.Values, section.Anchor {
            padding: 70px 24px;

            .SectionHeader {margin-bottom: 44px;}
            .Grid {grid-template-columns: 1fr; gap: 20px;}
            .Card {padding: 28px;}
            .Card .CardHead {align-items: flex-start;}
        }

        section.Values .Card p {margin-left: 0; margin-top: 4px;}

        section.Recommendations {
            padding: 70px 24px;

            .SectionHeader {margin-bottom: 44px;}
            .MarqueeTrack {gap: 20px;}
            .Card {
                width: 320px;
                flex: 0 0 320px;
                padding: 40px 28px 28px;

                &::before {font-size: 4rem;}
            }
        }
    }

    main.Simu .Layout .Form {
        padding-top: 32px;
        padding-right: 20px;
        padding-bottom: 130px;
        padding-left: 20px;

        .Brand {
            margin-bottom: 28px;

            .LogoRow {margin-bottom: 18px;}
            .MainTitle {font-size: 24px;}
            .MainDesc  {font-size: 13px;}
        }

        .Steps .Panel {
            .StepHead {margin-bottom: 22px;}
            .FormGrid {grid-template-columns: 1fr;}
            .ChoiceList.ChoiceListGrid {grid-template-columns: 1fr;}
        }

        .FormNav {
            gap: 10px;

            .BtnGhost {
                flex: 0 0 auto;
                padding: 13px 16px;
                font-size: 13px;
                white-space: nowrap;
            }

            .BtnMain {
                flex: 1;
                padding: 13px 14px;
                font-size: 13px;
                text-align: center;
            }
        }
    }

    main.Terms {
        .TermsHero {
            padding: 130px 24px 60px;
            min-height: 300px;

            .Decor {display: none;}
        }

        .TermsContent {
            padding: 48px 24px 80px;

            .Container {
                grid-template-columns: 1fr;
                gap: 0;

                .Nav {
                    position: static;
                    margin-bottom: 40px;
                }

                .TermsArticles .TermsArticle {
                    grid-template-columns: 1fr;
                    gap: 8px;

                    .Num {padding-top: 0;}
                    .SecondContainer .Card .CardRow .Label {width: 90px;}
                }
            }
        }
    }
}

@media (max-width: 600px) {
    :root {
        --Scale:     0.65;
        --Thickness: 10px;
        --Border:    5px;
        --Gap:       28px;
    }

    section.Merge {
        padding: 0 10px;

        .ListContainer {

            .ListText, .List {font-size: 1.5rem;}

            .ListText {
                white-space: nowrap;
                text-align: right;
                width: 50%;
            }

            .List {
                width: 50%;
                text-align: left;
            }
        }
    }

    section.Me {
        flex-direction: column-reverse;
        margin: 20px;
        gap: 30px;

        svg {height: auto;}
        .Text {
            text-align: center;
            .SlideBtn {align-self: flex-start; margin: 0 auto;}
        }
    }

    main.Index {
        section.Hero {
            .Box {transform: translate(-2vw, -40px);}
            img {max-width: 225px;}
        }

        section.Why {
            padding: 40px 16px 60px;

            .Layout {grid-template-columns: 1fr;}
        }

        section.TeamGallery {
            .GalleryTitle {font-size: 2rem; margin-bottom: 24px;}
            .GalleryGrid {column-count: 1;}
        }
    }

    main.Reals {
        &.SubPage {
            .TopBanner, .BottomBanner {border-radius: 18px;}
            .BottomBanner {margin-top: 60px;}
            .Title {margin-bottom: 40px;}
            .Intro {margin-bottom: 56px; gap: 14px;}
            hr {margin-bottom: 56px;}
            .ProjectBloc, .FullWidthBanner, .ProjectGallery {margin-bottom: 56px;}
            .ComparisonsGrid {margin-bottom: 64px; gap: 40px;}
            .RelatedProjects {margin: 72px auto 64px;}
        }
    }

    main.Blog {
        &.Index {
            .BlogListing {padding: 56px 24px 64px;}

            .BlogGrid {grid-template-columns: 1fr;}

            .BlogCard.Featured {grid-column: span 1; padding: 30px 26px;}
        }

        .BlogHero .HeroInner {
            .Breadcrumb {display: none;}
            h1 {margin-bottom: 20px;}
        }

        .PriceTable {thead th, td {padding: 10px 14px; font-size: 0.82rem;}}

        .HarmonyCard .Swatch {width: 30px; height: 30px;}

        .ColorWheelVisual .Wheel {width: 160px; height: 160px;}

        .RatioBar {height: 40px;}
        .RatioBar span {font-size: 0.68rem;}

        .BlogCTA {
            padding: 36px 22px;

            .CTAButtons {
                flex-direction: column;
                width: 100%;

                a {width: 100%; text-align: center;}
            }
        }

        .FAQList details {padding: 4px 16px;}
    }

    main.Contact {
        max-width: 100%;

        .SocialSidebar {display: none}
        .ContactLayout {
            max-width: calc(100% - 40px);
            min-height: 100%;
            
            .ContactLeft {
                padding: 40px 20px 40px;

                .Form .FormActions {width: 100%;}
                .ContactCoords {
                    justify-content: space-between;

                    .CoordDot {display: none;}
                }

                .ContactTitle {font-size: 2rem;}
            }
        }

        section.ContactBooking {
            padding: 0 20px 80px;

            .ContactBookingFrame {
                padding: 10px;

                iframe {height: 560px;}
            }
        }
    }

    main.Terms .TermsContent .Container.TermsArticles .TermsArticle .SecondContainer .Card .CardRow {
        flex-direction: column;
        gap: 4px;

        .Label {width: auto;}
    }
}

@media (max-width: 420px) {
    main.Simu .Layout .Form {
        padding-top: 28px;
        padding-right: 16px;
        padding-left: 16px;

        .Brand .LogoRow .LogoName {font-size: 12px;}
        .ProgressBar .Dots {width: 26px; height: 26px; font-size: 12px;}
    }
}

@media (prefers-reduced-motion: reduce) {
    section.DesignedCTA .WaveEchos {animation: none !important;}
    main.Reals .SubPage .Comparaisons, .Intro p, .ProjectGallery img, .RelatedImage, .RelatedImage img, .RelatedFooter .BtnOutline {transition: none !important;}
    section.Recommendations {
        .MarqueeTrack {animation: none !important;}
        .Marquee {overflow-x: auto;}
    }
}