/* =========================================================
   DOORWAY SOLUTION
   MAIN STYLESHEET
========================================================= */


/* =========================================================
   01. BRAND SYSTEM
========================================================= */

:root {
    --brand-blue: #3f4198;
    --brand-blue-light: #5558bd;
    --brand-blue-dark: #292b72;

    --charcoal: #242124;
    --charcoal-soft: #373237;

    --silver: #969096;
    --silver-light: #c4c0c4;

    --black: #08090c;
    --black-soft: #101116;

    --white: #ffffff;
    --off-white: #f6f6f8;

    --text-muted: #a9aab3;

    --border-dark: rgba(255, 255, 255, 0.13);
    --border-light: #e3e4ea;

    --container: 1380px;

    --font-heading: "Manrope", sans-serif;
    --font-body: "Inter", sans-serif;
    /* Dark section theme */

--dark-section-bg:
    radial-gradient(
        circle at 82% 12%,
        rgba(85, 88, 189, 0.16) 0%,
        rgba(63, 65, 152, 0.07) 24%,
        transparent 46%
    ),
    radial-gradient(
        circle at 8% 88%,
        rgba(63, 65, 152, 0.07) 0%,
        transparent 34%
    ),
    linear-gradient(
        145deg,
        #11131a 0%,
        #131620 48%,
        #0e1017 100%
    );
}


/* =========================================================
   02. RESET & GLOBAL
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    width: 100%;
    scroll-behavior: smooth;
}

body {
    width: 100%;
    max-width: 100%;

    margin: 0;

    overflow-x: hidden;

    background: var(--black);
    color: var(--white);

    font-family: var(--font-body);
}

body.menu-open {
    overflow: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

img,
svg {
    display: block;
    max-width: 100%;
}

button,
input,
textarea {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}


/* =========================================================
   03. FLOATING HEADER — DESKTOP
========================================================= */

.doorway-header {
    position: fixed;

    top: 20px;
    left: 0;

    z-index: 1000;

    width: 100%;

    padding: 0 24px;

    transition:
        top 0.3s ease,
        padding 0.3s ease;
}


/* Main floating navbar */

.doorway-navbar {
    width: min(100%, 1520px);
    min-height: 78px;

    margin: 0 auto;

    padding: 0 18px 0 24px;

    display: flex;
    align-items: center;

    background: rgba(255, 255, 255, 0.97);

    border: 1px solid rgba(35, 36, 44, 0.07);

    border-radius: 16px;

    box-shadow:
        0 15px 45px
        rgba(20, 22, 35, 0.10);

    transition:
        min-height 0.3s ease,
        box-shadow 0.3s ease;
        contain: paint;
}


/* =========================================================
   04. HEADER LOGO
========================================================= */

.doorway-navbar-logo {
    display: flex;
    align-items: center;

    flex-shrink: 0;
}

.doorway-navbar-logo img {
    width: 150px;
    height: auto;
}


/* =========================================================
   05. DESKTOP NAVIGATION
========================================================= */

.doorway-nav {
    margin-left: auto;
    margin-right: 46px;

    display: flex;
    align-items: center;

    gap: 36px;
}

.doorway-nav-link {
    position: relative;

    padding: 29px 0 27px;

    color: #36373d;

    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;

    transition:
        color 0.25s ease;
}

.doorway-nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 20px;

    width: 100%;
    height: 1.5px;

    background: var(--brand-blue);

    transform: scaleX(0);
    transform-origin: right center;

    transition:
        transform 0.3s ease;
}

.doorway-nav-link:hover,
.doorway-nav-link.active {
    color: var(--brand-blue);
}

.doorway-nav-link:hover::after,
.doorway-nav-link.active::after {
    transform: scaleX(1);
    transform-origin: left center;
}


/* =========================================================
   06. HEADER RIGHT ACTIONS
========================================================= */

.doorway-navbar-right {
    display: flex;
    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}


/* =========================================================
   07. DESKTOP CONSULTATION BUTTON
========================================================= */

.doorway-header-cta {
    min-height: 50px;

    padding: 0 18px 0 21px;

    display: inline-flex;
    align-items: center;

    gap: 20px;

    background: var(--brand-blue);
    color: var(--white);

    border-radius: 6px;

    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;

    box-shadow:
        0 8px 20px
        rgba(65, 67, 153, 0.14);

    transition:
        background 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.doorway-header-cta svg {
    width: 18px;
    height: 18px;

    transition:
        transform 0.25s ease;
}

.doorway-header-cta:hover {
    background: var(--brand-blue-light);

    transform: translateY(-1px);

    box-shadow:
        0 12px 28px
        rgba(65, 67, 153, 0.22);
}

.doorway-header-cta:hover svg {
    transform: translateX(4px);
}


/* =========================================================
   08. MOBILE-ONLY HEADER ELEMENTS
========================================================= */

/* Hidden on desktop */

.mobile-brochure-btn {
    display: none;
}

.doorway-mobile-menu {
    display: none;
}


/* =========================================================
   09. HAMBURGER ICON
========================================================= */

.doorway-menu-toggle {
    position: relative;

    width: 44px;
    height: 44px;

    padding: 0;

    flex-shrink: 0;

    border: 1px solid #e3e3e8;
    border-radius: 7px;

    background: #f3f3f7;

    cursor: pointer;
    display: none;
}

.doorway-menu-toggle span {
    position: absolute;

    left: 12px;

    width: 19px;
    height: 1.5px;

    background: #26272c;

    transition:
        top 0.3s ease,
        transform 0.3s ease;
}

.doorway-menu-toggle span:first-child {
    top: 17px;
}

.doorway-menu-toggle span:last-child {
    top: 25px;
}

.doorway-menu-toggle.active span:first-child {
    top: 21px;

    transform: rotate(45deg);
}

.doorway-menu-toggle.active span:last-child {
    top: 21px;

    transform: rotate(-45deg);
}


/* =========================================================
   10. HEADER — SCROLLED STATE
========================================================= */

.doorway-header.scrolled {
    top: 10px;
}

.doorway-header.scrolled .doorway-navbar {
    min-height: 70px;

    box-shadow:
        0 12px 35px
        rgba(20, 22, 35, 0.13);
}


/* =========================================================
   11. HERO — MAIN SECTION
========================================================= */
/* =========================================================
   HERO — FULL BACKGROUND IMAGES
========================================================= */

.hero-bg-slider {
    position: absolute;
    inset: 0;

    z-index: 0;

    overflow: hidden;

    background: #07080b;

    pointer-events: none;
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.hero-bg-slide {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;

    object-fit: cover;

    opacity: 0;

    transition: opacity 0.55s ease;

    pointer-events: none;
}


/* Active image */

.hero-bg-slide.active {
    opacity: 1;
}


/* =========================================================
   INDIVIDUAL IMAGE CROPS
========================================================= */

.hero-bg-slide:nth-child(1) {
    object-position: center 47%;
}

.hero-bg-slide:nth-child(2) {
    object-position: center 52%;
}

.hero-bg-slide:nth-child(3) {
    object-position: center 52%;
}

.hero-bg-slide:nth-child(4) {
    object-position: center center;
}


/* =========================================================
   READABILITY OVERLAY
========================================================= */

/* =========================================================
   HERO OVERLAY — BALANCED / MORE IMAGE VISIBILITY
========================================================= */

.hero-bg-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:

        /* very subtle overall darkness */
        linear-gradient(
            180deg,
            rgba(5, 6, 9, 0.16) 0%,
            rgba(5, 6, 9, 0.10) 45%,
            rgba(5, 6, 9, 0.28) 100%
        ),

        /* slight blue atmosphere — NOT black */
        linear-gradient(
            90deg,
            rgba(45, 48, 100, 0.08) 0%,
            rgba(20, 22, 40, 0.05) 42%,
            rgba(5, 6, 9, 0.12) 100%
        );
}
.product-hero {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #07080b;

    isolation: isolate;
}


/* =========================================================
   12. HERO — BACKGROUND DETAILS
========================================================= */

.product-hero-grid {
    position: absolute;
    inset: 0;

    z-index: 2;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        );

    background-size: 82px 82px;

    opacity: 0.06;
}

.product-hero-glow {
    position: absolute;

    z-index: 2;

    top: 42%;
    right: -180px;

    width: 520px;
    height: 520px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(63, 65, 152, 0.16),
            transparent 68%
        );

    transform: translateY(-50%);

    pointer-events: none;
}


/* =========================================================
   13. HERO — DESKTOP LAYOUT
========================================================= */

.product-hero-container {
    position: relative;

    z-index: 5;

    width:
        min(
            calc(100% - 64px),
            var(--container)
        );

    margin: 0 auto;

    padding:
        155px 0
        80px;

    display: grid;

    grid-template-columns:
        minmax(380px, 0.78fr)
        minmax(540px, 1.22fr);

    align-items: center;

    gap:
        clamp(
            50px,
            6vw,
            100px
        );
}


/* =========================================================
   14. HERO — LEFT CONTENT
========================================================= */

.product-hero-content {
    position: relative;

    width: 100%;
}


/* Small headline */

.product-hero-eyebrow {
    margin:
        0 0
        27px;

    display: flex;
    align-items: center;

    gap: 12px;

    color:
        rgba(255, 255, 255, 0.48);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.eyebrow-line {
    width: 36px;
    height: 1px;

    flex-shrink: 0;

    background: var(--brand-blue-light);
}


/* Main headline */

.product-hero-title {
    max-width: 650px;

    margin: 0;

    color: var(--white);

    font-family: var(--font-heading);

    font-size:
        clamp(
            54px,
            5.4vw,
            86px
        );

    font-weight: 500;

    line-height: 0.98;

    letter-spacing: -0.065em;
}

.product-hero-title span {
    display: block;

    color: var(--brand-blue-light);
}


/* Supporting text */

.product-hero-description {
    max-width: 570px;

    margin:
        31px 0 0;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================================
   15. HERO — CTA BUTTONS
========================================================= */

.product-hero-actions {
    margin-top: 36px;

    display: flex;
    align-items: center;

    flex-wrap: wrap;

    gap: 12px;
}

.hero-btn {
    min-height: 56px;

    padding:
        0 18px
        0 22px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}


/* Primary button */

.hero-btn-primary {
    background: var(--brand-blue);

    color: var(--white);

    border: 1px solid var(--brand-blue);
}

.hero-btn-primary:hover {
    background: var(--brand-blue-light);

    border-color: var(--brand-blue-light);

    transform: translateY(-2px);
}


/* Secondary button */

.hero-btn-outline {
    background:
        rgba(255, 255, 255, 0.025);

    color:
        rgba(255, 255, 255, 0.9);

    border:
        1px solid
        rgba(255, 255, 255, 0.15);
}

.hero-btn-outline:hover {
    background:
        rgba(255, 255, 255, 0.07);

    border-color:
        rgba(255, 255, 255, 0.27);
}


/* Button arrow */

.hero-btn-arrow {
    width: 28px;
    height: 28px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.25);
}

.hero-btn-arrow svg {
    width: 15px;
}


/* CTA dot */

.hero-btn-dot {
    width: 8px;
    height: 8px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--brand-blue-light);

    box-shadow:
        0 0 0 5px
        rgba(85, 88, 189, 0.12);
}


/* =========================================================
   16. HERO — PROOF POINTS
========================================================= */

.product-hero-points {
    margin-top: 48px;

    display: flex;
    align-items: center;

    gap: 18px;
}

.product-hero-points div {
    display: flex;
    flex-direction: column;

    gap: 5px;
}

.product-hero-points strong {
    color: var(--white);

    font-family: var(--font-heading);

    font-size: 14px;
    font-weight: 600;
}

.product-hero-points span {
    color:
        rgba(255, 255, 255, 0.35);

    font-size: 10px;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}

.product-hero-points i {
    width: 3px;
    height: 3px;

    flex-shrink: 0;

    border-radius: 50%;

    background: var(--brand-blue-light);
}


/* =========================================================
   17. PRODUCT SHOWCASE — WRAPPER
========================================================= */

.hero-showcase {
    position: relative;

    width: 100%;
    min-width: 0;
}


/* =========================================================
   18. PRODUCT SHOWCASE — TOP BAR
========================================================= */

.hero-showcase-header {
    margin-bottom: 15px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 20px;
}

.showcase-label {
    display: block;

    margin-bottom: 5px;

    color: var(--brand-blue-light);

    font-size: 15px;
    font-weight: 600;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}

.hero-showcase-header p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.44);

    font-size: 14px;
}

.showcase-counter {
    flex-shrink: 0;

    display: flex;
    align-items: center;

    gap: 5px;

    color:
        rgba(255, 255, 255, 0.35);

    font-family: var(--font-heading);

    font-size: 14px;
}

.showcase-counter strong {
    color: var(--brand-blue-light);
}


/* =========================================================
   19. PRODUCT SHOWCASE — STAGE
========================================================= */

.hero-product-stage {
    position: relative;

    width: 100%;

    aspect-ratio: 1.25 / 0.88;

    overflow: hidden;

    isolation: isolate;

    perspective: 1400px;

    background:
        linear-gradient(
            145deg,
            rgba(10, 11, 15, 0.88),
            rgba(6, 7, 10, 0.82)
        );

    border:
        1px solid
        rgba(255, 255, 255, 0.10);

    box-shadow:
        0 28px 70px
        rgba(0, 0, 0, 0.25);

    touch-action: pan-y;
}

/* Stage lighting */

.hero-product-stage::before {
    content: "";

    position: absolute;

    top: -40%;
    left: 15%;

    width: 70%;
    height: 120%;

    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255, 255, 255, 0.025),
            transparent
        );

    transform: rotate(20deg);

    pointer-events: none;
}


/* Floor glow */

.hero-product-floor {
    position: absolute;

    left: 17%;
    right: 17%;
    bottom: 8%;

    height: 22%;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse at center,
            rgba(83, 86, 194, 0.18),
            rgba(0, 0, 0, 0) 68%
        );

    transform: rotateX(67deg);

    filter: blur(2px);
}


/* =========================================================
   20. PRODUCT SLIDES
========================================================= */

.hero-product-slide {
    position: absolute;

    inset: 0;

    opacity: 0;

    pointer-events: none;

    transform:
        translateX(100%)
        scale(0.72)
        rotateY(-24deg);

    transition:
    opacity 0.4s ease,
    transform 0.6s
    cubic-bezier(.2, .8, .2, 1);
}

.hero-product-slide.active {
    z-index: 5;

    opacity: 1;

    pointer-events: auto;

    transform:
        translateX(0)
        scale(1)
        rotateY(0);
}


/* =========================================================
   21. PRODUCT IMAGE
========================================================= */

.hero-product-model {
    position: absolute;

    top: 7%;
    right: 10%;
    bottom: 19%;
    left: 10%;

    display: flex;
    align-items: center;
    justify-content: center;

    transform-style: preserve-3d;
}

.hero-product-model img {
    width: 100%;
    height: 100%;

    object-fit: contain;

    user-select: none;

    -webkit-user-drag: none;

    filter: none;
}


/* =========================================================
   22. PRODUCT ENTRANCE ANIMATION
========================================================= */

.hero-product-slide.active
.hero-product-model {
    animation:
        doorwayProductIntro
        1.5s
        cubic-bezier(.2, .8, .2, 1)
        both;
}

@keyframes doorwayProductIntro {

    0% {
        opacity: 0;

        transform:
            translateX(85px)
            translateY(20px)
            rotateY(-25deg)
            scale(0.85);
    }

    20% {
        opacity: 1;
    }

    46% {
        transform:
            translateX(0)
            translateY(0)
            rotateY(7deg)
            scale(1.03);
    }

    70% {
        transform:
            translateX(0)
            translateY(0)
            rotateY(-3deg)
            scale(1.015);
    }

    100% {
        opacity: 1;

        transform:
            translateX(0)
            translateY(0)
            rotateY(0)
            scale(1);
    }

}


/* =========================================================
   23. PRODUCT DETAILS CARD
========================================================= */

.hero-product-details {
    position: absolute;

    z-index: 10;

    left: 24px;
    bottom: 22px;

    min-width: 265px;

    padding:
        14px 16px;

    display: flex;

    gap: 15px;

     background:
        rgba(8, 9, 13, 0.92);

    border:
        1px solid
        rgba(255, 255, 255, 0.10);
}

.hero-product-number {
    padding-top: 3px;

    color: var(--brand-blue-light);

    font-size: 9px;
}

.hero-product-category {
    display: block;

    margin-bottom: 4px;

    color:
        rgba(255, 255, 255, 0.40);

    font-size: 12px;

    letter-spacing: 0.1em;

    text-transform: uppercase;
}

.hero-product-details h2 {
    margin:
        0 0
        7px;

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 18px;
    font-weight: 600;
}

.hero-product-details a {
    display: inline-flex;
    align-items: center;

    gap: 7px;

    color:
        rgba(255, 255, 255, 0.62);

    font-size: 15px;

    transition:
        color 0.2s ease,
        gap 0.2s ease;
}

.hero-product-details a:hover {
    color: var(--white);

    gap: 10px;
}


/* =========================================================
   24. PRODUCT CONTROLS
========================================================= */

.hero-product-controls {
    width: 100%;

    margin-top: 17px;

    display: grid;

    grid-template-columns:
        44px
        minmax(0, 1fr)
        44px;

    align-items: center;

    gap: 14px;
}

.hero-product-arrow {
    width: 44px;
    height: 44px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255, 255, 255, 0.11);

    background:
        rgba(255, 255, 255, 0.025);

    color:
        rgba(255, 255, 255, 0.65);

    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.hero-product-arrow:hover {
    background: var(--brand-blue);

    border-color: var(--brand-blue);

    color: var(--white);

    transform: translateY(-2px);
}

.hero-product-arrow svg {
    width: 17px;
}


/* =========================================================
   25. PRODUCT PROGRESS
========================================================= */

.hero-product-progress {
    position: relative;

    width: 100%;
    height: 1px;

    overflow: hidden;

    background:
        rgba(255, 255, 255, 0.11);
}

/* =========================================================
   PRODUCT PROGRESS — SMOOTH GPU VERSION
========================================================= */

.hero-product-progress span {
    position: absolute;

    inset: 0;

    width: 100%;
    height: 100%;

    background:
        var(--brand-blue-light);

    transform:
        scaleX(0);

    transform-origin:
        left center;

    will-change:
        transform;
}


.hero-product-progress.playing span {
    animation:
        heroProductProgress
        3.2s
        linear
        forwards;
}


@keyframes heroProductProgress {

    from {
        transform:
            scaleX(0);
    }

    to {
        transform:
            scaleX(1);
    }

}

/* =========================================================
   26. PRODUCT INTERACTION HINT
========================================================= */

.hero-product-hint {
    margin-top: 13px;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 10px;

    color:
        rgba(255, 255, 255, 0.25);

    font-size: 11px;

    letter-spacing: 0.11em;

    text-transform: uppercase;
}

.hint-line {
    width: 30px;
    height: 1px;

    background:
        rgba(85, 88, 189, 0.5);
}


/* =========================================================
   27. HERO BOTTOM BORDER
========================================================= */

.product-hero-bottom-border {
    position: absolute;

    bottom: 0;
    left: 50%;

    width:
        min(
            calc(100% - 64px),
            var(--container)
        );

    height: 1px;

    transform:
        translateX(-50%);

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(85, 88, 189, 0.55),
            transparent
        );
}


