/* =========================================================
   SCIENTIFIC WORLD FM — PHASE 1
   HERO + TRUSTED CLIENTS
   ========================================================= */

/* =========================================================
   PHASE 1 — DESIGN TOKENS / RESET
   ========================================================= */

:root {
    --deep-teal: #0b363d;
    --deep-teal-2: #082d34;
    --teal: #0e4b52;
    --mint: #00f0c3;
    --mint-dark: #00d9b0;
    --white: #f6f7f3;
    --muted-white: rgba(246, 247, 243, 0.84);
    --black: #071f24;

    --sans: "DM Sans", Arial, sans-serif;
    --serif: "Playfair Display", Georgia, serif;
    --mono: "DM Mono", monospace;

    --nav-height: 59px;
    --nav-max-width: 1332px;
    --content-max-width: 850px;

    --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-width: 320px;
    background: var(--white);
    color: var(--white);
    font-family: var(--sans);
    overflow-x: hidden;
}

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

button {
    font: inherit;
}


/* =========================================================
   PHASE 1 — HERO
   ========================================================= */

.hero {
    position: relative;
    min-height: 840px;
    height: min(860px, 100vh);
    overflow: hidden;

    /* ---------------------------------------------------------
       BACKGROUND IMAGE
       
       --------------------------------------------------------- */
    background:
        url("images/view-luxurious-hotel-interior-space.webp") center center / cover no-repeat,
        linear-gradient(135deg, #54777b 0%, #183e45 100%);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg,
            rgba(7, 35, 40, 0.43) 0%,
            rgba(7, 35, 40, 0.55) 45%,
            rgba(7, 35, 40, 0.78) 100%);
}


/* =========================================================
   PHASE 1 — NAVIGATION
   ========================================================= */

.site-header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 23px 5.7% 0;

    /*
     * Keeps the header itself from blocking the page,
     * while the navbar remains fully interactive.
     */
    pointer-events: none;
}

.navbar {
    width: 100%;
    max-width: var(--nav-max-width);

    height: var(--nav-height);

    margin: 0 auto;

    display: flex;
    align-items: center;

    padding: 0 12px 0 16px;

    border-radius: 40px;

    background: rgba(7, 53, 59, 0.78);

    box-shadow:
        0 12px 26px rgba(0, 0, 0, 0.18);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    pointer-events: auto;
}


/* =========================================================
   PHASE 1 — BRAND LOGO IMAGE
   ========================================================= */

.brand {
    display: inline-flex;

    align-items: center;

    flex-shrink: 0;

    text-decoration: none;

    line-height: 0;
}

.brand__logo {
    display: block;

    width: auto;
    height: 42px;

    max-width: 190px;

    object-fit: contain;
}
/* =========================================================
   PHASE 1 — MOBILE BRAND LOGO
   ========================================================= */

@media (max-width: 760px) {

    .brand__logo {
        height: 35px;

        max-width: 165px;
    }

}
@media (max-width: 390px) {

    .brand__logo {
        height: 32px;

        max-width: 150px;
    }

}
@media (min-width: 1600px) {

    .brand__logo {
        height: 46px;

        max-width: 210px;
    }

}

/* =========================================================
   PHASE 1 — NAVIGATION LINKS
   ========================================================= */

.nav-links {
    display: flex;

    align-items: center;

    justify-content: center;

    gap: 35px;

    margin: 0 auto;
}

.nav-link {
    position: relative;

    color: rgba(246, 247, 243, 0.92);

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition: color 0.25s ease;
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    border-radius: 2px;

    background: var(--mint);

    transition: width 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--mint);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.chevron {
    margin-left: 3px;

    font-size: 15px;
}


/* =========================================================
   PHASE 1 — NAVIGATION CTA
   ========================================================= */

.nav-cta,
.primary-button {
    display: inline-flex;

    align-items: center;

    gap: 11px;

    color: var(--black);

    background: var(--mint);

    border-radius: 30px;

    font-size: 14px;

    font-weight: 600;

    text-decoration: none;

    transition:
        transform 0.25s var(--ease),
        background 0.25s ease,
        box-shadow 0.25s ease;
}

.nav-cta {
    padding: 5px 6px 5px 16px;

    flex-shrink: 0;
}

.nav-cta:hover,
.primary-button:hover {
    transform: translateY(-2px);

    background: #2ff7d0;

    box-shadow:
        0 10px 24px rgba(0, 240, 195, 0.2);
}

.arrow-circle {
    width: 31px;
    height: 31px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.07);

    font-size: 21px;

    line-height: 1;
}


/* =========================================================
   PHASE 1 — MOBILE MENU BUTTON
   ========================================================= */

.menu-toggle {
    display: none;

    border: 0;

    background: transparent;

    cursor: pointer;

    padding: 8px;
}

.menu-toggle span {
    display: block;

    width: 22px;
    height: 2px;

    margin: 5px 0;

    background: var(--white);

    border-radius: 2px;

    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
}


/* =========================================================
   PHASE 1 — HAMBURGER → CLOSE ANIMATION
   ========================================================= */

.menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   PHASE 1 — SCROLL STATE
   Navbar remains fixed.
   This only changes its visual appearance.
   ========================================================= */

.navbar.is-scrolled {
    background: rgba(7, 53, 59, 0.86);

    box-shadow:
        0 14px 32px rgba(0, 0, 0, 0.24);
}


/* =========================================================
   PHASE 1 — TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .site-header {
        padding-left: 4%;
        padding-right: 4%;
    }

    .nav-links {
        gap: 22px;
    }

    .nav-link {
        font-size: 13px;
    }

    .brand__text {
        font-size: 18px;
    }

    .nav-cta {
        font-size: 12px;

        padding-left: 13px;
    }

}


/* =========================================================
   PHASE 1 — MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .site-header {
        padding: 15px 15px 0;
    }

    .navbar {
        position: relative;

        min-height: var(--nav-height);

        height: auto;

        padding: 7px 8px 7px 14px;

        border-radius: 25px;

        flex-wrap: wrap;
    }


    /* -----------------------------------------
       MOBILE BRAND
       ----------------------------------------- */

    .brand {
        gap: 7px;
    }

    .brand__mark {
        width: 29px;
        height: 29px;

        font-size: 20px;
    }

    .brand__text {
        font-size: 17px;
    }

    .brand__text span {
        font-size: 10px;
    }


    /* -----------------------------------------
       HIDE DESKTOP CTA
       ----------------------------------------- */

    .nav-cta {
        display: none;
    }


    /* -----------------------------------------
       SHOW HAMBURGER
       ----------------------------------------- */

    .menu-toggle {
        display: flex;

        align-items: center;
        justify-content: center;

        flex-direction: column;

        width: 42px;
        height: 42px;

        margin-left: auto;
    }


    /* -----------------------------------------
       MOBILE NAVIGATION DROPDOWN
       ----------------------------------------- */

    .nav-links {
        position: absolute;

        top: calc(100% + 9px);

        left: 0;
        right: 0;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 3px;

        margin: 0;

        padding: 8px;

        border-radius: 20px;

        background: rgba(7, 53, 59, 0.98);

        box-shadow:
            0 18px 40px rgba(0, 0, 0, 0.25);

        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);

        opacity: 0;

        visibility: hidden;

        transform: translateY(-8px);

        pointer-events: none;

        transition:
            opacity 0.25s ease,
            visibility 0.25s ease,
            transform 0.25s ease;
    }


    /* -----------------------------------------
       OPEN MOBILE NAVIGATION
       ----------------------------------------- */

    .nav-links.is-open {
        opacity: 1;

        visibility: visible;

        transform: translateY(0);

        pointer-events: auto;
    }


    /* -----------------------------------------
       MOBILE NAV LINKS
       ----------------------------------------- */

    .nav-link {
        display: flex;

        align-items: center;

        min-height: 48px;

        padding: 0 15px;

        border-radius: 12px;

        font-size: 14px;
    }

    .nav-link:hover,
    .nav-link.active {
        color: var(--mint);

        background: rgba(0, 240, 195, 0.08);
    }

    .nav-link::after {
        display: none;
    }

    .chevron {
        margin-left: 5px;
    }

}


/* =========================================================
   PHASE 1 — SMALL PHONES
   ========================================================= */

@media (max-width: 390px) {

    .site-header {
        padding-left: 12px;
        padding-right: 12px;
    }

    .brand__text {
        font-size: 16px;
    }

    .brand__text span {
        font-size: 9px;
    }

    .menu-toggle {
        width: 39px;
        height: 39px;
    }

}


/* =========================================================
   PHASE 1 — LARGE SCREENS
   ========================================================= */