/* =========================================================
   28. RESPONSIVE — SMALL DESKTOP
   1025px — 1280px
========================================================= */

@media (max-width: 1280px) {

    .doorway-nav {
        margin-right: 28px;

        gap: 27px;
    }

    .doorway-navbar-logo img {
        width: 138px;
    }

    .product-hero-container {
        width:
            calc(100% - 56px);

        grid-template-columns:
            minmax(340px, 0.82fr)
            minmax(480px, 1.18fr);

        gap: 48px;
    }

    .product-hero-title {
        font-size:
            clamp(
                50px,
                5.4vw,
                72px
            );
    }

}


/* =========================================================
   29. RESPONSIVE — TABLET
   768px — 1024px
========================================================= */

@media (max-width: 1024px) {

    /* =========================================
       TABLET HEADER
    ========================================= */

    .doorway-header {
        top: 14px;

        padding:
            0 18px;
    }

    .doorway-navbar {
        min-height: 70px;

        padding:
            0 12px
            0 18px;

        border-radius: 14px;
    }

    .doorway-navbar-logo img {
        width: 130px;
    }


    /* Hide desktop navigation */

    .doorway-nav,
    .doorway-header-cta {
        display: none;
    }


    /* Push hamburger to far right */

    .doorway-navbar-right {
        margin-left: auto;

        display: flex;
        align-items: center;

        gap: 8px;
    }

    .doorway-menu-toggle {
        display: block;
    }


    /* =========================================
       TABLET DROPDOWN
    ========================================= */

    .doorway-mobile-menu {
        width:
            calc(100% - 36px);

        max-height: 0;

        margin:
            7px auto 0;

        padding:
            0 20px;

        overflow: hidden;

        display: flex;
        flex-direction: column;

        background:
            rgba(255, 255, 255, 0.98);

        border:
            1px solid
            rgba(30, 31, 38, 0.06);

        border-radius: 14px;

        box-shadow:
            0 20px 50px
            rgba(20, 22, 35, 0.14);

        opacity: 0;

        pointer-events: none;

        transform:
            translateY(-7px);

        transition:
            max-height 0.4s ease,
            padding 0.4s ease,
            opacity 0.3s ease,
            transform 0.3s ease;
    }

    .doorway-mobile-menu.open {
        max-height: 520px;

        padding:
            14px 20px
            20px;

        opacity: 1;

        pointer-events: auto;

        transform:
            translateY(0);
    }

    .doorway-mobile-menu > a {
        min-height: 54px;

        padding:
            0 4px;

        display: flex;
        align-items: center;

        border-bottom:
            1px solid #ececf0;

        color: #292a30;

        font-family: var(--font-heading);
        font-size: 15px;
        font-weight: 500;
    }

    .doorway-mobile-menu
    .doorway-mobile-cta {
        min-height: 54px;

        margin-top: 12px;

        padding:
            0 17px;

        display: flex;
        align-items: center;
        justify-content: space-between;

        background:
            var(--brand-blue);

        border: 0;
        border-radius: 6px;

        color: var(--white);
    }


    /* =========================================
       TABLET HERO
    ========================================= */

    .product-hero-container {
        width:
            calc(100% - 42px);

        padding:
            125px 0
            70px;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 58px;
    }

    .product-hero-content {
        max-width: 760px;
    }

    .product-hero-title {
        max-width: 700px;

        font-size:
            clamp(
                52px,
                7.5vw,
                74px
            );
    }

    .product-hero-description {
        max-width: 620px;
    }

    .hero-showcase {
        width: 100%;
    }

    .hero-product-stage {
        aspect-ratio:
            1.35 / 0.86;
    }

}


/* =========================================================
   30. RESPONSIVE — MOBILE
   Up to 767px
========================================================= */

@media (max-width: 767px) {

    :root {
        --mobile-padding: 17px;
    }


    /* =========================================
       MOBILE HEADER
    ========================================= */

    .doorway-header {
        top: 10px;

        padding:
            0 var(--mobile-padding);
    }

    .doorway-header.scrolled {
        top: 7px;
    }

    .doorway-navbar {
        min-height: 62px;

        padding:
            0 8px
            0 13px;

        border-radius: 11px;
    }

    .doorway-header.scrolled
    .doorway-navbar {
        min-height: 60px;
    }


    /* Mobile logo */

    .doorway-navbar-logo img {
        width: 112px;
    }


    /* Right-side actions */

    .doorway-navbar-right {
        margin-left: auto;

        display: flex;
        align-items: center;

        gap: 7px;
    }


    /* =========================================
       MOBILE BROCHURE BUTTON
    ========================================= */

    .mobile-brochure-btn {
        height: 42px;

        padding:
            0 12px;

        display: inline-flex;
        align-items: center;
        justify-content: center;

        gap: 7px;

        background:
            rgba(63, 65, 152, 0.08);

        border:
            1px solid
            rgba(63, 65, 152, 0.16);

        border-radius: 7px;

        color: var(--brand-blue);

        font-family: var(--font-heading);

        font-size: 10px;
        font-weight: 700;

        white-space: nowrap;

        transition:
            background 0.25s ease,
            color 0.25s ease,
            border-color 0.25s ease;
    }

    .mobile-brochure-btn svg {
        width: 15px;
        height: 15px;

        flex-shrink: 0;
    }

    .mobile-brochure-btn:hover {
        background:
            var(--brand-blue);

        border-color:
            var(--brand-blue);

        color: var(--white);
    }


    /* =========================================
       MOBILE HAMBURGER
    ========================================= */

    .doorway-menu-toggle {
        width: 42px;
        height: 42px;

        display: block;

        border-radius: 7px;
    }

    .doorway-menu-toggle span {
        left: 11px;

        width: 19px;
    }


    /* =========================================
       MOBILE DROPDOWN
    ========================================= */

    .doorway-mobile-menu {
        width:
            calc(
                100% -
                (var(--mobile-padding) * 2)
            );

        border-radius: 11px;
    }

    .doorway-mobile-menu > a {
        font-size: 14px;
    }


    /* =========================================
       MOBILE HERO
    ========================================= */

    .product-hero {
        display: block;

        min-height: 0;
    }

    .product-hero-container {
        width:
            calc(
                100% -
                (var(--mobile-padding) * 2)
            );

        margin:
            0 auto;

        padding:
            96px 0
            52px;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 42px;
    }

    .product-hero-content {
        position: static;

        width: 100%;
        max-width: none;

        margin: 0;
        padding: 0;
    }


    /* =========================================
       MOBILE HERO EYEBROW
    ========================================= */

    .product-hero-eyebrow {
        margin:
            0 0
            18px;

        gap: 9px;

        font-size: 7px;

        letter-spacing: 0.12em;
    }

    .eyebrow-line {
        width: 25px;
    }


    /* =========================================
       MOBILE HERO HEADLINE
    ========================================= */

    .product-hero-title {
        width: 100%;
        max-width: none;

        margin: 0;

        font-size:
            clamp(
                42px,
                12.5vw,
                58px
            );

        line-height: 1;

        letter-spacing: -0.058em;
    }


    /* =========================================
       MOBILE HERO DESCRIPTION
    ========================================= */

    .product-hero-description {
        width: 100%;
        max-width: none;

        margin:
            22px 0 0;

        font-size: 14px;

        line-height: 1.7;
    }


    /* =========================================
       MOBILE HERO BUTTONS
    ========================================= */

    .product-hero-actions {
        width: 100%;

        margin-top: 26px;

        display: flex;
        flex-direction: column;

        align-items: stretch;

        gap: 9px;
    }

    .hero-btn {
        width: 100%;

        min-height: 52px;

        padding:
            0 15px
            0 18px;

        font-size: 12px;
    }

    .hero-btn-primary {
        justify-content: space-between;
    }

    .hero-btn-outline {
        justify-content: flex-start;
    }


    /* =========================================
       MOBILE PROOF POINTS
    ========================================= */

    .product-hero-points {
        width: 100%;

        margin-top: 30px;

        display: grid;

        grid-template-columns:
            1fr
            auto
            1fr
            auto
            1fr;

        align-items: center;

        gap: 8px;
    }

    .product-hero-points div {
        min-width: 0;
    }

    .product-hero-points strong {
        font-size: 10px;
    }

    .product-hero-points span {
        font-size: 6.5px;

        letter-spacing: 0.07em;
    }


    /* =========================================
       MOBILE PRODUCT SHOWCASE
    ========================================= */

    .hero-showcase {
        width: 100%;

        margin: 0;
    }

    .hero-showcase-header {
        margin-bottom: 11px;

        align-items: center;
    }

    .showcase-label {
        margin-bottom: 0;

        font-size: 15px;
    }

    .hero-showcase-header p {
        display: none;
    }

    .showcase-counter {
        font-size: 14px;
    }


    /* =========================================
       MOBILE PRODUCT STAGE
    ========================================= */

    .hero-product-stage {
        width: 100%;

        min-height: 0;

        aspect-ratio:
            0.9 / 1;
    }

    .hero-product-model {
        top: 5%;
        right: 5%;
        bottom: 25%;
        left: 5%;
    }


    /* =========================================
       MOBILE PRODUCT DETAILS
    ========================================= */

    .hero-product-details {
        right: 12px;
        bottom: 12px;
        left: 12px;

        width: auto;
        min-width: 0;

        padding:
            12px 13px;

        gap: 11px;
    }

    .hero-product-number {
        font-size: 8px;
    }

    .hero-product-category {
        font-size: 10px;
    }

    .hero-product-details h2 {
        margin-bottom: 6px;

        font-size: 16px;

        line-height: 1.2;
    }

    .hero-product-details a {
        font-size: 12px;
    }


    /* =========================================
       MOBILE PRODUCT CONTROLS
    ========================================= */

    .hero-product-controls {
        margin-top: 12px;

        grid-template-columns:
            42px
            minmax(0, 1fr)
            42px;

        gap: 10px;
    }

    .hero-product-arrow {
        width: 42px;
        height: 42px;

        border-radius: 5px;
    }

    .hero-product-arrow svg {
        width: 15px;
    }

    .hero-product-hint {
        margin-top: 10px;

        justify-content: center;

        font-size: 10px;
    }


    /* =========================================
       MOBILE DECORATIVE ELEMENTS
    ========================================= */

    .product-hero-grid {
        background-size:
            52px 52px;
    }

    .product-hero-glow {
        top: 30%;
        right: -200px;

        width: 360px;
        height: 360px;
    }

    .product-hero-bottom-border {
        width:
            calc(
                100% -
                (var(--mobile-padding) * 2)
            );
    }

}


/* =========================================================
   31. RESPONSIVE — VERY SMALL MOBILE
   Up to 390px
========================================================= */

@media (max-width: 390px) {

    /* Logo */

    .doorway-navbar-logo img {
        width: 102px;
    }


    /* Brochure becomes icon only */

    .mobile-brochure-btn {
        width: 42px;

        padding: 0;
    }

    .mobile-brochure-btn > span {
        display: none;
    }


    /* Hero heading */

    .product-hero-title {
        font-size:
            clamp(
                39px,
                12vw,
                47px
            );
    }


    /* Proof points */

    .product-hero-points strong {
        font-size: 9px;
    }

    .product-hero-points span {
        display: none;
    }


    /* Product title */

    .hero-product-details h2 {
        font-size: 15px;
    }

}


/* =========================================================
   32. RESPONSIVE — LANDSCAPE PHONE
========================================================= */

@media
(max-width: 900px)
and (orientation: landscape)
and (max-height: 520px) {

    .product-hero-container {
        padding-top: 100px;
    }

    .product-hero-title {
        font-size: 46px;
    }

    .hero-product-stage {
        aspect-ratio:
            1.35 / 0.82;
    }

}


/* =========================================================
   33. ACCESSIBILITY — REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

        scroll-behavior:
            auto !important;
    }

}
/* =========================================================
   34. WHY DOORWAY
========================================================= */

.why-doorway {
    position: relative;

    width: 100%;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f7f7f9 55%,
            #f1f1f5 100%
        );

    color: var(--charcoal);
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.why-doorway::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(63, 65, 152, 0.035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(63, 65, 152, 0.035) 1px,
            transparent 1px
        );

    background-size:
        90px 90px;

    -webkit-mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.75),
            transparent 85%
        );

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.75),
            transparent 85%
        );
}


/* =========================================================
   CONTAINER
========================================================= */

.why-doorway-container {
    position: relative;

    z-index: 2;

    width:
        min(
            calc(100% - 64px),
            var(--container)
        );

    margin: 0 auto;

    padding:
        105px 0
        90px;
}


/* =========================================================
   TOP ROW
========================================================= */

.why-doorway-top {
    padding-bottom: 27px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    border-bottom:
        1px solid
        rgba(36, 33, 36, 0.10);
}


.why-doorway-kicker {
    display: flex;

    align-items: center;

    gap: 11px;

    color:
        var(--brand-blue);

    font-size: 15px;

    font-weight: 700;

    letter-spacing:
        0.13em;

    text-transform:
        uppercase;
}


.why-doorway-number {
    color:
        rgba(36, 33, 36, 0.38);
}


.why-doorway-kicker-line {
    width: 30px;

    height: 1px;

    flex-shrink: 0;

    background:
        rgba(63, 65, 152, 0.5);
}


.why-doorway-side-label {
    color:
        rgba(36, 33, 36, 0.42);

    font-size: 13px;

    letter-spacing:
        0.08em;

    text-transform:
        uppercase;
}


/* =========================================================
   MAIN LAYOUT
========================================================= */

.why-doorway-main {
    padding-top: 68px;

    display: grid;

    grid-template-columns:
        minmax(320px, 0.82fr)
        minmax(500px, 1.18fr);

    gap:
        clamp(
            70px,
            9vw,
            145px
        );
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.why-doorway-intro {
    align-self: start;
}


.why-doorway-title {
    max-width: 620px;

    margin: 0;

    color:
        var(--charcoal);

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            50px,
            5.2vw,
            78px
        );

    font-weight: 500;

    line-height:
        0.98;

    letter-spacing:
        -0.06em;
}


.why-doorway-title span {
    display: block;

    color:
        var(--brand-blue);
}


.why-doorway-description {
    max-width: 540px;

    margin:
        30px 0 0;

    color:
        #64656c;

    font-size: 15px;

    line-height:
        1.8;
}


/* =========================================================
   DISCOVER LINK
========================================================= */

.why-doorway-link {
    width: fit-content;

    margin-top: 36px;

    padding-bottom: 8px;

    display: inline-flex;

    align-items: center;

    gap: 22px;

    color:
        var(--charcoal);

    border-bottom:
        1px solid
        rgba(36, 33, 36, 0.30);

    font-family:
        var(--font-heading);

    font-size: 17px;

    font-weight: 600;

    transition:
        color 0.25s ease,
        border-color 0.25s ease,
        gap 0.3s ease;
}


.why-doorway-link-arrow {
    color:
        var(--brand-blue);

    font-size: 15px;

    transition:
        transform 0.3s ease;
}


@media (hover: hover) and (pointer: fine) {

    .why-doorway-link:hover {
        gap: 29px;

        color:
            var(--brand-blue);

        border-color:
            var(--brand-blue);
    }


    .why-doorway-link:hover
    .why-doorway-link-arrow {
        transform:
            translate(3px, -3px);
    }

}


/* =========================================================
   RIGHT FEATURE LIST
========================================================= */

.why-doorway-features {
    width: 100%;

    border-top:
        1px solid
        rgba(36, 33, 36, 0.12);
}


.why-doorway-feature {
    position: relative;

    min-height: 145px;

    padding:
        28px 3px;

    display: grid;

    grid-template-columns:
        44px
        minmax(0, 1fr)
        42px;

    align-items: start;

    gap: 20px;

    border-bottom:
        1px solid
        rgba(36, 33, 36, 0.12);

    transition:
        padding-left 0.35s ease,
        padding-right 0.35s ease,
        background 0.35s ease;
}


/* LEFT HOVER LINE */

.why-doorway-feature::before {
    content: "";

    position: absolute;

    top: 0;

    bottom: 0;

    left: 0;

    width: 2px;

    background:
        var(--brand-blue);

    transform:
        scaleY(0);

    transform-origin:
        bottom center;

    transition:
        transform 0.35s ease;
}


/* FEATURE NUMBER */

.why-feature-number {
    padding-top: 5px;

    color:
        rgba(36, 33, 36, 0.32);

    font-size: 9px;

    font-weight: 600;
}


/* FEATURE TITLE */

.why-feature-content h3 {
    margin:
        0 0 9px;

    color:
        var(--charcoal);

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            20px,
            1.8vw,
            26px
        );

    font-weight: 600;

    line-height:
        1.2;

    letter-spacing:
        -0.025em;
}


/* FEATURE DESCRIPTION */

.why-feature-content p {
    max-width: 480px;

    margin: 0;

    color:
        #72737a;

    font-size: 15px;

    line-height:
        1.65;
}


/* FEATURE ARROW */

.why-feature-arrow {
    justify-self: end;

    color:
        rgba(36, 33, 36, 0.32);

    font-size: 19px;

    transition:
        color 0.3s ease,
        transform 0.3s ease;
}


/* FEATURE HOVER */

@media (hover: hover) and (pointer: fine) {

    .why-doorway-feature:hover {
        padding-left: 18px;

        padding-right: 12px;

        background:
            rgba(63, 65, 152, 0.035);
    }


    .why-doorway-feature:hover::before {
        transform:
            scaleY(1);
    }


    .why-doorway-feature:hover
    .why-feature-arrow {
        color:
            var(--brand-blue);

        transform:
            translate(3px, -3px);
    }

}


/* =========================================================
   CATEGORY STRIP — DESKTOP
========================================================= */

.why-doorway-category-strip {
    width: 100%;

    margin-top: 78px;

    padding-top: 22px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 18px;

    border-top:
        1px solid
        rgba(36, 33, 36, 0.10);

    color:
        rgba(36, 33, 36, 0.42);

    font-size: 12px;

    font-weight: 600;

    line-height: 1;

    letter-spacing:
        0.11em;

    text-transform:
        uppercase;

    white-space: nowrap;
}


.why-doorway-category-strip span {
    flex-shrink: 0;
}


.why-doorway-category-strip i {
    width: 3px;

    height: 3px;

    flex:
        0 0 3px;

    display: block;

    border-radius:
        50%;

    background:
        var(--brand-blue);
}


/* =========================================================
   35. WHY DOORWAY — TABLET
========================================================= */

@media (max-width: 1024px) {

    .why-doorway-container {
        width:
            calc(100% - 42px);

        padding:
            85px 0
            75px;
    }


    .why-doorway-main {
        padding-top: 55px;

        grid-template-columns:
            minmax(0, 1fr);

        gap: 58px;
    }


    .why-doorway-intro {
        width: 100%;

        max-width: 720px;
    }


    .why-doorway-title {
        max-width: 680px;

        font-size:
            clamp(
                50px,
                7.5vw,
                72px
            );
    }


    .why-doorway-description {
        max-width: 620px;
    }


    .why-doorway-features {
        width: 100%;
    }


    .why-doorway-category-strip {
        margin-top: 60px;

        font-size: 10px;

        gap: 12px;
    }

}