@media (min-width: 1600px) {

    .site-header {
        padding-top: 28px;
    }

    .navbar {
        max-width: 1380px;
    }

    .nav-links {
        gap: 42px;
    }

    .nav-link {
        font-size: 15px;
    }

    .brand__text {
        font-size: 23px;
    }

}


/* =========================================================
   PHASE 1 — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .nav-link,
    .nav-link::after,
    .nav-cta,
    .menu-toggle span,
    .nav-links {
        transition: none;
    }

}

/* =========================================================
   PHASE 1 — HERO CONTENT
   ========================================================= */

.hero__content {
    position: relative;
    z-index: 2;

    width: min(var(--content-max-width), 90%);
    margin: 0 auto;
    padding-top: 74px;

    text-align: center;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 36px;
    padding: 0 18px;
    margin-top: 30px;

    border: 1px solid var(--mint);
    border-radius: 8px;

    color: var(--mint);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.hero h1 {
    max-width: 830px;
    margin: 23px auto 0;

    color: var(--white);
    font-family: var(--serif);
    font-size: clamp(60px, 5.15vw, 78px);
    font-weight: 400;
    line-height: 0.99;
    letter-spacing: -3.8px;
}

.hero h1 em {
    font-style: normal;
    white-space: nowrap;
}

.hero__kicker {
    margin-top: 31px;

    color: var(--mint);
    font-family: var(--mono);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.hero__description {
    max-width: 610px;
    margin: 17px auto 0;

    color: var(--muted-white);
    font-size: 19px;
    line-height: 1.42;
    letter-spacing: -0.35px;
}


/* =========================================================
   PHASE 1 — HERO MEDIA CARD
   ========================================================= */

.hero-media {
    position: relative;
    width: min(750px, 100%);
    height: 160px;
    margin: 46px auto 0;

    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 13px;

    background:
        linear-gradient(145deg,
            rgba(235, 235, 235, 0.84),
            rgba(179, 179, 179, 0.82));

    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.17);
    overflow: hidden;
}

.hero-media__content {
    position: absolute;
    inset: 0;

    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-media__label {
    position: absolute;
    top: 17px;
    left: 20px;

    color: rgba(7, 53, 59, 0.55);
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 1px;
}

.hero-media__watermark {
    position: absolute;
    left: 50%;
    bottom: -28px;
    transform: translateX(-50%);

    color: rgba(7, 53, 59, 0.16);
    font-family: var(--serif);
    font-size: 80px;
    white-space: nowrap;
}

.play-button {
    position: relative;
    z-index: 2;

    width: 76px;
    height: 76px;
    border: 0;
    border-radius: 50%;

    display: grid;
    place-items: center;

    background: rgba(255, 255, 255, 0.94);
    color: var(--deep-teal);

    cursor: pointer;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);

    transition: transform 0.3s var(--ease);
}

.play-button:hover {
    transform: scale(1.07);
}

.play-button span {
    margin-left: 4px;
    font-size: 23px;
}

.pdf-button {
    position: absolute;
    z-index: 3;
    right: -7px;
    bottom: 31px;

    width: 37px;
    height: 37px;

    display: grid;
    place-items: center;

    border: 1px solid #e0003d;
    border-radius: 50%;

    background: white;
    color: #e0003d;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.pdf-icon {
    font-size: 22px;
    transform: rotate(45deg);
}




.trusted {
    position: relative;
    z-index: 5;

    min-height: 105px;
    background: var(--deep-teal);
}

.trusted__inner {
    width: min(1332px, 88%);
    min-height: 105px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

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

    flex: 0 0 235px;

    color: var(--mint);
    font-family: var(--serif);
    font-size: 22px;
    line-height: 1.12;
}

.client-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 42px;
    flex-wrap: wrap;
}

.client-logo {
    width: 120px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-sizing: border-box;
}

.client-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;

    /* Soft light-green tint */
    filter: brightness(0) saturate(100%) invert(48%) sepia(18%) saturate(700%) hue-rotate(105deg) brightness(145%) contrast(80%);
}


/* =========================================================
   PHASE 1 — TEMPORARY FUTURE SECTION SPACING
   ========================================================= */

.future-section {
    min-height: 20px;
}


/* =========================================================
   PHASE 1 — TABLET
   ========================================================= */

@media (max-width: 1050px) {
    .site-header {
        padding-inline: 3.5%;
    }

    .nav-links {
        gap: 22px;
    }

    .nav-link {
        font-size: 13px;
    }

    .hero__content {
        padding-top: 62px;
    }

    .hero__eyebrow {

        margin-top: 40px;

    }

    .hero h1 {
        font-size: clamp(54px, 6vw, 68px);
    }

    .trusted__inner {
        width: 92%;
        gap: 30px;
    }

    .trusted__intro {
        flex-basis: 190px;
        font-size: 22px;
    }

    .client-logos {
        gap: 18px;
    }
}


/* =========================================================
   PHASE 1 — MOBILE
   ========================================================= */

@media (max-width: 760px) {
    :root {
        --nav-height: 74px;
    }

    .hero {
        min-height: 753px;
        height: auto;

        /* Better mobile positioning for a city/building photo.
           Change "center top" if your own photo needs another crop. */
        background-position: center top;
    }

    .hero__overlay {
        background:
            linear-gradient(180deg,
                rgba(7, 35, 40, 0.47) 0%,
                rgba(7, 35, 40, 0.62) 50%,
                rgba(7, 35, 40, 0.84) 100%);
    }



    .site-header {
        padding: 15px 20px 0;
    }

    .navbar {
        height: 74px;
        padding: 0 21px;
        border-radius: 38px;
    }

    .brand__mark {
        width: 31px;
        height: 31px;
    }

    .brand__text {
        font-size: 22px;
    }

    .brand__text span {
        font-size: 10px;
    }

    .nav-links,
    .nav-cta {
        display: none;
    }

    .menu-toggle {
        display: block;
        margin-left: auto;
    }

    .nav-links.is-open {
        position: absolute;
        top: 82px;
        left: 20px;
        right: 20px;

        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;

        margin: 0;
        padding: 10px 0;

        border-radius: 18px;
        background: rgba(7, 53, 59, 0.98);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
    }

    .nav-links.is-open .nav-link {
        padding: 14px 20px;
        font-size: 15px;
    }

    .nav-links.is-open .nav-link::after {
        display: none;
    }

    .menu-toggle.is-open span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.is-open span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .hero__content {
        width: min(100% - 40px, 560px);
        padding-top: 64px;
    }

    .hero__eyebrow {
        max-width: 342px;
        min-height: 66px;
        padding: 8px 17px;
        margin-top: 40px;

        border-radius: 9px;

        font-size: 11px;
        line-height: 1.55;
    }



    .hero h1 {
        max-width: 520px;
        margin-top: 26px;

        font-size: clamp(43px, 11.8vw, 61px);
        line-height: 0.99;
        letter-spacing: -2.6px;
    }

    .hero__kicker {
        margin-top: 42px;
        font-size: 11px;
    }

    .hero__description {
        margin-top: 20px;
        max-width: 500px;

        font-size: 15.5px;
        line-height: 1.46;
    }

    .hero-media {
        height: 155px;
        margin-top: 60px;
        border-radius: 13px;
    }

    .hero-media__watermark {
        font-size: 67px;
    }

    .play-button {
        width: 70px;
        height: 70px;
    }

    .pdf-button {
        right: 10px;
        bottom: 42px;
    }

    /* The reference mobile view lets the client bar overlap/
       immediately follow the hero media area. */
    .hero__actions {
        display: none;
    }

    .trusted {
        min-height: 305px;
    }

    .trusted__inner {
        width: 100%;
        min-height: 305px;
        padding: 24px 20px 26px;

        display: block;
    }

    .trusted__intro {
        width: 100%;
        text-align: center;
        font-size: 30px;
        line-height: 1.12;
    }

    .client-logos {
        margin-top: 27px;

        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px 15px;
    }

    .client-logo {
        min-height: 68px;

        border: 1px solid rgba(0, 240, 195, 0.12);
        font-size: 24px;
    }

    .client-logo.telecel {
        font-size: 22px;
    }

    .client-logo.absa {
        font-size: 23px;
    }

    .client-logo.dbg {
        font-size: 23px;
    }

    .client-logo.ugmc {
        padding: 10px;
        font-size: 19px;
    }
}


/* =========================================================
   PHASE 1 — SMALL PHONES
   ========================================================= */

@media (max-width: 390px) {
    .site-header {
        padding-inline: 14px;
    }

    .navbar {
        padding-inline: 17px;
    }

    .brand__text {
        font-size: 19px;
    }

    .hero__content {
        width: calc(100% - 28px);
        padding-top: 52px;
    }

    .hero__eyebrow {

        margin-top: 40px;

    }

    .hero h1 {
        font-size: 42px;
        letter-spacing: -2.2px;
    }

    .hero__kicker {
        margin-top: 36px;
    }

    .hero__description {
        font-size: 14.5px;
    }

    .hero-media {
        margin-top: 48px;
    }

    .trusted__intro {
        font-size: 27px;
    }

    .client-logos {
        gap: 12px;
    }

    .client-logo {
        min-height: 64px;
    }
}


/* =========================================================
   PHASE 1 — LARGE SCREENS
   ========================================================= */

@media (min-width: 1600px) {
    .hero {
        min-height: 900px;
        height: 900px;
    }

    .site-header {
        padding-top: 24px;
    }

    .navbar {
        max-width: 1450px;
    }

    .hero__content {
        padding-top: 78px;
    }

    .hero__eyebrow {

        margin-top: 30px;

    }

    .hero h1 {
        font-size: 82px;
    }

    .hero__description {
        font-size: 18px;
    }

    .hero-media {
        width: 780px;
        height: 170px;
    }

    .trusted__inner {
        max-width: 1450px;
    }
}


/* =========================================================
   PHASE 1 — HERO IMPORTANT PHRASES
   ========================================================= */

.hero__tagline {
    display: block;

    margin: 30px;

    color: var(--mint);

    font-family: var(--sans);

    font-size: clamp(16px, 1.5vw, 21px);

    font-weight: 700;

    line-height: 1.35;

    letter-spacing: 0.2px;

    text-transform: none;

    /* POP + DEPTH */
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.45),
        0 5px 14px rgba(0, 0, 0, 0.30);

    /* Subtle glow */
    filter: drop-shadow(0 0 8px rgba(0, 240, 195, 0.22));

    box-shadow:
        0 2px 8px rgba(0, 240, 195, 0.45);

    position: relative;

    z-index: 2;
}




/* =========================================================
   HERO IMPORTANT PHRASES — MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .hero__tagline {
        margin-top: 15px;

        font-size: 16px;

        line-height: 1.4;
    }

}


/* =========================================================
   HERO IMPORTANT PHRASES — SMALL PHONES
   ========================================================= */

@media (max-width: 390px) {

    .hero__tagline {
        font-size: 15px;
    }

}


/* =========================================================
   HERO IMPORTANT PHRASES — LARGE SCREENS
   ========================================================= */

@media (min-width: 1600px) {

    .hero__tagline {
        font-size: 22px;
    }

}


/* =========================================================
   HERO — CTA
   ========================================================= */

.hero-cta {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 4px;

    padding: 7px 8px 7px 19px;

    color: var(--black);

    background: var(--mint);

    border-radius: 40px;

    font-family: var(--sans);

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.22),
        0 0 20px rgba(0, 240, 195, 0.15);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.hero-cta:hover {
    transform: translateY(-3px);

    background: #2ff7d0;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.28),
        0 0 25px rgba(0, 240, 195, 0.25);
}


/* =========================================================
   HERO — MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .hero__tagline--legacy {
        margin-top: 20px;
        margin-bottom: 18px;

        font-size: 26px;
    }

    .hero-cta {
        margin-top: 2px;

        font-size: 13px;
    }

}


/* =========================================================
   HERO — SMALL PHONES
   ========================================================= */

@media (max-width: 390px) {

    .hero__tagline--legacy {
        font-size: 23px;
    }

}


/* =========================================================
   PHASE 1 — REDUCED MOTION ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
    }
}


/* =========================================================
   PHASE 2 — ABOUT SECTION
   SCIENTIFIC WORLD FM
   ========================================================= */


/* =========================================================
   PHASE 2 — SECTION FOUNDATION
   ========================================================= */

.about-section {
    width: 100%;
    padding: 100px 0;

    background: var(--white);
    color: var(--white);

    overflow: hidden;
}

.about-container {
    width: min(1332px, 88%);
    margin: 0 auto;

    padding: 78px 72px 0;

    background:
        linear-gradient(135deg,
            var(--deep-teal) 0%,
            var(--deep-teal-2) 100%);

    border-radius: 20px;

    overflow: hidden;
}


/* =========================================================
   PHASE 2 — MAIN ABOUT AREA
   ========================================================= */

.about-main {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr) minmax(390px, 0.85fr);

    align-items: center;

    gap: 75px;
}


/* =========================================================
   PHASE 2 — ABOUT COPY
   ========================================================= */

.about-copy {
    max-width: 610px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;

    min-height: 32px;
    padding: 0 14px;

    border: 1px solid var(--mint);
    border-radius: 6px;

    color: var(--mint);

    font-family: var(--mono);
    font-size: 10px;
    font-weight: 500;

    letter-spacing: 0.3px;
}


/* =========================================================
   PHASE 2 — HEADING
   ========================================================= */

.about-copy h2 {
    max-width: 620px;

    margin-top: 25px;

    color: var(--white);

    font-family: var(--serif);
    font-size: clamp(52px, 5vw, 72px);
    font-weight: 400;

    line-height: 0.98;
    letter-spacing: -3px;
}

.about-copy h2 em {
    color: var(--mint);
    font-style: normal;
}


/* =========================================================
   PHASE 2 — DESCRIPTION
   ========================================================= */

.about-description {
    max-width: 575px;

    margin-top: 28px;

    color: rgba(246, 247, 243, 0.78);

    font-family: var(--sans);
    font-size: 15.5px;
    font-weight: 400;

    line-height: 1.65;
    letter-spacing: -0.15px;
}

.about-description--secondary {
    margin-top: 14px;
}


/* =========================================================
   PHASE 2 — ABOUT BUTTON
   ========================================================= */

.about-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-top: 31px;
    padding: 5px 6px 5px 16px;

    border: 1px solid rgba(0, 240, 195, 0.45);
    border-radius: 30px;

    color: var(--mint);

    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;

    transition:
        transform 0.25s var(--ease),
        background 0.25s ease,
        border-color 0.25s ease;
}

.about-button:hover {
    transform: translateY(-2px);

    background: rgba(0, 240, 195, 0.08);
    border-color: var(--mint);
}

.about-button__arrow {
    width: 30px;
    height: 30px;

    display: grid;
    place-items: center;

    border-radius: 50%;

    background: var(--mint);
    color: var(--black);

    font-size: 19px;
    line-height: 1;
}


/* =========================================================
   PHASE 2 — RIGHT-SIDE LOGO VISUAL
========================================================= */

.about-visual {
    position: relative;

    width: 100%;
    max-width: 500px;

    aspect-ratio: 1 / 0.82;

    margin-left: auto;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}

.about-visual__logo {
    width: 65%;
    max-width: 300px;
    height: auto;

    object-fit: contain;
    display: block;
}


/* =========================================================
   PHASE 2 — CAPABILITY CARDS
   ========================================================= */

.about-capabilities {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    margin-top: 78px;

    border-top: 1px solid rgba(246, 247, 243, 0.14);
    border-bottom: 1px solid rgba(246, 247, 243, 0.14);
}

.capability-card {
    min-height: 240px;

    padding: 28px 28px 30px;

    border-right: 1px dashed rgba(246, 247, 243, 0.16);

    opacity: 1;
    transform: none;

    transition:
        transform 0.45s var(--ease),
        background 0.3s ease;
}

.capability-card:first-child {
    padding-left: 0;
}

.capability-card:last-child {
    padding-right: 0;
    border-right: 0;
}

.capability-card:hover {
    transform: translateY(-4px);
}


/* =========================================================
   PHASE 2 — CAPABILITY ICONS
   ========================================================= */

.capability-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    margin-bottom: 20px;

    color: var(--mint);
}


/* Building icon */

.icon-building {
    position: relative;

    width: 19px;
    height: 23px;

    border: 2px solid var(--mint);
    border-bottom: 0;
}

.icon-building::before {
    content: "";

    position: absolute;

    left: 4px;
    top: 5px;

    width: 3px;
    height: 3px;

    background: var(--mint);

    box-shadow:
        7px 0 var(--mint),
        0 7px var(--mint),
        7px 7px var(--mint);
}

.icon-building::after {
    content: "";

    position: absolute;

    left: 6px;
    bottom: 0;

    width: 5px;
    height: 8px;

    background: var(--mint);
}


/* Shield icon */

.icon-shield {
    width: 21px;
    height: 25px;

    border: 2px solid var(--mint);

    clip-path: polygon(50% 0,
            94% 16%,
            88% 66%,
            50% 100%,
            12% 66%,
            6% 16%);
}


/* Tools icon */