/* =========================================================
   36. WHY DOORWAY — MOBILE
========================================================= */

@media (max-width: 767px) {

    /* =========================================
       BACKGROUND
    ========================================= */

    .why-doorway::before {
        background-size:
            52px 52px;
    }


    /* =========================================
       CONTAINER
    ========================================= */

    .why-doorway-container {
        width:
            calc(
                100% -
                34px
            );

        margin:
            0 auto;

        padding:
            64px 0
            52px;
    }


    /* =========================================
       TOP ROW
    ========================================= */

    .why-doorway-top {
        padding-bottom: 18px;

        align-items:
            flex-start;

        gap: 12px;
    }


    .why-doorway-kicker {
        gap: 8px;

        font-size: 11px;

        letter-spacing:
            0.11em;
    }


    .why-doorway-kicker-line {
        width: 22px;
    }


    .why-doorway-side-label {
        display: none;
    }


    /* =========================================
       MAIN SECTION
    ========================================= */

    .why-doorway-main {
        padding-top: 36px;

        display: flex;

        flex-direction:
            column;

        gap: 40px;
    }


    /* =========================================
       TITLE
    ========================================= */

    .why-doorway-title {
        width: 100%;

        max-width: none;

        font-size:
            clamp(
                40px,
                12vw,
                56px
            );

        line-height:
            1;

        letter-spacing:
            -0.055em;
    }


    /* =========================================
       DESCRIPTION
    ========================================= */

    .why-doorway-description {
        width: 100%;

        max-width: none;

        margin-top: 21px;

        font-size: 14px;

        line-height: 1.7;
    }


    /* =========================================
       LINK
    ========================================= */

    .why-doorway-link {
        margin-top: 27px;

        font-size: 14px;

        gap: 15px;
    }


    /* =========================================
       FEATURES
    ========================================= */

    .why-doorway-features {
        width: 100%;
    }


    .why-doorway-feature {
        width: 100%;

        min-height: 0;

        padding:
            24px 0;

        grid-template-columns:
            28px
            minmax(0, 1fr)
            24px;

        align-items:
            start;

        gap: 10px;
    }


    .why-doorway-feature::before {
        display: none;
    }


    .why-feature-number {
        padding-top: 4px;

        font-size: 8px;
    }


    .why-feature-content {
        min-width: 0;
    }


    .why-feature-content h3 {
        margin:
            0 0 8px;

        font-size: 19px;

        line-height: 1.2;
    }


    .why-feature-content p {
        width: 100%;

        max-width: none;

        font-size: 14px;

        line-height: 1.65;
    }


    .why-feature-arrow {
        justify-self: end;

        font-size: 15px;
    }


    /* =========================================
       CATEGORY STRIP
       EXACT MOBILE ALIGNMENT
    ========================================= */

    .why-doorway-category-strip {
        width: 100%;

        margin-top: 36px;

        padding-top: 20px;

        display: grid;

        grid-template-columns:
            max-content
            4px
            max-content
            4px
            max-content;

        align-items: center;

        justify-content:
            space-between;

        column-gap: 6px;

        row-gap: 0;

        border-top:
            1px solid
            rgba(36, 33, 36, 0.10);

        color:
            var(--brand-blue);

        font-size: 9px;

        font-weight: 700;

        line-height: 1;

        letter-spacing:
            0.08em;

        white-space:
            nowrap;
    }


    .why-doorway-category-strip span {
        width: auto;

        min-width: 0;

        display: block;

        text-align:
            center;
    }


    .why-doorway-category-strip i {
        width: 4px;

        height: 4px;

        display: block;

        border-radius:
            50%;

        background:
            var(--brand-blue);
    }


    /*
       Mobile only:
       hide Architectural Solutions
       and its preceding dot.
    */

    .why-doorway-category-strip
    i:nth-of-type(3),

    .why-doorway-category-strip
    span:last-child {
        display: none;
    }

}


/* =========================================================
   37. WHY DOORWAY — VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .why-doorway-container {
        width:
            calc(100% - 30px);
    }


    .why-doorway-category-strip {
        font-size: 8px;

        letter-spacing:
            0.05em;

        column-gap: 4px;
    }


    .why-doorway-feature {
        grid-template-columns:
            25px
            minmax(0, 1fr)
            20px;

        gap: 8px;
    }

}
/* =========================================================
   DOORWAY SOLUTION
   FOUNDER & CEO SECTION
========================================================= */


/* =========================================================
   01. SECTION
========================================================= */

.doorway-founder {
    position: relative;

    padding:
        clamp(100px, 8vw, 140px)
        0;

    overflow: hidden;

    color:
        var(--charcoal, #242124);

    background:
        linear-gradient(
            135deg,
            #f7f7f9 0%,
            #f1f2f6 100%
        );
}


.doorway-founder .doorway-container {
    position: relative;

    z-index: 2;

    width:
        min(
            calc(100% - 72px),
            1320px
        );

    margin:
        0 auto;
}



/* =========================================================
   02. LARGE BACKGROUND WORD
========================================================= */

.doorway-founder-bg-word {
    position: absolute;

    z-index: 0;

    top: 4%;
    left: 50%;

    width: 100%;

    transform:
        translateX(-50%);

    color:
        rgba(36, 33, 36, .032);

    font-family:
        var(--font-heading, "Manrope", sans-serif);

    font-size:
        clamp(
            105px,
            11vw,
            190px
        );

    font-weight: 700;

    line-height: .82;

    letter-spacing:
        -.075em;

    text-align: center;

    text-transform:
        uppercase;

    white-space:
        nowrap;

    pointer-events: none;

    user-select: none;
}



/* =========================================================
   03. DESKTOP GRID
========================================================= */

.doorway-founder-grid {
    position: relative;

    display: grid;

    grid-template-columns:
        minmax(0, 520px)
        minmax(0, 680px);

    justify-content: center;

    align-items: center;

    gap:
        clamp(
            55px,
            6vw,
            90px
        );
}



/* =========================================================
   04. CONTENT
========================================================= */

.doorway-founder-content {
    position: relative;

    width: 100%;
    max-width: 520px;

    color:
        var(--charcoal, #242124);
}



/* =========================================================
   05. EYEBROW
========================================================= */

.doorway-founder-eyebrow {
    display: flex;

    align-items: center;

    gap: 13px;

    color:
        var(--brand-blue, #3f4198);
}


.doorway-founder-eyebrow > span {
    width: 36px;
    height: 1px;

    flex-shrink: 0;

    background:
        var(--brand-blue, #3f4198);
}


.doorway-founder-eyebrow strong {
    color:
        var(--brand-blue, #3f4198);

    font-size: 15px;

    font-weight: 700;

    letter-spacing:
        .15em;

    text-transform:
        uppercase;
}



/* =========================================================
   06. TITLE
========================================================= */

.doorway-founder-title {
    max-width: 620px;

    margin:
        38px 0 0;

    color:
        var(--charcoal, #242124);

    font-family:
        var(--font-heading, "Manrope", sans-serif);

    font-size:
        clamp(
            50px,
            4.5vw,
            72px
        );

    font-weight: 500;

    line-height: .95;

    letter-spacing:
        -.06em;
}


.doorway-founder-title span {
    display: block;

    color:
        var(--brand-blue, #3f4198);
}



/* =========================================================
   07. BODY COPY
========================================================= */

.doorway-founder-copy {
    max-width: 520px;

    margin-top: 30px;
}


.doorway-founder-copy p {
    margin: 0;

    color: #646671;

    font-size: 16.5px;

    line-height: 1.75;
}


.doorway-founder-copy p + p {
    margin-top: 15px;
}



/* =========================================================
   08. METRICS
========================================================= */

.doorway-founder-metrics {
    width: 100%;

    margin-top: 36px;

    padding:
        23px 0;

    display: grid;

    grid-template-columns:
        repeat(
            2,
            minmax(0, 1fr)
        );

    border-top:
        1px solid
        rgba(36, 33, 36, .12);

    border-bottom:
        1px solid
        rgba(36, 33, 36, .12);
}


.doorway-founder-metric {
    min-height: 88px;

    display: flex;

    flex-direction: column;

    justify-content: space-between;
}


.doorway-founder-metric +
.doorway-founder-metric {
    padding-left: 30px;

    border-left:
        1px solid
        rgba(36, 33, 36, .12);
}


.doorway-founder-metric strong {
    color:
        var(--charcoal, #242124);

    font-family:
        var(--font-heading, "Manrope", sans-serif);

    font-size:
        clamp(
            35px,
            3vw,
            47px
        );

    font-weight: 500;

    line-height: 1;

    letter-spacing:
        -.045em;
}


.doorway-founder-metric small {
    max-width: 170px;

    margin-top: 14px;

    color: #70727c;

    font-size: 13px;

    font-weight: 700;

    line-height: 1.45;

    letter-spacing:
        .075em;

    text-transform:
        uppercase;
}



/* =========================================================
   09. LINK
========================================================= */

.doorway-founder-link {
    width:
        min(
            100%,
            270px
        );

    margin-top: 29px;

    padding-bottom: 12px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color:
        var(--charcoal, #242124);

    border-bottom:
        1px solid
        rgba(36, 33, 36, .20);

    font-size: 15px;

    font-weight: 650;

    transition:
        color .3s ease,
        border-color .3s ease;
}


.doorway-founder-link span {
    color: inherit;
}


.doorway-founder-link strong {
    color:
        var(--brand-blue, #3f4198);

    font-size: 17px;

    font-weight: 500;

    transition:
        transform .3s ease;
}


@media (hover: hover) and (pointer: fine) {

    .doorway-founder-link:hover {
        color:
            var(--brand-blue, #3f4198);

        border-color:
            var(--brand-blue, #3f4198);
    }


    .doorway-founder-link:hover strong {
        transform:
            translate(
                3px,
                -3px
            );
    }

}



/* =========================================================
   10. FOUNDER VISUAL
========================================================= */

.doorway-founder-visual {
    position: relative;

    width: 100%;
    max-width: 680px;

    min-height: 590px;

    margin: 0;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            #eceef3 0%,
            #f8f8fa 100%
        );

    isolation: isolate;
}



/* architectural grid */

.doorway-founder-visual::before {
    content: "";

    position: absolute;

    z-index: -3;

    inset: 0;

    background-image:
        linear-gradient(
            rgba(36, 33, 36, .035) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(36, 33, 36, .035) 1px,
            transparent 1px
        );

    background-size:
        58px 58px;
}



/* subtle light */

.doorway-founder-visual::after {
    content: "";

    position: absolute;

    z-index: -2;

    top: -25%;
    left: 30%;

    width: 65%;
    height: 80%;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, .48);

    filter:
        blur(70px);

    pointer-events: none;
}



/* =========================================================
   11. INDIGO SHAPE
========================================================= */

.doorway-founder-shape {
    position: absolute;

    z-index: -1;

    right: -105px;
    bottom: -80px;

    width: 460px;
    height: 460px;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            var(--brand-blue, #3f4198),
            var(--brand-blue-dark, #292b72)
        );

    opacity: .97;

    transform:
        scale(.72);

    transition:
        transform 1.15s
        cubic-bezier(.22, 1, .36, 1);
}


.doorway-founder.is-visible
.doorway-founder-shape {
    transform:
        scale(1);
}



/* =========================================================
   12. ARCHITECTURAL LINE
========================================================= */

.doorway-founder-line {
    position: absolute;

    z-index: 3;

    top: 38px;
    left: 38px;

    width: 1px;

    height:
        calc(
            100% - 76px
        );

    background:
        rgba(36, 33, 36, .10);

    transform:
        scaleY(0);

    transform-origin:
        top;

    transition:
        transform 1.05s
        .20s
        cubic-bezier(.22, 1, .36, 1);
}


.doorway-founder-line::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 1px;
    height: 22%;

    background:
        var(--brand-blue, #3f4198);
}


.doorway-founder.is-visible
.doorway-founder-line {
    transform:
        scaleY(1);
}



/* =========================================================
   13. SIDE LABEL
========================================================= */

.doorway-founder-side-label {
    position: absolute;

    z-index: 4;

    top: 44px;
    left: 51px;

    color:
        rgba(36, 33, 36, .48);

    font-size: 16px;

    font-weight: 700;

    letter-spacing:
        .17em;

    writing-mode:
        vertical-rl;

    transform:
        rotate(180deg);

    text-transform:
        uppercase;
}



/* =========================================================
   14. PORTRAIT
========================================================= */

.doorway-founder-portrait-wrap {
    position: absolute;

    z-index: 2;

    right: 0;
    bottom: 0;

    width: 88%;
    height: 92%;

    display: flex;

    align-items: flex-end;

    justify-content: center;
}


.doorway-founder-portrait {
    width: 100%;

    max-width: 575px;
    max-height: 100%;

    object-fit: contain;

    object-position:
        center bottom;

    opacity: 0;

    transform:
        translate3d(
            0,
            45px,
            0
        )
        scale(.975);

    filter:
        drop-shadow(
            0 24px 30px
            rgba(20, 22, 35, .12)
        );

    will-change:
        transform;

    transition:
        opacity .85s ease,
        transform 1s
        cubic-bezier(.22, 1, .36, 1);
}


.doorway-founder.is-visible
.doorway-founder-portrait {
    opacity: 1;

    transform:
        translate3d(
            0,
            0,
            0
        )
        scale(1);
}



/* =========================================================
   15. FOUNDER IDENTITY
========================================================= */

.doorway-founder-identity {
    position: absolute;

    z-index: 6;

    right: 24px;
    bottom: 24px;

    min-width: 195px;

    padding:
        15px 17px;

    color:
        var(--charcoal, #242124);

    background:
        rgba(
            255,
            255,
            255,
            .92
        );

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);

    box-shadow:
        0 15px 35px
        rgba(20, 22, 35, .09);

    opacity: 0;

    transform:
        translateY(18px);

    transition:
        opacity .7s .45s ease,
        transform .8s .45s
        cubic-bezier(.22, 1, .36, 1);
}


.doorway-founder.is-visible
.doorway-founder-identity {
    opacity: 1;

    transform:
        translateY(0);
}


.doorway-founder-identity span {
    display: block;

    color:
        var(--brand-blue, #3f4198);

    font-size: 10px;

    font-weight: 700;

    letter-spacing:
        .12em;

    text-transform:
        uppercase;
}


.doorway-founder-identity h3 {
    margin:
        7px 0 0;

    color:
        var(--charcoal, #242124);

    font-family:
        var(--font-heading, "Manrope", sans-serif);

    font-size: 23px;

    font-weight: 600;

    letter-spacing:
        -.035em;
}


.doorway-founder-identity p {
    margin:
        3px 0 0;

    color: #70727c;

    font-size: 14px;
}



/* =========================================================
   16. QUOTE
========================================================= */

.doorway-founder-quote {
    position: absolute;

    z-index: 5;

    top: 29px;
    right: 28px;

    display: flex;

    gap: 7px;

    color:
        rgba(36, 33, 36, .56);

    opacity: 0;

    transform:
        translateY(-10px);

    transition:
        opacity .7s .55s ease,
        transform .7s .55s ease;
}


.doorway-founder.is-visible
.doorway-founder-quote {
    opacity: 1;

    transform:
        translateY(0);
}


.doorway-founder-quote > span {
    color:
        var(--brand-blue, #3f4198);

    font-family:
        Georgia,
        serif;

    font-size: 28px;

    line-height: .8;
}


.doorway-founder-quote p {
    margin: 0;

    color:
        rgba(36, 33, 36, .58);

    font-family:
        var(--font-heading, "Manrope", sans-serif);

    font-size: 16px;

    font-weight: 600;

    line-height: 1.45;
}



/* =========================================================
   17. CONTENT REVEAL
========================================================= */

.founder-reveal {
    opacity: 0;

    transform:
        translateY(24px);

    transition:
        opacity .7s ease,
        transform .85s
        cubic-bezier(.22, 1, .36, 1);
}


.doorway-founder.is-visible
.founder-reveal {
    opacity: 1;

    transform:
        translateY(0);
}


/* individual stagger */

.doorway-founder-eyebrow.founder-reveal {
    transition-delay: 0s;
}


.doorway-founder-title.founder-reveal {
    transition-delay: .08s;
}


.doorway-founder-copy.founder-reveal {
    transition-delay: .16s;
}


.doorway-founder-metrics.founder-reveal {
    transition-delay: .24s;
}


.doorway-founder-link.founder-reveal {
    transition-delay: .32s;
}


.doorway-founder-visual.founder-reveal {
    transition-delay: .10s;
}



/* =========================================================
   18. DESKTOP ONLY
   1025px+
========================================================= */

@media (min-width: 1025px) {

    .doorway-founder-grid {
        display: grid;

        grid-template-columns:
            minmax(0, 520px)
            minmax(0, 680px);

        align-items: center;

        justify-content: center;
    }


    .doorway-founder-content {
        order: initial;

        grid-column: 1;

        margin: 0;
    }


    .doorway-founder-visual {
        order: initial;

        grid-column: 2;

        margin: 0;
    }

}



/* =========================================================
   19. TABLET
   768px — 1024px

   PHOTO FIRST
========================================================= */

@media (min-width: 768px) and (max-width: 1024px) {

    .doorway-founder {
        padding:
            95px 0;
    }


    .doorway-founder .doorway-container {
        width:
            min(
                calc(100% - 48px),
                760px
            );
    }


    .doorway-founder-bg-word {
        top: 2%;

        font-size:
            clamp(
                90px,
                16vw,
                145px
            );
    }


    .doorway-founder-grid {
        display: flex;

        flex-direction: column;

        gap: 55px;
    }


    /* IMAGE FIRST */

    .doorway-founder-visual {
        order: 1;

        width: 100%;
        max-width: 700px;

        min-height: 570px;

        margin:
            0 auto;
    }


    /* CONTENT SECOND */

    .doorway-founder-content {
        order: 2;

        width: 100%;
        max-width: 700px;

        margin:
            0 auto;
    }


    .doorway-founder-title {
        max-width: 660px;

        font-size:
            clamp(
                54px,
                7vw,
                68px
            );
    }


    .doorway-founder-copy {
        max-width: 620px;
    }


    .doorway-founder-metrics {
        max-width: 620px;
    }


    .doorway-founder-link {
        max-width: 280px;
    }


    .doorway-founder-portrait-wrap {
        width: 79%;

        right: 7%;
    }

}



/* =========================================================
   20. MOBILE
   UP TO 767px

   PHOTO FIRST
========================================================= */

@media (max-width: 767px) {

    .doorway-founder {
        padding:
            72px 0;
    }


    .doorway-founder .doorway-container {
        width:
            calc(
                100% -
                34px
            );
    }


    .doorway-founder-bg-word {
        display: none;
    }


    .doorway-founder-grid {
    display: flex;
    flex-direction: column;

    gap: 28px;
}



    /* =====================================================
       PHOTO FIRST
    ===================================================== */

    .doorway-founder-visual {
        order: 1;

        width: 100%;
        max-width: none;

        min-height: 470px;

        margin: 0;
    }


    .doorway-founder-visual::before {
        background-size:
            43px 43px;
    }


    .doorway-founder-shape {
        width: 340px;
        height: 340px;

        right: -100px;
        bottom: -50px;
    }


    .doorway-founder-portrait-wrap {
        width: 96%;
        height: 89%;

        right: 0;
    }


    .doorway-founder-portrait {
        max-width: 500px;
    }


    .doorway-founder-line {
        top: 24px;
        left: 23px;

        height:
            calc(
                100% - 48px
            );
    }


    .doorway-founder-side-label {
        top: 29px;
        left: 34px;

        font-size: 14px;
    }


    .doorway-founder-quote {
        top: 18px;
        right: 16px;
    }


    .doorway-founder-quote p {
        font-size: 14.5px;
    }


    .doorway-founder-identity {
        right: 12px;
        bottom: 12px;

        min-width: 170px;

        padding:
            12px 13px;
    }


    .doorway-founder-identity h3 {
        font-size: 19px;
    }



    /* =====================================================
       CONTENT SECOND
    ===================================================== */

    .doorway-founder-content {
    display: contents;
}

/* =====================================================
   MOBILE FOUNDER ORDER

   1. Eyebrow
   2. Heading
   3. Photo
   4. Description
   5. Metrics
   6. CTA
===================================================== */

.doorway-founder-eyebrow {
    order: 1;

    width: 100%;
}


.doorway-founder-title {
    order: 2;

    width: 100%;

    margin:
        24px 0 5px;
}


.doorway-founder-visual {
    order: 3;

    width: 100%;
    max-width: none;

    min-height: 470px;

    margin:
        5px 0 0;
}


.doorway-founder-copy {
    order: 4;

    width: 100%;

    margin-top: 5px;
}


.doorway-founder-metrics {
    order: 5;

    width: 100%;

    margin-top: 5px;
}


.doorway-founder-link {
    order: 6;

    margin-top: 2px;
}
    .doorway-founder-eyebrow {
        gap: 10px;
    }


    .doorway-founder-eyebrow > span {
        width: 28px;
    }


    .doorway-founder-eyebrow strong {
        font-size: 15px;

        letter-spacing:
            .13em;
    }


    .doorway-founder-title {
        margin-top: 28px;

        font-size:
            clamp(
                41px,
                12vw,
                54px
            );

        line-height: .96;
    }


    .doorway-founder-copy {
        margin-top: 24px;
    }


    .doorway-founder-copy p {
        font-size: 15px;

        line-height: 1.7;
    }


    .doorway-founder-metrics {
        margin-top: 29px;

        padding:
            20px 0;
    }


    .doorway-founder-metric {
        min-height: 76px;
    }


    .doorway-founder-metric +
    .doorway-founder-metric {
        padding-left: 18px;
    }


    .doorway-founder-metric strong {
        font-size: 34px;
    }


    .doorway-founder-metric small {
        max-width: 120px;

        font-size: 12px;
    }


    .doorway-founder-link {
        margin-top: 27px;

        font-size: 13px;
    }

}



/* =========================================================
   21. SMALL MOBILE
   UP TO 390px
========================================================= */

@media (max-width: 390px) {

    .doorway-founder {
        padding:
            65px 0;
    }


    .doorway-founder-visual {
        min-height: 420px;
    }


    .doorway-founder-portrait-wrap {
        width: 100%;
        height: 88%;
    }


    .doorway-founder-quote {
        display: none;
    }


    .doorway-founder-title {
        font-size: 40px;
    }


    .doorway-founder-metrics {
        grid-template-columns:
            1fr;
    }


    .doorway-founder-metric {
        min-height: auto;

        padding:
            17px 0;
    }


    .doorway-founder-metric +
    .doorway-founder-metric {
        padding-left: 0;

        border-left: 0;

        border-top:
            1px solid
            rgba(36, 33, 36, .12);
    }


    .doorway-founder-metric small {
        max-width: 180px;
    }

}



/* =========================================================
   22. REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .founder-reveal,
    .doorway-founder-shape,
    .doorway-founder-line,
    .doorway-founder-portrait,
    .doorway-founder-identity,
    .doorway-founder-quote {

        opacity: 1 !important;

        transform:
            none !important;

        transition:
            none !important;
    }

}
/* =========================================================
   OUR SOLUTIONS — SIMPLE PRODUCT + BRAND DIRECTORY
========================================================= */
/* =========================================================
   OUR SOLUTIONS — GRAPHITE INDIGO THEME
========================================================= */

.doorway-solutions {
    position: relative;

    width: 100%;

    overflow: hidden;

   background:
    var(--dark-section-bg);
    color:
        var(--white);
}


/* =========================================================
   BACKGROUND GRID
========================================================= */

.doorway-solutions::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,.020) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.020) 1px,
            transparent 1px
        );

    background-size:
        92px 92px;

    opacity:
        .65;
}


/* =========================================================
   CONTAINER
========================================================= */

.doorway-solutions-container {
    position: relative;

    z-index: 2;

    width:
        min(
            calc(100% - 64px),
            var(--container)
        );

    margin: 0 auto;

    padding:
        100px 0
        92px;
}


/* =========================================================
   HEADER
========================================================= */

.solutions-header {
    padding-bottom: 48px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, 410px);

    align-items: end;

    gap: 70px;

    border-bottom:
        1px solid
        rgba(255,255,255,.10);
}


/* =========================================================
   KICKER
========================================================= */

.solutions-kicker {
    margin-bottom: 21px;

    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--brand-blue-light);

    font-size: 15px;
    font-weight: 700;

    letter-spacing: .14em;

    text-transform: uppercase;
}


.solutions-kicker > span:first-child {
    color:
        rgba(255,255,255,.28);
}


.solutions-kicker i {
    width: 28px;
    height: 1px;

    background:
        rgba(85,88,189,.65);
}


/* =========================================================
   HEADING
========================================================= */

.solutions-title {
    max-width: 760px;

    margin: 0;

    font-family: var(--font-heading);

    font-size:
        clamp(
            50px,
            5vw,
            76px
        );

    font-weight: 500;

    line-height: .98;

    letter-spacing: -.06em;
}


.solutions-title span {
    display: block;

    color:
        var(--brand-blue-light);
}


/* =========================================================
   HEADER RIGHT
========================================================= */

.solutions-header-right p {
    margin: 0;

    color:
        rgba(255,255,255,.53);

    font-size: 15px;

    line-height: 1.75;
}


.solutions-view-all {
    margin-top: 22px;

    display: inline-flex;
    align-items: center;

    gap: 11px;

    color: var(--white);

    font-size: 15px;
    font-weight: 600;

    letter-spacing: .04em;
}


.solutions-view-all span {
    color:
        var(--brand-blue-light);

    transition:
        transform .25s ease;
}


.solutions-view-all:hover span {
    transform:
        translate(3px, -3px);
}


/* =========================================================
   COMMON SUBHEADING
========================================================= */

.solution-subheading {
    display: flex;
    align-items: center;

    gap: 18px;
}


.solution-subheading > span:first-child {
    flex-shrink: 0;

    color:
        rgba(255,255,255,.40);

    font-size: 11.5px;
    font-weight: 700;

    letter-spacing: .13em;

    text-transform: uppercase;
}


.solution-subheading-line {
    width: 100%;
    height: 1px;

    background:
        rgba(255,255,255,.08);
}


/* =========================================================
   BRANDS
========================================================= */

.solution-brands {
    margin-top: 43px;
}
/* =========================================================
   BRANDS — FINAL MASTER STYLES
========================================================= */

.solution-brand-grid {
    margin-top: 20px;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 10px;

    align-items: stretch;

    border: 0;
}


/* =========================================================
   BRAND CARD
========================================================= */

.solution-brand {
    position: relative;

    width: 100%;
    min-width: 0;

    height: 330px;
    min-height: 330px;

    padding: 20px;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    isolation: isolate;

    background:
        rgba(8, 10, 16, .62);

    border:
        1px solid
        rgba(255,255,255,.10);

    transform: none;

    transition:
        border-color .3s ease,
        background .3s ease;
}


/* Remove card numbers */

.solution-brand-number {
    display: none !important;
}


/* Remove previous full-card overlays */

.solution-brand-overlay,
.solution-brand::before,
.solution-brand::after {
    display: none !important;
}


/* =========================================================
   BRAND IMAGE
========================================================= */

.solution-brand-bg {
    position: relative;

    inset: auto;

    z-index: 1;

    width: 100%;
    height: 220px;
    min-height: 220px;

    flex: 0 0 220px;

    margin:
        0 0 16px;

    overflow: hidden;

    background:
        #141722;
}


.solution-brand-bg img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    opacity: .96;

    transform:
        scale(1.01);

    filter: none;

    transition:
        transform .55s
        cubic-bezier(.2,.8,.2,1),
        opacity .3s ease;
}


/* =========================================================
   BRAND CONTENT
========================================================= */

.solution-brand-content {
    position: relative;

    z-index: 3;

    width: 100%;

    margin: 0;
}


.solution-brand-name,
.solution-brand-content h3 {
    position: relative;

    z-index: 3;

    margin: 0;

    color:
        #ffffff;

    font-family:
        var(--font-heading);

    font-size: 21px;
    font-weight: 600;

    line-height: 1.08;

    letter-spacing:
        -.03em;
}


.solution-brand-type,
.solution-brand-content p {
    position: relative;

    z-index: 3;

    margin:
        6px 0 0;

    color:
        rgba(255,255,255,.58);

    font-size: 7px;
    font-weight: 650;

    line-height: 1.4;

    letter-spacing:
        .09em;

    text-transform: uppercase;
}


/* =========================================================
   ARROW
========================================================= */

.solution-brand-arrow {
    position: absolute;

    z-index: 5;

    top: 28px;
    right: 28px;

    color:
        rgba(255,255,255,.90);

    font-size: 15px;

    line-height: 1;

    text-shadow:
        0 2px 8px
        rgba(0,0,0,.40);

    transition:
        color .25s ease,
        transform .25s ease;
}


/* =========================================================
   HOVER
========================================================= */

@media (hover: hover) {

    .solution-brand:hover {
        transform: none;

        border-color:
            rgba(85,88,189,.40);

        background:
            rgba(10,12,20,.82);
    }


    .solution-brand:hover
    .solution-brand-bg img {
        opacity: 1;

        transform:
            scale(1.04);
    }


    .solution-brand:hover
    .solution-brand-arrow {
        color:
            #ffffff;

        transform:
            translate(2px,-2px);
    }

}

/* =========================================================
   PRODUCTS
========================================================= */

.solution-products {
    margin-top: 55px;
}


.solution-product-list {
    margin-top: 20px;

    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    border-top:
        1px solid
        rgba(255,255,255,.11);

    border-left:
        1px solid
        rgba(255,255,255,.10);
}


/* =========================================================
   PRODUCT ROW
========================================================= */

.solution-product-row {
    position: relative;

    min-height: 108px;

    padding:
        0 18px;

    display: grid;

    grid-template-columns:
        38px
        minmax(0,1fr)
        38px;

    align-items: center;

    gap: 10px;

    border-right:
        1px solid
        rgba(255,255,255,.10);

    border-bottom:
        1px solid
        rgba(255,255,255,.10);

    transition:
        background .3s ease;
}

/* Hover bar */

.solution-product-row::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;

    width: 2px;

    background:
        var(--brand-blue-light);

    transform:
        scaleY(0);

    transition:
        transform .3s ease;
}


.solution-product-number {
    color:
        rgba(255,255,255,.25);

    font-size: 8px;
}


/* =========================================================
   PRODUCT CONTENT
========================================================= */

.solution-product-content {
    display: flex;
    align-items: baseline;

    gap: 25px;
}


.solution-product-content h3 {
    margin: 0;

    color:
        rgba(255,255,255,.91);

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            22px,
            2.1vw,
            31px
        );

    font-weight: 500;

    letter-spacing: -.035em;

    transition:
        color .25s ease,
        transform .3s ease;
}


.solution-product-content p {
    margin: 0;

    color:
        rgba(255,255,255,.29);

    font-size: 8px;

    letter-spacing: .08em;

    text-transform: uppercase;
}


/* =========================================================
   PRODUCT ARROW
========================================================= */

.solution-product-arrow {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    justify-self: end;

    border:
        1px solid
        rgba(255,255,255,.10);

    color:
        rgba(255,255,255,.38);

    font-size: 14px;

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease;
}


/* =========================================================
   PRODUCT HOVER
========================================================= */

@media (hover: hover) {

    .solution-product-row:hover {
        padding-left: 25px;

        background:
            rgba(255,255,255,.025);
    }


    .solution-product-row:hover::before {
        transform:
            scaleY(1);
    }


    .solution-product-row:hover
    .solution-product-content h3 {
        color: var(--white);

        transform:
            translateX(4px);
    }


    .solution-product-row:hover
    .solution-product-arrow {
        background:
            var(--brand-blue);

        border-color:
            var(--brand-blue);

        color:
            var(--white);

        transform:
            translate(3px, -3px);
    }

}


/* =========================================================
   BOTTOM CTA
========================================================= */

.solutions-bottom {
    margin-top: 34px;

    padding-top: 22px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}


.solutions-bottom p {
    margin: 0;

    color:
        rgba(255,255,255,.36);

    font-size: 14px;
}


.solutions-bottom a {
    display: inline-flex;
    align-items: center;

    gap: 10px;

    color: var(--white);

    font-size: 14px;
    font-weight: 600;
}


.solutions-bottom a span {
    color:
        var(--brand-blue-light);

    transition:
        transform .25s ease;
}


.solutions-bottom a:hover span {
    transform:
        translate(3px, -3px);
}
/* =========================================================
   OUR SOLUTIONS — TABLET
========================================================= */

@media (max-width: 1024px) {

    .doorway-solutions-container {
        width:
            calc(100% - 42px);

        padding:
            82px 0
            72px;
    }


    .solutions-header {
        grid-template-columns: 1fr;

        gap: 28px;
    }


    .solutions-header-right {
        max-width: 600px;
    }


    .solution-brand-grid {
    grid-template-columns:
        repeat(2, minmax(0,1fr));
}


.solution-brand {
    height: 310px;
    min-height: 310px;
}


.solution-brand-bg {
    height: 200px;
    min-height: 200px;

    flex-basis: 200px;
}


    .solution-product-row {
        min-height: 88px;
    }

}
/* =========================================================
   OUR SOLUTIONS — MOBILE
========================================================= */

@media (max-width: 767px) {

    .doorway-solutions::before {
        background-size:
            52px 52px;
    }


    .doorway-solutions-container {
        width:
            calc(
                100% -
                (var(--mobile-padding) * 2)
            );

        padding:
            66px 0
            58px;
    }


    /* Header */

    .solutions-header {
        padding-bottom: 31px;

        display: flex;
        flex-direction: column;

        gap: 22px;
    }


    .solutions-kicker {
        margin-bottom: 16px;

        font-size: 15px;
    }


    .solutions-title {
        font-size:
            clamp(
                40px,
                11.5vw,
                52px
            );

        line-height: 1;
    }


    .solutions-header-right p {
        font-size: 14.5px;

        line-height: 1.7;
    }


    .solutions-view-all {
        margin-top: 18px;
    }


    /* -----------------------------------------
       Brands
    ----------------------------------------- */

    .solution-brands {
        margin-top: 35px;
    }


   .solution-brand-grid {
    margin-top: 16px;

    grid-template-columns:
        repeat(2, minmax(0,1fr));

    gap: 8px;
}


.solution-brand {
    height: 215px;
    min-height: 215px;

    padding: 12px;
}


.solution-brand-bg {
    height: 138px;
    min-height: 138px;

    flex-basis: 138px;

    margin-bottom: 11px;
}


.solution-brand-arrow {
    top: 19px;
    right: 19px;

    font-size: 13px;
}


.solution-brand-name,
.solution-brand-content h3 {
    font-size: 16px;
}


.solution-brand-type,
.solution-brand-content p {
    margin-top: 4px;

    font-size: 5.5px;
}


    /* -----------------------------------------
       Products
    ----------------------------------------- */

    .solution-products {
        margin-top: 42px;
    }


    .solution-product-list {
    margin-top: 15px;

    grid-template-columns:
        1fr;

    border-left: 0;
}

.solution-product-row {
    min-height: 86px;

    padding:
        15px 4px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        40px;

    align-items: center;

    gap: 16px;

    border-right: 0;
}

.solution-product-content {
    display: block;

    width: 100%;

    min-width: 0;
}

.solution-product-content h3 {
    width: 100%;

    max-width: none;

    margin: 0;

    font-size:
        clamp(
            21px,
            6vw,
            27px
        );

    line-height: 1.08;

    letter-spacing: -.035em;

    word-break: normal;

    overflow-wrap: normal;
}

.solution-product-content p {
    max-width: 290px;

    margin:
        7px 0 0;

    color:
        rgba(255, 255, 255, .42);

    font-size: 12px;

    font-weight: 600;

    line-height: 1.45;

    letter-spacing: .07em;

    text-transform: uppercase;
}


.solution-product-arrow {
    width: 40px;
    height: 40px;

    display: grid;

    place-items: center;

    justify-self: end;

    border:
        1px solid
        rgba(255, 255, 255, .12);

    color:
        rgba(255, 255, 255, .65);

    font-size: 13px;
}

.solution-product-row:hover {
    padding-left: 4px;
}

    /* Bottom */

    .solutions-bottom {
        margin-top: 27px;

        padding-top: 20px;

        flex-direction: column;

        align-items: flex-start;

        gap: 13px;
    }

}
/* =========================================================
   42. SELECTED PROJECTS
========================================================= */

.doorway-projects {
    position: relative;

    width: 100%;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f7f7f9 55%,
            #f1f1f5 100%
        );

    color: var(--charcoal);
}


/* Subtle architecture grid */

.doorway-projects::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(63, 65, 152, 0.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(63, 65, 152, 0.03) 1px,
            transparent 1px
        );

    background-size:
        100px 100px;
}


/* =========================================================
   PROJECTS CONTAINER
========================================================= */

.doorway-projects-container {
    position: relative;

    z-index: 2;

    width:
        min(
            calc(100% - 64px),
            var(--container)
        );

    margin: 0 auto;

    padding:
        105px 0
        95px;
}


/* =========================================================
   PROJECTS HEADER
========================================================= */

.projects-header {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(320px, 430px);

    align-items: end;

    gap: 70px;

    padding-bottom: 48px;

    border-bottom:
        1px solid
        rgba(36, 33, 36, 0.10);
}


/* =========================================================
   PROJECT KICKER
========================================================= */

.projects-kicker {
    margin-bottom: 22px;

    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--brand-blue);

    font-size: 15px;
    font-weight: 700;

    letter-spacing: 0.14em;

    text-transform: uppercase;
}


.projects-kicker > span:first-child {
    color:
        rgba(36, 33, 36, 0.34);
}


.projects-kicker i {
    width: 28px;
    height: 1px;

    background:
        rgba(63, 65, 152, 0.55);
}


/* =========================================================
   PROJECTS TITLE
========================================================= */

.projects-title {
    max-width: 770px;

    margin: 0;

    color: var(--charcoal);

    font-family: var(--font-heading);

    font-size:
        clamp(
            52px,
            5.4vw,
            80px
        );

    font-weight: 500;

    line-height: 0.98;

    letter-spacing: -0.06em;
}


.projects-title span {
    color: var(--brand-blue);
}


/* =========================================================
   PROJECTS HEADER RIGHT
========================================================= */

.projects-header-right {
    padding-bottom: 5px;
}


.projects-header-right p {
    margin: 0;

    color: #6c6d74;

    font-size: 14px;

    line-height: 1.75;
}


.projects-view-all {
    width: fit-content;

    margin-top: 25px;
    padding-bottom: 7px;

    display: inline-flex;
    align-items: center;

    gap: 20px;

    color: var(--charcoal);

    border-bottom:
        1px solid
        rgba(36, 33, 36, 0.25);

    font-family: var(--font-heading);

    font-size: 11px;
    font-weight: 600;

    transition:
        gap 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}


.projects-view-all > span:last-child {
    color: var(--brand-blue);

    font-size: 15px;
}


.projects-view-all:hover {
    gap: 27px;

    color: var(--brand-blue);

    border-color: var(--brand-blue);
}


/* =========================================================
   PROJECT FILTERS
========================================================= */

.projects-filter-wrap {
    margin-top: 31px;

    overflow: hidden;
}


.projects-filter {
    display: flex;
    align-items: center;

    gap: 7px;

    overflow-x: auto;

    scrollbar-width: none;

    -webkit-overflow-scrolling: touch;
}


.projects-filter::-webkit-scrollbar {
    display: none;
}


.project-filter-btn {
    min-height: 39px;

    padding:
        0 15px;

    flex-shrink: 0;

    border:
        1px solid
        rgba(36, 33, 36, 0.11);

    border-radius: 50px;

    background:
        rgba(255, 255, 255, 0.45);

    color:
        rgba(36, 33, 36, 0.58);

    font-family: var(--font-heading);

    font-size: 13.5px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease;
}


.project-filter-btn:hover {
    color: var(--brand-blue);

    border-color:
        rgba(63, 65, 152, 0.30);
}


.project-filter-btn.active {
    background: var(--brand-blue);

    border-color: var(--brand-blue);

    color: var(--white);
}


/* =========================================================
   PROJECT GRID
========================================================= */

.projects-grid {
    margin-top: 28px;

    display: grid;

    grid-template-columns:
        repeat(12, 1fr);

    grid-auto-rows: 310px;

    gap: 14px;
}


/* =========================================================
   PROJECT CARD
========================================================= */

.project-card {
    position: relative;

    grid-column: span 4;

    overflow: hidden;

    isolation: isolate;

    /* Light fallback while image loads */
    background:
        linear-gradient(
            135deg,
            #e8e9ee 0%,
            #f5f5f8 100%
        );

    border:
        1px solid
        rgba(36, 33, 36, 0.08);

}


.project-card-featured {
    grid-column:
        span 8;

    grid-row:
        span 2;
}


.project-card-wide {
    grid-column:
        span 8;
}


/* Filter transition */

.project-card.is-hidden {
    display: none;
}


/* =========================================================
   PROJECT IMAGE
========================================================= */

.project-card-image {
    position: absolute;
    inset: 0;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #e7e8ed 0%,
            #f4f4f7 100%
        );
}

.project-card-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.01);

    transition:
        transform 0.65s
        cubic-bezier(.2, .8, .2, 1);
}