.icon-tools {
    position: relative;

    width: 25px;
    height: 25px;

    border: 2px solid var(--mint);
    border-radius: 50%;
}

.icon-tools::after {
    content: "";

    position: absolute;

    left: 7px;
    top: 10px;

    width: 10px;
    height: 2px;

    background: var(--mint);

    transform: rotate(45deg);
}


/* People icon */

.icon-people {
    position: relative;

    width: 27px;
    height: 25px;
}

.icon-people::before {
    content: "● ●";

    position: absolute;

    top: 0;
    left: 1px;

    color: var(--mint);

    font-size: 9px;
    letter-spacing: 4px;
}

.icon-people::after {
    content: "▰ ▰";

    position: absolute;

    bottom: -2px;
    left: 0;

    color: var(--mint);

    font-size: 14px;
    letter-spacing: 1px;
}


/* =========================================================
   PHASE 2 — CAPABILITY TYPOGRAPHY
   ========================================================= */

.capability-card h3 {
    color: var(--white);

    font-family: var(--sans);
    font-size: 15px;
    font-weight: 600;

    line-height: 1.3;
}

.capability-card p {
    max-width: 245px;

    margin-top: 13px;

    color: rgba(246, 247, 243, 0.62);

    font-family: var(--sans);
    font-size: 12px;

    line-height: 1.65;
}


/* =========================================================
   PHASE 2 — BOTTOM STATEMENT
   ========================================================= */

.about-footer {
    min-height: 82px;

    display: flex;
    align-items: center;

    gap: 25px;
}

.about-footer__label {
    flex-shrink: 0;

    color: var(--mint);

    font-family: var(--mono);
    font-size: 9px;
    font-weight: 500;

    letter-spacing: 0.7px;
}

.about-footer__line {
    flex: 1;

    height: 1px;

    background: rgba(246, 247, 243, 0.13);
}

.about-footer__text {
    flex-shrink: 0;

    color: rgba(246, 247, 243, 0.62);

    font-family: var(--sans);
    font-size: 11px;
}


/* =========================================================
   PHASE 2 — TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .about-section {
        padding: 80px 0;
    }

    .about-container {
        width: 92%;

        padding: 65px 48px 0;
    }

    .about-main {
        grid-template-columns:
            minmax(0, 1fr) minmax(330px, 0.8fr);

        gap: 45px;
    }

    .about-copy h2 {
        font-size: clamp(48px, 6vw, 62px);
    }

    .about-description {
        font-size: 15px;
    }

    .about-visual {
        max-width: 420px;
    }

    .about-capabilities {
        margin-top: 65px;
    }

    .capability-card {
        padding: 25px 20px;
    }

    .capability-card:first-child {
        padding-left: 0;
    }

    .capability-card:last-child {
        padding-right: 0;
    }
}


/* =========================================================
   PHASE 2 — MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .about-section {
        padding: 55px 0;
    }

    .about-container {
        width: calc(100% - 28px);

        padding: 52px 20px 0;

        border-radius: 16px;
    }


    /* Main content becomes stacked */

    .about-main {
        display: flex;
        flex-direction: column;

        gap: 45px;
    }


    .about-copy {
        max-width: none;
    }


    .section-eyebrow {
        min-height: 31px;

        padding-inline: 12px;

        font-size: 9px;
    }


    .about-copy h2 {
        margin-top: 22px;

        font-size: clamp(43px, 11.5vw, 58px);

        line-height: 0.98;
        letter-spacing: -2.4px;
    }


    .about-description {
        margin-top: 24px;

        font-size: 14.5px;
        line-height: 1.62;
    }

    .about-description--secondary {
        margin-top: 12px;
    }


    .about-button {
        margin-top: 27px;
    }


    /* Visual */

    .about-visual {
        width: 100%;
        max-width: none;

        aspect-ratio: 1 / 0.75;
    }


    .facility-orbit--one {
        width: 220px;
        height: 145px;
    }

    .facility-orbit--two {
        width: 300px;
        height: 195px;
    }

    .facility-orbit--three {
        width: 370px;
        height: 235px;
    }


    .facility-center {
        width: 115px;
        height: 115px;
    }

    .facility-center__mark {
        font-size: 33px;
    }


    /* Capability cards */

    .about-capabilities {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        margin-top: 55px;
    }

    .capability-card {
        min-height: 220px;

        padding: 24px 17px;
    }

    .capability-card:first-child {
        padding-left: 0;
    }

    .capability-card:last-child {
        padding-right: 0;
    }


    .capability-card:nth-child(2) {
        border-right: 0;
    }

    .capability-card:nth-child(3),
    .capability-card:nth-child(4) {
        border-top: 1px dashed rgba(246, 247, 243, 0.16);
    }

    .capability-card:nth-child(3) {
        padding-left: 0;
    }

    .capability-card:nth-child(4) {
        padding-right: 0;
    }


    .capability-card h3 {
        font-size: 14px;
    }

    .capability-card p {
        font-size: 11px;
        line-height: 1.65;
    }


    /* Footer */

    .about-footer {
        min-height: 105px;

        flex-direction: column;
        align-items: flex-start;
        justify-content: center;

        gap: 10px;
    }

    .about-footer__line {
        width: 100%;
        flex: none;
    }

    .about-footer__text {
        font-size: 10px;
    }
}


/* =========================================================
   PHASE 2 — SMALL PHONES
   ========================================================= */

@media (max-width: 390px) {

    .about-section {
        padding: 42px 0;
    }

    .about-container {
        width: calc(100% - 20px);

        padding: 44px 15px 0;

        border-radius: 14px;
    }


    .about-copy h2 {
        font-size: 42px;

        letter-spacing: -2px;
    }


    .about-description {
        font-size: 13.5px;
    }


    .about-visual {
        aspect-ratio: 1 / 0.78;
    }


    .capability-card {
        min-height: 235px;

        padding-inline: 12px;
    }

    .capability-card:first-child,
    .capability-card:nth-child(3) {
        padding-left: 0;
    }

    .capability-card:nth-child(2),
    .capability-card:nth-child(4) {
        padding-right: 0;
    }
}


/* =========================================================
   PHASE 2 — LARGE SCREENS
   ========================================================= */

@media (min-width: 1600px) {

    .about-section {
        padding: 120px 0;
    }

    .about-container {
        width: min(1450px, 90%);

        padding: 95px 90px 0;
    }

    .about-main {
        gap: 110px;
    }

    .about-copy h2 {
        font-size: 78px;
    }

    .about-description {
        font-size: 17px;
    }

    .about-visual {
        max-width: 550px;
    }

    .about-capabilities {
        margin-top: 95px;
    }

    .capability-card {
        min-height: 265px;

        padding-top: 34px;
    }
}


/* =========================================================
   PHASE 2 — ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .capability-card,
    .about-button {
        transition: none;
    }

    .capability-card:hover,
    .about-button:hover {
        transform: none;
    }
}


/* =========================================================
   PHASE 3 — SERVICES SECTION
   ========================================================= */

.services-section {
    position: relative;

    width: 100%;

    padding: 125px 0 110px;

    background: var(--deep-teal);

    color: var(--white);

    overflow: hidden;
}


/* =========================================================
   PHASE 3 — SECTION HEADER
   ========================================================= */

.services-header {
    width: min(720px, 88%);

    margin: 0 auto;

    text-align: center;
}

.services-eyebrow {
    color: var(--mint);

    border-color: rgba(0, 240, 195, 0.55);
}

.services-header h2 {
    margin-top: 24px;

    color: #f7f7f3;

    font-family: var(--serif);
    font-size: clamp(50px, 6vw, 78px);
    font-weight: 400;

    line-height: 0.98;
    letter-spacing: -3px;
}

.services-header h2 em {
    color: var(--mint);

    font-style: normal;
}

.services-header p {
    max-width: 610px;

    margin: 27px auto 0;

    color: rgba(255, 255, 255, 0.78);

    font-family: var(--sans);
    font-size: 15px;

    line-height: 1.7;
}


/* =========================================================
   PHASE 3 — SERVICES STAGE
   ========================================================= */

.services-stage {
    position: relative;

    width: min(1180px, 92%);
    height: 700px;

    margin: 80px auto 0;
}


/* =========================================================
   PHASE 3 — CENTRAL IMAGE
   ========================================================= */

.services-image {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 410px;
    height: 500px;

    transform: translate(-50%, -50%);

    border-radius: 18px;

    background: #d9d9d9;

    overflow: hidden;

    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.28);

    z-index: 2;
}

.services-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    /*
       Keep the image natural and bright.
       The previous saturation/filter treatment
       was making the image unnecessarily dark.
    */

    filter: saturate(0.95) brightness(1.02);
}