/* =========================================================
   PROJECT OVERLAY
========================================================= */

.project-card-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;

    pointer-events: none;

    background:
        linear-gradient(
            to top,
            rgba(7, 8, 11, 0.76) 0%,
            rgba(7, 8, 11, 0.28) 42%,
            rgba(7, 8, 11, 0.03) 72%,
            rgba(7, 8, 11, 0.06) 100%
        );
}


.project-card::after {
    content: "";

    position: absolute;

    inset: 0;

    z-index: 2;

    pointer-events: none;

    background:
        linear-gradient(
            135deg,
            transparent,
            rgba(63, 65, 152, 0.20)
        );

    opacity: 0;

    transition:
        opacity 0.45s ease;
}


/* =========================================================
   PROJECT INDEX
========================================================= */

.project-card-index {
    position: absolute;

    z-index: 4;

    top: 20px;
    left: 20px;

    color:
        rgba(255, 255, 255, 0.55);

    font-size: 8px;

    letter-spacing: 0.08em;
}


/* =========================================================
   PROJECT ARROW
========================================================= */

.project-card-arrow {
    position: absolute;

    z-index: 4;

    top: 16px;
    right: 16px;

    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
    rgba(7, 8, 11, 0.55);

    border:
        1px solid
        rgba(255, 255, 255, 0.15);

    color:
        rgba(255, 255, 255, 0.82);

    

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        transform 0.3s ease;
}


/* =========================================================
   PROJECT CONTENT
========================================================= */

.project-card-content {
    position: absolute;

    z-index: 4;

    right: 22px;
    bottom: 22px;
    left: 22px;
}


.project-card-category {
    display: block;

    margin-bottom: 9px;

    color:
        #8d8fe2;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.project-card-content h3 {
    max-width: 600px;

    margin: 0;

    color: var(--white);

    font-family: var(--font-heading);

    font-size:
        clamp(
            23px,
            2.15vw,
            34px
        );

    font-weight: 500;

    line-height: 1.04;

    letter-spacing: -0.04em;
}


.project-card-content h3 span {
    color:
        rgba(255, 255, 255, 0.62);
}


.project-card-content p {
    max-width: 500px;

    margin:
        10px 0 0;

    color:
        rgba(255, 255, 255, 0.48);

    font-size: 10px;

    line-height: 1.6;
}


/* =========================================================
   PROJECT HOVER — DESKTOP ONLY
========================================================= */

@media (hover: hover) {

    .project-card:hover
    .project-card-image img {
        transform:
            scale(1.035);
    }


    .project-card:hover::after {
        opacity: 1;
    }


    .project-card:hover
    .project-card-arrow {
        background:
            var(--brand-blue);

        border-color:
            var(--brand-blue);

        transform:
            translate(3px, -3px);
    }

}


/* =========================================================
   PROJECTS BOTTOM CTA
========================================================= */

.projects-bottom {
    margin-top: 66px;

    padding:
        35px 0 0;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 40px;

    border-top:
        1px solid
        rgba(36, 33, 36, 0.10);
}


.projects-bottom-label {
    display: block;

    margin-bottom: 9px;

    color: var(--brand-blue);

    font-size: 10.5px;
    font-weight: 700;

    letter-spacing: 0.12em;

    text-transform: uppercase;
}


.projects-bottom h3 {
    max-width: 620px;

    margin: 0;

    color: var(--charcoal);

    font-family: var(--font-heading);

    font-size:
        clamp(
            28px,
            3vw,
            42px
        );

    font-weight: 500;

    line-height: 1.08;

    letter-spacing: -0.04em;
}


/* CTA */

.projects-consultation-btn {
    min-height: 55px;

    padding:
        0 18px
        0 21px;

    flex-shrink: 0;

    display: inline-flex;
    align-items: center;

    gap: 38px;

    background: var(--brand-blue);

    color: var(--white);

    font-family: var(--font-heading);

    font-size: 15px;
    font-weight: 600;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}


.projects-consultation-btn:hover {
    background:
        var(--brand-blue-light);

    transform:
        translateY(-2px);
}


.projects-consultation-arrow {
    font-size: 17px;
}


/* =========================================================
   43. SELECTED PROJECTS — TABLET
========================================================= */

@media (max-width: 1024px) {

    .doorway-projects-container {
        width:
            calc(100% - 42px);

        padding:
            85px 0
            75px;
    }


    .projects-header {
        grid-template-columns:
            1fr;

        gap: 28px;
    }


    .projects-title {
        max-width: 700px;

        font-size:
            clamp(
                50px,
                7.4vw,
                70px
            );
    }


    .projects-header-right {
        max-width: 580px;
    }


    .projects-grid {
        grid-template-columns:
            repeat(2, 1fr);

        grid-auto-rows: 340px;
    }


    .project-card,
    .project-card-wide {
        grid-column:
            span 1;

        grid-row:
            span 1;
    }


    .project-card-featured {
        grid-column:
            span 2;

        grid-row:
            span 1;

        min-height: 470px;
    }

}


/* =========================================================
   44. SELECTED PROJECTS — MOBILE
========================================================= */

@media (max-width: 767px) {

    .doorway-projects::before {
        background-size:
            52px 52px;
    }


    .doorway-projects-container {
        width:
            calc(
                100% -
                (var(--mobile-padding) * 2)
            );

        padding:
            68px 0
            60px;
    }


    /* Header */

    .projects-header {
        padding-bottom: 32px;

        display: flex;
        flex-direction: column;

        gap: 25px;
    }


    .projects-kicker {
        margin-bottom: 17px;

        font-size: 15px;
    }


    .projects-kicker i {
        width: 22px;
    }


    .projects-title {
        width: 100%;
        max-width: none;

        font-size:
            clamp(
                40px,
                12vw,
                56px
            );

        line-height: 1;
    }


    .projects-header-right p {
        font-size: 14px;

        line-height: 1.7;
    }


    .projects-view-all {
        margin-top: 20px;

        font-size: 13px;
    }


    /* Filters */

    .projects-filter-wrap {
        width:
            calc(
                100% +
                var(--mobile-padding)
            );

        margin-top: 24px;
    }


    .projects-filter {
        padding-right:
            var(--mobile-padding);
    }


    .project-filter-btn {
        min-height: 38px;

        padding:
            0 14px;

        font-size: 12px;
    }


    /* Grid */

    .projects-grid {
        margin-top: 21px;

        display: grid;

        grid-template-columns:
            1fr;

        grid-auto-rows:
            auto;

        gap: 11px;
    }


    .project-card,
    .project-card-featured,
    .project-card-wide {
        grid-column: auto;
        grid-row: auto;

        width: 100%;

        min-height: 365px;
    }


    .project-card-featured {
        min-height: 455px;
    }


    .project-card-index {
        top: 16px;
        left: 16px;
    }


    .project-card-arrow {
        top: 13px;
        right: 13px;

        width: 39px;
        height: 39px;
    }


    .project-card-content {
        right: 17px;
        bottom: 18px;
        left: 17px;
    }


    .project-card-content h3 {
        max-width: 90%;

        font-size:
            clamp(
                25px,
                8vw,
                32px
            );
    }


    .project-card-content p {
        max-width: 95%;

        font-size: 9px;
    }


    /* Bottom */

    .projects-bottom {
        margin-top: 48px;

        padding-top: 27px;

        flex-direction: column;

        align-items: flex-start;

        gap: 25px;
    }


    .projects-bottom h3 {
        max-width: 100%;

        font-size:
            clamp(
                27px,
                8vw,
                36px
            );
    }


    .projects-consultation-btn {
        width: 100%;

        min-height: 54px;

        justify-content: space-between;
    }

}


/* =========================================================
   45. SELECTED PROJECTS — SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .project-card {
        min-height: 335px;
    }


    .project-card-featured {
        min-height: 410px;
    }


    .project-card-content h3 {
        font-size: 25px;
    }

}
/* =========================================================
   46. HOW WE WORK
========================================================= */

.doorway-process {
    position: relative;

    width: 100%;

    overflow: hidden;

    background:
    var(--dark-section-bg);

    color: var(--white);
}


/* subtle architecture lines */

.doorway-process::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,.022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.022) 1px,
            transparent 1px
        );

    background-size: 92px 92px;
}


/* =========================================================
   CONTAINER
========================================================= */

.doorway-process-container {
    position: relative;

    z-index: 2;

    width:
        min(
            calc(100% - 64px),
            var(--container)
        );

    margin: 0 auto;

    padding:
        110px 0
        100px;

    display: grid;

    grid-template-columns:
        minmax(320px, 0.78fr)
        minmax(520px, 1.22fr);

    gap:
        clamp(
            75px,
            9vw,
            145px
        );
}


/* =========================================================
   LEFT INTRO
========================================================= */

.process-intro {
    position: sticky;

    top: 125px;

    align-self: start;
}


/* kicker */

.process-kicker {
    margin-bottom: 24px;

    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--brand-blue-light);

    font-size: 15px;
    font-weight: 700;

    letter-spacing: .14em;

    text-transform: uppercase;
}


.process-kicker > span:first-child {
    color:
        rgba(255,255,255,.30);
}


.process-kicker i {
    width: 28px;
    height: 1px;

    background:
        rgba(85,88,189,.65);
}


/* heading */

.process-title {
    max-width: 620px;

    margin: 0;

    font-family: var(--font-heading);

    font-size:
        clamp(
            50px,
            5vw,
            76px
        );

    font-weight: 500;

    line-height: .98;

    letter-spacing: -.06em;
}


.process-title span {
    display: block;

    color: var(--brand-blue-light);
}


/* description */

.process-description {
    max-width: 510px;

    margin:
        29px 0 0;

    color:
        rgba(255,255,255,.50);

    font-size: 14px;

    line-height: 1.8;
}


/* CTA */

.process-cta {
    width: fit-content;

    margin-top: 32px;

    padding-bottom: 8px;

    display: inline-flex;
    align-items: center;

    gap: 24px;

    border-bottom:
        1px solid
        rgba(255,255,255,.22);

    color:
        rgba(255,255,255,.90);

    font-family: var(--font-heading);

    font-size: 14px;
    font-weight: 600;

    transition:
        gap .3s ease,
        border-color .3s ease;
}


.process-cta-arrow {
    color:
        var(--brand-blue-light);

    font-size: 17px;
}


.process-cta:hover {
    gap: 31px;

    border-color:
        var(--brand-blue-light);
}


/* =========================================================
   SCROLL PROGRESS
========================================================= */

.process-progress {
    max-width: 430px;

    margin-top: 70px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    align-items: center;

    gap: 18px;
}


.process-progress-track {
    position: relative;

    width: 100%;
    height: 1px;

    overflow: hidden;

    background:
        rgba(255,255,255,.10);
}


.process-progress-fill {
    position: absolute;

    top: 0;
    left: 0;

    width: 25%;
    height: 100%;

    background:
        var(--brand-blue-light);

    transition:
        width .55s
        cubic-bezier(.2,.8,.2,1);
}


.process-progress-count {
    display: flex;
    align-items: center;

    gap: 5px;

    color:
        rgba(255,255,255,.28);

    font-family: var(--font-heading);

    font-size: 10px;
}


.process-progress-count strong {
    color:
        var(--brand-blue-light);
}


/* =========================================================
   PROCESS STEPS
========================================================= */

.process-steps {
    border-top:
        1px solid
        rgba(255,255,255,.10);
}


/* =========================================================
   INDIVIDUAL STEP
========================================================= */

.process-step {
    position: relative;

    min-height: 260px;

    padding:
        42px 4px;

    display: grid;

    grid-template-columns:
        45px
        minmax(0,1fr)
        56px;

    align-items: start;

    gap: 24px;

    border-bottom:
        1px solid
        rgba(255,255,255,.10);

    opacity: .42;

    transition:
        opacity .45s ease,
        padding-left .45s ease,
        background .45s ease;
}


/* active indicator */

.process-step::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;

    width: 2px;

    background:
        var(--brand-blue-light);

    transform:
        scaleY(0);

    transform-origin:
        top center;

    transition:
        transform .45s ease;
}


.process-step.active {
    padding-left: 18px;

    opacity: 1;

    background:
        linear-gradient(
            90deg,
            rgba(63,65,152,.08),
            transparent 70%
        );
}


.process-step.active::before {
    transform:
        scaleY(1);
}


/* =========================================================
   STEP NUMBER
========================================================= */

.process-step-number {
    padding-top: 6px;

    color:
        rgba(255,255,255,.26);

    font-size: 8px;
    font-weight: 600;

    transition:
        color .3s ease;
}


.process-step.active
.process-step-number {
    color:
        var(--brand-blue-light);
}


/* =========================================================
   STEP CONTENT
========================================================= */

.process-step-label {
    display: block;

    margin-bottom: 11px;

    color:
        var(--brand-blue-light);

    font-size: 13.5px;
    font-weight: 700;

    letter-spacing: .14em;

    text-transform: uppercase;
}


.process-step-main h3 {
    max-width: 560px;

    margin: 0;

    font-family: var(--font-heading);

    font-size:
        clamp(
            26px,
            2.6vw,
            39px
        );

    font-weight: 500;

    line-height: 1.03;

    letter-spacing:
        -.045em;
}


.process-step-main h3 span {
    color:
        rgba(255,255,255,.54);
}


.process-step-main p {
    max-width: 510px;

    margin:
        17px 0 0;

    color:
        rgba(255,255,255,.42);

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   STEP ICON
========================================================= */

.process-step-icon {
    width: 48px;
    height: 48px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.10);

    color:
        rgba(255,255,255,.34);

    transition:
        background .35s ease,
        border-color .35s ease,
        color .35s ease,
        transform .35s ease;
}


.process-step-icon svg {
    width: 20px;
    height: 20px;
}


.process-step.active
.process-step-icon {
    background:
        var(--brand-blue);

    border-color:
        var(--brand-blue);

    color:
        var(--white);

    transform:
        translateY(-3px);
}


/* =========================================================
   47. HOW WE WORK — TABLET
========================================================= */

@media (max-width: 1024px) {

    .doorway-process-container {
        width:
            calc(100% - 42px);

        padding:
            85px 0
            78px;

        grid-template-columns:
            1fr;

        gap: 58px;
    }


    .process-intro {
        position: static;

        max-width: 720px;
    }


    .process-title {
        max-width: 700px;

        font-size:
            clamp(
                50px,
                7.4vw,
                70px
            );
    }


    .process-progress {
        max-width: 100%;

        margin-top: 45px;
    }


    .process-step {
        min-height: 220px;
    }

}


/* =========================================================
   48. HOW WE WORK — MOBILE
========================================================= */

@media (max-width: 767px) {

    .doorway-process::before {
        background-size:
            52px 52px;
    }


    .doorway-process-container {
        width:
            calc(
                100% -
                (var(--mobile-padding) * 2)
            );

        padding:
            68px 0
            60px;

        display: flex;
        flex-direction: column;

        gap: 45px;
    }


    /* Intro */

    .process-kicker {
        margin-bottom: 18px;

        font-size: 15px;
    }


    .process-kicker i {
        width: 22px;
    }


    .process-title {
        max-width: 100%;

        font-size:
            clamp(
                40px,
                12vw,
                56px
            );

        line-height: 1;
    }


    .process-description {
        max-width: 100%;

        margin-top: 21px;

        font-size: 15px;

        line-height: 1.7;
    }


    .process-cta {
        margin-top: 27px;

        font-size: 14px;
    }


    /* Hide desktop progress on phone */

    .process-progress {
        display: none;
    }


    /* Timeline */

    .process-step {
        min-height: 0;

        padding:
            25px 0;

        grid-template-columns:
            27px
            minmax(0,1fr)
            42px;

        gap: 11px;

        opacity: 1;

        background:
            transparent;
    }


    .process-step.active {
        padding-left: 0;

        background:
            transparent;
    }


    .process-step::before {
        display: none;
    }


    .process-step-number {
        padding-top: 5px;

        font-size: 7px;
    }


    .process-step-label {
        margin-bottom: 8px;

        font-size: 11.5px;
    }


    .process-step-main h3 {
        font-size:
            clamp(
                23px,
                7vw,
                29px
            );

        line-height: 1.06;
    }


    .process-step-main p {
        margin-top: 12px;

        font-size: 15px;

        line-height: 1.65;
    }


    .process-step-icon {
        width: 40px;
        height: 40px;
    }


    .process-step-icon svg {
        width: 17px;
        height: 17px;
    }

}