.services-image__overlay {
    position: absolute;

    inset: 0;

    /*
       Much lighter overlay.
       The image remains clearly visible while
       the lower label still has enough contrast.
    */

    background:
        linear-gradient(180deg,
            rgba(5, 53, 59, 0) 45%,
            rgba(5, 53, 59, 0.20) 72%,
            rgba(5, 53, 59, 0.68) 100%);
}

.services-image__label {
    position: absolute;

    left: 28px;
    bottom: 27px;

    display: flex;
    flex-direction: column;

    gap: 8px;
}

.services-image__label span {
    color: var(--mint);

    font-family: var(--mono);
    font-size: 9px;

    letter-spacing: 1px;
}

.services-image__label strong {
    color: #ffffff;

    font-family: var(--serif);
    font-size: 25px;
    font-weight: 400;

    line-height: 0.95;
}


/* =========================================================
   PHASE 3 — SERVICE ITEMS
   ========================================================= */

.service-item {
    position: absolute;

    display: flex;

    width: 355px;

    gap: 17px;

    z-index: 3;
}

.service-number {
    flex-shrink: 0;

    width: 35px;
    height: 35px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(0, 240, 195, 0.55);

    border-radius: 50%;

    color: var(--mint);

    font-family: var(--mono);
    font-size: 9px;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.service-item:hover .service-number {
    background: var(--mint);

    border-color: var(--mint);

    color: var(--deep-teal);
}

.service-content {
    max-width: 285px;
}

.service-category {
    display: block;

    margin-bottom: 9px;

    color: var(--mint);

    font-family: var(--mono);
    font-size: 8px;
    font-weight: 500;

    letter-spacing: 0.8px;
}

.service-content h3 {
    color: #ffffff;

    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;

    line-height: 1.03;
    letter-spacing: -1px;
}

.service-content p {
    margin-top: 12px;

    color: rgba(255, 255, 255, 0.74);

    font-family: var(--sans);
    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   PHASE 3 — SERVICE POSITIONS
   ========================================================= */

.service-item--top-left {
    left: 0;
    top: 55px;
}

.service-item--top-right {
    right: 0;
    top: 55px;
}

.service-item--bottom-left {
    left: 0;
    bottom: 55px;
}

.service-item--bottom-right {
    right: 0;
    bottom: 55px;
}


/* =========================================================
   PHASE 3 — CONNECTING LINES
   ========================================================= */

.service-line {
    position: absolute;

    display: block;

    width: 75px;
    height: 1px;

    background:
        linear-gradient(90deg,
            rgba(255, 255, 255, 0.18),
            rgba(0, 240, 195, 0.65));

    z-index: 1;
}

.service-line--one {
    left: 30%;
    top: 145px;

    transform: rotate(18deg);
}

.service-line--two {
    right: 30%;
    top: 145px;

    transform: rotate(-18deg);

    background:
        linear-gradient(90deg,
            rgba(0, 240, 195, 0.65),
            rgba(255, 255, 255, 0.18));
}

.service-line--three {
    left: 30%;
    bottom: 145px;

    transform: rotate(-18deg);
}

.service-line--four {
    right: 30%;
    bottom: 145px;

    transform: rotate(18deg);

    background:
        linear-gradient(90deg,
            rgba(0, 240, 195, 0.65),
            rgba(255, 255, 255, 0.18));
}


/* =========================================================
   PHASE 3 — SERVICE TYPES
   ========================================================= */

.service-types {
    width: min(1180px, 92%);

    margin: 15px auto 0;

    padding-top: 35px;

    display: grid;

    grid-template-columns:
        1fr 1fr 1.15fr;

    gap: 0;

    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.service-type {
    display: flex;

    gap: 14px;

    padding-right: 35px;

    border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.service-type:nth-child(2) {
    padding-left: 35px;
}

.service-type--cta {
    padding-left: 35px;

    flex-direction: column;

    justify-content: center;

    border-right: 0;
}

.service-type__indicator {
    flex-shrink: 0;

    width: 7px;
    height: 7px;

    margin-top: 5px;

    border-radius: 50%;

    background: var(--mint);

    box-shadow:
        0 0 0 5px rgba(0, 240, 195, 0.12);
}

.service-type__label {
    color: #ffffff;

    font-family: var(--mono);
    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.7px;
}

.service-type p {
    max-width: 280px;

    margin-top: 7px;

    color: rgba(255, 255, 255, 0.68);

    font-family: var(--sans);
    font-size: 11px;

    line-height: 1.55;
}

.service-type--cta>span {
    color: rgba(255, 255, 255, 0.58);

    font-family: var(--mono);
    font-size: 8px;

    letter-spacing: 0.8px;
}

.service-type--cta a {
    display: inline-flex;
    align-items: center;

    gap: 12px;

    margin-top: 7px;

    color: #ffffff;

    font-family: var(--sans);
    font-size: 13px;
    font-weight: 600;
}

.service-type--cta a strong {
    color: var(--mint);

    font-size: 20px;
    font-weight: 400;
}


/* =========================================================
   PHASE 3 — TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .services-section {
        padding: 95px 0;
    }

    .services-stage {
        width: 94%;
        height: 650px;
    }

    .services-image {
        width: 350px;
        height: 450px;
    }

    .service-item {
        width: 290px;
    }

    .service-content h3 {
        font-size: 24px;
    }

    .service-content p {
        font-size: 11px;
    }

    .service-line {
        width: 50px;
    }

    .service-types {
        width: 94%;
    }
}


/* =========================================================
   PHASE 3 — MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .services-section {
        padding: 75px 0 65px;
    }

    .services-header {
        width: calc(100% - 40px);
    }

    .services-header h2 {
        margin-top: 20px;

        font-size: clamp(45px, 12vw, 58px);

        letter-spacing: -2.4px;
    }

    .services-header p {
        margin-top: 22px;

        color: rgba(255, 255, 255, 0.76);

        font-size: 13.5px;
        line-height: 1.65;
    }


    /* -----------------------------------------
       MOBILE SERVICE STAGE
       ----------------------------------------- */

    .services-stage {
        width: calc(100% - 30px);

        height: auto;

        margin-top: 55px;

        display: flex;
        flex-direction: column;

        gap: 28px;
    }


    /* Image moves to the top */

    .services-image {
        position: relative;

        left: auto;
        top: auto;

        order: 1;

        width: 100%;
        height: 390px;

        transform: none;

        border-radius: 15px;
    }


    /* Service items become normal blocks */

    .service-item {
        position: relative;

        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;

        width: 100%;

        order: 2;

        padding: 5px 0 25px;

        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .service-item--top-right {
        order: 3;
    }

    .service-item--bottom-left {
        order: 4;
    }

    .service-item--bottom-right {
        order: 5;
    }


    .service-number {
        width: 32px;
        height: 32px;
    }

    .service-content {
        max-width: none;
    }

    .service-content h3 {
        font-size: 25px;
    }

    .service-content p {
        max-width: 480px;

        color: rgba(255, 255, 255, 0.72);

        font-size: 12px;
    }


    /* Hide connecting lines on mobile */

    .service-line {
        display: none;
    }


    /* -----------------------------------------
       SERVICE TYPE STRIP
       ----------------------------------------- */

    .service-types {
        width: calc(100% - 30px);

        margin-top: 50px;

        padding-top: 28px;

        display: flex;
        flex-direction: column;

        gap: 25px;

        border-top-color: rgba(255, 255, 255, 0.18);
    }

    .service-type {
        padding: 0 0 25px;

        border-right: 0;

        border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    }

    .service-type:nth-child(2) {
        padding-left: 0;
    }

    .service-type--cta {
        padding: 0;

        border-bottom: 0;
    }

    .service-type p {
        max-width: none;

        color: rgba(255, 255, 255, 0.68);
    }
}


/* =========================================================
   PHASE 3 — SMALL PHONES
   ========================================================= */

@media (max-width: 390px) {

    .services-section {
        padding-top: 60px;
    }

    .services-header {
        width: calc(100% - 30px);
    }

    .services-header h2 {
        font-size: 43px;
    }

    .services-header p {
        font-size: 13px;
    }

    .services-stage {
        width: calc(100% - 24px);
    }

    .services-image {
        height: 350px;
    }

    .service-content h3 {
        font-size: 23px;
    }

    .service-content p {
        font-size: 11.5px;
    }
}


/* =========================================================
   PHASE 3 — LARGE SCREENS
   ========================================================= */

@media (min-width: 1600px) {

    .services-section {
        padding: 145px 0 130px;
    }

    .services-header {
        width: 780px;
    }

    .services-header h2 {
        font-size: 82px;
    }

    .services-header p {
        font-size: 16px;
    }

    .services-stage {
        width: min(1350px, 90%);
        height: 780px;
    }

    .services-image {
        width: 470px;
        height: 580px;
    }

    .service-item {
        width: 400px;
    }

    .service-content h3 {
        font-size: 31px;
    }

    .service-content p {
        font-size: 13px;
    }

    .service-types {
        width: min(1350px, 90%);
    }
}


/* =========================================================
   PHASE 3 — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .service-number {
        transition: none;
    }
}


/* =========================================================
   PHASE 4 — SOLUTIONS SECTION
   ========================================================= */

.solutions-section {
    position: relative;

    width: 100%;

    padding: 135px 0 120px;

    background: var(--white);

    color: var(--deep-teal);

    overflow: hidden;
}

.solutions-container {
    width: min(1180px, 92%);

    margin: 0 auto;
}


/* =========================================================
   PHASE 4 — SECTION HEADER
   ========================================================= */

.solutions-header {
    width: min(760px, 90%);

    margin: 0 auto;

    text-align: center;
}

.solutions-eyebrow {
    display: inline-flex;
    align-items: center;

    padding: 9px 16px;

    border: 1px solid rgba(5, 53, 59, 0.22);

    border-radius: 30px;

    color: var(--deep-teal);

    font-family: var(--mono);
    font-size: 9px;
    font-weight: 600;

    letter-spacing: 1px;
}

.solutions-header h2 {
    margin-top: 25px;

    color: var(--deep-teal);

    font-family: var(--serif);
    font-size: clamp(52px, 6.5vw, 82px);
    font-weight: 400;

    line-height: 0.96;
    letter-spacing: -3.5px;
}

.solutions-header h2 em {
    color: var(--mint);

    font-style: normal;
}

.solutions-header p {
    max-width: 680px;

    margin: 28px auto 0;

    color: rgba(5, 53, 59, 0.66);

    font-family: var(--sans);
    font-size: 15px;

    line-height: 1.75;
}

.years-highlight {
    font-size: 1.15em;
    font-weight: 700;
    color: var(--deep-teal);
}


/* =========================================================
   PHASE 4 — EXPERIENCE STRIP
   ========================================================= */

.solutions-intro-strip {
    display: grid;

    grid-template-columns: 180px 1fr;

    align-items: center;

    gap: 35px;

    margin-top: 85px;

    padding: 35px 40px;

    background: var(--deep-teal);

    border-radius: 18px;

    color: var(--white);
}

.solutions-intro-number {
    color: var(--mint);

    font-family: var(--serif);
    font-size: 100px;
    font-weight: 400;

    line-height: 0.8;

    letter-spacing: -5px;
}

.solutions-intro-copy span {
    color: var(--mint);

    font-family: var(--mono);
    font-size: 9px;
    font-weight: 600;

    letter-spacing: 1px;
}

.solutions-intro-copy p {
    max-width: 680px;

    margin-top: 10px;

    color: rgba(255, 255, 255, 0.76);

    font-family: var(--sans);
    font-size: 14px;

    line-height: 1.65;
}


/* =========================================================
   PHASE 4 — SOLUTION BLOCKS
   ========================================================= */

.solution-block {
    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);

    align-items: center;

    gap: 90px;

    padding: 125px 0;

    border-bottom: 1px solid rgba(5, 53, 59, 0.12);
}

.solution-block--reverse {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.solution-block--reverse .solution-image {
    order: 2;
}

.solution-block--reverse .solution-content {
    order: 1;
}


/* =========================================================
   PHASE 4 — SOLUTION IMAGE
   ========================================================= */

.solution-image {
    position: relative;

    width: 100%;

    aspect-ratio: 1.08 / 1;

    border-radius: 20px;

    background: #dfe5e3;

    overflow: hidden;

    box-shadow:
        0 25px 55px rgba(5, 53, 59, 0.12);
}

.solution-image::after {
    content: "";

    position: absolute;

    inset: 0;

    background:
        linear-gradient(180deg,
            rgba(5, 53, 59, 0) 55%,
            rgba(5, 53, 59, 0.50) 100%);

    pointer-events: none;
}

.solution-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition:
        transform 0.7s ease;
}

.solution-block:hover .solution-image img {
    transform: scale(1.035);
}

.solution-image__tag {
    position: absolute;

    left: 22px;
    bottom: 20px;

    z-index: 2;

    padding: 8px 12px;

    border: 1px solid rgba(0, 240, 195, 0.45);

    border-radius: 3px;

    background: rgba(5, 53, 59, 0.72);

    color: var(--mint);

    font-family: var(--mono);
    font-size: 8px;

    letter-spacing: 0.8px;
}


/* =========================================================
   PHASE 4 — SOLUTION CONTENT
   ========================================================= */

.solution-content {
    max-width: 510px;
}

.solution-number {
    display: block;

    margin-bottom: 28px;

    color: var(--mint);

    font-family: var(--mono);
    font-size: 11px;
    font-weight: 600;

    letter-spacing: 1px;
}

.solution-category {
    display: block;

    margin-bottom: 12px;

    color: rgba(5, 53, 59, 0.48);

    font-family: var(--mono);
    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.9px;
}

.solution-content h3 {
    color: var(--deep-teal);

    font-family: var(--serif);
    font-size: clamp(39px, 4vw, 56px);
    font-weight: 400;

    line-height: 0.98;
    letter-spacing: -2px;
}

.solution-content h3 em {
    color: var(--mint);

    font-style: normal;
}

.solution-content p {
    margin-top: 21px;

    color: rgba(5, 53, 59, 0.64);

    font-family: var(--sans);
    font-size: 13px;

    line-height: 1.7;
}

.solution-content p strong {
    color: var(--deep-teal);

    font-weight: 600;
}

.solution-problem {
    padding-left: 17px;

    border-left: 2px solid var(--mint);
}


/* =========================================================
   PHASE 4 — SOLUTION LIST
   ========================================================= */

.solution-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 11px 25px;

    margin-top: 27px;

    padding: 0;

    list-style: none;
}

.solution-list li {
    position: relative;

    padding-left: 17px;

    color: var(--deep-teal);

    font-family: var(--sans);
    font-size: 11px;
    font-weight: 500;

    line-height: 1.5;
}

.solution-list li::before {
    content: "";

    position: absolute;

    left: 0;
    top: 6px;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--mint);
}


/* =========================================================
   PHASE 4 — HARD & SOFT FM
   ========================================================= */

.solutions-fm-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    margin-top: 110px;

    border-radius: 18px;

    overflow: hidden;
}