/* =========================================================
   49. HOW WE WORK — SMALL PHONE
========================================================= */

@media (max-width: 390px) {

    .process-title {
        font-size:
            clamp(
                38px,
                11.5vw,
                46px
            );
    }


    .process-step {
        grid-template-columns:
            24px
            minmax(0,1fr)
            37px;
    }


    .process-step-icon {
        width: 36px;
        height: 36px;
    }

}
/* =========================================================
   50. CLIENT EXPERIENCES
========================================================= */

.doorway-testimonials {
    position: relative;

    width: 100%;

    overflow: hidden;

    background:
        linear-gradient(
            135deg,
            #ffffff 0%,
            #f7f7fa 55%,
            #efeff4 100%
        );

    color: var(--charcoal);
}


/* Background architectural pattern */

.doorway-testimonials::before {
    content: "";

    position: absolute;

    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(63, 65, 152, 0.03) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(63, 65, 152, 0.03) 1px,
            transparent 1px
        );

    background-size:
        100px 100px;
}


/* =========================================================
   CONTAINER
========================================================= */

.doorway-testimonials-container {
    position: relative;

    z-index: 2;

    width:
        min(
            calc(100% - 64px),
            var(--container)
        );

    margin: 0 auto;

    padding:
        105px 0
        95px;
}


/* =========================================================
   HEADER
========================================================= */

.testimonials-header {
    padding-bottom: 52px;

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(300px, 420px);

    align-items: end;

    gap: 75px;

    border-bottom:
        1px solid
        rgba(36, 33, 36, 0.10);
}


/* Kicker */

.testimonials-kicker {
    margin-bottom: 22px;

    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--brand-blue);

    font-size: 15px;
    font-weight: 700;

    letter-spacing: .14em;

    text-transform: uppercase;
}


.testimonials-kicker > span:first-child {
    color:
        rgba(36, 33, 36, 0.34);
}


.testimonials-kicker i {
    width: 28px;
    height: 1px;

    background:
        rgba(63, 65, 152, 0.55);
}


/* Heading */

.testimonials-title {
    max-width: 850px;

    margin: 0;

    font-family: var(--font-heading);

    font-size:
        clamp(
            50px,
            5vw,
            76px
        );

    font-weight: 500;

    line-height: .99;

    letter-spacing: -.06em;
}


.testimonials-title span {
    display: block;

    color: var(--brand-blue);
}


/* Intro */

.testimonials-intro {
    margin: 0;

    color: #6b6c73;

    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   TESTIMONIAL STAGE
========================================================= */

.testimonials-stage {
    margin-top: 58px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(360px, .75fr);

    gap: 16px;
}


/* =========================================================
   FEATURED REVIEW
========================================================= */

.testimonial-featured {
    position: relative;

    min-height: 540px;

    padding:
        55px
        55px
        38px;

    overflow: hidden;

    background:
        var(--brand-blue);

    color: var(--white);
}


/* Large quote */

.testimonial-quote-mark {
    position: absolute;

    top: -40px;
    right: 30px;

    color:
        rgba(255,255,255,.08);

    font-family: Georgia, serif;

    font-size: 280px;

    line-height: 1;

    pointer-events: none;
}


/* =========================================================
   TESTIMONIAL PANELS
========================================================= */

.testimonial-panel {
    position: absolute;

    top: 55px;
    right: 55px;
    bottom: 100px;
    left: 55px;

    display: flex;
    flex-direction: column;

    opacity: 0;

    pointer-events: none;

    transform:
        translateY(22px);

    transition:
        opacity .45s ease,
        transform .55s
        cubic-bezier(.2,.8,.2,1);
}


.testimonial-panel.active {
    opacity: 1;

    pointer-events: auto;

    transform:
        translateY(0);
}


/* Meta */

.testimonial-meta {
    display: flex;
    align-items: center;

    gap: 10px;

    color:
        rgba(255,255,255,.50);

    font-size: 14px;
    font-weight: 700;

    letter-spacing: .12em;

    text-transform: uppercase;
}


.testimonial-meta i {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background:
        rgba(255,255,255,.55);
}


/* Quote */

.testimonial-panel blockquote {
    max-width: 820px;

    margin:
        auto 0;

    padding:
        30px 0;

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            30px,
            3.3vw,
            50px
        );

    font-weight: 400;

    line-height: 1.18;

    letter-spacing:
        -.04em;
}


/* =========================================================
   CLIENT
========================================================= */

.testimonial-client {
    display: flex;
    align-items: center;

    gap: 14px;
}


.testimonial-client-avatar {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.18);

    background:
        rgba(255,255,255,.08);

    font-family:
        var(--font-heading);

    font-size: 12px;
}


.testimonial-client strong {
    display: block;

    margin-bottom: 3px;

    font-family:
        var(--font-heading);

    font-size: 11px;
    font-weight: 600;
}


.testimonial-client span {
    display: block;

    color:
        rgba(255,255,255,.46);

    font-size: 11px;

    letter-spacing: .06em;

    text-transform: uppercase;
}


/* =========================================================
   CONTROLS
========================================================= */

.testimonial-controls {
    position: absolute;

    right: 38px;
    bottom: 32px;
    left: 38px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


/* Counter */

.testimonial-counter {
    display: flex;
    align-items: center;

    gap: 5px;

    color:
        rgba(255,255,255,.35);

    font-family:
        var(--font-heading);

    font-size: 10px;
}


.testimonial-counter strong {
    color: var(--white);
}


/* Arrows */

.testimonial-arrows {
    display: flex;

    gap: 7px;
}


.testimonial-arrow {
    width: 44px;
    height: 44px;

    padding: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.18);

    background:
        rgba(255,255,255,.04);

    color:
        rgba(255,255,255,.80);

    cursor: pointer;

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}


.testimonial-arrow:hover {
    background: var(--white);

    color: var(--brand-blue);

    transform:
        translateY(-2px);
}


/* =========================================================
   REVIEW SELECTOR
========================================================= */

.testimonial-selector {
    display: flex;
    flex-direction: column;

    background:
        rgba(255,255,255,.63);

    border:
        1px solid
        rgba(36,33,36,.08);
}


/* Selector item */

.testimonial-selector-item {
    position: relative;

    width: 100%;

    min-height: 130px;

    padding:
        25px 22px;

    display: grid;

    grid-template-columns:
        35px
        minmax(0,1fr)
        30px;

    align-items: center;

    gap: 14px;

    background: transparent;

    border: 0;

    border-bottom:
        1px solid
        rgba(36,33,36,.09);

    color: var(--charcoal);

    text-align: left;

    cursor: pointer;

    transition:
        background .3s ease,
        padding-left .3s ease;
}


/* Active bar */

.testimonial-selector-item::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;

    width: 2px;

    background:
        var(--brand-blue);

    transform:
        scaleY(0);

    transition:
        transform .35s ease;
}


.testimonial-selector-item.active {
    padding-left: 29px;

    background:
        rgba(63,65,152,.055);
}


.testimonial-selector-item.active::before {
    transform:
        scaleY(1);
}


/* Number */

.testimonial-selector-number {
    color:
        rgba(36,33,36,.30);

    font-size: 8px;

    transition:
        color .25s ease;
}


.testimonial-selector-item.active
.testimonial-selector-number {
    color: var(--brand-blue);
}


/* Text */

.testimonial-selector-content strong {
    display: block;

    margin-bottom: 6px;

    font-family:
        var(--font-heading);

    font-size: 17px;
    font-weight: 600;
}


.testimonial-selector-content small {
    color:
        #8a8b91;

    font-size: 12px;

    letter-spacing: .06em;

    text-transform: uppercase;
}


/* Arrow */

.testimonial-selector-arrow {
    justify-self: end;

    color:
        rgba(36,33,36,.30);

    font-size: 16px;

    transition:
        color .25s ease,
        transform .25s ease;
}


.testimonial-selector-item.active
.testimonial-selector-arrow {
    color: var(--brand-blue);

    transform:
        translate(2px,-2px);
}


/* =========================================================
   SELECTOR FOOTER
========================================================= */

.testimonial-selector-footer {
    margin-top: auto;

    padding:
        25px 22px;

    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 10px;
}


.testimonial-selector-footer > span {
    color: #888990;

    font-size: 12px;

    letter-spacing: .08em;

    text-transform: uppercase;
}


.testimonial-selector-footer a {
    display: inline-flex;
    align-items: center;

    gap: 15px;

    padding-bottom: 5px;

    border-bottom:
        1px solid
        rgba(36,33,36,.18);

    color: var(--charcoal);

    font-family:
        var(--font-heading);

    font-size: 14px;
    font-weight: 600;

    transition:
        gap .25s ease,
        color .25s ease;
}


.testimonial-selector-footer a:hover {
    gap: 20px;

    color: var(--brand-blue);
}


/* =========================================================
   51. TESTIMONIALS — TABLET
========================================================= */

@media (max-width: 1024px) {

    .doorway-testimonials-container {
        width:
            calc(100% - 42px);

        padding:
            85px 0
            75px;
    }


    .testimonials-header {
        grid-template-columns:
            1fr;

        gap: 27px;
    }


    .testimonials-title {
        max-width: 760px;

        font-size:
            clamp(
                48px,
                7.2vw,
                68px
            );
    }


    .testimonials-intro {
        max-width: 580px;
    }


    .testimonials-stage {
        grid-template-columns:
            1fr;
    }


    .testimonial-featured {
        min-height: 500px;
    }


    .testimonial-selector {
        display: grid;

        grid-template-columns:
            repeat(3,1fr);
    }


    .testimonial-selector-item {
        min-height: 115px;

        grid-template-columns:
            26px
            1fr;

        border-right:
            1px solid
            rgba(36,33,36,.09);
    }


    .testimonial-selector-arrow {
        display: none;
    }


    .testimonial-selector-footer {
        display: none;
    }

}


/* =========================================================
   52. TESTIMONIALS — MOBILE
========================================================= */

@media (max-width: 767px) {

    .doorway-testimonials::before {
        background-size:
            52px 52px;
    }


    .doorway-testimonials-container {
        width:
            calc(
                100% -
                (var(--mobile-padding) * 2)
            );

        padding:
            68px 0
            60px;
    }


    /* Header */

    .testimonials-header {
        padding-bottom: 32px;

        display: flex;
        flex-direction: column;

        gap: 23px;
    }


    .testimonials-kicker {
        margin-bottom: 17px;

        font-size: 15px;
    }


    .testimonials-kicker i {
        width: 22px;
    }


    .testimonials-title {
        width: 100%;

        font-size:
            clamp(
                39px,
                11.5vw,
                54px
            );

        line-height: 1;
    }


    .testimonials-intro {
        font-size: 15px;

        line-height: 1.7;
    }


    /* Stage */

    .testimonials-stage {
        margin-top: 32px;
    }


    .testimonial-featured {
        min-height: 470px;

        padding:
            30px 22px;
    }


    .testimonial-panel {
        top: 30px;
        right: 22px;
        bottom: 90px;
        left: 22px;
    }


    .testimonial-quote-mark {
        top: -20px;
        right: 15px;

        font-size: 190px;
    }


    .testimonial-panel blockquote {
        font-size:
            clamp(
                25px,
                7.6vw,
                32px
            );

        line-height: 1.18;
    }


    .testimonial-controls {
        right: 20px;
        bottom: 20px;
        left: 20px;
    }


    .testimonial-arrow {
        width: 42px;
        height: 42px;
    }


    /* Mobile selector becomes horizontal */

    .testimonial-selector {
        display: flex;
        flex-direction: row;

        overflow-x: auto;

        scrollbar-width: none;

        -webkit-overflow-scrolling: touch;
    }


    .testimonial-selector::-webkit-scrollbar {
        display: none;
    }


    .testimonial-selector-item {
        min-width: 230px;
        min-height: 100px;

        padding:
            18px;

        grid-template-columns:
            25px
            1fr;

        flex-shrink: 0;
    }


    .testimonial-selector-item.active {
        padding-left: 21px;
    }


    .testimonial-selector-content strong {
        font-size: 14px;
    }


    .testimonial-selector-content small {
        font-size: 10.5px;
    }


    .testimonial-selector-arrow {
        display: none;
    }

}


/* =========================================================
   53. TESTIMONIALS — SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .testimonial-featured {
        min-height: 450px;
    }


    .testimonial-panel blockquote {
        font-size: 24px;
    }


    .testimonial-client-avatar {
        width: 40px;
        height: 40px;
    }

}
/* =========================================================
   54. FAQ + CONSULTATION
========================================================= */

.doorway-consultation {
    position: relative;

    width: 100%;

    overflow: hidden;

    background:
    var(--dark-section-bg);

    color: var(--white);
}


/* Architectural grid */

.doorway-consultation::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,.021) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.021) 1px,
            transparent 1px
        );

    background-size:
        92px 92px;
}


/* =========================================================
   CONTAINER
========================================================= */

.doorway-consultation-container {
    position: relative;

    z-index: 2;

    width:
        min(
            calc(100% - 64px),
            var(--container)
        );

    margin: 0 auto;

    padding:
        110px 0
        100px;

    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(460px, .95fr);

    align-items: start;

    gap:
        clamp(
            70px,
            8vw,
            125px
        );
}


/* =========================================================
   LEFT — FAQ INTRO
========================================================= */

.consultation-kicker {
    margin-bottom: 23px;

    display: flex;
    align-items: center;

    gap: 10px;

    color: var(--brand-blue-light);

    font-size: 15px;
    font-weight: 700;

    letter-spacing: .14em;

    text-transform: uppercase;
}


.consultation-kicker > span:first-child {
    color:
        rgba(255,255,255,.30);
}


.consultation-kicker i {
    width: 28px;
    height: 1px;

    background:
        rgba(85,88,189,.65);
}


/* =========================================================
   TITLE
========================================================= */

.consultation-title {
    max-width: 700px;

    margin: 0;

    font-family: var(--font-heading);

    font-size:
        clamp(
            50px,
            5vw,
            76px
        );

    font-weight: 500;

    line-height: .98;

    letter-spacing:
        -.06em;
}


.consultation-title span {
    display: block;

    color:
        var(--brand-blue-light);
}


.consultation-description {
    max-width: 560px;

    margin:
        28px 0 0;

    color:
        rgba(255,255,255,.48);

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================================
   FAQ LIST
========================================================= */

.doorway-faq-list {
    margin-top: 55px;

    border-top:
        1px solid
        rgba(255,255,255,.10);
}


/* FAQ item */

.doorway-faq-item {
    border-bottom:
        1px solid
        rgba(255,255,255,.10);
}


/* =========================================================
   FAQ QUESTION
========================================================= */

.doorway-faq-question {
    width: 100%;

    min-height: 82px;

    padding: 0;

    display: grid;

    grid-template-columns:
        36px
        minmax(0,1fr)
        40px;

    align-items: center;

    gap: 15px;

    border: 0;

    background:
        transparent;

    color:
        var(--white);

    text-align: left;

    cursor: pointer;
}


.faq-number {
    color:
        rgba(255,255,255,.28);

    font-size: 8px;

    transition:
        color .3s ease;
}


.faq-question-text {
    font-family:
        var(--font-heading);

    font-size:
        15px;

    font-weight: 500;

    line-height: 1.4;

    transition:
        color .3s ease;
}


/* =========================================================
   FAQ PLUS / MINUS
========================================================= */

.faq-icon {
    position: relative;

    width: 38px;
    height: 38px;

    border:
        1px solid
        rgba(255,255,255,.10);

    transition:
        background .3s ease,
        border-color .3s ease;
}


.faq-icon::before,
.faq-icon::after {
    content: "";

    position: absolute;

    top: 50%;
    left: 50%;

    background:
        rgba(255,255,255,.72);

    transform:
        translate(-50%,-50%);

    transition:
        transform .3s ease,
        opacity .3s ease;
}


.faq-icon::before {
    width: 12px;
    height: 1px;
}


.faq-icon::after {
    width: 1px;
    height: 12px;
}


/* Active */

.doorway-faq-item.active
.faq-number {
    color:
        var(--brand-blue-light);
}


.doorway-faq-item.active
.faq-question-text {
    color:
        #ffffff;
}


.doorway-faq-item.active
.faq-icon {
    background:
        var(--brand-blue);

    border-color:
        var(--brand-blue);
}


.doorway-faq-item.active
.faq-icon::after {
    opacity: 0;

    transform:
        translate(-50%,-50%)
        rotate(90deg);
}


/* =========================================================
   FAQ ANSWER
========================================================= */

.doorway-faq-answer {
    display: grid;

    grid-template-rows:
        0fr;

    transition:
        grid-template-rows .42s
        cubic-bezier(.2,.8,.2,1);
}


.doorway-faq-answer-inner {
    overflow: hidden;
}


.doorway-faq-answer-inner p {
    max-width: 600px;

    margin:
        0 55px
        0 51px;

    padding:
        0 0
        27px;

    color:
        rgba(255,255,255,.45);

    font-size: 14px;

    line-height: 1.75;
}


.doorway-faq-item.active
.doorway-faq-answer {
    grid-template-rows:
        1fr;
}


/* =========================================================
   MORE QUESTIONS
========================================================= */

.faq-more {
    margin-top: 28px;

    display: flex;
    align-items: center;

    justify-content: space-between;

    gap: 20px;
}


.faq-more > span {
    color:
        rgba(255,255,255,.28);

    font-size: 13px;

    letter-spacing: .09em;

    text-transform: uppercase;
}


.faq-more a {
    display: inline-flex;
    align-items: center;

    gap: 15px;

    color:
        rgba(255,255,255,.78);

    font-family:
        var(--font-heading);

    font-size: 14px;

    transition:
        gap .25s ease,
        color .25s ease;
}


.faq-more a span {
    color:
        var(--brand-blue-light);
}


.faq-more a:hover {
    gap: 21px;

    color:
        #fff;
}


/* =========================================================
   RIGHT — FORM WRAPPER
========================================================= */

.consultation-form-wrap {
    position: relative;
}


/* =========================================================
   CONSULTATION FORM CARD
========================================================= */

.consultation-form-card {
    position: relative;

    overflow: hidden;

    padding:
        45px 42px
        38px;

    background:
        #ffffff;

    color:
        var(--charcoal);

    box-shadow:
        0 35px 100px
        rgba(0,0,0,.28);
}


/* Indigo top line */

.consultation-form-card::before {
    content: "";

    position: absolute;

    top: 0;
    left: 0;

    width: 100%;
    height: 3px;

    background:
        linear-gradient(
            90deg,
            var(--brand-blue),
            var(--brand-blue-light),
            transparent
        );
}


/* =========================================================
   FORM HEADER
========================================================= */

.consultation-form-label {
    display: block;

    margin-bottom: 15px;

    color:
        var(--brand-blue);

    font-size: 14.5px;
    font-weight: 700;

    letter-spacing: .14em;

    text-transform: uppercase;
}


.consultation-form-header h3 {
    max-width: 440px;

    margin: 0;

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            34px,
            3.2vw,
            47px
        );

    font-weight: 500;

    line-height: 1;

    letter-spacing:
        -.05em;
}


.consultation-form-header h3 span {
    display: block;

    color:
        var(--brand-blue);
}