.solutions-fm-card {
    min-height: 330px;

    padding: 50px;

    background: #eef3f1;
}

.solutions-fm-card--dark {
    background: var(--deep-teal);

    color: var(--white);
}

.solutions-fm-card__label {
    display: block;

    color: var(--mint);

    font-family: var(--mono);
    font-size: 9px;
    font-weight: 600;

    letter-spacing: 1px;
}

.solutions-fm-card h3 {
    max-width: 430px;

    margin-top: 65px;

    color: var(--deep-teal);

    font-family: var(--serif);
    font-size: 43px;
    font-weight: 400;

    line-height: 0.98;
    letter-spacing: -1.8px;
}

.solutions-fm-card--dark h3 {
    color: var(--white);
}

.solutions-fm-card p {
    max-width: 470px;

    margin-top: 20px;

    color: rgba(5, 53, 59, 0.62);

    font-family: var(--sans);
    font-size: 13px;

    line-height: 1.7;
}

.solutions-fm-card--dark p {
    color: rgba(255, 255, 255, 0.68);
}


/* =========================================================
   PHASE 4 — EXPERIENCE / CLIENT SECTORS
   ========================================================= */

.solutions-proof {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 90px;

    margin-top: 125px;

    padding-top: 55px;

    border-top: 1px solid rgba(5, 53, 59, 0.15);
}

.solutions-proof__heading>span {
    color: rgba(5, 53, 59, 0.45);

    font-family: var(--mono);
    font-size: 8px;
    font-weight: 600;

    letter-spacing: 1px;
}

.solutions-proof__heading h3 {
    max-width: 400px;

    margin-top: 20px;

    color: var(--deep-teal);

    font-family: var(--serif);
    font-size: 48px;
    font-weight: 400;

    line-height: 0.98;
    letter-spacing: -2px;
}

.solutions-proof__sectors {
    display: flex;
    flex-direction: column;
}

.solutions-sector {
    display: grid;

    grid-template-columns: 55px 1fr;

    gap: 20px;

    padding: 24px 0;

    border-bottom: 1px solid rgba(5, 53, 59, 0.12);
}