.consultation-form-header p {
    max-width: 430px;

    margin:
        18px 0 0;

    color:
        #77787f;

    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   FORM
========================================================= */

.consultation-form {
    margin-top: 37px;
}


/* =========================================================
   FIELD
========================================================= */

.consultation-field {
    margin-bottom: 20px;
}


.consultation-field label {
    display: block;

    margin-bottom: 8px;

    color:
        #6c6d74;

    font-size: 14px;
    font-weight: 700;

    letter-spacing: .09em;

    text-transform: uppercase;
}


.consultation-field input,
.consultation-field select,
.consultation-field textarea {
    width: 100%;

    padding:
        0 0
        11px;

    border: 0;

    border-bottom:
        1px solid
        #d9dae0;

    border-radius: 0;

    outline: none;

    background:
        transparent;

    color:
        var(--charcoal);

    font-family:
        var(--font-body);

    font-size: 13px;

    transition:
        border-color .25s ease;
}


.consultation-field input {
    min-height: 39px;
}


.consultation-field select {
    min-height: 39px;

    cursor: pointer;
}


.consultation-field textarea {
    min-height: 85px;

    padding-top: 8px;

    resize: vertical;
}


.consultation-field input::placeholder,
.consultation-field textarea::placeholder {
    color:
        #aaaab0;
}


.consultation-field input:focus,
.consultation-field select:focus,
.consultation-field textarea:focus {
    border-color:
        var(--brand-blue);
}


/* =========================================================
   FORM TWO-COLUMN ROW
========================================================= */

.consultation-form-row {
    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 20px;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.consultation-submit {
    width: 100%;

    min-height: 56px;

    margin-top: 8px;

    padding:
        0 14px
        0 20px;

    display: flex;
    align-items: center;

    justify-content: space-between;

    gap: 20px;

    border:
        1px solid
        var(--brand-blue);

    background:
        var(--brand-blue);

    color:
        #ffffff;

    font-family:
        var(--font-heading);

    font-size: 11px;
    font-weight: 600;

    cursor: pointer;

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


.consultation-submit-arrow {
    width: 31px;
    height: 31px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.25);
}


.consultation-submit-arrow svg {
    width: 15px;
}


.consultation-submit:hover {
    background:
        var(--brand-blue-light);

    transform:
        translateY(-2px);

    box-shadow:
        0 15px 30px
        rgba(63,65,152,.22);
}


/* =========================================================
   FORM NOTE
========================================================= */

.consultation-form-note {
    margin:
        12px 0 0;

    color:
        #a0a1a7;

    font-size: 13px;

    line-height: 1.5;
}


/* Decorative mark */

.consultation-card-mark {
    position: absolute;

    top: -45px;
    right: -8px;

    color:
        rgba(63,65,152,.035);

    font-family:
        var(--font-heading);

    font-size: 230px;
    font-weight: 800;

    line-height: 1;

    pointer-events: none;
}


/* =========================================================
   55. FAQ + CONSULTATION — TABLET
========================================================= */

@media (max-width: 1024px) {

    .doorway-consultation-container {
        width:
            calc(100% - 42px);

        padding:
            85px 0
            78px;

        grid-template-columns:
            1fr;

        gap: 65px;
    }


    .consultation-faq {
        max-width: 760px;
    }


    .consultation-title {
        max-width: 720px;

        font-size:
            clamp(
                48px,
                7.2vw,
                68px
            );
    }


    .consultation-form-wrap {
        max-width: 760px;
    }

}


/* =========================================================
   56. FAQ + CONSULTATION — MOBILE
========================================================= */

@media (max-width: 767px) {

    .doorway-consultation::before {
        background-size:
            52px 52px;
    }


    .doorway-consultation-container {
        width:
            calc(
                100% -
                (var(--mobile-padding) * 2)
            );

        padding:
            68px 0
            60px;

        display: flex;
        flex-direction: column;

        gap: 48px;
    }


    /* Intro */

    .consultation-kicker {
        margin-bottom: 18px;

        font-size: 15px;
    }


    .consultation-kicker i {
        width: 22px;
    }


    .consultation-title {
        max-width: 100%;

        font-size:
            clamp(
                39px,
                11.5vw,
                54px
            );

        line-height: 1;
    }


    .consultation-description {
        max-width: 100%;

        margin-top: 21px;

        font-size: 13px;

        line-height: 1.7;
    }


    /* FAQ */

    .doorway-faq-list {
        margin-top: 38px;
    }


    .doorway-faq-question {
        min-height: 72px;

        grid-template-columns:
            25px
            minmax(0,1fr)
            36px;

        gap: 9px;
    }


    .faq-number {
        font-size: 7px;
    }


    .faq-question-text {
        padding:
            15px 0;

        font-size: 16px;
    }


    .faq-icon {
        width: 34px;
        height: 34px;
    }


    .doorway-faq-answer-inner p {
        margin:
            0 42px
            0 34px;

        padding-bottom:
            22px;

        font-size: 16px;

        line-height: 1.7;
    }


    .faq-more {
        align-items: flex-start;

        flex-direction: column;

        gap: 11px;
    }


    /* Form */

    .consultation-form-card {
        padding:
            34px 20px
            26px;
    }


    .consultation-form-header h3 {
        font-size:
            clamp(
                32px,
                9vw,
                42px
            );
    }


    .consultation-form-header p {
        font-size: 11px;
    }


    .consultation-form {
        margin-top: 31px;
    }


    .consultation-form-row {
        grid-template-columns:
            1fr;

        gap: 0;
    }


    .consultation-field {
        margin-bottom: 19px;
    }


    .consultation-field input,
    .consultation-field select,
    .consultation-field textarea {
        font-size: 16px;
    }


    /*
       16px prevents unwanted auto-zoom
       on many mobile browsers.
    */


    .consultation-submit {
        min-height: 54px;
    }


    .consultation-card-mark {
        top: -20px;

        font-size: 170px;
    }

}


/* =========================================================
   57. FAQ + CONSULTATION — SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .consultation-title {
        font-size:
            clamp(
                37px,
                11vw,
                46px
            );
    }


    .faq-question-text {
        font-size: 12px;
    }


    .consultation-form-card {
        padding:
            30px 17px
            24px;
    }

}
/* =========================================================
   58. PREMIUM FOOTER
========================================================= */

.doorway-footer {
    position: relative;

    width: 100%;

    overflow: hidden;

    background:
    var(--dark-section-bg);

    color: var(--white);
}


/* Grid */

.doorway-footer::before {
    content: "";

    position: absolute;
    inset: 0;

    pointer-events: none;

    background-image:
        linear-gradient(
            rgba(255,255,255,.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255,255,255,.018) 1px,
            transparent 1px
        );

    background-size:
        92px 92px;
}


/* =========================================================
   CONTAINER
========================================================= */

.doorway-footer-container {
    position: relative;

    z-index: 2;

    width:
        min(
            calc(100% - 64px),
            var(--container)
        );

    margin: 0 auto;
}


/* =========================================================
   OPENING
========================================================= */

.footer-opening {
    padding:
        95px 0
        78px;

    border-bottom:
        1px solid
        rgba(255,255,255,.10);
}


/* Label */

.footer-opening-label {
    display: flex;
    align-items: center;

    gap: 11px;

    margin-bottom: 31px;

    color:
        rgba(255,255,255,.37);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .13em;

    text-transform: uppercase;
}


.footer-opening-label > span:first-child {
    color:
        var(--brand-blue-light);
}


.footer-opening-label i {
    width: 30px;
    height: 1px;

    background:
        rgba(85,88,189,.60);
}


/* =========================================================
   OPENING MAIN
========================================================= */

.footer-opening-main {
    display: grid;

    grid-template-columns:
        minmax(0,1fr)
        minmax(300px,410px);

    align-items: end;

    gap: 70px;
}


/* Heading */

.footer-opening-main h2 {
    max-width: 900px;

    margin: 0;

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            56px,
            6.7vw,
            105px
        );

    font-weight: 500;

    line-height: .91;

    letter-spacing:
        -.065em;
}


.footer-opening-main h2 span {
    display: block;

    color:
        var(--brand-blue-light);
}


/* Action */

.footer-opening-action {
    padding-bottom: 8px;
}


.footer-opening-action p {
    max-width: 370px;

    margin:
        0 0
        27px;

    color:
        rgba(255,255,255,.43);

    font-size: 16px;

    line-height: 1.7;
}


/* =========================================================
   MAIN CTA
========================================================= */

.footer-main-cta {
    min-height: 57px;

    padding:
        0 13px
        0 20px;

    display: inline-flex;
    align-items: center;

    justify-content: space-between;

    gap: 35px;

    background:
        var(--brand-blue);

    color:
        var(--white);

    font-family:
        var(--font-heading);

    font-size: 11px;
    font-weight: 600;

    transition:
        background .25s ease,
        transform .25s ease,
        box-shadow .25s ease;
}


.footer-main-cta-icon {
    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.24);
}


.footer-main-cta-icon svg {
    width: 15px;
}


.footer-main-cta:hover {
    background:
        var(--brand-blue-light);

    transform:
        translateY(-2px);

    box-shadow:
        0 14px 35px
        rgba(63,65,152,.22);
}


/* =========================================================
   MAIN FOOTER GRID
========================================================= */

.footer-main {
    padding:
        68px 0
        75px;

    display: grid;

    grid-template-columns:
        minmax(250px,1.4fr)
        .7fr
        1fr
        minmax(240px,.9fr);

    gap:
        clamp(
            40px,
            6vw,
            90px
        );
}


/* =========================================================
   BRAND
========================================================= */

.footer-logo {
    display: inline-block;
}


.footer-logo img {
    width: 160px;

    filter:
        brightness(0)
        invert(1);

    opacity: .95;
}


.footer-brand > p {
    max-width: 330px;

    margin:
        28px 0 0;

    color:
        rgba(255,255,255,.38);

    font-size: 16px;

    line-height: 1.75;
}


/* =========================================================
   BROCHURE BUTTON
========================================================= */

.footer-brochure {
    width: fit-content;

    margin-top: 32px;

    padding:
        13px 16px;

    display: inline-flex;
    align-items: center;

    gap: 13px;

    border:
        1px solid
        rgba(255,255,255,.11);

    background:
        rgba(255,255,255,.025);

    transition:
        background .25s ease,
        border-color .25s ease;
}


.footer-brochure-icon {
    width: 35px;
    height: 35px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        rgba(63,65,152,.16);

    color:
        var(--brand-blue-light);
}


.footer-brochure-icon svg {
    width: 16px;
}


.footer-brochure small {
    display: block;

    margin-bottom: 3px;

    color:
        rgba(255,255,255,.30);

    font-size: 12px;

    letter-spacing: .10em;

    text-transform: uppercase;
}


.footer-brochure strong {
    color:
        rgba(255,255,255,.83);

    font-family:
        var(--font-heading);

    font-size: 10px;
    font-weight: 600;
}


.footer-brochure:hover {
    background:
        rgba(255,255,255,.055);

    border-color:
        rgba(85,88,189,.45);
}


/* =========================================================
   COLUMNS
========================================================= */

.footer-column-title {
    display: block;

    margin-bottom: 24px;

    color:
        rgba(255,255,255,.30);

    font-size: 16px;
    font-weight: 700;

    letter-spacing: .13em;

    text-transform: uppercase;
}


/* =========================================================
   FOOTER LINKS
========================================================= */

.footer-links {
    display: flex;
    flex-direction: column;

    align-items: flex-start;

    gap: 0;
}


.footer-links a {
    width: 100%;

    min-height: 38px;

    display: flex;
    align-items: center;

    justify-content: space-between;

    gap: 15px;

    color:
        rgba(255,255,255,.62);

    font-family:
        var(--font-heading);

    font-size: 16px;

    transition:
        color .25s ease,
        padding-left .25s ease;
}


.footer-links a i {
    color:
        var(--brand-blue-light);

    font-style: normal;

    font-size: 11px;

    opacity: 0;

    transform:
        translate(-4px,4px);

    transition:
        opacity .25s ease,
        transform .25s ease;
}


.footer-links a:hover {
    padding-left: 5px;

    color:
        var(--white);
}


.footer-links a:hover i {
    opacity: 1;

    transform:
        translate(0,0);
}


/* =========================================================
   CONTACT
========================================================= */

.footer-contact-list {
    display: flex;
    flex-direction: column;

    gap: 23px;
}


.footer-contact-list a,
.footer-contact-list div {
    display: block;
}


.footer-contact-list small {
    display: block;

    margin-bottom: 5px;

    color:
        rgba(255,255,255,.27);

    font-size: 11.5px;
    font-weight: 700;

    letter-spacing: .10em;

    text-transform: uppercase;
}


.footer-contact-list strong {
    max-width: 270px;

    display: block;

    color:
        rgba(255,255,255,.72);

    font-family:
        var(--font-heading);

    font-size: 16px;
    font-weight: 500;

    line-height: 1.55;

    transition:
        color .25s ease;
}


.footer-contact-list a:hover strong {
    color:
        var(--white);
}


/* =========================================================
   SOCIAL
========================================================= */

.footer-social {
    margin-top: 29px;

    display: flex;

    gap: 7px;
}


.footer-social a {
    width: 39px;
    height: 39px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.10);

    color:
        rgba(255,255,255,.55);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: .05em;

    transition:
        background .25s ease,
        border-color .25s ease,
        color .25s ease,
        transform .25s ease;
}


.footer-social a:hover {
    background:
        var(--brand-blue);

    border-color:
        var(--brand-blue);

    color:
        var(--white);

    transform:
        translateY(-3px);
}


/* =========================================================
   LARGE DOORWAY WORDMARK
========================================================= */

.footer-wordmark {
    position: relative;

    width: 100%;

    overflow: hidden;

    border-top:
        1px solid
        rgba(255,255,255,.08);

    border-bottom:
        1px solid
        rgba(255,255,255,.08);
}


.footer-wordmark span {
    display: block;

    margin:
        -2.3vw 0
        -2.4vw;

    color:
        rgba(255,255,255,.035);

    font-family:
        var(--font-heading);

    font-size:
        clamp(
            120px,
            18vw,
            285px
        );

    font-weight: 800;

    line-height: 1;

    letter-spacing:
        -.075em;

    text-align: center;

    white-space: nowrap;

    user-select: none;
}


/* =========================================================
   FOOTER BOTTOM
========================================================= */

.footer-bottom {
    min-height: 86px;

    display: grid;

    grid-template-columns:
        1fr
        auto
        1fr;

    align-items: center;

    gap: 30px;
}


.footer-bottom p {
    margin: 0;

    color:
        rgba(255,255,255,.27);

    font-size: 12px;

    letter-spacing: .07em;

    text-transform: uppercase;
}


.footer-bottom-links {
    display: flex;
    align-items: center;

    gap: 25px;
}


.footer-bottom-links a {
    color:
        rgba(255,255,255,.32);

    font-size: 11px;

    letter-spacing: .06em;

    text-transform: uppercase;

    transition:
        color .2s ease;
}


.footer-bottom-links a:hover {
    color:
        var(--white);
}


/* =========================================================
   BACK TO TOP
========================================================= */

.footer-back-top {
    justify-self: end;

    padding: 0;

    display: inline-flex;
    align-items: center;

    gap: 12px;

    border: 0;

    background:
        transparent;

    color:
        rgba(255,255,255,.45);

    font-size: 7px;
    font-weight: 700;

    letter-spacing: .08em;

    text-transform: uppercase;

    cursor: pointer;

    transition:
        color .25s ease;
}


.footer-back-top-arrow {
    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border:
        1px solid
        rgba(255,255,255,.10);

    color:
        var(--brand-blue-light);

    transition:
        background .25s ease,
        color .25s ease,
        transform .25s ease;
}


.footer-back-top:hover {
    color:
        var(--white);
}


.footer-back-top:hover
.footer-back-top-arrow {
    background:
        var(--brand-blue);

    color:
        var(--white);

    transform:
        translateY(-3px);
}


/* =========================================================
   59. FOOTER — TABLET
========================================================= */

@media (max-width:1024px) {

    .doorway-footer-container {
        width:
            calc(100% - 42px);
    }


    .footer-opening {
        padding:
            82px 0
            65px;
    }


    .footer-opening-main {
        grid-template-columns:
            1fr;

        gap: 34px;
    }


    .footer-opening-main h2 {
        max-width: 850px;

        font-size:
            clamp(
                60px,
                9vw,
                88px
            );
    }


    .footer-opening-action {
        max-width: 460px;
    }


    .footer-main {
        grid-template-columns:
            1.3fr
            1fr
            1fr;

        gap:
            55px 35px;
    }


    .footer-brand {
        grid-column:
            span 3;
    }


    .footer-brand > p {
        max-width: 500px;
    }

}


/* =========================================================
   60. FOOTER — MOBILE
========================================================= */

@media (max-width:767px) {

    .doorway-footer::before {
        background-size:
            52px 52px;
    }


    .doorway-footer-container {
        width:
            calc(
                100% -
                (var(--mobile-padding) * 2)
            );
    }


    /* Opening */

    .footer-opening {
        padding:
            67px 0
            55px;
    }


    .footer-opening-label {
        align-items: flex-start;

        flex-wrap: wrap;

        margin-bottom: 25px;

        font-size: 10px;
    }


    .footer-opening-main {
        gap: 31px;
    }


    .footer-opening-main h2 {
        max-width: 100%;

        font-size:
            clamp(
                47px,
                14vw,
                67px
            );

        line-height: .93;
    }


    .footer-opening-action p {
        max-width: 100%;

        font-size: 14px;
    }


    .footer-main-cta {
        width: 100%;

        min-height: 55px;
    }


    /* Main */

    .footer-main {
        padding:
            53px 0
            58px;

        display: grid;

        grid-template-columns:
            1fr 1fr;

        gap:
            48px 25px;
    }


    .footer-brand {
        grid-column:
            span 2;

        padding-bottom: 6px;
    }


    .footer-logo img {
        width: 145px;
    }


    .footer-brand > p {
        max-width: 420px;

        margin-top: 22px;

        font-size: 14px;
    }


    .footer-brochure {
        margin-top: 25px;
    }


    .footer-contact {
        grid-column:
            span 2;

        padding-top: 5px;
    }


    .footer-contact-list {
        display: grid;

        grid-template-columns:
            repeat(2,1fr);

        gap: 22px;
    }


    /* Wordmark */

    .footer-wordmark span {
        margin:
            -1vw 0
            -1.5vw;

        font-size:
            26vw;
    }


    /* Bottom */

    .footer-bottom {
        padding:
            25px 0
            28px;

        display: flex;

        flex-wrap: wrap;

        align-items: center;

        justify-content: space-between;

        gap:
            20px 25px;
    }


    .footer-bottom p {
        width: 100%;
    }


    .footer-back-top {
        margin-left: auto;
    }

}


/* =========================================================
   61. FOOTER — SMALL MOBILE
========================================================= */

@media (max-width:390px) {

    .footer-opening-main h2 {
        font-size:
            clamp(
                43px,
                13.5vw,
                53px
            );
    }


    .footer-main {
        grid-template-columns:
            1fr;

        gap: 42px;
    }


    .footer-brand,
    .footer-contact {
        grid-column:
            auto;
    }


    .footer-contact-list {
        grid-template-columns:
            1fr;
    }


    .footer-wordmark span {
        font-size:
            25vw;
    }


    .footer-bottom-links {
        gap: 17px;
    }

}
/* =========================================================
   SELECTED PROJECTS — MOVING LOGO STRIP
========================================================= */