.solutions-sector:first-child {
    padding-top: 0;
}

.solutions-sector__number {
    color: var(--mint);

    font-family: var(--mono);
    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.7px;
}

.solutions-sector strong {
    color: var(--deep-teal);

    font-family: var(--sans);
    font-size: 14px;
    font-weight: 600;
}

.solutions-sector p {
    margin-top: 6px;

    color: rgba(5, 53, 59, 0.58);

    font-family: var(--sans);
    font-size: 12px;

    line-height: 1.5;
}


/* =========================================================
   PHASE 4 — CLOSING CTA
   ========================================================= */

.solutions-cta {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 40px;

    margin-top: 120px;

    padding: 48px 50px;

    border-radius: 18px;

    background: var(--deep-teal);
}

.solutions-cta>div>span {
    color: var(--mint);

    font-family: var(--mono);
    font-size: 8px;
    font-weight: 600;

    letter-spacing: 1px;
}

.solutions-cta h3 {
    margin-top: 12px;

    color: var(--white);

    font-family: var(--serif);
    font-size: 45px;
    font-weight: 400;

    line-height: 0.98;
    letter-spacing: -1.7px;
}

.solutions-cta h3 em {
    color: var(--mint);

    font-style: normal;
}

.solutions-cta__button {
    display: inline-flex;

    align-items: center;
    gap: 13px;

    flex-shrink: 0;

    padding: 13px 16px 13px 20px;

    border-radius: 40px;

    background: var(--mint);

    color: var(--deep-teal);

    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.solutions-cta__button:hover {
    transform: translateY(-2px);

    box-shadow:
        0 10px 25px rgba(0, 240, 195, 0.18);
}

.solutions-cta__button strong {
    display: grid;

    width: 27px;
    height: 27px;

    place-items: center;

    border-radius: 50%;

    background: var(--deep-teal);

    color: var(--mint);

    font-size: 16px;
    font-weight: 400;
}


/* =========================================================
   PHASE 4 — TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .solutions-section {
        padding: 100px 0 90px;
    }

    .solutions-container {
        width: 94%;
    }

    .solution-block {
        gap: 55px;

        padding: 95px 0;
    }

    .solution-content h3 {
        font-size: 42px;
    }

    .solutions-fm-card {
        padding: 40px;
    }

    .solutions-fm-card h3 {
        font-size: 37px;
    }

    .solutions-proof {
        gap: 50px;
    }
}


/* =========================================================
   PHASE 4 — MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .solutions-section {
        padding: 75px 0 65px;
    }

    .solutions-container {
        width: calc(100% - 30px);
    }


    /* -----------------------------------------
       HEADER
       ----------------------------------------- */

    .solutions-header {
        width: 100%;
    }

    .solutions-header h2 {
        margin-top: 20px;

        font-size: clamp(44px, 12vw, 58px);

        letter-spacing: -2.5px;
    }

    .solutions-header p {
        margin-top: 22px;

        font-size: 13.5px;

        line-height: 1.65;
    }


    /* -----------------------------------------
       EXPERIENCE STRIP
       ----------------------------------------- */

    .solutions-intro-strip {
        grid-template-columns: 95px 1fr;

        gap: 20px;

        margin-top: 55px;

        padding: 27px 22px;

        border-radius: 15px;
    }

    .solutions-intro-number {
        font-size: 70px;

        letter-spacing: -3px;
    }

    .solutions-intro-copy span {
        font-size: 8px;
    }

    .solutions-intro-copy p {
        font-size: 11.5px;

        line-height: 1.6;
    }


    /* -----------------------------------------
       SOLUTION BLOCKS
       ----------------------------------------- */

    .solution-block,
    .solution-block--reverse {
        display: flex;

        flex-direction: column;

        gap: 38px;

        padding: 70px 0;
    }

    .solution-block--reverse .solution-image,
    .solution-block--reverse .solution-content {
        order: initial;
    }

    .solution-image {
        width: 100%;

        aspect-ratio: 1 / 0.88;

        border-radius: 15px;
    }

    .solution-content {
        max-width: none;
    }

    .solution-number {
        margin-bottom: 20px;
    }

    .solution-content h3 {
        font-size: 39px;

        letter-spacing: -1.5px;
    }

    .solution-content p {
        font-size: 12px;

        line-height: 1.65;
    }

    .solution-list {
        grid-template-columns: 1fr;

        gap: 10px;

        margin-top: 24px;
    }


    /* -----------------------------------------
       HARD / SOFT FM
       ----------------------------------------- */

    .solutions-fm-grid {
        grid-template-columns: 1fr;

        margin-top: 65px;

        border-radius: 15px;
    }

    .solutions-fm-card {
        min-height: auto;

        padding: 35px 27px;
    }

    .solutions-fm-card--dark {
        padding-top: 40px;
    }

    .solutions-fm-card h3 {
        margin-top: 45px;

        font-size: 36px;
    }

    .solutions-fm-card p {
        font-size: 12px;
    }


    /* -----------------------------------------
       EXPERIENCE
       ----------------------------------------- */

    .solutions-proof {
        display: block;

        margin-top: 80px;

        padding-top: 35px;
    }

    .solutions-proof__heading h3 {
        font-size: 42px;
    }

    .solutions-proof__sectors {
        margin-top: 40px;
    }

    .solutions-sector {
        grid-template-columns: 40px 1fr;

        gap: 13px;
    }


    /* -----------------------------------------
       CTA
       ----------------------------------------- */

    .solutions-cta {
        flex-direction: column;

        align-items: flex-start;

        margin-top: 75px;

        padding: 35px 27px;

        border-radius: 15px;
    }

    .solutions-cta h3 {
        font-size: 37px;
    }

    .solutions-cta__button {
        margin-top: 5px;
    }
}


/* =========================================================
   PHASE 4 — SMALL PHONES
   ========================================================= */

@media (max-width: 390px) {

    .solutions-section {
        padding-top: 60px;
    }

    .solutions-container {
        width: calc(100% - 24px);
    }

    .solutions-header h2 {
        font-size: 42px;
    }

    .solutions-header p {
        font-size: 12.5px;
    }

    .solutions-intro-strip {
        grid-template-columns: 80px 1fr;

        gap: 15px;

        padding: 24px 18px;
    }

    .solutions-intro-number {
        font-size: 60px;
    }

    .solution-content h3 {
        font-size: 35px;
    }

    .solution-content p {
        font-size: 11.5px;
    }

    .solutions-fm-card h3 {
        font-size: 33px;
    }

    .solutions-proof__heading h3 {
        font-size: 38px;
    }

    .solutions-cta h3 {
        font-size: 34px;
    }
}


/* =========================================================
   PHASE 4 — LARGE SCREENS
   ========================================================= */

@media (min-width: 1600px) {

    .solutions-section {
        padding: 155px 0 140px;
    }

    .solutions-container {
        width: min(1350px, 90%);
    }

    .solutions-header {
        width: 820px;
    }

    .solutions-header h2 {
        font-size: 88px;
    }

    .solutions-header p {
        font-size: 16px;
    }

    .solution-block {
        grid-template-columns:
            minmax(0, 1.05fr) minmax(0, 0.95fr);

        gap: 120px;

        padding: 145px 0;
    }

    .solution-content h3 {
        font-size: 61px;
    }

    .solution-content p {
        font-size: 14px;
    }

    .solutions-fm-card {
        min-height: 360px;

        padding: 60px;
    }

    .solutions-fm-card h3 {
        font-size: 48px;
    }

    .solutions-proof__heading h3 {
        font-size: 55px;
    }
}


/* =========================================================
   PHASE 4 — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .solution-image img,
    .solutions-cta__button {
        transition: none;
    }
}

/* =========================================================
   PHASE 5 — CONTACT / CTA SECTION
   ========================================================= */

.contact-section {
    position: relative;

    width: 100%;

    padding: 135px 0 35px;

    background: var(--deep-teal);

    color: var(--white);

    overflow: hidden;
}

.contact-section::before {
    content: "";

    position: absolute;

    width: 700px;
    height: 700px;

    right: -280px;
    top: -300px;

    border: 1px solid rgba(0, 240, 195, 0.10);

    border-radius: 50%;

    pointer-events: none;
}

.contact-section::after {
    content: "";

    position: absolute;

    width: 450px;
    height: 450px;

    left: -250px;
    bottom: -250px;

    border: 1px solid rgba(0, 240, 195, 0.07);

    border-radius: 50%;

    pointer-events: none;
}

.contact-container {
    position: relative;

    z-index: 2;

    width: min(1180px, 92%);

    margin: 0 auto;
}


/* =========================================================
   PHASE 5 — MAIN CONTACT AREA
   ========================================================= */

.contact-main {
    width: min(800px, 100%);

    margin: 0 auto;

    text-align: center;
}

.contact-eyebrow {
    display: inline-flex;

    align-items: center;

    padding: 9px 16px;

    border: 1px solid rgba(0, 240, 195, 0.35);

    border-radius: 30px;

    color: var(--mint);

    font-family: var(--mono);
    font-size: 9px;
    font-weight: 600;

    letter-spacing: 1px;
}

.contact-main h2 {
    margin-top: 27px;

    color: var(--white);

    font-family: var(--serif);
    font-size: clamp(58px, 7vw, 88px);
    font-weight: 400;

    line-height: 0.93;

    letter-spacing: -4px;
}

.contact-main h2 em {
    color: var(--mint);

    font-style: normal;
}

.contact-intro {
    max-width: 640px;

    margin: 30px auto 0;

    color: rgba(255, 255, 255, 0.70);

    font-family: var(--sans);
    font-size: 15px;

    line-height: 1.75;
}


/* =========================================================
   PHASE 5 — CONTACT BUTTONS
   ========================================================= */

.contact-actions {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-top: 35px;
}

.contact-button {
    display: inline-flex;

    align-items: center;

    gap: 13px;

    padding: 7px 8px 7px 20px;

    border-radius: 40px;

    font-family: var(--sans);
    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease;
}

.contact-button strong {
    display: grid;

    width: 32px;
    height: 32px;

    place-items: center;

    border-radius: 50%;

    font-size: 16px;
    font-weight: 400;
}

.contact-button:hover {
    transform: translateY(-2px);
}

.contact-button--primary {
    background: var(--mint);

    color: var(--deep-teal);
}

.contact-button--primary strong {
    background: var(--deep-teal);

    color: var(--mint);
}

.contact-button--secondary {
    border: 1px solid rgba(255, 255, 255, 0.25);

    color: var(--white);
}

.contact-button--secondary strong {
    background: rgba(255, 255, 255, 0.10);

    color: var(--mint);
}


/* =========================================================
   PHASE 5 — CONTACT DETAILS
   ========================================================= */

.contact-details {
    display: grid;

    grid-template-columns:
        1fr 1fr 1.2fr;

    margin-top: 105px;

    padding: 32px 0;

    border-top: 1px solid rgba(255, 255, 255, 0.14);
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-detail {
    padding: 0 35px;

    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.contact-detail:first-child {
    padding-left: 0;
}

.contact-detail:last-child {
    border-right: 0;
}

.contact-detail__label {
    display: block;

    margin-bottom: 12px;

    color: var(--mint);

    font-family: var(--mono);
    font-size: 8px;
    font-weight: 600;

    letter-spacing: 1px;
}

.contact-detail a {
    color: var(--white);

    font-family: var(--sans);
    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    transition: color 0.25s ease;
}

.contact-detail a:hover {
    color: var(--mint);
}

.contact-detail p {
    max-width: 300px;

    color: rgba(255, 255, 255, 0.62);

    font-family: var(--sans);
    font-size: 12px;

    line-height: 1.6;
}


/* =========================================================
   PHASE 5 — SOCIAL MEDIA
   ========================================================= */

.contact-social {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 30px 0;
}

.contact-social__label {
    color: rgba(255, 255, 255, 0.45);

    font-family: var(--mono);
    font-size: 8px;
    font-weight: 600;

    letter-spacing: 1px;
}

.contact-social__links {
    display: flex;

    align-items: center;

    gap: 28px;
}

.contact-social__links a {
    position: relative;

    color: rgba(255, 255, 255, 0.72);

    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;

    text-decoration: none;

    transition:
        color 0.25s ease;
}

.contact-social__links a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -5px;

    width: 0;
    height: 1px;

    background: var(--mint);

    transition: width 0.25s ease;
}

.contact-social__links a:hover {
    color: var(--mint);
}

.contact-social__links a:hover::after {
    width: 100%;
}


/* =========================================================
   PHASE 5 — FOOTER
   ========================================================= */

.contact-footer {
    display: grid;

    grid-template-columns:
        1fr 1.3fr 1fr;

    align-items: end;

    gap: 30px;

    padding-top: 32px;
}

.contact-footer__brand {
    color: var(--white);

    font-family: var(--serif);
    font-size: 24px;
    font-weight: 400;

    letter-spacing: -0.5px;
}

.contact-footer__statement {
    text-align: center;
}

.contact-footer__statement span {
    color: rgba(255, 255, 255, 0.40);

    font-family: var(--mono);
    font-size: 7px;
    font-weight: 600;

    letter-spacing: 0.8px;
}

.contact-footer__statement p {
    margin-top: 7px;

    color: var(--mint);

    font-family: var(--serif);
    font-size: 17px;
}

.contact-footer__top {
    text-align: right;
}

.contact-footer__top a {
    color: rgba(255, 255, 255, 0.55);

    font-family: var(--sans);
    font-size: 11px;

    text-decoration: none;

    transition: color 0.25s ease;
}

.contact-footer__top a:hover {
    color: var(--mint);
}


/* =========================================================
   PHASE 5 — TABLET
   ========================================================= */

@media (max-width: 1050px) {

    .contact-section {
        padding: 105px 0 30px;
    }

    .contact-container {
        width: 94%;
    }

    .contact-main h2 {
        font-size: 70px;
    }

    .contact-details {
        grid-template-columns:
            1fr 1fr 1fr;
    }

    .contact-detail {
        padding: 0 22px;
    }
}


/* =========================================================
   PHASE 5 — MOBILE
   ========================================================= */

@media (max-width: 760px) {

    .contact-section {
        padding: 80px 0 25px;
    }

    .contact-container {
        width: calc(100% - 30px);
    }


    /* -----------------------------------------
       MAIN CONTACT
       ----------------------------------------- */

    .contact-main {
        width: 100%;
    }

    .contact-main h2 {
        margin-top: 22px;

        font-size: clamp(48px, 13vw, 64px);

        letter-spacing: -2.8px;
    }

    .contact-intro {
        margin-top: 23px;

        font-size: 13px;

        line-height: 1.7;
    }


    /* -----------------------------------------
       BUTTONS
       ----------------------------------------- */

    .contact-actions {
        flex-direction: column;

        width: 100%;

        gap: 10px;

        margin-top: 30px;
    }

    .contact-button {
        justify-content: space-between;

        width: min(330px, 100%);
    }


    /* -----------------------------------------
       CONTACT DETAILS
       ----------------------------------------- */

    .contact-details {
        display: flex;

        flex-direction: column;

        margin-top: 75px;

        padding: 0;
    }

    .contact-detail,
    .contact-detail:first-child {
        padding: 22px 0;

        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .contact-detail:last-child {
        border-bottom: 0;
    }


    /* -----------------------------------------
       SOCIALS
       ----------------------------------------- */

    .contact-social {
        flex-direction: column;

        align-items: flex-start;

        gap: 18px;

        padding: 27px 0;
    }

    .contact-social__links {
        flex-wrap: wrap;

        gap: 18px 25px;
    }


    /* -----------------------------------------
       FOOTER
       ----------------------------------------- */

    .contact-footer {
        display: flex;

        flex-direction: column;

        align-items: flex-start;

        gap: 20px;

        padding-top: 25px;
    }

    .contact-footer__statement {
        text-align: left;
    }

    .contact-footer__top {
        text-align: left;
    }
}


/* =========================================================
   PHASE 5 — SMALL PHONES
   ========================================================= */

@media (max-width: 390px) {

    .contact-section {
        padding-top: 65px;
    }

    .contact-container {
        width: calc(100% - 24px);
    }

    .contact-main h2 {
        font-size: 46px;

        letter-spacing: -2.3px;
    }

    .contact-intro {
        font-size: 12px;
    }

    .contact-button {
        font-size: 11px;
    }

    .contact-footer__brand {
        font-size: 22px;
    }
}


/* =========================================================
   PHASE 5 — LARGE SCREENS
   ========================================================= */

@media (min-width: 1600px) {

    .contact-section {
        padding: 160px 0 40px;
    }

    .contact-container {
        width: min(1350px, 90%);
    }

    .contact-main {
        width: 900px;
    }

    .contact-main h2 {
        font-size: 98px;
    }

    .contact-intro {
        font-size: 16px;
    }

    .contact-details {
        margin-top: 125px;
    }
}


/* =========================================================
   PHASE 5 — REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .contact-button,
    .contact-detail a,
    .contact-social__links a,
    .contact-footer__top a {
        transition: none;
    }
}