.project-logo-showcase {
    position: relative;

    margin-top: 38px;
    padding-top: 22px;

    border-top:
        1px solid rgba(36, 33, 36, 0.10);

    border-bottom:
        1px solid rgba(36, 33, 36, 0.10);
}


/* =========================================================
   STRIP HEADER
========================================================= */

.project-logo-showcase-head {
    margin-bottom: 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 24px;
}


.project-logo-showcase-head > span:first-child {
    color:
        var(--charcoal);

    font-family:
        var(--font-heading);

    font-size: 11.5px;
    font-weight: 700;

    letter-spacing: .09em;

    text-transform:
        uppercase;
}


.project-logo-showcase-note {
    color:
        var(--brand-blue);

    font-size: 11.5px;
    font-weight: 700;

    letter-spacing: .10em;

    text-transform:
        uppercase;
}


/* =========================================================
   MARQUEE
========================================================= */

.project-logo-marquee {
    position: relative;

    width: 100%;

    padding:
        8px 0 24px;

    overflow: hidden;
}


/* Left fade */

.project-logo-marquee::before {
    content: "";

    position: absolute;

    top: 0;
    bottom: 0;
    left: 0;

    z-index: 5;

    width: 55px;

    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            #f7f7f9 0%,
            rgba(247,247,249,0) 100%
        );
}


/* Right fade */

.project-logo-marquee::after {
    content: "";

    position: absolute;

    top: 0;
    right: 0;
    bottom: 0;

    z-index: 5;

    width: 55px;

    pointer-events: none;

    background:
        linear-gradient(
            270deg,
            #f7f7f9 0%,
            rgba(247,247,249,0) 100%
        );
}


/* =========================================================
   MOVING TRACK
========================================================= */

.project-logo-track {
    width:
        max-content;

    display: flex;
    align-items: center;

    animation:
        doorwayLogoScroll
        30s
        linear
        infinite;
}


/* =========================================================
   LOGO CARD
========================================================= */

.project-logo-item {
    position: relative;

    width: 220px;
    height: 108px;

    margin-right: 12px;

    padding:
        9px 12px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;

    background:
        #ffffff;

    border:
        1px solid
        rgba(63, 65, 152, .14);

    transition:
        border-color .3s ease,
        box-shadow .3s ease;
}


.project-logo-item::before {
    content: none;
}


/* =========================================================
   DEFAULT LOGO SIZE
========================================================= */

.project-logo-item img {
    --logo-scale: 1;

    position: relative;
    z-index: 2;

    display: block;

    width: auto;
    height: auto;

    max-width: 90%;
    max-height: 72px;

    object-fit: contain;
    object-position: center;

    margin: auto;

    opacity: 1;

    filter: none !important;
    mix-blend-mode: normal !important;

    transform:
        scale(var(--logo-scale));

    transform-origin:
        center center;

    transition:
        transform .3s ease;
}
/* =========================================================
   LOGO VISUAL SIZE CORRECTIONS
   Applies to EVERY repeated marquee copy
========================================================= */

/* LEXUS */

.project-logo-item img[src$="lexus.jpg"] {
    --logo-scale: 1.32;

    max-width: 96%;
    max-height: 84px;
}


/* POOJA PLAZZIO */

.project-logo-item img[src$="pooja-plazzio.jpg"] {
    --logo-scale: 1.60;

    max-width: 98%;
    max-height: 88px;
}


/* =========================================================
   DESKTOP HOVER
========================================================= */

@media (hover: hover) {

    .project-logo-item:hover {
        border-color:
            rgba(63, 65, 152, .28);

        box-shadow:
            0 10px 24px
            rgba(38, 40, 100, .08);
    }


    /*
       IMPORTANT:
       Hover now respects each logo's custom base scale.
       Lexus/Pooja will NOT shrink after interaction.
    */

   .project-logo-item:hover img {
    transform:
        scale(
            calc(
                var(--logo-scale) * 1.035
            )
        );
}


    .project-logo-marquee:hover
    .project-logo-track {
        animation-play-state:
            paused;
    }

}


/* =========================================================
   INFINITE MOVEMENT
========================================================= */

@keyframes doorwayLogoScroll {

    from {
        transform:
            translateX(0);
    }

    to {
        transform:
            translateX(-50%);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .project-logo-item {
        width: 195px;
        height: 96px;

        margin-right: 10px;

        padding:
            8px 11px;
    }


    .project-logo-item img {
        max-width: 89%;
        max-height: 62px;
    }

    .project-logo-track {
        animation-duration:
            27s;
    }
.project-logo-item img[src$="lexus.jpg"] {
    --logo-scale: 1.28;

    max-height: 72px;
}


.project-logo-item img[src$="pooja-plazzio.jpg"] {
    --logo-scale: 1.50;

    max-height: 75px;
}
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .project-logo-marquee::before,
    .project-logo-marquee::after {
        width: 28px;
    }


    .project-logo-item {
        width: 160px;
        height: 82px;

        margin-right: 8px;

        padding:
            7px 9px;
    }


    .project-logo-item img {
        max-width: 88%;
        max-height: 50px;
    }


    .project-logo-track {
        animation-duration:
            23s;
    }
.project-logo-item img[src$="lexus.jpg"] {
    --logo-scale: 1.22;

    max-height: 57px;
}


.project-logo-item img[src$="pooja-plazzio.jpg"] {
    --logo-scale: 1.42;

    max-height: 59px;
}
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .project-logo-item {
        width: 138px;
        height: 72px;

        padding:
            6px 8px;
    }


    .project-logo-item img {
        max-width: 87%;
        max-height: 42px;
    }

}
/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    .project-logo-track {
        animation: none;
    }

}
/* =========================================================
   HERO TEXT READABILITY
========================================================= */

.product-hero-title {
    text-shadow:
        0 3px 18px rgba(0, 0, 0, 0.32);
}

.product-hero-description {
    color: rgba(255, 255, 255, 0.82);

    text-shadow:
        0 2px 10px rgba(0, 0, 0, 0.45);
}

.product-hero-eyebrow {
    color: rgba(255, 255, 255, 0.70);

    text-shadow:
        0 1px 7px rgba(0, 0, 0, 0.45);
}

.product-hero-points strong {
    text-shadow:
        0 2px 8px rgba(0, 0, 0, 0.45);
}
/* =========================================================
   HERO BACKGROUND — MOBILE
========================================================= */

.hero-bg-slide {
    object-position: center center;
}


   @media (max-width: 767px) {

    .hero-bg-overlay {
        background:

            linear-gradient(
                180deg,
                rgba(5, 6, 9, 0.24) 0%,
                rgba(5, 6, 9, 0.20) 35%,
                rgba(5, 6, 9, 0.38) 70%,
                rgba(5, 6, 9, 0.65) 100%
            );
    }

}

    .product-hero-grid {
        opacity: 0.035;
    }


    .product-hero-glow {
        opacity: 0.45;
    }


    /* Modern black glass house */
    .hero-bg-slide:nth-child(1) {
        object-position: 55% center;
    }


    /* White villa */
    .hero-bg-slide:nth-child(2) {
        object-position: 55% center;
    }


    /* Modern exterior */
    .hero-bg-slide:nth-child(3) {
        object-position: 58% center;
    }


    /* Interior glass */
    .hero-bg-slide:nth-child(4) {
        object-position: center center;
    }

.hero-bg-slide {
    object-position: center center;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-bg-slide:nth-child(1) {
    object-position: 55% center;
}

.hero-bg-slide:nth-child(2) {
    object-position: 55% center;
}

.hero-bg-slide:nth-child(3) {
    object-position: 58% center;
}

.hero-bg-slide:nth-child(4) {
    object-position: center center;
}


/* =========================================================
   MOBILE HERO — FINAL POLISH
========================================================= */

@media (max-width: 767px) {

    /* -----------------------------------------
       HERO MAIN SPACING
    ----------------------------------------- */

    .product-hero-container {
        width: calc(100% - 34px);

        padding:
            102px 0
            48px;

        gap: 34px;
    }


    /* -----------------------------------------
       LEFT CONTENT
    ----------------------------------------- */

    .product-hero-content {
        width: 100%;
    }


    .product-hero-eyebrow {
        margin-bottom: 20px;

        font-size: 10.5px;

        letter-spacing: 0.12em;
    }


    /* -----------------------------------------
       HEADING
    ----------------------------------------- */

    .product-hero-title {
        max-width: 100%;

        font-size:
            clamp(
                46px,
                12.5vw,
                58px
            );

        line-height: 0.98;

        letter-spacing: -0.055em;
    }


    .product-hero-title span {
        display: block;
    }


    /* -----------------------------------------
       DESCRIPTION
    ----------------------------------------- */

    .product-hero-description {
        max-width: 100%;

        margin-top: 23px;

        font-size: 14px;

        line-height: 1.65;

        color:
            rgba(255, 255, 255, 0.84);
    }


    /* -----------------------------------------
       CTA BUTTONS
    ----------------------------------------- */

    .product-hero-actions {
        margin-top: 27px;

        display: grid;

        grid-template-columns: 1fr;

        gap: 9px;
    }


    .hero-btn {
        width: 100%;

        min-height: 52px;

        padding:
            0 14px
            0 18px;

        justify-content: space-between;

        font-size: 12px;
    }


    .hero-btn-arrow {
        width: 28px;
        height: 28px;
    }


    /* -----------------------------------------
       PROOF POINTS
    ----------------------------------------- */

    .product-hero-points {
        margin-top: 27px;

        width: 100%;

        display: grid;

        grid-template-columns:
            repeat(3, 1fr);

        gap: 5px;
    }


    .product-hero-points div {
        gap: 3px;
    }


    .product-hero-points strong {
        font-size: 12px;
    }


    .product-hero-points span {
        font-size: 10px;

        letter-spacing: 0.07em;
    }


    .product-hero-points i {
        display: none;
    }


    /* -----------------------------------------
       PRODUCT SHOWCASE
    ----------------------------------------- */

    .hero-showcase {
        margin-top: 0;
    }


    .hero-showcase-header {
        margin-bottom: 10px;
    }


    .showcase-label {
        font-size: 11.5px;
    }


    .hero-showcase-header p {
        display: none;
    }


    .showcase-counter {
        font-size: 11.5px;
    }


    /* -----------------------------------------
       PRODUCT CARD
    ----------------------------------------- */

    .hero-product-stage {
        aspect-ratio: 1 / 1.05;

        min-height: 0;
    }


    .hero-product-model {
        top: 5%;
        right: 4%;
        bottom: 22%;
        left: 4%;
    }


    /* -----------------------------------------
       BACKGROUND IMAGE
    ----------------------------------------- */

  .hero-bg-overlay {
    background:
        linear-gradient(
            180deg,
            rgba(5, 6, 9, 0.14) 0%,
            rgba(5, 6, 9, 0.18) 28%,
            rgba(5, 6, 9, 0.28) 55%,
            rgba(5, 6, 9, 0.50) 100%
        );
}


    .product-hero-grid {
        opacity: 0.025;
    }

}
/* =========================================================
   FLOATING CALL + WHATSAPP
========================================================= */

.doorway-floating-contact {
    position: fixed;

    z-index: 900;

    right: 22px;
    bottom: 24px;

    display: flex;
    flex-direction: column;

    align-items: flex-end;

    gap: 10px;
}


/* =========================================================
   BUTTON
========================================================= */

.floating-contact-btn {
    height: 52px;

    padding:
        0 17px
        0 8px;

    display: inline-flex;
    align-items: center;

    gap: 10px;

    border-radius: 8px;

    color: #ffffff;

    font-family: var(--font-heading);

    font-size: 11px;
    font-weight: 600;

    box-shadow:
        0 10px 30px
        rgba(0, 0, 0, 0.20);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


/* =========================================================
   ICON
========================================================= */

.floating-contact-icon {
    width: 36px;
    height: 36px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}


.floating-contact-icon svg {
    width: 19px;
    height: 19px;
}


/* =========================================================
   CALL
========================================================= */

.floating-call {
    background:
        rgba(37, 38, 46, 0.96);

    border:
        1px solid
        rgba(255, 255, 255, 0.12);
}


.floating-call .floating-contact-icon {
    background:
        var(--brand-blue);

    border-radius: 5px;
}


/* =========================================================
   WHATSAPP
========================================================= */

.floating-whatsapp {
    background: #25D366;

    border:
        1px solid
        rgba(255, 255, 255, 0.16);
}


.floating-whatsapp .floating-contact-icon {
    background:
        rgba(255, 255, 255, 0.15);

    border-radius: 5px;
}


/* =========================================================
   HOVER
========================================================= */

@media (hover: hover) {

    .floating-contact-btn:hover {
        transform:
            translateY(-3px);

        box-shadow:
            0 15px 38px
            rgba(0, 0, 0, 0.28);
    }


    .floating-call:hover {
        background:
            var(--brand-blue);
    }


    .floating-whatsapp:hover {
        background:
            #20bd5a;
    }

}
/* =========================================================
   BRAND CARDS — FINAL CLEAN OVERRIDE
   IMPORTANT: KEEP THIS AFTER ALL OTHER BRAND CSS
========================================================= */


/* =========================================================
   BRAND GRID
========================================================= */

.solution-brand-grid {
    margin-top: 20px;

    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 10px;

    align-items: stretch;

    border: 0;
}


/* =========================================================
   BRAND CARD — SAME SIZE FOR ALL 4
========================================================= */

.solution-brand {
    position: relative;

    width: 100%;
    min-width: 0;

    height: 330px;
    min-height: 330px;

    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;

    overflow: hidden;
    isolation: isolate;

    background:
        rgba(8, 10, 16, .62);

    border:
        1px solid
        rgba(255,255,255,.10);

    transform: none;

    transition:
        border-color .3s ease,
        background .3s ease;
}


/* =========================================================
   REMOVE 01 / 02 / 03 / 04
========================================================= */

.solution-brand-number {
    display: none !important;
}


/* =========================================================
   REMOVE OLD FULL-CARD OVERLAYS / GLOW
========================================================= */

.solution-brand-overlay {
    display: none !important;
}


.solution-brand::after {
    display: none !important;
}


.solution-brand::before {
    display: none !important;
}


/* =========================================================
   SAME IMAGE AREA FOR ALL 4 BRAND CARDS
========================================================= */

.solution-brand-bg {
    position: relative !important;

    inset: auto !important;

    z-index: 1 !important;

    display: block;

    width: 100%;
    height: 220px;
    min-height: 220px;

    flex: 0 0 220px;

    margin:
        0 0 16px;

    overflow: hidden;

    background:
        #141722;
}


/* =========================================================
   BRAND IMAGE
========================================================= */

.solution-brand-bg img {
    display: block;

    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center center;

    opacity: .96;

    transform:
        scale(1.01);

    filter: none !important;

    transition:
        transform .55s
        cubic-bezier(.2,.8,.2,1),
        opacity .3s ease;
}


/* =========================================================
   BRAND CONTENT
========================================================= */

.solution-brand-content {
    position: relative;

    z-index: 3;

    width: 100%;

    margin: 0 !important;
}


/* Handles old + new HTML structure */

.solution-brand-name,
.solution-brand-content h3 {
    position: relative;

    z-index: 3;

    margin: 0 !important;

    color:
        #ffffff;

    font-family:
        var(--font-heading);

    font-size: 21px;
    font-weight: 600;

    line-height: 1.08;

    letter-spacing:
        -.03em;

    text-shadow: none;
}


.solution-brand-type,
.solution-brand-content p {
    position: relative;

    z-index: 3;

    margin:
        6px 0 0 !important;

    color:
        rgba(255,255,255,.58);

    font-size: 12px;
    font-weight: 650;

    line-height: 1.4;

    letter-spacing:
        .09em;

    text-transform:
        uppercase;

    text-shadow: none;
}


/* =========================================================
   BRAND ARROW
========================================================= */

.solution-brand-arrow {
    position: absolute !important;

    z-index: 5 !important;

    top: 28px !important;
    right: 28px !important;

    color:
        rgba(255,255,255,.90) !important;

    font-size: 15px;

    line-height: 1;

    text-shadow:
        0 2px 8px
        rgba(0,0,0,.40);

    transition:
        color .25s ease,
        transform .25s ease;
}


/* =========================================================
   DESKTOP HOVER
========================================================= */

@media (hover: hover) {

    .solution-brand:hover {
        transform: none !important;

        border-color:
            rgba(85,88,189,.40);

        background:
            rgba(10,12,20,.82);
    }


    .solution-brand:hover
    .solution-brand-bg img {
        opacity: 1;

        transform:
            scale(1.04);
    }


    .solution-brand:hover
    .solution-brand-arrow {
        color:
            #ffffff !important;

        transform:
            translate(2px,-2px);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .solution-brand-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));
    }


    .solution-brand {
        height: 310px;
        min-height: 310px;
    }


    .solution-brand-bg {
        height: 200px;
        min-height: 200px;

        flex-basis: 200px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .solution-brand-grid {
        grid-template-columns:
            repeat(2, minmax(0,1fr));

        gap: 8px;
    }


    .solution-brand {
        height: 215px;
        min-height: 215px;

        padding: 12px;
    }


    .solution-brand-bg {
        height: 138px;
        min-height: 138px;

        flex-basis: 138px;

        margin-bottom: 11px;
    }


    .solution-brand-arrow {
        top: 19px !important;
        right: 19px !important;

        font-size: 13px;
    }


    .solution-brand-name,
    .solution-brand-content h3 {
        font-size: 16px;
    }


    .solution-brand-type,
    .solution-brand-content p {
        margin-top: 4px !important;

        font-size: 10px;
    }

}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 390px) {

    .solution-brand-grid {
        grid-template-columns:
            1fr;
    }


    .solution-brand {
        height: 225px;
        min-height: 225px;
    }


    .solution-brand-bg {
        height: 150px;
        min-height: 150px;

        flex-basis: 150px;
    }


    .solution-brand-name,
    .solution-brand-content h3 {
        font-size: 18px;
    }

}
/* =========================================================
   PRODUCT SOLUTIONS — DESKTOP HORIZONTAL FIX
========================================================= */

@media (min-width: 1025px) {

    .solution-product-row {
        grid-template-columns:
            minmax(0, 1fr)
            42px;

        min-height: 105px;

        padding:
            0 18px;

        gap: 20px;
    }


    /* Remove unused number space */
    .solution-product-number {
        display: none !important;
    }


    /* Title + description on same line */
    .solution-product-content {
        display: flex !important;

        align-items: center;

        gap: 26px;

        width: 100%;
        min-width: 0;
    }


    /* Keep complete product name horizontal */
    .solution-product-content h3 {
        margin: 0;

        width: auto !important;
        max-width: none !important;

        flex: 0 0 auto;

        white-space: nowrap !important;

        font-size:
            clamp(21px, 1.55vw, 29px);

        line-height: 1.1;
    }


    /* Description remains beside heading */
    .solution-product-content p {
        margin: 0;

        max-width: 225px;

        flex: 0 1 auto;

        font-size: 13px;

        line-height: 1.4;

        white-space: normal;
    }


    .solution-product-arrow {
        justify-self: end;

        align-self: center;
    }

}

